Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:11:18

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 from RecoMuon.TrackingTools.MuonServiceProxy_cff import *
0004 from FastSimulation.MaterialEffects.MaterialEffects_cfi import *
0005 MuonSimHits = cms.EDProducer("MuonSimHitProducer",
0006     # Material effects (Multiple scattering)
0007     MaterialEffectsForMuonsBlock,
0008     # Services
0009     MuonServiceProxy,
0010     # Muons
0011     MUONS = cms.PSet(
0012         # The muon simtrack's must be taken from there
0013         simModuleLabel = cms.string('fastSimProducer'),
0014         simModuleProcess = cms.string('MuonSimTracks'),
0015         # The reconstruted tracks must be taken from there
0016         trackModuleLabel = cms.string('generalTracks'),
0017         simHitDTIneffParameters  = cms.vdouble(0.342, -4.597),
0018         simHitCSCIneffParameters = cms.vdouble(0.200, -3.199)
0019     ),
0020     Chi2EstimatorCut = cms.double(1000.0),
0021     TRACKS = cms.PSet(
0022         # Set to true if the full pattern recognition was used
0023         # to reconstruct tracks in the tracker
0024         FullPatternRecognition = cms.untracked.bool(False)
0025     )
0026 )
0027 
0028