CMS 3D CMS Logo

ecalPedestalPCLworker_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 from DQMServices.Core.DQMEDAnalyzer import DQMEDAnalyzer
4 ecalpedestalPCL =DQMEDAnalyzer('ECALpedestalPCLworker',
5  BarrelDigis=cms.InputTag('ecalDigis','ebDigis'),
6  EndcapDigis=cms.InputTag('ecalDigis','eeDigis'),
7  tcdsRecord =cms.InputTag('tcdsDigis','tcdsRecord'),
8  requireStableBeam = cms.bool(True),
9  pedestalSamples=cms.uint32(2), # number of presamples to be used for pedestal determination
10  checkSignal = cms.bool(False), # whether or not to exclude digis containing a signal
11  sThresholdEB = cms.uint32(10), # threshold to define a digi as containing signal
12  sThresholdEE = cms.uint32(15),
13  dqmDir = cms.string('AlCaReco/EcalPedestalsPCL'),
14  dynamicBooking = cms.bool(True), # use old pedestal to book histograms (central bin)
15  fixedBookingCenterBin = cms.int32(200), # if dynamicBooking = false, use this as center bin
16  nBins = cms.int32(40) # number of bins per histogram
17 )