]> git.uio.no Git - u/mrichter/AliRoot.git/blame - EVE/macros/visscan_local.C
Setting DATE_RUN_NUMBER in onlinereco added. Hardcoded CDB path in visscan_local...
[u/mrichter/AliRoot.git] / EVE / macros / visscan_local.C
CommitLineData
6c49a8e1 1#include <TString.h>
2#include <TROOT.h>
3
51104899 4// In order to open the HLT ESD Tree, instead of the Offline ESD Tree:
5// run in the current directory:
6// alieve mf_fix.C visscan_local.C'(".", kTRUE)'
6c49a8e1 7
016a21c0 8void visscan_local(const TString& path = ".", Bool_t showHLTESDTree=kFALSE, Bool_t showMuon = kTRUE, Bool_t showTrd = kFALSE, const char *pathToCDB="$ALICE_ROOT/OCDB")
c63f2997 9{
016a21c0 10
b039fa8f 11 gROOT->ProcessLine(TString::Format(".x visscan_init.C(\"local://$ALICE_ROOT/OCDB\", \"%s\", %d, %d, %d)",
51104899 12 path.Data(), showHLTESDTree, showMuon, showTrd));
016a21c0 13
c63f2997 14}