]> git.uio.no Git - u/mrichter/AliRoot.git/blob - EVE/macros/visscan_local.C
Update master to aliroot
[u/mrichter/AliRoot.git] / EVE / macros / visscan_local.C
1 #include <TString.h>
2 #include <TROOT.h>
3
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)'
7
8 void visscan_local(const TString& path = ".", Bool_t showHLTESDTree=kFALSE, Bool_t showMuon = kTRUE, Bool_t showTrd = kFALSE, const char *pathToCDB="$ALICE_ROOT/OCDB")
9 {
10
11   gROOT->ProcessLine(TString::Format(".x visscan_init.C(\"local://%s\", \"%s\", %d, %d, %d)",
12                                      pathToCDB,path.Data(), showHLTESDTree, showMuon, showTrd));
13
14 }