From 06f1be75d228f600f98926dfe4edf72b7d10d852 Mon Sep 17 00:00:00 2001
From: Wouter Deconinck <wdconinc@gmail.com>
Date: Fri, 18 Aug 2023 15:37:05 -0500
Subject: [PATCH] fix: remove BEAMLINE_CONFIG and JUGGLER_INSTALL_PREFIX

---
 README.md                                        | 2 --
 benchmarks/barrel_ecal/run_emcal_barrel_pi0.sh   | 4 ----
 benchmarks/barrel_ecal/run_emcal_barrel_pions.sh | 4 ----
 benchmarks/timing/run_timing.sh                  | 4 ----
 benchmarks/tracking_detectors/track_hits.sh      | 1 -
 5 files changed, 15 deletions(-)

diff --git a/README.md b/README.md
index ca57aa5a..2c58e537 100644
--- a/README.md
+++ b/README.md
@@ -28,9 +28,7 @@ Note juggler is not needed for `detector_benchmarks` because it is not used but
 
 First set some environment variables.
 ```
-# export JUGGLER_INSTALL_PREFIX=$HOME/stow/juggler # not needed for detector_benchmarks
 export DETECTOR=epic             # epic is the default
-export BEAMLINE_CONFIG=ip6       # ip6 is the default
 ```
 
 
diff --git a/benchmarks/barrel_ecal/run_emcal_barrel_pi0.sh b/benchmarks/barrel_ecal/run_emcal_barrel_pi0.sh
index c354a058..3c37fd4e 100755
--- a/benchmarks/barrel_ecal/run_emcal_barrel_pi0.sh
+++ b/benchmarks/barrel_ecal/run_emcal_barrel_pi0.sh
@@ -8,10 +8,6 @@ if [[ ! -n  "${JUGGLER_N_EVENTS}" ]] ; then
   export JUGGLER_N_EVENTS=1000
 fi
 
-if [[ ! -n  "${JUGGLER_INSTALL_PREFIX}" ]] ; then 
-  export JUGGLER_INSTALL_PREFIX="/usr/local"
-fi
-
 if [[ ! -n  "${E_start}" ]] ; then
   export E_start=5.0
 fi
diff --git a/benchmarks/barrel_ecal/run_emcal_barrel_pions.sh b/benchmarks/barrel_ecal/run_emcal_barrel_pions.sh
index 4e289589..e0c59fc5 100755
--- a/benchmarks/barrel_ecal/run_emcal_barrel_pions.sh
+++ b/benchmarks/barrel_ecal/run_emcal_barrel_pions.sh
@@ -8,10 +8,6 @@ if [[ ! -n  "${JUGGLER_N_EVENTS}" ]] ; then
   export JUGGLER_N_EVENTS=1000
 fi
 
-if [[ ! -n  "${JUGGLER_INSTALL_PREFIX}" ]] ; then 
-  export JUGGLER_INSTALL_PREFIX="/usr/local"
-fi
-
 if [[ ! -n  "${E_start}" ]] ; then
   export E_start=5.0
 fi
diff --git a/benchmarks/timing/run_timing.sh b/benchmarks/timing/run_timing.sh
index 8542d3fe..cca804a5 100755
--- a/benchmarks/timing/run_timing.sh
+++ b/benchmarks/timing/run_timing.sh
@@ -64,10 +64,6 @@ if [[ ! -n "${DETECTOR_PATH}" ]] ; then
   export DETECTOR_PATH="/opt/detector/share/athena"
 fi
 
-if [[ ! -n "${JUGGLER_INSTALL_PREFIX}" ]] ; then
-  export JUGGLER_INSTALL_PREFIX="/usr/local"
-fi
-
 compact_path=${DETECTOR_PATH}/${DETECTOR_CONFIG}.xml
 
 echo "DETECTOR_PATH = ${DETECTOR_PATH}"
diff --git a/benchmarks/tracking_detectors/track_hits.sh b/benchmarks/tracking_detectors/track_hits.sh
index a302916f..89b0d8ca 100644
--- a/benchmarks/tracking_detectors/track_hits.sh
+++ b/benchmarks/tracking_detectors/track_hits.sh
@@ -45,7 +45,6 @@ set -- "${POSITIONAL[@]}" # restore positional parameters
 print_env.sh
 
 ## To run the reconstruction, we need the following global variables:
-## - JUGGLER_INSTALL_PREFIX:   Install prefix for Juggler (simu/recon)
 ## - DETECTOR:         the detector package we want to use for this benchmark
 ## - DETECTOR_VERSION: the detector package we want to use for this benchmark
 ## - DETECTOR_PATH:            full path to the detector definitions
-- 
GitLab