From 7ab72bbeaedd48ef0fcdcc5e77c8e99fb8589c10 Mon Sep 17 00:00:00 2001 From: Edward Moyse <edward.moyse@cern.ch> Date: Mon, 1 Mar 2021 14:12:21 +0100 Subject: [PATCH] Add OldFlags2NewFlags The aim is to handle the most common, standard flags. It will probably need extending, so this is a first attempt. --- .../python/OldFlags2NewFlags.py | 58 +++++++++++++++++++ 1 file changed, 58 insertions(+) create mode 100644 Control/AthenaConfiguration/python/OldFlags2NewFlags.py diff --git a/Control/AthenaConfiguration/python/OldFlags2NewFlags.py b/Control/AthenaConfiguration/python/OldFlags2NewFlags.py new file mode 100644 index 00000000000..23d2b8aa6c7 --- /dev/null +++ b/Control/AthenaConfiguration/python/OldFlags2NewFlags.py @@ -0,0 +1,58 @@ +# Copyright (C) 2002-2021 CERN for the benefit of the ATLAS collaboration + +def getNewConfigFlags(): + from AthenaConfiguration.AllConfigFlags import ConfigFlags + + # Import some old-style flags + from AthenaCommon.DetFlags import DetFlags + from AthenaCommon.GlobalFlags import globalflags # noqa: F401 + from AthenaCommon.AthenaCommonFlags import jobproperties + from AtlasGeoModel.InDetGMJobProperties import InDetGeometryFlags + + # Files and conditions + if jobproperties.Global.InputFormat() == 'bytestream': + ConfigFlags.Input.Files = jobproperties.AthenaCommonFlags.BSRDOInput() + elif jobproperties.Global.InputFormat() == 'pool': + ConfigFlags.Input.Files = jobproperties.AthenaCommonFlags.FilesInput.get_Value() + ConfigFlags.IOVDb.GlobalTag = jobproperties.Global.ConditionsTag() + ConfigFlags.Beam.BunchSpacing = jobproperties.Beam.bunchSpacing + + # Geometry - General + ConfigFlags.GeoModel.AtlasVersion = jobproperties.Global.DetDescrVersion() + ConfigFlags.GeoModel.Align.Dynamic = InDetGeometryFlags.useDynamicAlignFolders() + + # Let's build a map whose key is new flagname, and whose value is old flagname. + geom_flag_map = {} + # Geometry - InnerDetector + geom_flag_map.update({ 'Bpipe':'bpipe', 'BCM':'BCM', 'DBM':'DBM', 'Pixel':'pixel', 'SCT':'SCT', 'TRT':'TRT'}) + + # Geometry - Upgrade Phase-2 - TODO + # geom_flag_map.update({ 'BCMPrime':'', 'ITkPixel':'', 'ITkStrip':'', 'HGTD':''}) + + # Geometry - Calo + geom_flag_map.update({ 'LAr':'LAr', 'Tile':'Tile'}) + + #Geometry - Muon + geom_flag_map.update({ 'CSC':'CSC', 'MDT':'MDT', 'RPC':'RPC', 'TGC':'TGC'}) + geom_flag_map.update({ 'MM':'Micromegas', 'sTGC':'sTGC'}) + + # Geometry - Forward + # TODO + + # Now set Geometry i.e. do equivalent of : + # ConfigFlags.Detector.GeometryBpipe = DetFlags.geometry.bpipe_on() + ConfigFlags._loadDynaFlags('Detector') + for flag in geom_flag_map: + ConfigFlags._set('Detector.Geometry'+flag, getattr(DetFlags.detdescr,geom_flag_map[flag]+'_on')()) + + # Apparently we have detdescr flags and MuonGeometryFlags and they don't agree. FIXME. + from AtlasGeoModel.MuonGMJobProperties import MuonGeometryFlags + ConfigFlags.Detector.GeometrysTGC = MuonGeometryFlags.hasSTGC() + ConfigFlags.Detector.GeometryMM = MuonGeometryFlags.hasMM() + + # Now setup Reco: + reco_flag_map = { 'BCM':'BCM', 'IBL':'pixel', 'Pixel':'pixel', 'SCT':'SCT', 'TRT':'TRT'} + for flag in reco_flag_map: + ConfigFlags._set('Detector.Reco'+flag, getattr(DetFlags.haveRIO,reco_flag_map[flag]+'_on')() ) + + return ConfigFlags -- GitLab