Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2023-03-17 10:56:30

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 # module for fine delay analysis, stored in fake digis to comply with the digi input format of the Commissioning Source
0004 siStripFineDelayHit = cms.EDProducer("SiStripFineDelayHit",
0005     # general parameters
0006     cosmic = cms.bool(True),
0007     MagneticField = cms.bool(False),
0008     #string mode = "DelayScan"
0009     ClustersLabel = cms.InputTag("siStripClusters"),
0010     NoTracking = cms.bool(False),
0011     # with tracks
0012     TrajInEvent = cms.bool(True),
0013     TTRHBuilder = cms.string('WithTrackAngle'),
0014     MaxTrackAngle = cms.double(45.0),
0015     MinTrackMomentum = cms.double(0.0),
0016     MaxClusterDistance = cms.double(2.0),
0017     TracksLabel = cms.InputTag("cosmictrackfinder"),
0018     SeedsLabel = cms.InputTag("cosmicseedfinder"),
0019     # to avoid the cluster threshold
0020     NoClustering = cms.bool(True),
0021     ExplorationWindow = cms.uint32(10),
0022     DigiLabel = cms.InputTag("siStripZeroSuppression","VirginRaw"),
0023     # the label for EventSummary
0024     InputModuleLabel = cms.InputTag("FedChannelDigis")
0025 )