File: BatchShapeTester.sh

package info (click to toggle)
vecgeom 1.2.8%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 24,016 kB
  • sloc: cpp: 88,803; ansic: 6,888; python: 1,035; sh: 582; sql: 538; makefile: 23
file content (31 lines) | stat: -rwxr-xr-x 737 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# A script to batch-test a list of volumes using the shapetester tool 
# "shape_testfromROOTFile"
# uses GNU parallel in order to run multiple tasks concurrently

detector=$1
filewithvolumelist=$2

function ShapeTestTask(){
  NC='\033[0m' # no color
  GREEN='\033[1;32m'
  RED='\033[0;31m'
  errlog="ShapeTestBatchErrlog"
  log="ShapeTestBatchLog"
  detector=$1
  v=$2
  ./shape_testFromROOTFile ${detector} ${v} 2> ${errlog}${v} > ${log}${v}
  rc=$?
  if [[ $rc == 0 ]]; then
   printf "${v} ${GREEN}passes${NC}\n"
   # if pass cleanup file
   rm ${errlog}${v}$
  else
   printf "${v} ${RED}fails${NC}\n"
  fi
}
export -f ShapeTestTask

for v in `cat ${filewithvolumelist}`; do
    sem -j+0 ShapeTestTask $detector ${v}
done
sem --wait