Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

New paths in Higgs HLTOffline validation #8430

Merged
merged 3 commits into from Mar 27, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 5 additions & 0 deletions HLTriggerOffline/Higgs/python/hltHiggsPostProcessors_cff.py
Expand Up @@ -172,6 +172,10 @@ def get_reco_strings(strings):
hltHiggsPostTTHbbej.subDirs = ['HLT/Higgs/TTHbbej']
hltHiggsPostTTHbbej.efficiencyProfile = efficiency_strings_TTHbbej

hltHiggsPostAHttH = hltHiggsPostProcessor.clone()
hltHiggsPostAHttH.subDirs = ['HLT/Higgs/AHttH']
hltHiggsPostAHttH.efficiencyProfile = efficiency_strings

#Specific plots for VBFHbb_2btag
#dEtaqq, mqq, dPhibb, CVS1, maxCSV_jets, maxCSV_E, MET, pt1, pt2, pt3, pt4
NminOneCutNames = ("EffdEtaqq", "Effmqq", "EffdPhibb", "EffCSV1", "EffCSV2", "EffCSV3", "EffmaxCSV", "", "", "TurnOn1", "TurnOn2", "TurnOn3", "TurnOn4")
Expand Down Expand Up @@ -290,6 +294,7 @@ def get_reco_strings(strings):
hltHiggsPostHtaunu+
hltHiggsPostH2tau+
hltHiggsPostTTHbbej+
hltHiggsPostAHttH+
hltHiggsPostVBFHbb_0btag+
hltHiggsPostVBFHbb_1btag+
hltHiggsPostVBFHbb_2btag+
Expand Down
15 changes: 14 additions & 1 deletion HLTriggerOffline/Higgs/python/hltHiggsValidator_cfi.py
Expand Up @@ -4,7 +4,7 @@
hltHiggsValidator = cms.EDAnalyzer("HLTHiggsValidator",

hltProcessName = cms.string("HLT"),
analysis = cms.vstring("HWW", "HZZ", "Hgg", "Htaunu", "H2tau", "VBFHbb_0btag", "VBFHbb_1btag", "VBFHbb_2btag", "ZnnHbb","DoubleHinTaus","HiggsDalitz","X4b","TTHbbej"),
analysis = cms.vstring("HWW", "HZZ", "Hgg", "Htaunu", "H2tau", "VBFHbb_0btag", "VBFHbb_1btag", "VBFHbb_2btag", "ZnnHbb","DoubleHinTaus","HiggsDalitz","X4b","TTHbbej","AHttH"),
histDirectory = cms.string("HLT/Higgs"),

# -- The instance name of the reco::GenParticles collection
Expand Down Expand Up @@ -317,4 +317,17 @@
HtJetPtMin = cms.untracked.double(30),
HtJetEtaMax = cms.untracked.double(3.0),
),
AHttH = cms.PSet(
hltPathsToCheck = cms.vstring(
"HLT_PFHT450_SixJet40_PFBTagCSV_v",
"HLT_PFHT400_SixJet30_BTagCSV0p5_2PFBTagCSV_v",
"HLT_PFHT450_SixJet40_v",
"HLT_PFHT400_SixJet30_v",
),
#recElecLabel = cms.string("gedGsfElectrons"),
recJetLabel = cms.string("ak4PFJetsCHS"),
jetTagLabel = cms.string("pfCombinedSecondaryVertexBJetTags"),
## -- Analysis specific cuts
minCandidates = cms.uint32(6),
),
)