CMS 3D CMS Logo

/data/doxygen/doxygen-1.7.3/gen/CMSSW_4_2_8/src/DPGAnalysis/Skims/python/cscSkim_cff.py

Go to the documentation of this file.
00001 from DPGAnalysis.Skims.CSCSkim_cfi import *
00002 #set to minimum activity
00003 cscSkim.minimumSegments = 1
00004 cscSkim.minimumHitChambers = 1
00005 
00006 # this is for filtering on HLT path
00007 hltBeamHalo = cms.EDFilter("HLTHighLevel",
00008      TriggerResultsTag = cms.InputTag("TriggerResults","","HLT"),
00009      HLTPaths = cms.vstring('HLT_CSCBeamHalo','HLT_CSCBeamHaloOverlapRing1','HLT_CSCBeamHaloOverlapRing','HLT_CSCBeamHaloRing2or3'), # provide list of HLT paths (or patterns) you want
00010      eventSetupPathsKey = cms.string(''), # not empty => use read paths from AlCaRecoTriggerBitsRcd via this key
00011      andOr = cms.bool(True),             # how to deal with multiple triggers: True (OR) accept if ANY is true, False (AND) accept if ALL are true
00012      throw = cms.bool(False)    # throw exception on unknown path names
00013  )
00014 
00015 cscSkimAloneSeq = cms.Sequence(cscSkim)
00016 cscHLTSkimSeq = cms.Sequence(hltBeamHalo)
00017 cscSkimseq = cms.Sequence(hltBeamHalo+cscSkim)
00018 
00019 
00020