CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
hcaltbfilter_beam_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 hcaltbfilter_beam = cms.EDFilter("HcalTBTriggerFilter",
4  AllowLED = cms.bool(False),
5  AllowPedestalOutSpill = cms.bool(False),
6  AllowLaser = cms.bool(False),
7  AllowPedestal = cms.bool(False),
8  AllowBeam = cms.bool(True),
9  AllowPedestalInSpill = cms.bool(False),
10  hcalTBTriggerDataTag = cms.InputTag("tbunpack")
11 )
12 
13