Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:20:02

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 l1GtBeamModeFilter = cms.EDFilter("L1GtBeamModeFilter",
0004 
0005     # input tag for input tag for ConditionInEdm products
0006     CondInEdmInputTag = cms.InputTag("conditionsInEdm"),
0007 
0008     # input tag for the L1 GT EVM product 
0009     L1GtEvmReadoutRecordTag = cms.InputTag("gtEvmDigis"),
0010     #
0011     # vector of allowed beam modes 
0012     # default value: 11 (STABLE)
0013     AllowedBeamMode = cms.vuint32(11),
0014     
0015     # return the inverted result, to be used instead of NOT
0016     # normal result: true if filter true
0017     #                false if filter false or error (no product found)
0018     # inverted result: true if filter false
0019     #                  false if filter true or error (no product found)
0020     InvertResult = cms.bool( False )
0021 )