Skip to content

Commit

Permalink
Replacing jet b-tagger 'pfCombinedSecondaryVertexV2BJetTags' with 'pf…
Browse files Browse the repository at this point in the history
…DeepCSVJetTags:probb' for Run 3.
  • Loading branch information
Yuan CHAO committed Nov 14, 2022

Unverified

No user is associated with the committer email.
1 parent 8801a99 commit 9602fe7
Showing 3 changed files with 28 additions and 0 deletions.
14 changes: 14 additions & 0 deletions HLTriggerOffline/Higgs/python/hltHiggsValidator_cfi.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import FWCore.ParameterSet.Config as cms

from Configuration.Eras.Modifier_run3_common_cff import run3_common

from DQMServices.Core.DQMEDAnalyzer import DQMEDAnalyzer
hltHiggsValidator = DQMEDAnalyzer('HLTHiggsValidator',
@@ -446,3 +447,16 @@
minCandidates = cms.uint32(2),
),
)

hltHiggsValidator_run3 = hltHiggsValidator.clone()
hltHiggsValidator_run3.VBFHbb_0btag.jetTagLabel = "pfDeepCSVJetTags:probb"
hltHiggsValidator_run3.VBFHbb_1btag.jetTagLabel = "pfDeepCSVJetTags:probb"
hltHiggsValidator_run3.VBFHbb_2btag.jetTagLabel = "pfDeepCSVJetTags:probb"
hltHiggsValidator_run3.ZnnHbb.jetTagLabel = "pfDeepCSVJetTags:probb"
hltHiggsValidator_run3.X4b.jetTagLabel = "pfDeepCSVJetTags:probb"
hltHiggsValidator_run3.AHttH.jetTagLabel = "pfDeepCSVJetTags:probb"
hltHiggsValidator_run3.MSSMHbb.jetTagLabel = "pfDeepCSVJetTags:probb"
hltHiggsValidator_run3.MSSMHbbmu.jetTagLabel = "pfDeepCSVJetTags:probb"

run3_common.toReplaceWith( hltHiggsValidator, hltHiggsValidator_run3)

Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
import FWCore.ParameterSet.Config as cms
from Configuration.Eras.Modifier_run3_common_cff import run3_common

from DQMServices.Core.DQMEDHarvester import DQMEDHarvester
from copy import deepcopy

@@ -55,6 +57,11 @@
resolution = cms.vstring('')
)

SUSY_HLT_Ele_HT_BTag_SingleLep_run3 = SUSY_HLT_Ele_HT_BTag_SingleLepton.clone()
SUSY_HLT_Ele_HT_BTag_SingleLep_run3.hltJetTags = 'hltDeepCombinedSecondaryVertexBJetTagsCalo'
SUSY_HLT_Ele_HT_BTag_SingleLep_run3.jetTagCollection = 'pfDeepCSVJetTags:probb'
run3_common.toReplaceWith( SUSY_HLT_Ele_HT_BTag_SingleLepton, SUSY_HLT_Ele_HT_BTag_SingleLep_run3 )

# fastsim has no conversion collection (yet)
from Configuration.Eras.Modifier_fastSim_cff import fastSim
fastSim.toModify(SUSY_HLT_Ele_HT_BTag_SingleLepton,conversionCollection=cms.InputTag(''))
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
import FWCore.ParameterSet.Config as cms
from Configuration.Eras.Modifier_run3_common_cff import run3_common

from DQMServices.Core.DQMEDHarvester import DQMEDHarvester
from copy import deepcopy

@@ -55,3 +57,8 @@
resolution = cms.vstring('')
)

SUSY_HLT_Mu_HT_BTag_SingleLep_run3 = SUSY_HLT_Mu_HT_BTag_SingleLepton.clone()
SUSY_HLT_Mu_HT_BTag_SingleLep_run3.hltJetTags = 'hltDeepCombinedSecondaryVertexBJetTagsCalo'
SUSY_HLT_Mu_HT_BTag_SingleLep_run3.jetTagCollection = 'pfDeepCSVJetTags:probb'
run3_common.toReplaceWith( SUSY_HLT_Mu_HT_BTag_SingleLepton, SUSY_HLT_Mu_HT_BTag_SingleLep_run3 )

0 comments on commit 9602fe7

Please sign in to comment.