Skip to content
Snippets Groups Projects

fix: migrate from JUGGLER_DETECTOR to simply DETECTOR

Merged Wouter Deconinck requested to merge remove-juggler-from-detector into master
31 files
+ 97
97
Compare changes
  • Side-by-side
  • Inline
Files
31
@@ -9,9 +9,9 @@ import ROOT
from Configurables import ApplicationMgr, EICDataSvc, PodioInput, PodioOutput, GeoSvc
from GaudiKernel.SystemOfUnits import MeV, GeV, mm, cm, mrad
detector_name = str(os.environ.get("JUGGLER_DETECTOR", "athena"))
detector_config = str(os.environ.get("JUGGLER_DETECTOR_CONFIG", detector_name))
detector_version = str(os.environ.get("JUGGLER_DETECTOR_VERSION", "master"))
detector_name = str(os.environ.get("DETECTOR", "athena"))
detector_config = str(os.environ.get("DETECTOR_CONFIG", detector_name))
detector_version = str(os.environ.get("DETECTOR_VERSION", "master"))
detector_path = str(os.environ.get("DETECTOR_PATH", "."))
compact_path = os.path.join(detector_path, detector_config)
Loading