]> git.uio.no Git - u/mrichter/AliRoot.git/blob - HLTANALYSIS/JET/macros/runChain.sh
Merge branch 'feature-movesplit'
[u/mrichter/AliRoot.git] / HLTANALYSIS / JET / macros / runChain.sh
1 #/bin/bash
2
3 NEVENTS=200
4 Pt_BIN=kPythia6Jets104_125
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'('${NEVENTS}', kFALSE, '${Pt_BIN}')' 2>&1 | tee ChainLog.log
18
19 ROOTFILES=`find . -maxdepth 1 -name "*.root" `
20
21 if [ -n "${ROOTFILES}" ] ; then
22     rm ${ROOTFILES}
23 fi
24
25 aliroot -l -b -q readJets.C'("./analysis/EOR_analyze_'${NEVENTS}'_'${Pt_BIN}'.root")'
26
27 # valgrind --error-limit=no --leak-check=full --show-reachable=yes aliroot -b -l -q 'HLTJetReconstruction.C(10)'