]> git.uio.no Git - u/mrichter/AliRoot.git/blame_incremental - HLT/trigger/macros/runTriggerTest.sh
Fix typo in docu
[u/mrichter/AliRoot.git] / HLT / trigger / macros / runTriggerTest.sh
... / ...
CommitLineData
1#/bin/bash
2
3# N Events
4NEVENTS=10
5
6# TriggerName [Belonging to BarrelMultiplicityTrigger Component]
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