]> git.uio.no Git - u/mrichter/AliRoot.git/blob - SHUTTLE/schema/checkAll.sh
- Set of changes needed for merging aod files in CAF. Some fixes also for event mixing.
[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