CMS 3D CMS Logo

MuonTimingFiller_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
6 
7 TimingFillerBlock = cms.PSet(
8  TimingFillerParameters = cms.PSet(
9  DTTimingExtractorBlock,
10  CSCTimingExtractorBlock,
11  MuonSegmentMatcher,
12 
13  # Ecal minimum energy cut
14  EcalEnergyCut = cms.double(0.4),
15  # Ecal error parametrization
16  ErrorEB = cms.double(2.085),
17  ErrorEE = cms.double(6.95),
18 
19  # On/off switches for combined time measurement
20  UseDT = cms.bool(True),
21  UseCSC = cms.bool(True),
22  UseECAL= cms.bool(False)
23  )
24 )
25 
26