CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
EXOHT_cff.py
Go to the documentation of this file.
1 
2 
3 import FWCore.ParameterSet.Config as cms
4 
6 exoticaHTHLT = hltHighLevel
7 #Define the HLT path to be used.
8 exoticaHTHLT.HLTPaths =['HLT_HT100U']
9 exoticaHTHLT.TriggerResultsTag = cms.InputTag("TriggerResults","","HLT8E29")
10 
11 #Define the HLT quality cut
12 
13 exoticaHLTHTFilter = cms.EDFilter("HLTSummaryFilter",
14  summary = cms.InputTag("hltTriggerSummaryAOD","","HLT8E29"),
15  member = cms.InputTag("hltJet15UHt","","HLT8E29"),
16  cut = cms.string("pt>250"),
17  minN = cms.int32(1)
18 )
19 
20 #Define the Reco quality cut
21 exoticaRecoHTFilter = cms.EDFilter("HLTGlobalSumsMET",
22  inputTag = cms.InputTag("htMetKT4"),
23  saveTag = cms.untracked.bool( True ),
24  observable = cms.string( "sumEt" ),
25  Min = cms.double(250.0),
26  Max = cms.double( -1.0 ),
27  MinN = cms.int32(1)
28 )
29 ## exoticaRecoHTFilter = cms.EDFilter("PATMETSelector",
30 ## src = cms.InputTag("htMetKT4"),
31 ## cut = cms.string("sumEt > 250.0"),
32 ## filter = cms.bool(True)
33 ## )
34 
35 
36 #Define group sequence, using HLT bits + either HLT/Reco quality cut.
37 exoticaHTHLTQualitySeq = cms.Sequence(
38  exoticaHTHLT+exoticaHLTHTFilter
39 
40 )
41 exoticaHTRecoQualitySeq = cms.Sequence(
42  exoticaHTHLT+exoticaRecoHTFilter
43 )