CMS 3D CMS Logo

ZeroBiasSelector_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 # Selects only zerobias events.
4 
5 zerobias_selector = cms.EDFilter("HLTHighLevel",
6  TriggerResultsTag = cms.InputTag("TriggerResults","","HLT"),
7  HLTPaths = cms.vstring("AlCa_LumiPixels_ZeroBias*"),
8  eventSetupPathsKey = cms.string(''),
9  andOr = cms.bool(True),
10  throw = cms.bool(False)
11  )