CMS 3D CMS Logo

SiStripFineDelayHit_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 # module for fine delay analysis, stored in fake digis to comply with the digi input format of the Commissioning Source
4 siStripFineDelayHit = cms.EDProducer("SiStripFineDelayHit",
5  # general parameters
6  cosmic = cms.bool(True),
7  MagneticField = cms.bool(False),
8  #string mode = "DelayScan"
9  ClustersLabel = cms.InputTag("siStripClusters"),
10  NoTracking = cms.bool(False),
11  # with tracks
12  TrajInEvent = cms.bool(True),
13  TTRHBuilder = cms.string('WithTrackAngle'),
14  MaxTrackAngle = cms.double(45.0),
15  MinTrackMomentum = cms.double(0.0),
16  MaxClusterDistance = cms.double(2.0),
17  TracksLabel = cms.InputTag("cosmictrackfinder"),
18  SeedsLabel = cms.InputTag("cosmicseedfinder"),
19  # to avoid the cluster threshold
20  NoClustering = cms.bool(True),
21  ExplorationWindow = cms.uint32(10),
22  DigiLabel = cms.InputTag("siStripZeroSuppression","VirginRaw"),
23  # the label for EventSummary
24  InputModuleLabel = cms.InputTag("FedChannelDigis")
25 )