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  labelG6G1 = cms.string('HLT'), #use the HLT tag as source for G6 and G1 pedestals
12  threshDiffEB= cms.double(5.0), # if pedestal has changed more then this wrt old value, keep old value. Unit = ADC count
13  threshDiffEE= cms.double(8.0),
14  threshChannelsAnalyzed = cms.double(0.3), # threshold for minimum percentage of channels analized to produce DQM plots
15 
16  )