Skip to content
Snippets Groups Projects
Commit 20b605f7 authored by Nils Erik Krumnack's avatar Nils Erik Krumnack
Browse files

Merge branch '21.2-hibtagflag' into '21.2'

Added flag for HI b-tagging reconstruction, with default to off

See merge request atlas/athena!14379

Former-commit-id: 46ef701e3d53a39cf0c4ade32a62d39b1e10cae7
parents dced8e60 6dcaab77
No related branches found
No related tags found
No related merge requests found
...@@ -126,6 +126,13 @@ class ExtraFlowMoments(JobProperty): ...@@ -126,6 +126,13 @@ class ExtraFlowMoments(JobProperty):
allowedTypes = ['bool'] allowedTypes = ['bool']
StoredValue = True StoredValue = True
class DoHIBTagging(JobProperty):
""" Perform b-tagging over HI jet collections
"""
statusOn = True
allowedTypes = ['bool']
StoredValue = False
class HIClusterKey(JobProperty): class HIClusterKey(JobProperty):
""" Key of CaloClusterContainer containing HI clusters """ Key of CaloClusterContainer containing HI clusters
...@@ -251,6 +258,7 @@ list_jobproperties = [UnsubtractedSuffix, ...@@ -251,6 +258,7 @@ list_jobproperties = [UnsubtractedSuffix,
ModulationScheme, ModulationScheme,
Remodulate, Remodulate,
ExtraFlowMoments, ExtraFlowMoments,
DoHIBTagging,
HIClusterKey, HIClusterKey,
IteratedEventShapeKey, IteratedEventShapeKey,
TruthJetPtMin, TruthJetPtMin,
......
...@@ -111,45 +111,47 @@ JetAlgFromTools(jtm.HIJetRecs,suffix="HI",persistify=True) ...@@ -111,45 +111,47 @@ JetAlgFromTools(jtm.HIJetRecs,suffix="HI",persistify=True)
# code cloned from BTagging_jobOptions.py # code cloned from BTagging_jobOptions.py
# to allow b-tagging over HI jets # to allow b-tagging over HI jets
if not BTaggingFlags.DoNotSetupBTagging: # Temporary measure so the JetRec people can test setting this all up from their side. if HIJetFlags.DoHIBTagging():
#
# ========== Load and configure everything if not BTaggingFlags.DoNotSetupBTagging: # Temporary measure so the JetRec people can test setting this all up from their side.
# #
# ========== Load and configure everything
from BTagging.BTaggingConfiguration import getConfiguration #
ConfInstance = getConfiguration()
from BTagging.BTaggingConfiguration import getConfiguration
if ConfInstance.checkFlagsUsingBTaggingFlags(): ConfInstance = getConfiguration()
#Jet collections if ConfInstance.checkFlagsUsingBTaggingFlags():
JetCollectionList = ['AntiKt4HIJets']
from JetRec.JetRecFlags import jetFlags #Jet collections
JetCollectionList = ['AntiKt4HIJets']
BTaggingFlags.Jets = [ name[:-4] for name in JetCollectionList] from JetRec.JetRecFlags import jetFlags
#BTagging list BTaggingFlags.Jets = [ name[:-4] for name in JetCollectionList]
btag = ConfInstance.getOutputFilesPrefix() #BTaggingFlags.OutputFilesBTag #"BTagging_"
#BTagging list
#TODO define name author (now BTagging_AntiKt4LCTopo) btag = ConfInstance.getOutputFilesPrefix() #BTaggingFlags.OutputFilesBTag #"BTagging_"
AuthorSubString = [ btag+name[:-4] for name in JetCollectionList]
#TODO define name author (now BTagging_AntiKt4LCTopo)
NotInJetToolManager = [] # For jet collections AuthorSubString = [ btag+name[:-4] for name in JetCollectionList]
from JetRec.JetRecStandard import jtm
for i, jet in enumerate(JetCollectionList): NotInJetToolManager = [] # For jet collections
try: from JetRec.JetRecStandard import jtm
btagger = ConfInstance.setupJetBTaggerTool(ToolSvc, jet) #The [:-4] is not needed here; this function automatically removes trailing 'jets' or 'Jets'. for i, jet in enumerate(JetCollectionList):
if btagger is None: try:
continue btagger = ConfInstance.setupJetBTaggerTool(ToolSvc, jet) #The [:-4] is not needed here; this function automatically removes trailing 'jets' or 'Jets'.
jet = jet.replace("Track", "PV0Track") if btagger is None:
jetname = getattr(jtm, jet) continue
jetname.unlock() jet = jet.replace("Track", "PV0Track")
jetname.JetModifiers += [ btagger ] jetname = getattr(jtm, jet)
jetname.lock() jetname.unlock()
if BTaggingFlags.OutputLevel < 3: jetname.JetModifiers += [ btagger ]
print ConfInstance.getJetCollectionTool(jet[:-4]) jetname.lock()
except AttributeError as error: if BTaggingFlags.OutputLevel < 3:
print '#BTAG# --> ' + str(error) print ConfInstance.getJetCollectionTool(jet[:-4])
NotInJetToolManager.append(AuthorSubString[i]) except AttributeError as error:
print '#BTAG# --> ' + str(error)
if len(NotInJetToolManager) > 0: NotInJetToolManager.append(AuthorSubString[i])
AuthorSubString = list(set(AuthorSubString) - set(NotInJetToolManager))
if len(NotInJetToolManager) > 0:
AuthorSubString = list(set(AuthorSubString) - set(NotInJetToolManager))
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment