Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • mstahl/PRConfig
  • chaen/PRConfig
  • lhcb-datapkg/PRConfig
3 results
Show changes
Commits on Source (2)
......@@ -21,6 +21,9 @@ Usage: Moore/run /path/to/Moore_bandwidth_test.sh [options] 2>&1 | tee <path-to-
Expected to be called by e.g. Moore_hlt2_bandwidth.sh for the periodic LHCbPR tests.
The number of events the tests run over is hard-coded below, but this can be modified by setting the environment variable OVERRIDE_EVTMAX.
This is useful to e.g. run from a released version, where one cannot easily edit the hard-coded number of events below.
For example: Moore/run env OVERRIDE_EVTMAX=1e4 /path/to/Moore_bandwidth_test.sh ...
--process: "hlt1", "hlt2" or "spruce".
--input-data: "nominal" or "latest".
"latest" not currently available for process == hlt1 or hlt2.
......@@ -97,7 +100,12 @@ mkdir -p tmp/Output
mkdir -p tmp/Output/Inter
# Set configuration variables and check configuration makes sense
EVTMAX=1e5
if [ -z "${OVERRIDE_EVTMAX}" ]; then
EVTMAX=1e5
else
EVTMAX=${OVERRIDE_EVTMAX}
fi
case $PROCESS in
hlt1)
MOORE_THREADS=1
......