]> git.uio.no Git - u/mrichter/AliRoot.git/blob - HLT/JET/macros/run.sh
In test:
[u/mrichter/AliRoot.git] / HLT / JET / macros / run.sh
1 #/bin/bash
2
3
4 N_EVENTS=100
5
6 if [ ! -d ./analysis ] ; then
7     mkdir analysis
8 fi
9
10 ROOTFILES=`find . -maxdepth 1 -name "*.root" `
11
12 if [ -n "${ROOTFILES}" ] ; then
13     rm ${ROOTFILES}
14 fi
15
16
17 aliroot -b -l -q 'HLTJetReconstruction.C(10,0,kTRUE)' 2>&1 | tee log.log
18
19 ROOTFILES=`find . -maxdepth 1 -name "*.root" `
20
21 if [ -n "${ROOTFILES}" ] ; then
22     rm ${ROOTFILES}
23 fi
24
25 aliroot -l 'readJets.C("./analysis/EOR_analyze_10_kPythia6Jets104_125.root")'
26
27
28 #valgrind --error-limit=no --leak-check=full --show-reachable=yes aliroot -b -l -q 'HLTJetReconstruction.C(10)'