CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
trackingParticlesFastSim_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 import FWCore.ParameterSet.Config as cms
4 
5 mergedtruth = cms.EDProducer("TrackingTruthProducer",
6 
7  mixLabel = cms.string('mix'), # note: to become mixHits when the new sequences with mixing at SIM and RECO levels will be default
8  simHitLabel = cms.string('famosSimHits'),
9  volumeRadius = cms.double(1200.0),
10  vertexDistanceCut = cms.double(0.003),
11  volumeZ = cms.double(3000.0),
12  mergedBremsstrahlung = cms.bool(True),
13  removeDeadModules = cms.bool(False),
14 
15  HepMCDataLabels = cms.vstring('generatorSmeared',
16  'generator',
17  'PythiaSource',
18  'source'
19  ),
20 
21  useMultipleHepMCLabels = cms.bool(False),
22 
23  simHitCollections = cms.PSet(
24  tracker = cms.vstring (
25  'famosSimHitsTrackerHits'
26  ),
27  muon = cms.vstring (
28  'MuonSimHitsMuonDTHits',
29  'MuonSimHitsMuonCSCHits',
30  'MuonSimHitsMuonRPCHits'
31  )
32  )
33  )
34 
35 trackingParticles = cms.Sequence(mergedtruth)
36 
37