CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_3_9_patch3/src/SUSYBSMAnalysis/Skimming/python/EXODiPho_cff.py

Go to the documentation of this file.
00001 
00002 import FWCore.ParameterSet.Config as cms
00003 
00004 from HLTrigger.HLTfilters.hltHighLevel_cfi import *
00005 exoticaDiPhoHLT = hltHighLevel
00006 #Define the HLT path to be used.
00007 exoticaDiPhoHLT.HLTPaths =['HLT_DoublePhoton10_L1R']
00008 exoticaDiPhoHLT.TriggerResultsTag = cms.InputTag("TriggerResults","","HLT8E29")
00009 #Define the HLT quality cut 
00010 exoticaHLTDiPhoFilter = cms.EDFilter("HLTSummaryFilter",
00011     summary = cms.InputTag("hltTriggerSummaryAOD","","HLT8E29"), # trigger summary
00012     member  = cms.InputTag("hltL1NonIsoRecoEcalCandidate","","HLT8E29"),      # filter or collection
00013     cut     = cms.string("pt>20"),                     # cut on trigger object
00014     minN    = cms.int32(2)                  # min. # of passing objects needed
00015  )
00016                                
00017 #Define the Reco quality cut
00018 exoticaRecoDiPhoFilter = cms.EDFilter("EtMinPhotonCountFilter",
00019     src = cms.InputTag("photons"),
00020     etMin   = cms.double(20.),                    
00021     minNumber = cms.uint32(2)                                                                      
00022 )
00023 
00024 #Define group sequence, using HLT/Reco quality cut. 
00025 exoticaDiPhoHLTQualitySeq = cms.Sequence(
00026         exoticaDiPhoHLT+exoticaHLTDiPhoFilter
00027 )
00028 exoticaDiPhoRecoQualitySeq = cms.Sequence(
00029     exoticaDiPhoHLT+exoticaRecoDiPhoFilter
00030 )
00031 
00032