]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PHOS/AliPHOSReconstructionTest.C
8807b02743fc03767072bfcbe7cf7a06b56630a1
[u/mrichter/AliRoot.git] / PHOS / AliPHOSReconstructionTest.C
1 void AliPHOSReconstructionTest(){
2 cout << "AliPHOS:> Single File default reconstruction started" << endl ;
3 AliPHOSReconstructioner a("galice.root") ;  //first -single file default reconstruction
4 a.ExecuteTask() ;
5 cout << "AliPHOS:> Single File default reconstruction finished" << endl ;
6 cout << "AliPHOS:> Single File branch TEST reconstruction started" << endl ;
7 AliPHOSReconstructioner a("galice.root","test") ;  //another branch single file recontruction
8 a.ExecuteTask() ;
9 cout << "AliPHOS:> Single File branch TEST reconstruction ended" << endl ;
10 cout << "AliPHOS:> Split File default reconstruction started" << endl ;
11 AliPHOSReconstructioner a("galice.root","Default",kTRUE) ; //Split file default reconstruction
12 a.ExecuteTask() ;
13 cout << "AliPHOS:> Split File default reconstruction ended" << endl ;
14 cout << "--------AliPHOS:> Reconstruction OK------------------"<< endl ;
15
16 }