Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Phase2-hgx360R Inhibit ZDC digitization in Phase2 scenario #46720

Merged
merged 3 commits into from
Nov 21, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
)

from Configuration.Eras.Modifier_fastSim_cff import fastSim
fastSim.toModify( hcalSimBlock, hitsProducer=cms.string('fastSimProducer') )
fastSim.toModify( hcalSimBlock, hitsProducer = "fastSimProducer" )

from Configuration.ProcessModifiers.premix_stage1_cff import premix_stage1
premix_stage1.toModify(hcalSimBlock,
Expand All @@ -60,12 +60,16 @@

# test numbering not used in fastsim
from Configuration.Eras.Modifier_run2_HCAL_2017_cff import run2_HCAL_2017
(run2_HCAL_2017 & ~fastSim).toModify( hcalSimBlock, TestNumbering = cms.bool(True) )
(run2_HCAL_2017 & ~fastSim).toModify( hcalSimBlock, TestNumbering = True )

# remove HE processing for phase 2, completely put in HGCal land
# Also inhibit ZDC digitization
from Configuration.Eras.Modifier_phase2_hgcal_cff import phase2_hgcal
phase2_hgcal.toModify(hcalSimBlock, killHE = cms.bool(True) )
phase2_hgcal.toModify(hcalSimBlock,
doZDCDigi = False,
killHE = True
)

# remove HE processing for phase 2, completely put in HGCal land
# inhibit ZDC digitization
from Configuration.Eras.Modifier_zdcNoDigi_cff import zdcNoDigi
zdcNoDigi.toModify(hcalSimBlock, doZDCDigi = cms.bool(False) )
zdcNoDigi.toModify(hcalSimBlock, doZDCDigi = False )