]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLTANALYSIS/JET/macros/runChain.sh
Merge branch 'feature-movesplit'
[u/mrichter/AliRoot.git] / HLTANALYSIS / JET / macros / runChain.sh
CommitLineData
e6ae4f1e 1#/bin/bash
2
79fe198d 3NEVENTS=200
4Pt_BIN=kPythia6Jets104_125
5
e6ae4f1e 6if [ ! -d ./analysis ] ; then
7 mkdir analysis
8fi
9
10ROOTFILES=`find . -maxdepth 1 -name "*.root" `
11
e6ae4f1e 12if [ -n "${ROOTFILES}" ] ; then
13 rm ${ROOTFILES}
14fi
79fe198d 15
e6ae4f1e 16
79fe198d 17aliroot -b -l -q HLTJetReconstruction.C'('${NEVENTS}', kFALSE, '${Pt_BIN}')' 2>&1 | tee ChainLog.log
43087b5a 18
19ROOTFILES=`find . -maxdepth 1 -name "*.root" `
e6ae4f1e 20
43087b5a 21if [ -n "${ROOTFILES}" ] ; then
22 rm ${ROOTFILES}
23fi
e6ae4f1e 24
79fe198d 25aliroot -l -b -q readJets.C'("./analysis/EOR_analyze_'${NEVENTS}'_'${Pt_BIN}'.root")'
e6ae4f1e 26
79fe198d 27# valgrind --error-limit=no --leak-check=full --show-reachable=yes aliroot -b -l -q 'HLTJetReconstruction.C(10)'