CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
l1GtBeamModeFilter_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 l1GtBeamModeFilter = cms.EDFilter("L1GtBeamModeFilter",
4 
5  # input tag for input tag for ConditionInEdm products
6  CondInEdmInputTag = cms.InputTag("conditionsInEdm"),
7 
8  # input tag for the L1 GT EVM product
9  L1GtEvmReadoutRecordTag = cms.InputTag("gtEvmDigis"),
10  #
11  # vector of allowed beam modes
12  # default value: 11 (STABLE)
13  AllowedBeamMode = cms.vuint32(11),
14 
15  # return the inverted result, to be used instead of NOT
16  # normal result: true if filter true
17  # false if filter false or error (no product found)
18  # inverted result: true if filter false
19  # false if filter true or error (no product found)
20  InvertResult = cms.bool( False )
21 )