CMS 3D CMS Logo

ecalPedestalPCLHarvester_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 ECALpedestalPCLHarvester = cms.EDAnalyzer('ECALpedestalPCLHarvester',
3  MinEntries = cms.int32(100), #skip channel if stat is low
4  ChannelStatusToExclude = cms.vstring(), # db statuses to exclude
5  checkAnomalies = cms.bool(False), # whether or not to avoid creating sqlite file in case of many changed pedestals
6  nSigma = cms.double(5.0), # threshold in sigmas to define a pedestal as anomally changed
7  thresholdAnomalies = cms.double(0.1),# threshold (fraction of changed pedestals) to avoid creation of sqlite file
8  dqmDir = cms.string('AlCaReco/EcalPedestalsPCL')
9  )