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
00012 ErrorDT = cms.double(6.0),
00013 ErrorCSC = cms.double(7.4),
00014
00015
00016 EcalEnergyCut = cms.double(0.4),
00017
00018 ErrorEB = cms.double(2.085),
00019 ErrorEE = cms.double(6.95),
00020
00021
00022 UseDT = cms.bool(True),
00023 UseCSC = cms.bool(True),
00024 UseECAL= cms.bool(True)
00025 )
00026 )
00027
00028