Skip to content
Snippets Groups Projects
Commit 52d3c15a authored by John Chapman's avatar John Chapman
Browse files

Move LArConfigFlags.py from LArCellRec to new LArConfiguration package

parent 1c731b7e
No related branches found
No related tags found
No related merge requests found
......@@ -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)
......
################################################################################
# Package: LArConfiguration
################################################################################
# Declare the package name:
atlas_subdir( LArConfiguration )
# Install files from the package:
atlas_install_python_modules( python/*.py )
......@@ -202,6 +202,7 @@
+ LArCalorimeter/LArCnv/LArIdCnv
+ LArCalorimeter/LArCnv/LArSimEventAthenaPool
+ LArCalorimeter/LArCnv/LArSimEventTPCnv
+ LArCalorimeter/LArConfiguration
+ LArCalorimeter/LArDetDescr
+ LArCalorimeter/LArElecCalib
+ LArCalorimeter/LArExample/LArConditionsCommon
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment