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

Move LArConfigFlags.py from LArCellRec to new LArConfiguration package

parent bded2dac
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 )
# Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration
......@@ -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