1 #if !defined(__CINT__) || defined(__MAKECINT__)
6 #include "PHOS/AliPHOSReconstructor.h"
9 void Go(TString deb = ""){
10 AliPHOSReconstructor * a ;
12 cout << "AliPHOS:> Single File default reconstruction started" << endl ;
13 a = new AliPHOSReconstructor("galice.root") ; //first -single file default reconstruction
14 a->ExecuteTask(deb.Data()) ;
15 cout << "AliPHOS:> Single File default reconstruction finished" << endl ;
18 cout << "AliPHOS:> Single File branch TEST reconstruction started" << endl ;
19 a = new AliPHOSReconstructor("galice.root","test") ; //another branch single file recontruction
20 a->ExecuteTask(deb.Data()) ;
21 cout << "AliPHOS:> Single File branch TEST reconstruction ended" << endl ;
24 cout << "AliPHOS:> Split File default reconstruction started" << endl ;
25 a = new AliPHOSReconstructor("galice.root","Default",kTRUE) ; //Split file default reconstruction
26 a->ExecuteTask(deb.Data()) ;
27 cout << "AliPHOS:> Split File default reconstruction ended" << endl ;
30 cout << "--------AliPHOS:> Reconstruction OK------------------"<< endl ;