CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
PDWG_EXOHPTE_cff.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 #Define the HLT path to be used.
5 
6 exoticaHPTEHLT = hlt.hltHighLevel.clone()
7 exoticaHPTEHLT.TriggerResultsTag = cms.InputTag("TriggerResults","","HLT")
8 exoticaHPTEHLT.HLTPaths = ['HLT_DoubleEle33_v*', 'HLT_DoubleEle33_CaloIdL_v*', 'HLT_DoubleEle33_CaloIdT_v*', 'HLT_DoubleEle45_CaloIdL_v*', 'HLT_DoubleEle33_CaloIdL_CaloIsoT_v*', 'HLT_DoublePhoton33_*' , 'HLT_Photon225_NoHE_v*','HLT_Photon200_NoHE_v*','HLT_Photon26_Photon18_v*','HLT_Photon125_v*','HLT_Photon135_v*']
9 exoticaHPTEHLT.throw = cms.bool( False )
10 
11 
12 #Define the Reco quality cut
13 exoticaRecoDiHPTEFilter = cms.EDFilter(
14  "PtMinGsfElectronCountFilter",
15  src = cms.InputTag("gedGsfElectrons"),
16  ptMin = cms.double(30.0),
17  minNumber = cms.uint32(2)
18  )
19 
20 #
21 exoDiHPTESequence = cms.Sequence(
22  exoticaHPTEHLT+exoticaRecoDiHPTEFilter
23 
24 
25 )
26