Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2023-10-25 10:04:44

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     bunchspace = cms.uint32(25), #ns
0011 
0012     simHitCollections = cms.PSet(
0013         mtdCollections = cms.VInputTag(
0014            cms.InputTag('g4SimHits','FastTimerHitsBarrel'),
0015            cms.InputTag('g4SimHits','FastTimerHitsEndcap')
0016        ),
0017     ),
0018     simTrackCollection = cms.InputTag('g4SimHits'),
0019     simVertexCollection = cms.InputTag('g4SimHits'),
0020     genParticleCollection = cms.InputTag('genParticles'),
0021     allowDifferentSimHitProcesses = cms.bool(False),
0022     HepMCProductLabel = cms.InputTag('generatorSmeared'),
0023 )
0024 
0025 from Configuration.ProcessModifiers.premix_stage1_cff import premix_stage1
0026 premix_stage1.toModify(mtdTruth, premixStage1 = True)