Skip to content

Commit

Permalink
fix path
Browse files Browse the repository at this point in the history
  • Loading branch information
martamaja10 committed Dec 12, 2024
1 parent 33d5213 commit a67c326
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tutorials/visualisation/geom/geometry.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@
import os
import ROOT

macrodir = os.path.join(str(ROOT.gROOT.GetTutorialDir()), 'geom')
macrodir = os.path.join(str(ROOT.gROOT.GetTutorialDir()), 'visualisation', 'geom')

# the na49.C file was generated, so no python conversion is provided
ROOT.gROOT.Macro( ROOT.gSystem.UnixPathName( os.path.join( macrodir, os.pardir, 'visualisation', 'geom', 'na49.C' ) ) )
ROOT.gROOT.Macro( ROOT.gSystem.UnixPathName( os.path.join( macrodir, 'na49.C' ) ) )

exec(open(os.path.join( macrodir, 'na49visible.py')).read())
exec(open(os.path.join( macrodir, 'na49geomfile.py')).read())

0 comments on commit a67c326

Please sign in to comment.