Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:27:02

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 CSCTimingExtractorBlock = cms.PSet(
0004   CSCTimingParameters = cms.PSet(
0005 
0006     ServiceParameters = cms.PSet(
0007         Propagators = cms.untracked.vstring('SteppingHelixPropagatorAny', 
0008             'PropagatorWithMaterial', 
0009             'PropagatorWithMaterialOpposite'),
0010         RPCLayers = cms.bool(True)
0011     ),
0012     PruneCut = cms.double(9.),
0013     CSCStripTimeOffset = cms.double(0.),
0014     CSCWireTimeOffset = cms.double(0.),
0015     CSCStripError = cms.double(7.0),
0016     CSCWireError = cms.double(8.6),
0017     # One of these next two lines must be true or no time is created
0018     UseStripTime = cms.bool(True),
0019     UseWireTime = cms.bool(True),
0020     debug = cms.bool(False)
0021   )
0022 )
0023 
0024