CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_4_1_8_patch9/src/RecoMuon/MuonIdentification/python/MuonTimingFiller_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 from RecoMuon.MuonIdentification.DTTimingExtractor_cfi import *
00004 from RecoMuon.MuonIdentification.CSCTimingExtractor_cfi import *
00005 
00006 TimingFillerBlock = cms.PSet(
00007   TimingFillerParameters = cms.PSet(
00008     DTTimingExtractorBlock,
00009     CSCTimingExtractorBlock,
00010     
00011     # Single hit time measurement precition in ns
00012     ErrorDT  = cms.double(6.0),
00013     ErrorCSC = cms.double(7.4),
00014     
00015     # Ecal minimum energy cut
00016     EcalEnergyCut = cms.double(0.4),
00017     # Ecal error parametrization
00018     ErrorEB = cms.double(2.085),
00019     ErrorEE = cms.double(6.95),
00020     
00021     # On/off switches for combined time measurement
00022     UseDT  = cms.bool(True),
00023     UseCSC = cms.bool(True),
00024     UseECAL= cms.bool(True)
00025   )
00026 )
00027 
00028