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