From 420b631da59ae2c7dba27a279f161ce50c5a81ac Mon Sep 17 00:00:00 2001
From: Mark Hodgkinson <m.hodgkinson@sheffield.ac.uk>
Date: Tue, 12 Oct 2021 17:32:28 +0200
Subject: [PATCH] Remove test that runs out dated pflow config and its
 associated job options file.

---
 ...ecexreco_art_pflow_fromesd_FlowElements.sh | 17 ------
 .../share/run_ESDStandardReco_FlowElements.py | 57 -------------------
 2 files changed, 74 deletions(-)
 delete mode 100755 Reconstruction/RecExample/RecExRecoTest/test/test_recexreco_art_pflow_fromesd_FlowElements.sh
 delete mode 100644 Reconstruction/eflowRec/share/run_ESDStandardReco_FlowElements.py

diff --git a/Reconstruction/RecExample/RecExRecoTest/test/test_recexreco_art_pflow_fromesd_FlowElements.sh b/Reconstruction/RecExample/RecExRecoTest/test/test_recexreco_art_pflow_fromesd_FlowElements.sh
deleted file mode 100755
index 709d6aa8ead7..000000000000
--- a/Reconstruction/RecExample/RecExRecoTest/test/test_recexreco_art_pflow_fromesd_FlowElements.sh
+++ /dev/null
@@ -1,17 +0,0 @@
-#!/bin/sh
-#
-# art-description: Athena runs Standard ESD reconstruction including FlowElements, which are not in the default run
-# art-type: grid
-# art-include master/Athena
-# art-athena-mt: 8
-# art-output: AOD.pool.root
-# art-output: log_FE_validation.txt
-
-export ATHENA_CORE_NUMBER=8 # set number of cores used in multithread to 8.
-
-athena.py eflowRec/run_ESDStandardReco_FlowElements.py 
-rc1=$?
-python eflowRec/validateFlowElements.py --f AOD.pool.root &> log_FE_validation.txt
-rc2=$?
-echo "art-result: ${rc1} ESDtoAOD_FE"
-echo "art-result: ${rc2} AOD_readout"
diff --git a/Reconstruction/eflowRec/share/run_ESDStandardReco_FlowElements.py b/Reconstruction/eflowRec/share/run_ESDStandardReco_FlowElements.py
deleted file mode 100644
index 9b246e71285e..000000000000
--- a/Reconstruction/eflowRec/share/run_ESDStandardReco_FlowElements.py
+++ /dev/null
@@ -1,57 +0,0 @@
-#This file is to run standard reconstruction + Flow Elements on an ESD file (Primarily the Flow Element configuration)
-
-from AthenaCommon.AthenaCommonFlags import athenaCommonFlags
-athenaCommonFlags.FilesInput=["/cvmfs/atlas-nightlies.cern.ch/repo/data/data-art/RecExRecoTest/mc16_13TeV.361022.Pythia8EvtGen_A14NNPDF23LO_jetjet_JZ2W.recon.ESD.e3668_s3170_r10572_homeMade.pool.root"]
-doDumpProperties=True
-
-from RecExConfig.RecAlgsFlags import recAlgs
-recAlgs.doEFlow.set_Value_and_Lock(True)
-
-from eflowRec.eflowRecFlags import jobproperties
-jobproperties.eflowRecFlags.useCalibHitTruth.set_Value_and_Lock(True)
-#include FlowElement validation plots
-jobproperties.eflowRecFlags.doFlowElementValidation.set_Value_and_Lock(True)
-from RecExConfig.RecFlags import rec
-rec.doTrigger.set_Value_and_Lock(False)
-rec.doEgamma.set_Value_and_Lock(False)
-rec.doMuon.set_Value_and_Lock(False)
-rec.doTau.set_Value_and_Lock(False)
-
-#change some calo flags
-from CaloRec.CaloRecFlags import jobproperties
-jobproperties.CaloRecFlags.Enabled.set_Value_and_Lock(True)
-jobproperties.CaloRecFlags.doCaloCluster.set_Value_and_Lock(True)
-jobproperties.CaloRecFlags.doEmCluster.set_Value_and_Lock(False)
-jobproperties.CaloRecFlags.doCaloTopoCluster.set_Value_and_Lock(True)
-
-#nothing to say on these
-rec.doWriteTAG.set_Value_and_Lock(False)
-rec.doTruth.set_Value_and_Lock(False)
-rec.doAODCaloCells.set_Value_and_Lock(False)
-#Turns off xAODRingSetConfWriter
-rec.doCaloRinger.set_Value_and_Lock(False)
-
-#Turn of TAG
-rec.doWriteTAG.set_Value_and_Lock(False)
-
-#disables VertexCnvAlg
-from InDetRecExample.InDetJobProperties import jobproperties
-jobproperties.InDetJobProperties.doxAOD.set_Value_and_Lock(False)
-#Disables AllExecutedEvents
-rec.doFileMetaData.set_Value_and_Lock(False)
-
-include("LArConditionsCommon/LArIdMap_MC_jobOptions.py")
-from CaloRec import CaloClusterTopoCoolFolder
-from CaloTools.CaloNoiseCondAlg import CaloNoiseCondAlg
-CaloNoiseCondAlg()
-CaloNoiseCondAlg(noisetype="electronicNoise")
-
-athenaCommonFlags.EvtMax=30
-#Run pflopw jet finding - this cannot be enabled via reconstruction flags currently! (without enabling other things we don't want)
-UserAlgs = ["eflowRec/jetAlgs.py"]
-include ("RecExCommon/RecExCommon_topOptions.py")
-
-ServiceMgr.MessageSvc.defaultLimit = 9999999
-include ("METReconstruction/METReconstruction_jobOptions.py")
-
-
-- 
GitLab