CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_3_9_patch3/src/DQMOffline/Trigger/python/TopElectronHLTOfflineSource_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 topElectronHLTOffDQMSource = cms.EDFilter("TopElectronHLTOfflineSource",
00004         DQMDirName=cms.string("HLT/TopEgOffline"),
00005 
00006         hltTag = cms.string("HLT"),
00007         superTriggerNames = cms.vstring(["HLT_L1Jet6U", "HLT_Jet15U", "HLT_QuadJet15U"]),
00008         electronTriggerNames = cms.vstring(["HLT_EgammaSuperClusterOnly_L1R","HLT_Ele10_LW_L1R"]),
00009         triggerResultsLabel = cms.InputTag("TriggerResults","","HLT"),
00010         triggerSummaryLabel = cms.InputTag("hltTriggerSummaryAOD","","HLT"),
00011         electronCollection = cms.InputTag("gsfElectrons"),
00012         primaryVertexCollection = cms.InputTag("offlinePrimaryVertices"),
00013         triggerJetFilterLabel =  cms.InputTag("hltL1sQuadJet15U","","HLT"),
00014         triggerElectronFilterLabel =  cms.InputTag("hltL1sL1SingleEG1", "", "HLT"),
00015         beamSpot = cms.InputTag('offlineBeamSpot'),
00016         electronIdNames = cms.vstring(["eidRobustLoose"]),
00017 
00018         electronMinEt = cms.double(0.),
00019         electronMaxEta = cms.double(2.5),
00020         excludeCloseJets = cms.bool(True),
00021         requireTriggerMatch = cms.bool(False),
00022 
00023         addExtraId = cms.bool(True),
00024 
00025         # extra ID cuts - take optimised cut values (90% signal efficiency, 5% BG efficiency, TMVA method 'TMVA MC cuts')
00026         extraIdCutsSigmaEta = cms.double(5.3602221377786943e-03),
00027         extraIdCutsSigmaPhi = cms.double(6.4621652755048238e-04),
00028         extraIdCutsDzPV = cms.double(1.9588114237784421e-02)         
00029 )
00030 
00031