Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:27:58

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 hcaltbfilter_beam = cms.EDFilter("HcalTBTriggerFilter",
0004     AllowLED = cms.bool(False),
0005     AllowPedestalOutSpill = cms.bool(False),
0006     AllowLaser = cms.bool(False),
0007     AllowPedestal = cms.bool(False),
0008     AllowBeam = cms.bool(True),
0009     AllowPedestalInSpill = cms.bool(False),
0010     hcalTBTriggerDataTag = cms.InputTag("tbunpack")
0011 )
0012 
0013