]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - PHOS/AliPHOSReconstructionTest.C
Corrected warnings
[u/mrichter/AliRoot.git] / PHOS / AliPHOSReconstructionTest.C
index 5a4c0d36721943dd7094e4b331c36a8225a8f205..da28aa01ba0e42ca5c6d67f4b31e8e2ca5d9371d 100644 (file)
@@ -3,26 +3,26 @@
 
 #include "TString.h"
 
-#include "PHOS/AliPHOSReconstructioner.h"
+#include "PHOS/AliPHOSReconstructor.h"
 #endif
 
 void Go(TString deb = ""){
-  AliPHOSReconstructioner * a ;   
+  AliPHOSReconstructor * a ;   
 
   cout << "AliPHOS:> Single File default reconstruction started" << endl ;
-  a = new AliPHOSReconstructioner("galice.root") ;  //first -single file default reconstruction
+  a = new AliPHOSReconstructor("galice.root") ;  //first -single file default reconstruction
   a->ExecuteTask(deb.Data()) ;
   cout << "AliPHOS:> Single File default reconstruction finished" << endl ;
   // delete a ; 
 
   cout << "AliPHOS:> Single File branch TEST reconstruction started" << endl ;
-  a = new AliPHOSReconstructioner("galice.root","test") ;  //another branch single file recontruction
+  a = new AliPHOSReconstructor("galice.root","test") ;  //another branch single file recontruction
   a->ExecuteTask(deb.Data()) ;
   cout << "AliPHOS:> Single File branch TEST reconstruction ended" << endl ;
   //delete a ; 
   
   cout << "AliPHOS:> Split File default reconstruction started" << endl ;
-  a = new AliPHOSReconstructioner("galice.root","Default",kTRUE) ; //Split file default reconstruction
+  a = new AliPHOSReconstructor("galice.root","Default",kTRUE) ; //Split file default reconstruction
   a->ExecuteTask(deb.Data()) ;
   cout << "AliPHOS:> Split File default reconstruction ended" << endl ;
   //delete a ;