]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/trigger/macros/runTriggerTest.sh
- added the option to read a file or a chunk from the GRID
[u/mrichter/AliRoot.git] / HLT / trigger / macros / runTriggerTest.sh
CommitLineData
b6b716f5 1#/bin/bash
2
3# N Events
4NEVENTS=10
5
46e992c5 6# TriggerName [Belonging to BarrelMultiplicityTrigger Component]
b6b716f5 7TRIGGER="H-Barrel_pT_Single-V0001.001"
8
9# Path to ESD
10ESDPATH="/lustre/alice/jthaeder/data/HEAD_2010-07-09/7TeV/pp_Perugia0/014000"
11
12if [ ! -d ./analysis ] ; then
13 mkdir analysis
14else
15 rm ./analysis/*
16fi
17
18# -- Create config CDB object
19aliroot -b -l -q ${ALICE_ROOT}/HLT/trigger/macros/makeTriggerConfigurationObject.C'('\"${TRIGGER}\"')' 2>&1 | tee configLog.log
20
21# -- run chain for ESD file
22aliroot -b -l -q ${ALICE_ROOT}/HLT/trigger/macros/HLTTriggerTest.C'('${NEVENTS}','\"${TRIGGER}\"','\"${ESDPATH}\"')' 2>&1 | tee ChainLog.log
23