diff --git a/Simulation/G4Atlas/G4AtlasTools/python/G4AtlasToolsConfig.py b/Simulation/G4Atlas/G4AtlasTools/python/G4AtlasToolsConfig.py index 2db389d052d126a6491ee58ebb82d2c1ab61f6d0..f39a00927f677ed5852fba5da58ced4591d89183 100644 --- a/Simulation/G4Atlas/G4AtlasTools/python/G4AtlasToolsConfig.py +++ b/Simulation/G4Atlas/G4AtlasTools/python/G4AtlasToolsConfig.py @@ -98,9 +98,11 @@ def generateCaloSensitiveDetectorList(): from AthenaCommon.DetFlags import DetFlags if DetFlags.simulate.LAr_on(): SensitiveDetectorList += [ 'LArEMBSensitiveDetector','LArEMECSensitiveDetector','LArFCALSensitiveDetector',\ - 'LArHECSensitiveDetector','LArMiniFCALSensitiveDetector'] + 'LArHECSensitiveDetector'] + if False: # disabled for now + SensitiveDetectorList += [ 'LArMiniFCALSensitiveDetector' ] if hasattr(DetFlags.simulate, 'HGTD_on') and DetFlags.simulate.HGTD_on(): - SensitiveDetectorList += [ 'HGTDSensorSD' ] + raise RuntimeError('High Luminosity LHC configurations only supported in CA-based configuration') else: SensitiveDetectorList += [ 'MinBiasScintillatorSD' ] from G4AtlasApps.SimFlags import simFlags diff --git a/Simulation/G4Atlas/G4AtlasTools/python/G4AtlasToolsConfigNew.py b/Simulation/G4Atlas/G4AtlasTools/python/G4AtlasToolsConfigNew.py index cfaefda5e746cf88202138ce26aa04188754c917..a92126dcf474fc2ab45d079d3220613dbfd336bf 100644 --- a/Simulation/G4Atlas/G4AtlasTools/python/G4AtlasToolsConfigNew.py +++ b/Simulation/G4Atlas/G4AtlasTools/python/G4AtlasToolsConfigNew.py @@ -141,12 +141,14 @@ def CaloSensitiveDetectorListCfg(ConfigFlags): tools = [] if ConfigFlags.Detector.EnableLAr: - from LArG4SD.LArG4SDToolConfig import LArEMBSensitiveDetectorCfg, LArEMECSensitiveDetectorCfg, LArFCALSensitiveDetectorCfg, LArHECSensitiveDetectorCfg, LArMiniFCALSensitiveDetectorToolCfg + from LArG4SD.LArG4SDToolConfig import LArEMBSensitiveDetectorCfg, LArEMECSensitiveDetectorCfg, LArFCALSensitiveDetectorCfg, LArHECSensitiveDetectorCfg tools += [ result.popToolsAndMerge(LArEMBSensitiveDetectorCfg(ConfigFlags)) ] tools += [ result.popToolsAndMerge(LArEMECSensitiveDetectorCfg(ConfigFlags)) ] tools += [ result.popToolsAndMerge(LArFCALSensitiveDetectorCfg(ConfigFlags)) ] tools += [ result.popToolsAndMerge(LArHECSensitiveDetectorCfg(ConfigFlags)) ] - tools += [ result.popToolsAndMerge(LArMiniFCALSensitiveDetectorToolCfg(ConfigFlags)) ] + if False: # disabled for now + from LArG4SD.LArG4SDToolConfig import LArMiniFCALSensitiveDetectorToolCfg + tools += [ result.popToolsAndMerge(LArMiniFCALSensitiveDetectorToolCfg(ConfigFlags)) ] if ConfigFlags.Detector.EnableMBTS: from MinBiasScintillator.MinBiasScintillatorToolConfig import MinBiasScintillatorSDCfg diff --git a/Tools/PROCTools/python/RunTier0TestsTools.py b/Tools/PROCTools/python/RunTier0TestsTools.py index 61bc2684d107ae42b9fc7658025e44ef8c1e95b4..907733b5b66056cdb2bfde53539fa29cc4c24e4d 100644 --- a/Tools/PROCTools/python/RunTier0TestsTools.py +++ b/Tools/PROCTools/python/RunTier0TestsTools.py @@ -27,7 +27,7 @@ ciRefFileMap = { 's3505-21.0' : 'v2', 's3505-21.3' : 'v1', 's3505-21.9' : 'v1', - 's3505-22.0' : 'v10', + 's3505-22.0' : 'v11', # OverlayTier0Test_required-test 'overlay-d1498-21.0' : 'v2', 'overlay-d1498-22.0' : 'v38',