modified: TrackRecon.C benchmark a1c1 cfrac seems to work modified: run_17F.sh modified: run_27Al.sh modified: run_tr.sh
51 lines
1.4 KiB
Bash
51 lines
1.4 KiB
Bash
#!/bin/bash
|
|
export DATASET="17F"
|
|
export reactiondata=1
|
|
|
|
run_once() {
|
|
local wrun=$(printf "%03d" "$1")
|
|
local prefix="${PREFIX:-Run_}"
|
|
local outdir="${OUT_DIR:-Output_default}"
|
|
local infile="../ANASEN_analysis/data/${DATASET}_Data/${prefix}${wrun}_mapped.root"
|
|
local out="${outdir}/results_run${wrun}.root"
|
|
|
|
# Skip if the input file doesn't exist (return, not continue — this is a function)
|
|
if [ ! -f "$infile" ]; then
|
|
echo "SKIP: input $infile not found"
|
|
return
|
|
fi
|
|
|
|
# Ensure the directory exists so ROOT doesn't fail silently
|
|
mkdir -p "$outdir"
|
|
|
|
root -q -l -b -x "$infile" \
|
|
-e "tree->Process(\"TrackRecon.C+\", \"${out}\")" > /dev/null 2>&1
|
|
|
|
if [ -f "$out" ]; then
|
|
echo "Run $wrun completed successfully in $outdir."
|
|
else
|
|
echo "ERROR: Run $wrun failed to generate $out"
|
|
fi
|
|
}
|
|
|
|
export -f run_once
|
|
|
|
export DATASET="17F"
|
|
export PREFIX="Run_"
|
|
export OUT_DIR="Output_17F"
|
|
export source_vertex=-57.28
|
|
export Gain=1
|
|
rm -f ${OUT_DIR}/*.root
|
|
|
|
# Pre-compile TrackRecon.C ONCE on a single core so parallel jobs don't race on ACLiC
|
|
echo "Pre-compiling TrackRecon.C..."
|
|
root -q -l -b -e '.L TrackRecon.C++O'
|
|
|
|
# 3% CO2
|
|
# parallel --bar -j 6 run_once ::: {325..400}
|
|
parallel --bar -j 6 run_once ::: 351 353 355 358 359 360 362 367
|
|
hadd -j 4 -k ${OUT_DIR}/Output_17F.root ${OUT_DIR}/results_run*.root
|
|
|
|
unset source_vertex
|
|
unset DATASET
|
|
unset reactiondata |