CMS 3D CMS Logo

DTTimingExtractor_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 DTTimingExtractorBlock = cms.PSet(
4  DTTimingParameters = cms.PSet(
5  ServiceParameters = cms.PSet(
6  Propagators = cms.untracked.vstring('SteppingHelixPropagatorAny',
7  'PropagatorWithMaterial',
8  'PropagatorWithMaterialOpposite'),
9  RPCLayers = cms.bool(True)
10  ),
11  PruneCut = cms.double(5.),
12  DTTimeOffset = cms.double(0.),
13  HitError = cms.double(2.8),
14  HitsMin = cms.int32(3),
15  UseSegmentT0 = cms.bool(False),
16  DoWireCorr = cms.bool(True),
17  DropTheta = cms.bool(True),
18  RequireBothProjections = cms.bool(False),
19  debug = cms.bool(False),
20  )
21 )
22 
23