Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:06:46

0001 from DPGAnalysis.Skims.CSCSkim_cfi import *
0002 #set to minimum activity
0003 cscSkim.minimumSegments = 1
0004 cscSkim.minimumHitChambers = 1
0005 
0006 # this is for filtering on HLT path
0007 hltBeamHalo = cms.EDFilter("HLTHighLevel",
0008      TriggerResultsTag = cms.InputTag("TriggerResults","","HLT"),
0009      HLTPaths = cms.vstring('HLT_CSCBeamHalo','HLT_CSCBeamHaloOverlapRing1','HLT_CSCBeamHaloOverlapRing','HLT_CSCBeamHaloRing2or3'), # provide list of HLT paths (or patterns) you want
0010      eventSetupPathsKey = cms.string(''), # not empty => use read paths from AlCaRecoTriggerBitsRcd via this key
0011      andOr = cms.bool(True),             # how to deal with multiple triggers: True (OR) accept if ANY is true, False (AND) accept if ALL are true
0012      throw = cms.bool(False),    # throw exception on unknown path names
0013      saveTags = cms.bool(False)
0014  )
0015 
0016 cscSkimAloneSeq = cms.Sequence(cscSkim)
0017 cscHLTSkimSeq = cms.Sequence(hltBeamHalo)
0018 cscSkimseq = cms.Sequence(hltBeamHalo+cscSkim)
0019 
0020 
0021