// ROOT includes #include #include #include #include using std namespace; Int_t main(TString List_file){ printf("Running Macro \n"); std:: cout<GetIncludePath()<< std::endl; // gSystem->AddIncludePath("-I. -I$ROOTSYS/include -I$ALICE_ROOT -I$ALICE_ROOT/include -I$ALICE_PHYSICS/include"); // gROOT->LoadMacro("ClassArbore.cxx++"); // gSystem->Load("ClassArbore_cxx.so"); ClassArbore tt; tt.SetInputFile(List_file); tt.SetOptions(); //tt.SetInputFile(kine_file); //tt.SetEvent(event); tt.SetOutputFile(); tt.SetPath(); tt.OpenOutputFile(); tt.BookHistograms(); tt.Loop(); tt.SaveHistograms(); tt.CloseOutputFile(); return 0; }