Skip to content

Commit

Permalink
Merge pull request #9774 from safarzad/myPath
Browse files Browse the repository at this point in the history
add no noise clean path to SUSYBSM_inclusiveMET_cff.py  & SUSYBSM_postProcessor_cff.py & SusyExoValidation_cff.py
  • Loading branch information
cmsbuild committed Jun 25, 2015
2 parents 82749a0 + 571c9cb commit 8565f75
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 0 deletions.
23 changes: 23 additions & 0 deletions HLTriggerOffline/SUSYBSM/python/SUSYBSM_inclusiveMET_cff.py
Expand Up @@ -13,6 +13,21 @@
EtaThrJet = cms.untracked.double(3.0)
)

SUSY_HLT_InclusiveMET_NoNoiseCleaning = cms.EDAnalyzer("SUSY_HLT_InclusiveHT",
trigSummary = cms.InputTag("hltTriggerSummaryAOD"),
pfMETCollection = cms.InputTag("pfMet"),
pfJetCollection = cms.InputTag("ak4PFJetsCHS"),
caloJetCollection = cms.InputTag("ak4CaloJets"),
TriggerResults = cms.InputTag('TriggerResults','','HLT'),
TriggerPath = cms.string('HLT_PFMET170_v'),
TriggerPathAuxiliaryForHadronic = cms.string('HLT_IsoMu24_eta2p1_IterTrk02_v'),
TriggerFilter = cms.InputTag('hltPFMET170Filter', '', 'HLT'), #the last filter in the path
PtThrJet = cms.untracked.double(40.0),
EtaThrJet = cms.untracked.double(3.0)
)



SUSY_HLT_InclusiveMET_FASTSIM = cms.EDAnalyzer("SUSY_HLT_InclusiveHT",
trigSummary = cms.InputTag("hltTriggerSummaryAOD"),
pfMETCollection = cms.InputTag("pfMet"),
Expand All @@ -35,6 +50,14 @@
resolution = cms.vstring("")
)

SUSY_HLT_InclusiveMET_NoNoiseCleaning_POSTPROCESSING = cms.EDAnalyzer("DQMGenericClient",
subDirs = cms.untracked.vstring("HLT/SUSYBSM/HLT_PFMET170"),
efficiency = cms.vstring(
"pfMetTurnOn_eff 'Efficiency vs PFMET' pfMetTurnOn_num pfMetTurnOn_den",
"pfHTTurnOn_eff 'Efficiency vs PFHT' pfHTTurnOn_num pfHTTurnOn_den"
),
resolution = cms.vstring("")
)
SUSY_HLT_InclusiveMET_FASTSIM_POSTPROCESSING = cms.EDAnalyzer("DQMGenericClient",
subDirs = cms.untracked.vstring("HLT/SUSYBSM/HLT_PFMET170_NoiseCleaned"),
efficiency = cms.vstring(
Expand Down
Expand Up @@ -38,6 +38,7 @@
SusyExoPostVal = cms.Sequence(SUSY_HLT_HT_MET_POSTPROCESSING +
SUSY_HLT_InclusiveHT_POSTPROCESSING +
SUSY_HLT_InclusiveMET_POSTPROCESSING +
SUSY_HLT_InclusiveMET_NoNoiseCleaning_POSTPROCESSING +
SUSY_HLT_MET_BTAG_POSTPROCESSING +
SUSY_HLT_MET_MUON_POSTPROCESSING +
SUSY_HLT_InclusiveHT_aux200_POSTPROCESSING +
Expand Down
1 change: 1 addition & 0 deletions HLTriggerOffline/SUSYBSM/python/SusyExoValidation_cff.py
Expand Up @@ -38,6 +38,7 @@
HLTSusyExoValSeq = cms.Sequence(SUSY_HLT_HT_MET +
SUSY_HLT_InclusiveHT +
SUSY_HLT_InclusiveMET +
SUSY_HLT_InclusiveMET_NoNoiseCleaning +
SUSY_HLT_MET_BTAG +
SUSY_HLT_MET_MUON +
SUSY_HLT_InclusiveHT_aux200 +
Expand Down

0 comments on commit 8565f75

Please sign in to comment.