From 042188e85a63da9f746ebd51257de6fc8bceecbc Mon Sep 17 00:00:00 2001 From: Bertrand Martin <martindl@cern.ch> Date: Thu, 3 Dec 2020 13:31:38 +0100 Subject: [PATCH] tauRec: fix standalone EMTopo script Hello, This MR is just fixing a small issue in a AOD file name. The EMTopo ART test (https://gitlab.cern.ch/atlas/athena/-/blob/master/Reconstruction/tauRec/test/test_tau_standalone_EMTopo_serial.sh) that uses the standalone EMTopo-seeded reconstruction expects `EMTopo_AOD.pool.root`. Cheers, Bertrand --- Reconstruction/tauRec/share/tau_standalone_EMTopo_ESDtoAOD.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Reconstruction/tauRec/share/tau_standalone_EMTopo_ESDtoAOD.py b/Reconstruction/tauRec/share/tau_standalone_EMTopo_ESDtoAOD.py index 142ce1b8b5bb..7f3d1a46dd72 100644 --- a/Reconstruction/tauRec/share/tau_standalone_EMTopo_ESDtoAOD.py +++ b/Reconstruction/tauRec/share/tau_standalone_EMTopo_ESDtoAOD.py @@ -1,6 +1,6 @@ from AthenaCommon.AthenaCommonFlags import athenaCommonFlags athenaCommonFlags.FilesInput = ["/cvmfs/atlas-nightlies.cern.ch/repo/data/data-art/tauRec/input/standalone.ESD.pool.root"] -athenaCommonFlags.PoolAODOutput = "EMPFlow_AOD.pool.root" +athenaCommonFlags.PoolAODOutput = "EMTopo_AOD.pool.root" from RecExConfig.RecFlags import rec rec.doEgamma.set_Value_and_Lock(False) -- GitLab