CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_4_1_8_patch9/src/CalibMuon/DTCalibration/python/DTTTrigCalibration_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 
00004 ttrigcalib = cms.EDAnalyzer("DTTTrigCalibration",
00005                           # Switch on/off the check of noisy channels
00006                           checkNoisyChannels = cms.untracked.bool(True),
00007                           # Module for t0 subtraction
00008                           tTrigMode = cms.untracked.string('DTTTrigSyncT0Only'),
00009                           # Switch on/off the subtraction of t0 from pulses
00010                           doSubtractT0 = cms.untracked.bool(True),
00011                           # Max number of digi per layer to reject a chamber
00012                           maxDigiPerLayer = cms.untracked.int32(10),
00013                           # Label to retrieve DT digis from the event
00014                           digiLabel = cms.untracked.string('muonDTDigis'),
00015                           # Name of the ROOT file which will contain the time boxes
00016                           rootFileName = cms.untracked.string('DTTimeBoxes.root'),
00017                           # Switch on/off the DB writing
00018                           fitAndWrite = cms.untracked.bool(True),
00019                           debug = cms.untracked.bool(False),
00020                           # Parameter set for t0 subtraction module
00021                           tTrigModeConfig = cms.untracked.PSet(debug = cms.untracked.bool(False)),
00022                           # Tbox rising edge fit parameter
00023                           sigmaTTrigFit = cms.untracked.double(5.0),
00024                           # the kfactor to be uploaded in the ttrig DB
00025                           kFactor = cms.untracked.double(-0.7)
00026                           )