Skip to content

Commit

Permalink
Merge pull request #46720 from bsunanda/Phase2-hgx360R
Browse files Browse the repository at this point in the history
Phase2-hgx360R Inhibit ZDC digitization in Phase2 scenario
  • Loading branch information
cmsbuild authored Nov 21, 2024
2 parents b25b3b0 + 7dc15d3 commit 6017246
Showing 1 changed file with 9 additions and 5 deletions.
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 )

0 comments on commit 6017246

Please sign in to comment.