Skip to content
Snippets Groups Projects
Commit b53aaa1f authored by Adam Edward Barton's avatar Adam Edward Barton :speech_balloon:
Browse files

Merge branch 'TriggerMenuXMLBASH-master-20200416' into 'master'

Move TriggerMenuXML to BASH, master branch (2020.04.16.)

See merge request atlas/athena!32066
parents 85a1c58f ed6863c0
No related branches found
No related tags found
No related merge requests found
#!/usr/bin/env zsh #!/usr/bin/env bash
#
# Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration
#
# Script to generate the trigger menu XML files # Script to generate the trigger menu XML files
# #
...@@ -30,6 +33,9 @@ while true; do ...@@ -30,6 +33,9 @@ while true; do
esac esac
done done
# Fail on errors.
set -e
if [ -z ${PYTHONDONTWRITEBYTE+x} ]; then export PYTHONDONTWRITEBYTECODE=1; fi # don't write .pyc files, keep source directory clean if [ -z ${PYTHONDONTWRITEBYTE+x} ]; then export PYTHONDONTWRITEBYTECODE=1; fi # don't write .pyc files, keep source directory clean
menu=$1 menu=$1
...@@ -64,7 +70,7 @@ logfile=${menu}.log ...@@ -64,7 +70,7 @@ logfile=${menu}.log
cd $rundir cd $rundir
# L1Topo config file # L1Topo config file
generateL1TopoMenu.py $menu >&! $logfiletopo generateL1TopoMenu.py $menu 2>&1 > $logfiletopo
cp L1Topoconfig_*.xml ${dest} cp L1Topoconfig_*.xml ${dest}
rename _${release}.xml .xml L1Topoconfig_*.xml rename _${release}.xml .xml L1Topoconfig_*.xml
cp L1Topoconfig_*.xml ${dest} cp L1Topoconfig_*.xml ${dest}
...@@ -75,7 +81,7 @@ if [ -z "$TMXML_DEBUG" ]; then ...@@ -75,7 +81,7 @@ if [ -z "$TMXML_DEBUG" ]; then
else else
MSGLVL="-lDEBUG" MSGLVL="-lDEBUG"
fi fi
athena.py $MSGLVL -c "TriggerMenuSetup='$menu'" $jo >&! $logfile athena.py $MSGLVL -c "TriggerMenuSetup='$menu'" $jo 2>&1 > $logfile
athena_exit=$? athena_exit=$?
cp $logfile $logfiletopo ${dest} cp $logfile $logfiletopo ${dest}
......
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