CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
MuonSimHitProducer_cfi.py
Go to the documentation of this file.
2 
5 MuonSimHits = cms.EDProducer("MuonSimHitProducer",
6  # Material effects (Multiple scattering)
7  MaterialEffectsForMuonsBlock,
8  # Services
9  MuonServiceProxy,
10  # Muons
11  MUONS = cms.PSet(
12  # The muon simtrack's must be taken from there
13  simModuleLabel = cms.string('famosSimHits'),
14  simModuleProcess = cms.string('MuonSimTracks'),
15  # The reconstruted tracks must be taken from there
16  trackModuleLabel = cms.string('generalTracks'),
17  simHitDTIneffParameters = cms.vdouble(0.342, -4.597),
18  simHitCSCIneffParameters = cms.vdouble(0.200, -3.199)
19  ),
20  Chi2EstimatorCut = cms.double(1000.0),
21  TRACKS = cms.PSet(
22  # Set to true if the full pattern recognition was used
23  # to reconstruct tracks in the tracker
24  FullPatternRecognition = cms.untracked.bool(False)
25  )
26 )
27 
28