CMS 3D CMS Logo

/afs/cern.ch/work/a/aaltunda/public/www/CMSSW_5_3_14/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      saveTags = cms.bool(False)
00014  )
00015 
00016 cscSkimAloneSeq = cms.Sequence(cscSkim)
00017 cscHLTSkimSeq = cms.Sequence(hltBeamHalo)
00018 cscSkimseq = cms.Sequence(hltBeamHalo+cscSkim)
00019 
00020 
00021