Skip to content
Snippets Groups Projects
Commit 87bde051 authored by Johannes Elmsheuser's avatar Johannes Elmsheuser
Browse files

Merge branch 'master-tile-jet-mon-fix' into 'master'

TileMonitoring: Fix Tile Jet monitoring (ATLASRECTS-6146)

See merge request atlas/athena!42246
parents b04689a4 d651a8bd
No related branches found
No related tags found
No related merge requests found
#
# Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration
# Copyright (C) 2002-2021 CERN for the benefit of the ATLAS collaboration
#
'''
......@@ -60,6 +60,7 @@ def TileJetMonitoringConfig(flags, **kwargs):
jetCleaningTool = CompFactory.JetCleaningTool()
jetCleaningTool.CutLevel = "LooseBad"
jetCleaningTool.DoUgly = False
jetCleaningTool.JetContainer = str(jetContainer)
tileJetMonAlg.JetCleaningTool = jetCleaningTool
result.addPublicTool(jetCleaningTool)
......
#
# Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration
# Copyright (C) 2002-2021 CERN for the benefit of the ATLAS collaboration
#
#**************************************************************
......@@ -159,6 +159,7 @@ if tileESDMon:
cleaning = CfgMgr.JetCleaningTool("MyCleaningTool")
cleaning.CutLevel = "LooseBad"
cleaning.DoUgly = False
cleaning.JetContainer = jetContainer
ToolSvc += cleaning
ecTool = CfgMgr.ECUtils__EventCleaningTool("MyEventCleaningTool")
ecTool.JetCleaningTool = cleaning
......
#
# Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration
# Copyright (C) 2002-2021 CERN for the benefit of the ATLAS collaboration
#
from __future__ import print_function
......@@ -244,6 +244,7 @@ ToolSvc += jvt
cleaning = CfgMgr.JetCleaningTool("MyCleaningTool")
cleaning.CutLevel = "LooseBad"
cleaning.DoUgly = False
cleaning.JetContainer = jetContainer
ToolSvc += cleaning
ecTool = CfgMgr.ECUtils__EventCleaningTool("MyEventCleaningTool")
ecTool.JetCleaningTool = cleaning
......
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