CMS 3D CMS Logo

CSCTimingExtractor_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 CSCTimingExtractorBlock = cms.PSet(
4  CSCTimingParameters = cms.PSet(
5 
6  ServiceParameters = cms.PSet(
7  Propagators = cms.untracked.vstring('SteppingHelixPropagatorAny',
8  'PropagatorWithMaterial',
9  'PropagatorWithMaterialOpposite'),
10  RPCLayers = cms.bool(True)
11  ),
12  PruneCut = cms.double(9.),
13  CSCStripTimeOffset = cms.double(0.),
14  CSCWireTimeOffset = cms.double(0.),
15  CSCStripError = cms.double(7.0),
16  CSCWireError = cms.double(8.6),
17  # One of these next two lines must be true or no time is created
18  UseStripTime = cms.bool(True),
19  UseWireTime = cms.bool(True),
20  debug = cms.bool(False)
21  )
22 )
23 
24