Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
giovannimarchiori committed Jan 23, 2025
1 parent 1f3da7c commit c77ab07
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions FCCee/FullSim/ALLEGRO/ALLEGRO_o1_v03/run_digi_reco.py
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,6 @@
"SiWrDCollection"],
OutputTracks="TracksFromGenParticles",
OutputMCRecoTrackParticleAssociation="TracksFromGenParticlesAssociation",
Bz=2.0,
OutputLevel=DEBUG)
else:
from Configurables import TracksFromGenParticles
Expand Down Expand Up @@ -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:
Expand All @@ -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*")
Expand All @@ -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)
Expand Down

0 comments on commit c77ab07

Please sign in to comment.