]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - ESDCheck/AliT0QATask.cxx
New method to clone current raw-data event and create a single-event raw-reader....
[u/mrichter/AliRoot.git] / ESDCheck / AliT0QATask.cxx
index 3473248b42ab9bc8a98c2f913f9b793d5293ee94..e6666bf600c5972099f8fcb26d38f9972ab0a142 100644 (file)
@@ -27,6 +27,7 @@
 #include <TH1F.h>
 #include <TLegend.h> 
 #include <TROOT.h>
+#include <TString.h> 
 
 #include "AliT0QATask.h" 
 #include "AliESD.h" 
@@ -38,6 +39,7 @@ AliT0QATask::AliT0QATask(const char *name) :
   AliAnalysisTask(name,""),  
   fChain(0),
   fESD(0), 
+  fOutputContainer(0),
   fhT01(0),
   fhT02(0),
   fhT03(0)
@@ -179,11 +181,11 @@ void AliT0QATask::Terminate(Option_t *)
  
   AliInfo(Form("!!! All the eps files are in %s.tar.gz !!!", GetName())) ;
 
-  char * report ; 
+  TString report ; 
   if(problem)
     report="Problems found, please check!!!";  
   else 
     report="OK";
 
-  AliInfo(Form("*** %s Summary Report: %s\n",GetName(), report)) ; 
+  AliInfo(Form("*** %s Summary Report: %s\n",GetName(), report.Data())) ; 
 }