Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:01:10

0001 #
0002 # This is a replacement for the original HBHENoiseFilter configuration.
0003 # See https://twiki.cern.ch/twiki/bin/viewauth/CMS/HCALNoiseFilterRecipe.
0004 # This replacement relies on having the HBHENoiseFilterResult in the
0005 # event record.
0006 #
0007 import FWCore.ParameterSet.Config as cms
0008 
0009 # Filter on the standard HCAL noise decision
0010 HBHENoiseFilter = cms.EDFilter(
0011     'BooleanFlagFilter',
0012     inputLabel = cms.InputTag('HBHENoiseFilterResultProducer','HBHENoiseFilterResult'),
0013     reverseDecision = cms.bool(False)
0014 )
0015 
0016 # Filter on the standard HCAL noise decision (isolation)
0017 HBHENoiseIsoFilter = cms.EDFilter(
0018     'BooleanFlagFilter',
0019     inputLabel = cms.InputTag('HBHENoiseFilterResultProducer','HBHEIsoNoiseFilterResult'),
0020     reverseDecision = cms.bool(False)
0021 )