From c77ab0706492b111d6f811d55470e6a9c21f94d8 Mon Sep 17 00:00:00 2001 From: Giovanni Marchiori Date: Thu, 23 Jan 2025 12:24:27 +0100 Subject: [PATCH] fixes --- FCCee/FullSim/ALLEGRO/ALLEGRO_o1_v03/run_digi_reco.py | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/FCCee/FullSim/ALLEGRO/ALLEGRO_o1_v03/run_digi_reco.py b/FCCee/FullSim/ALLEGRO/ALLEGRO_o1_v03/run_digi_reco.py index 9aa57c7..e851ece 100644 --- a/FCCee/FullSim/ALLEGRO/ALLEGRO_o1_v03/run_digi_reco.py +++ b/FCCee/FullSim/ALLEGRO/ALLEGRO_o1_v03/run_digi_reco.py @@ -195,7 +195,6 @@ "SiWrDCollection"], OutputTracks="TracksFromGenParticles", OutputMCRecoTrackParticleAssociation="TracksFromGenParticlesAssociation", - Bz=2.0, OutputLevel=DEBUG) else: from Configurables import TracksFromGenParticles @@ -992,10 +991,6 @@ def setupTopoClusters(inputCells, # drop the intermediate ecal barrel cells in case of a resegmentation if resegmentECalBarrel: io_svc.outputCommands.append("drop ECalBarrelCellsMerged") - # drop the intermediate hcal barrel cells before resegmentation - if runHCal: - io_svc.outputCommands.append("drop %s" % hcalBarrelPositionedCellsName) - io_svc.outputCommands.append("drop %s" % hcalEndcapPositionedCellsName) # drop lumi, vertex, DCH, Muons (unless want to keep for event display) if dropLumiCalHits: @@ -1004,7 +999,7 @@ def setupTopoClusters(inputCells, io_svc.outputCommands.append("drop VertexBarrelCollection*") io_svc.outputCommands.append("drop VertexEndcapCollection*") if dropDCHHits: - io_svc.outputCommands.append("drop DCHCollection**") + io_svc.outputCommands.append("drop DCHCollection*") if dropSiWrHits: io_svc.outputCommands.append("drop SiWrBCollection*") io_svc.outputCommands.append("drop SiWrDCollection*") @@ -1016,6 +1011,9 @@ def setupTopoClusters(inputCells, io_svc.outputCommands.append("drop *%sContributions" % ecalBarrelReadoutName) io_svc.outputCommands.append("drop *%sContributions" % ecalBarrelReadoutName2) io_svc.outputCommands.append("drop *%sContributions" % ecalEndcapReadoutName) + if runHCal: + io_svc.outputCommands.append("drop *%sContributions" % hcalBarrelReadoutName) + io_svc.outputCommands.append("drop *%sContributions" % hcalEndcapReadoutName) if not saveCells: io_svc.outputCommands.append("drop %s" % ecalBarrelPositionedCellsName) io_svc.outputCommands.append("drop %s" % ecalEndcapPositionedCellsName)