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

PPS Full simulation integration #29916

Closed
wants to merge 16 commits into from
Closed
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Update SimG4Core/Application/python/g4SimHits_cfi.py
Co-authored-by: Matti Kortelainen <[email protected]>
mundim and makortel authored May 21, 2020
commit be785497693df0a629f3d55da599adbc5665ed9b
16 changes: 11 additions & 5 deletions SimG4Core/Application/python/g4SimHits_cfi.py
Original file line number Diff line number Diff line change
@@ -577,11 +577,17 @@


from Configuration.Eras.Modifier_ctpps_2016_cff import ctpps_2016
ctpps_2016.toModify( g4SimHits.Generator, HepMCProductLabel = 'LHCTransport')
ctpps_2016.toModify( g4SimHits.Generator, MinEtaCut = cms.double(-13.0))
ctpps_2016.toModify( g4SimHits.Generator, MaxEtaCut = cms.double( 13.0))
ctpps_2016.toModify( g4SimHits.SteppingAction, MaxTrackTime = cms.double(2000.0))
ctpps_2016.toModify( g4SimHits.StackingAction, MaxTrackTime = cms.double(2000.0))
ctpps_2016.toModify(g4SimHits,
Generator = dict(
HepMCProductLabel = 'LHCTransport',
MinEtaCut = -13.0,
MaxEtaCut = 13.0
),
SteppingAction = dict(
MaxTrackTime = 2000.0,
MaxTrackTime = 2000.0
)
)


from Configuration.Eras.Modifier_run2_HCAL_2017_cff import run2_HCAL_2017