CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
EXOMu_cff.py
Go to the documentation of this file.
2 
4 exoticaMuHLT = hltHighLevel
5 #Define the HLT path to be used.
6 #exoticaMuHLT.HLTPaths =['HLT_L1MuOpen']
7 exoticaMuHLT.TriggerResultsTag = cms.InputTag("TriggerResults","","HLT")
8 
9 #Define the HLT quality cut
10 exoticaHLTMuonFilter = cms.EDFilter("HLTSummaryFilter",
11  summary = cms.InputTag("hltTriggerSummaryAOD","","HLT"), # trigger summary
12  member = cms.InputTag("hltL2MuonCandidates","","HLT"), # filter or collection
13  cut = cms.string("pt>20"), # cut on trigger object
14  minN = cms.int32(1) # min. # of passing objects needed
15  )
16 
17 
18 #Define the Reco quality cut
19 exoticaRecoMuonFilter = cms.EDFilter("MuonRefSelector",
20  src = cms.InputTag("muons"),
21  cut = cms.string('pt > 15.0'),
22  filter = cms.bool(True)
23 
24 )
25 
26 #Define group sequence, using HLT/Reco quality cut.
27 exoticaMuHLTQualitySeq = cms.Sequence(
28  exoticaMuHLT+exoticaHLTMuonFilter
29 )
30 exoticaMuRecoQualitySeq = cms.Sequence(
31  exoticaMuHLT+exoticaRecoMuonFilter
32 )
33