From cb40c412ea4cba56c96cc338bdaccc4d400fd8e7 Mon Sep 17 00:00:00 2001 From: scheiric <daniel.scheirich@cern.ch> Date: Mon, 9 Oct 2017 22:05:26 +0200 Subject: [PATCH] Fix to the HIGG4D3 failing the ART tests for MC16c HIGG4D3 was failing ART tests on MC16 because of the truth-matching code related to the PV refitting (TauTruthTrackMatchingTool). The problem was temporarilly fixed by setting the PV refitting tool to the same config as used for data. This may have to be revisitted after discussion with experts. Former-commit-id: f8525354c281a3a267b8726978b3f2b78ee5d7f4 --- .../DerivationFrameworkHiggs/python/HIGG4DxAugmentation.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/PhysicsAnalysis/DerivationFramework/DerivationFrameworkHiggs/python/HIGG4DxAugmentation.py b/PhysicsAnalysis/DerivationFramework/DerivationFrameworkHiggs/python/HIGG4DxAugmentation.py index 0c25d6f6a01..99743088956 100644 --- a/PhysicsAnalysis/DerivationFramework/DerivationFrameworkHiggs/python/HIGG4DxAugmentation.py +++ b/PhysicsAnalysis/DerivationFramework/DerivationFrameworkHiggs/python/HIGG4DxAugmentation.py @@ -57,7 +57,8 @@ def setup(HIGG4DxName, ToolSvc): HIGG4DxTauPVTrkSelectionTool = DerivationFramework__TauPVTrkSelectionTool( name = "HIGG4DxTauPVTrkSelectionTool", #minPt = 15000, #m_maxDeltaR = 0.2, - UseTrueTracks = DFisMC, +# UseTrueTracks = DFisMC, + UseTrueTracks = False, # TauTruthTrackMatchingTool not working ATM. Needs protection against thinned truth info in the xAOD TauContainerName = "TauJets", TauPVTracksContainerName = "TauPVTracks") ToolSvc += HIGG4DxTauPVTrkSelectionTool -- GitLab