CMS 3D CMS Logo

/data/doxygen/doxygen-1.7.3/gen/CMSSW_4_2_8/src/SUSYBSMAnalysis/Skimming/python/EXOMu_cff.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 from HLTrigger.HLTfilters.hltHighLevel_cfi import *
00004 exoticaMuHLT = hltHighLevel
00005 #Define the HLT path to be used.
00006 #exoticaMuHLT.HLTPaths =['HLT_L1MuOpen']
00007 exoticaMuHLT.TriggerResultsTag = cms.InputTag("TriggerResults","","HLT")
00008 
00009 #Define the HLT quality cut 
00010 exoticaHLTMuonFilter = cms.EDFilter("HLTSummaryFilter",
00011     summary = cms.InputTag("hltTriggerSummaryAOD","","HLT"), # trigger summary
00012     member  = cms.InputTag("hltL2MuonCandidates","","HLT"),      # filter or collection                                                                 
00013     cut     = cms.string("pt>20"),                     # cut on trigger object
00014     minN    = cms.int32(1)                  # min. # of passing objects needed
00015  )
00016                                
00017 
00018 #Define the Reco quality cut
00019 exoticaRecoMuonFilter = cms.EDFilter("MuonRefSelector",
00020     src = cms.InputTag("muons"),
00021     cut = cms.string('pt > 15.0'),
00022     filter = cms.bool(True)            
00023                                       
00024 )
00025 
00026 #Define group sequence, using HLT/Reco quality cut. 
00027 exoticaMuHLTQualitySeq = cms.Sequence(
00028         exoticaMuHLT+exoticaHLTMuonFilter
00029 )
00030 exoticaMuRecoQualitySeq = cms.Sequence(
00031     exoticaMuHLT+exoticaRecoMuonFilter
00032 )
00033