Go to the documentation of this file.00001 import FWCore.ParameterSet.Config as cms
00002
00003 DTNoiseCalibration = cms.EDAnalyzer("DTNoiseCalibration",
00004
00005 digiLabel = cms.InputTag('muonDTDigis'),
00006
00007 rootFileName = cms.untracked.string('dtNoiseCalib.root'),
00008
00009 useTimeWindow = cms.bool(True),
00010
00011 triggerWidth = cms.double(2000),
00012
00013
00014 timeWindowOffset = cms.int32(100),
00015
00016 maximumNoiseRate = cms.double(2000),
00017
00018 useAbsoluteRate = cms.bool(False),
00019
00020 cellsWithHisto = cms.vstring(
00021 '-1 1 3 1 2 48',
00022 '0 1 7 1 1 8',
00023 '0 1 8 2 3 56',
00024 '2 1 8 2 2 56',
00025 '2 1 8 2 2 57',
00026 '2 1 12 1 2 3',
00027 '2 1 12 1 3 2',
00028 '0 2 2 1 2 3',
00029 '-2 3 3 1 2 2',
00030 '1 3 3 1 4 27',
00031 '1 3 3 1 4 28',
00032 '1 3 3 1 4 29',
00033 '1 3 3 1 4 30'
00034 )
00035 )