Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:26:45

0001 import FWCore.ParameterSet.Config as cms
0002  
0003 ecalBadCalibFilter = cms.EDFilter(
0004   "EcalBadCalibFilter",
0005  
0006   # use this if using AOD:
0007   # the Ecal rechit collection found in AOD
0008   EcalRecHitSource = cms.InputTag('reducedEcalRecHitsEE'),
0009  
0010  
0011   # use this if using MINIAOD:
0012   # the Ecal rechit collection found in MINIAOD
0013   # EcalRecHitSource = cms.InputTag('reducedEgamma','reducedEERecHits'),
0014  
0015  
0016  
0017   # minimum rechit et to flag as bad: 
0018   ecalMinEt        = cms.double(50.),
0019   # DetId of bad channel:
0020   baddetEcal       = cms.vuint32(),
0021 
0022   taggingMode = cms.bool(False),
0023   #prints debug info for each channel if set to true
0024   debug = cms.bool(False),
0025 )
0026 
0027 from Configuration.Eras.Modifier_run2_common_cff import run2_common
0028 run2_common.toModify(ecalBadCalibFilter, baddetEcal = [872439604,872422825,872420274,872423218,
0029                                                        872423215,872416066,872435036,872439336,
0030                                                        872420273,872436907,872420147,872439731,
0031                                                        872436657,872420397,872439732,872439339,
0032                                                        872439603,872422436,872439861,872437051,
0033                                                        872437052,872420649,872421950,872437185,
0034                                                        872422564,872421566,872421695,872421955,
0035                                                        872421567,872437184,872421951,872421694,
0036                                                        872437056,872437057,872437313])