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

Fix b tag bug in top hlt dqm offline and validation codes #3803

Closed
wants to merge 11 commits into from
40 changes: 20 additions & 20 deletions DQMOffline/Trigger/python/singletopHLTEventDQM_cfi.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@
## sub-directory to write the monitor histograms to
## [mandatory] : should not be changed w/o explicit
## communication to TopCom!
directory = cms.string("HLTriggerOffline/SingleTop/SingleMuon/"),
directory = cms.string("HLT/TopHLTOffline/SingleTop/SingleMuon/"),
## [mandatory]
sources = cms.PSet(
muons = cms.InputTag("muons"),
elecs = cms.InputTag("gedGsfElectrons"),
jets = cms.InputTag("PFJetsFilter"),
jets = cms.InputTag("ak5PFJetsCHS"),
mets = cms.VInputTag("met", "tcMet", "pfMet"),
pvs = cms.InputTag("offlinePrimaryVertices")

Expand All @@ -43,23 +43,23 @@
jetExtras = cms.PSet(
## when omitted monitor plots for pt will be filled from uncorrected
## jets
jetCorrector = cms.string("ak4PFL2L3"),
#jetCorrector = cms.string("ak4PFCHSL1L2L3"),
## when omitted no extra selection will be applied on jets before
## filling the monitor histograms; if jetCorrector is present the
## selection will be applied to corrected jets
select = cms.string("pt>40 & abs(eta)<5.0"),
## when omitted monitor histograms for b-tagging will not be filled
jetBTaggers = cms.PSet(
trackCountingEff = cms.PSet(
label = cms.InputTag("pfJetProbabilityBJetTags" ),
label = cms.InputTag("jetProbabilityBJetTags" ),
workingPoint = cms.double(0.275)
),
trackCountingPur = cms.PSet(
label = cms.InputTag("pfTrackCountingHighPurBJetTags" ),
label = cms.InputTag("trackCountingHighPurBJetTags" ),
workingPoint = cms.double(3.41)
),
secondaryVertex = cms.PSet(
label = cms.InputTag("pfCombinedSecondaryVertexBJetTags"),
label = cms.InputTag("combinedSecondaryVertexBJetTags"),
workingPoint = cms.double(0.679)
)
),
Expand Down Expand Up @@ -120,15 +120,15 @@
),
#cms.PSet(
# label = cms.string("jets/pf:step2"),
# src = cms.InputTag("PFJetsFilter"),
# jetCorrector = cms.string("ak4PFL2L3"),
# src = cms.InputTag("ak5PFJetsCHS"),
# jetCorrector = cms.string("ak4PFL1L2L3"),
# select = cms.string("pt>40 & abs(eta)<5.0"),
# min = cms.int32(1),
#),
cms.PSet(
label = cms.string("jets/pf:step2"),
src = cms.InputTag("PFJetsFilter"),
jetCorrector = cms.string("ak4PFL2L3"),
src = cms.InputTag("ak5PFJetsCHS"),
#jetCorrector = cms.string("ak4PFCHSL1L2L3"),
select = cms.string("pt>40 & abs(eta)<5.0"),
min = cms.int32(2),
),
Expand All @@ -146,12 +146,12 @@
## sub-directory to write the monitor histograms to
## [mandatory] : should not be changed w/o explicit
## communication to TopCom!
directory = cms.string("HLTriggerOffline/SingleTop/SingleElectron/"),
directory = cms.string("HLT/TopHLTOffline/SingleTop/SingleElectron/"),
## [mandatory]
sources = cms.PSet(
muons = cms.InputTag("muons"),
elecs = cms.InputTag("gedGsfElectrons"),
jets = cms.InputTag("PFJetsFilter"),
jets = cms.InputTag("ak5PFJetsCHS"),
mets = cms.VInputTag("met", "tcMet", "pfMet"),
pvs = cms.InputTag("offlinePrimaryVertices")

Expand Down Expand Up @@ -180,23 +180,23 @@
jetExtras = cms.PSet(
## when omitted monitor plots for pt will be filled from uncorrected
## jets
jetCorrector = cms.string("ak4PFL2L3"),
#jetCorrector = cms.string("ak4PFCHSL1L2L3"),
## when omitted no extra selection will be applied on jets before
## filling the monitor histograms; if jetCorrector is present the
## selection will be applied to corrected jets
select = cms.string("pt>40 & abs(eta)<5.0"),
## when omitted monitor histograms for b-tagging will not be filled
jetBTaggers = cms.PSet(
trackCountingEff = cms.PSet(
label = cms.InputTag("pfJetProbabilityBJetTags" ),
label = cms.InputTag("jetProbabilityBJetTags" ),
workingPoint = cms.double(0.275)
),
trackCountingPur = cms.PSet(
label = cms.InputTag("pfTrackCountingHighPurBJetTags" ),
label = cms.InputTag("trackCountingHighPurBJetTags" ),
workingPoint = cms.double(3.41)
),
secondaryVertex = cms.PSet(
label = cms.InputTag("pfCombinedSecondaryVertexBJetTags"),
label = cms.InputTag("combinedSecondaryVertexBJetTags"),
workingPoint = cms.double(0.679)
)
),
Expand Down Expand Up @@ -258,15 +258,15 @@
),
#cms.PSet(
# label = cms.string("jets/pf:step2"),
# src = cms.InputTag("PFJetsFilter"),
# jetCorrector = cms.string("ak4PFL2L3"),
# src = cms.InputTag("ak5PFJetsCHS"),
# jetCorrector = cms.string("ak4PFCHSL1L2L3"),
# select = cms.string("pt>40 & abs(eta)<5.0"),
# min = cms.int32(1),
#),
cms.PSet(
label = cms.string("jets/pf:step2"),
src = cms.InputTag("PFJetsFilter"),
jetCorrector = cms.string("ak4PFL2L3"),
src = cms.InputTag("ak5PFJetsCHS"),
#jetCorrector = cms.string("ak4PFCHSL1L2L3"),
select = cms.string("pt>40 & abs(eta)<5.0"),
min = cms.int32(2),
),
Expand Down
40 changes: 20 additions & 20 deletions DQMOffline/Trigger/python/topDiLeptonHLTEventDQM_cfi.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@
## sub-directory to write the monitor histograms to
## [mandatory] : should not be changed w/o explicit
## communication to TopCom!
directory = cms.string("HLTriggerOffline/Top/DiLeptonic/"),
directory = cms.string("HLT/TopHLTOffline/Top/DiLeptonic/"),

## [mandatory]
sources = cms.PSet(
muons = cms.InputTag("muons"),
elecs = cms.InputTag("gedGsfElectrons"),
jets = cms.InputTag("PFJetsFilter"),
jets = cms.InputTag("ak4PFJetsCHS"),
mets = cms.VInputTag("met", "tcMet", "pfMet")
),
## [optional] : when omitted all monitoring plots for electrons
Expand Down Expand Up @@ -47,7 +47,7 @@
jetExtras = cms.PSet(
## when omitted monitor plots for pt will be filled from uncorrected
## jets
jetCorrector = cms.string("ak4PFL2L3"),
#jetCorrector = cms.string("ak4PFCHSL1L2L3"),
## when omitted no extra selection will be applied on jets before
## filling the monitor histograms; if jetCorrector is present the
## selection will be applied to corrected jets
Expand Down Expand Up @@ -116,8 +116,8 @@
),
cms.PSet(
label = cms.string("jets/pf:step1"),
src = cms.InputTag("PFJetsFilter"),
jetCorrector = cms.string("ak4PFL2L3"),
src = cms.InputTag("ak4PFJetsCHS"),
#jetCorrector = cms.string("ak4PFCHSL1L2L3"),
select = cms.string("pt>30. & abs(eta)<2.5"),
min = cms.int32(2),
)
Expand All @@ -137,13 +137,13 @@
## sub-directory to write the monitor histograms to
## [mandatory] : should not be changed w/o explicit
## communication to TopCom!
directory = cms.string("HLTriggerOffline/Top/DiMuon/"),
directory = cms.string("HLT/TopHLTOffline/Top/DiMuon/"),

## [mandatory]
sources = cms.PSet(
muons = cms.InputTag("muons"),
elecs = cms.InputTag("gedGsfElectrons"),
jets = cms.InputTag("PFJetsFilter"),
jets = cms.InputTag("ak4PFJetsCHS"),
mets = cms.VInputTag("met", "tcMet", "pfMet")
),
## [optional] : when omitted all monitoring plots for electrons
Expand Down Expand Up @@ -173,7 +173,7 @@
jetExtras = cms.PSet(
## when omitted monitor plots for pt will be filled from uncorrected
## jets
jetCorrector = cms.string("ak4PFL2L3"),
#jetCorrector = cms.string("ak4PFCHSL1L2L3"),
## when omitted no extra selection will be applied on jets before
## filling the monitor histograms; if jetCorrector is present the
## selection will be applied to corrected jets
Expand Down Expand Up @@ -251,8 +251,8 @@
),
cms.PSet(
label = cms.string("jets/pf:step2"),
src = cms.InputTag("PFJetsFilter"),
jetCorrector = cms.string("ak4PFL2L3"),
src = cms.InputTag("ak4PFJetsCHS"),
#jetCorrector = cms.string("ak4PFCHSL1L2L3"),
select = cms.string("pt>30. & abs(eta)<2.5"),
min = cms.int32(2),
),
Expand All @@ -270,13 +270,13 @@
## sub-directory to write the monitor histograms to
## [mandatory] : should not be changed w/o explicit
## communication to TopCom!
directory = cms.string("HLTriggerOffline/Top/DiElectron/"),
directory = cms.string("HLT/TopHLTOffline/Top/DiElectron/"),

## [mandatory]
sources = cms.PSet(
muons = cms.InputTag("muons"),
elecs = cms.InputTag("gedGsfElectrons"),
jets = cms.InputTag("PFJetsFilter"),
jets = cms.InputTag("ak4PFJetsCHS"),
mets = cms.VInputTag("met", "tcMet", "pfMet")
),
## [optional] : when omitted all monitoring plots for electrons
Expand Down Expand Up @@ -306,7 +306,7 @@
jetExtras = cms.PSet(
## when omitted monitor plots for pt will be filled from uncorrected
## jets
jetCorrector = cms.string("ak4PFL2L3"),
#jetCorrector = cms.string("ak4PFCHSL1L2L3"),
## when omitted no extra selection will be applied on jets before
## filling the monitor histograms; if jetCorrector is present the
## selection will be applied to corrected jets
Expand Down Expand Up @@ -385,8 +385,8 @@
),
cms.PSet(
label = cms.string("jets/pf:step2"),
src = cms.InputTag("PFJetsFilter"),
jetCorrector = cms.string("ak4PFL2L3"),
src = cms.InputTag("ak4PFJetsCHS"),
#jetCorrector = cms.string("ak4PFCHSL1L2L3"),
select = cms.string("pt>30. & abs(eta)<2.5"),
min = cms.int32(2),
),
Expand All @@ -404,13 +404,13 @@
## sub-directory to write the monitor histograms to
## [mandatory] : should not be changed w/o explicit
## communication to TopCom!
directory = cms.string("HLTriggerOffline/Top/ElecMuon/"),
directory = cms.string("HLT/TopHLTOffline/Top/ElecMuon/"),

## [mandatory]
sources = cms.PSet(
muons = cms.InputTag("muons"),
elecs = cms.InputTag("gedGsfElectrons"),
jets = cms.InputTag("PFJetsFilter"),
jets = cms.InputTag("ak4PFJetsCHS"),
mets = cms.VInputTag("met", "tcMet", "pfMet")
),
## [optional] : when omitted all monitoring plots for electrons
Expand Down Expand Up @@ -440,7 +440,7 @@
jetExtras = cms.PSet(
## when omitted monitor plots for pt will be filled from uncorrected
## jets
jetCorrector = cms.string("ak4PFL2L3"),
#jetCorrector = cms.string("ak4PFCHSL1L2L3"),
## when omitted no extra selection will be applied on jets before
## filling the monitor histograms; if jetCorrector is present the
## selection will be applied to corrected jets
Expand Down Expand Up @@ -527,8 +527,8 @@
),
cms.PSet(
label = cms.string("jets/pf:step3"),
src = cms.InputTag("PFJetsFilter"),
jetCorrector = cms.string("ak4PFL2L3"),
src = cms.InputTag("ak4PFJetsCHS"),
#jetCorrector = cms.string("ak4PFCHSL1L2L3"),
select = cms.string("pt>30. & abs(eta)<2.5"),
min = cms.int32(2),
),
Expand Down