CMS 3D CMS Logo

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