Skip to content
Snippets Groups Projects

Configuration of ATLAS Detector Description using ComponentAccumulator

Merged John Derek Chapman requested to merge jchapman/athena:CA_forIDGeoModel_master into master
4 files
+ 16
5
Compare changes
  • Side-by-side
  • Inline
Files
4
@@ -75,13 +75,13 @@ def _createCfgFlags():
#LAr Flags:
try:
import LArCellRec # Suppress flake8 unused import warning: # noqa: F401
haveLArCellRec = True
import LArConfiguration # Suppress flake8 unused import warning: # noqa: F401
haveLArConfiguration = True
except ImportError:
haveLArCellRec = False
haveLArConfiguration = False
if haveLArCellRec:
from LArCellRec.LArConfigFlags import createLArConfigFlags
if haveLArConfiguration:
from LArConfiguration.LArConfigFlags import createLArConfigFlags
lcf=createLArConfigFlags()
acf.join(lcf)
Loading