Line Code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
import FWCore.ParameterSet.Config as cms
from DQMServices.Core.DQMEDHarvester import DQMEDHarvester

ECALpedestalPCLHarvester = DQMEDHarvester('ECALpedestalPCLHarvester',
                                          MinEntries = cms.int32(100), #skip channel if stat is low
                                          ChannelStatusToExclude = cms.vstring(), # db statuses to exclude
                                          checkAnomalies  = cms.bool(False), # whether or not to avoid creating sqlite file in case of many changed pedestals
                                          nSigma          = cms.double(5.0), #  threshold in sigmas to define a pedestal as anomally changed
                                          thresholdAnomalies = cms.double(0.1),# threshold (fraction of changed pedestals) to avoid creation of sqlite file 
                                          dqmDir      = cms.string('AlCaReco/EcalPedestalsPCL'),
                                          labelG6G1   = cms.string('HLT'), #use the HLT tag as source for G6 and G1 pedestals
                                          threshDiffEB= cms.double(5.0), # if pedestal has changed more then this wrt old value, keep old value. Unit = ADC count
                                          threshDiffEE= cms.double(8.0),
                                          threshChannelsAnalyzed = cms.double(0.3), # threshold for minimum percentage of channels analized to produce DQM plots

                                          )