CMS 3D CMS Logo

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