CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_2_9/src/DQM/SiStripCommissioningSources/python/SiStripFineDelayHit_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 # module for fine delay analysis, stored in fake digis to comply with the digi input format of the Commissioning Source
00004 SiStripFineDelayHit = cms.EDProducer("SiStripFineDelayHit",
00005     # general parameters
00006     cosmic = cms.bool(True),
00007     MagneticField = cms.bool(False),
00008     #string mode = "DelayScan"
00009     ClustersLabel = cms.InputTag("siStripClusters"),
00010     NoTracking = cms.bool(False),
00011     # with tracks
00012     TrajInEvent = cms.bool(True),
00013     TTRHBuilder = cms.string('WithTrackAngle'),
00014     MaxTrackAngle = cms.double(45.0),
00015     MinTrackMomentum = cms.double(0.0),
00016     MaxClusterDistance = cms.double(2.0),
00017     TracksLabel = cms.InputTag("cosmictrackfinder"),
00018     SeedsLabel = cms.InputTag("cosmicseedfinder"),
00019     # to avoid the cluster threshold
00020     NoClustering = cms.bool(True),
00021     ExplorationWindow = cms.uint32(10),
00022     DigiLabel = cms.InputTag("siStripZeroSuppression","VirginRaw"),
00023     # the label for EventSummary
00024     InputModuleLabel = cms.InputTag("FedChannelDigis")
00025 )