Skip to content
Snippets Groups Projects
Commit 4a29ae7a authored by Tadej Novak's avatar Tadej Novak Committed by Adam Edward Barton
Browse files

Disable LArMiniFCALSensitiveDetectorTool in simulation

parent c088b862
5 merge requests!58791DataQualityConfigurations: Modify L1Calo config for web display,!51674Fixing hotSpotInHIST for Run3 HIST,!46784MuonCondInterface: Enable thread-safety checking.,!46776Updated LArMonitoring config file for WD to match new files produced using MT,!45139Disable LArMiniFCALSensitiveDetectorTool in simulation
......@@ -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
......
......@@ -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
......
......@@ -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',
......
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