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

New fastsim event content for pileup #4197

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions FastSimulation/Configuration/python/CommonInputs_cff.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@

# CaloMode is defined here
# 0: custom local reco bypassing digis, ECAL and HCAL; default before 61x
# 1: as 0, but full digi + std local reco in ECAL <---- DEFAULT
# 1: as 0, but full digi + std local reco in ECAL
# 2: as 0, but full digi + std local reco in HCAL
# 3: full digi + std local reco in ECAL and HCAL; planned to become default soon
# 3: full digi + std local reco in ECAL and HCAL <---- DEFAULT

CaloMode = 3

Expand Down
13 changes: 13 additions & 0 deletions FastSimulation/Configuration/python/EventContent_cff.py
Original file line number Diff line number Diff line change
Expand Up @@ -246,3 +246,16 @@
FEVTDEBUGHLTEventContent.outputCommands.extend(FastSimRecoLocalCaloFEVT.outputCommands)
FEVTDEBUGHLTEventContent.outputCommands.extend(FastSimRecoTrackerFEVT.outputCommands)
FEVTDEBUGHLTEventContent.outputCommands.extend(FastSimParticleFlowFEVT.outputCommands)

#####################################################################
#
# To be used only to create the MinBias sample for "new mixing" (--eventcontent=FASTPU)
#
#####################################################################
FASTPUEventContent = cms.PSet(
outputCommands = cms.untracked.vstring('drop *',
'keep *_famosSimHits_*_*',
'keep *_MuonSimHits_*_*',
'keep Traj*_*_*_*',
'keep *_generalTracks_*_*')
)