Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2023-10-25 10:01:01

0001 from __future__ import print_function
0002 from __future__ import absolute_import
0003 from RecoMET.METFilters.hcallaserevent_cfi import * # from fillDescriptions
0004 
0005 try:
0006     from .hcalLaserBadEvents_2011 import badEvents
0007 except:
0008     print("<hcalLaserEventFilter_cfi> WARNING!  No explicit list 'badEvents.py' containing bad HCAL laser run/events was found!")
0009     badEvents=[]
0010 
0011 hcalLaserEventFilter = hcallaserevent.clone(BadRunEventNumbers=cms.vuint32(badEvents) )
0012 
0013 from Configuration.Eras.Modifier_run2_HCAL_2018_cff import run2_HCAL_2018
0014 run2_HCAL_2018.toModify( hcalLaserEventFilter,
0015                            vetoByHBHEOccupancy=False,
0016                            minOccupiedHBHE=8000,
0017                        )
0018