CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_2_9/src/FastSimulation/MuonSimHitProducer/python/MuonSimHitProducer_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 from RecoMuon.TrackingTools.MuonServiceProxy_cff import *
00004 from FastSimulation.MaterialEffects.MaterialEffects_cfi import *
00005 MuonSimHits = cms.EDProducer("MuonSimHitProducer",
00006     # Material effects (Multiple scattering)
00007     MaterialEffectsForMuonsBlock,
00008     # Services
00009     MuonServiceProxy,
00010     # Muons
00011     MUONS = cms.PSet(
00012         # The muon simtrack's must be taken from there
00013         simModuleLabel = cms.string('famosSimHits'),
00014         simModuleProcess = cms.string('MuonSimTracks'),
00015         # The reconstruted tracks must be taken from there
00016         trackModuleLabel = cms.string('generalTracks'),
00017         simHitDTIneffParameters  = cms.vdouble(0.342, -4.597),
00018         simHitCSCIneffParameters = cms.vdouble(0.200, -3.199)
00019     ),
00020     Chi2EstimatorCut = cms.double(1000.0),
00021     TRACKS = cms.PSet(
00022         # Set to true if the full pattern recognition was used
00023         # to reconstruct tracks in the tracker
00024         FullPatternRecognition = cms.untracked.bool(False)
00025     )
00026 )
00027 
00028