Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-12-02 23:45:01

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 mtdTruth = cms.PSet(
0004     accumulatorType = cms.string('MtdTruthAccumulator'),
0005     MinEnergy = cms.double(0.5),
0006     MaxPseudoRapidity = cms.double(5.0),
0007     premixStage1 = cms.bool(False),
0008     maximumPreviousBunchCrossing = cms.uint32(0),
0009     maximumSubsequentBunchCrossing = cms.uint32(0),
0010 
0011     simHitCollections = cms.PSet(
0012         mtdCollections = cms.VInputTag(
0013            cms.InputTag('g4SimHits','FastTimerHitsBarrel'),
0014            cms.InputTag('g4SimHits','FastTimerHitsEndcap')
0015        ),
0016     ),
0017     simTrackCollection = cms.InputTag('g4SimHits'),
0018     simVertexCollection = cms.InputTag('g4SimHits'),
0019     genParticleCollection = cms.InputTag('genParticles'),
0020     allowDifferentSimHitProcesses = cms.bool(False),
0021     HepMCProductLabel = cms.InputTag('generatorSmeared'),
0022 )
0023 
0024 from Configuration.ProcessModifiers.premix_stage1_cff import premix_stage1
0025 premix_stage1.toModify(mtdTruth, premixStage1 = True)