CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
cscSkim_cff.py
Go to the documentation of this file.
2 #set to minimum activity
3 cscSkim.minimumSegments = 1
4 cscSkim.minimumHitChambers = 1
5 
6 # this is for filtering on HLT path
7 hltBeamHalo = cms.EDFilter("HLTHighLevel",
8  TriggerResultsTag = cms.InputTag("TriggerResults","","HLT"),
9  HLTPaths = cms.vstring('HLT_CSCBeamHalo','HLT_CSCBeamHaloOverlapRing1','HLT_CSCBeamHaloOverlapRing','HLT_CSCBeamHaloRing2or3'), # provide list of HLT paths (or patterns) you want
10  eventSetupPathsKey = cms.string(''), # not empty => use read paths from AlCaRecoTriggerBitsRcd via this key
11  andOr = cms.bool(True), # how to deal with multiple triggers: True (OR) accept if ANY is true, False (AND) accept if ALL are true
12  throw = cms.bool(False), # throw exception on unknown path names
13  saveTags = cms.bool(False)
14  )
15 
16 cscSkimAloneSeq = cms.Sequence(cscSkim)
17 cscHLTSkimSeq = cms.Sequence(hltBeamHalo)
18 cscSkimseq = cms.Sequence(hltBeamHalo+cscSkim)
19 
20 
21