git://git.uio.no
/
u
/
mrichter
/
AliRoot.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
possibility to test a single subdetector
[u/mrichter/AliRoot.git]
/
SHUTTLE
/
schema
/
checkAll.sh
1
#!/bin/bash
2
3
export DETS="ACO EMC FMD HMP MCH MTR PHS CPV PMD SPD SDD SSD TOF TPC TRD T00 V00 ZDC GRP"
4
5
if [ -n "$1" ]
6
then
7
DETS=$*
8
fi
9
10
for I in $DETS
11
do
12
echo $I
13
aliroot -b -q TestDPs.C\(\"$I\",1210083077,1210083078\) > $I.out 2>&1
14
done
15