CMS 3D CMS Logo

dttriganalyzer_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 dttriganalyzer = cms.EDAnalyzer("DTTrigTest",
4  debug = cms.untracked.bool(False),
5  tTrigModeConfig = cms.PSet(
6  debug = cms.untracked.bool(False),
7  kFactor = cms.double(-2.0),
8 
9  vPropWire = cms.double(24.4),
10  tofCorrType = cms.int32(1),
11  tTrig = cms.double(500.0)
12  ),
13  # DT digis input tag
14  digiTag = cms.InputTag("muonDTDigis"),
15  # Synchronizer related stuff
16  tTrigMode = cms.string('DTTTrigSyncTOFCorr'),
17  # Output filename
18  outputFileName = cms.untracked.string('DTTPG_test.root')
19 )
20 
21 
22