]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - PHOS/AliPHOSQAChecker.cxx
removed iostream
[u/mrichter/AliRoot.git] / PHOS / AliPHOSQAChecker.cxx
index 4723bf4e24572c37ebdb2a10bd0bcadac78019b4..87893921bbfc826462976c1f114958b297f3f292 100644 (file)
@@ -27,7 +27,6 @@
 
 // --- Standard library ---
 
-#include <iostream.h>
 // --- AliRoot header files ---
 
 #include "AliPHOSQAChecker.h"
@@ -159,7 +158,7 @@ ClassImp(AliPHOSQAChecker)
 {
   // print the checker and sub-checkers, if any, name.  
 
-  cout << "Checker : " << GetName() << endl ;  
+  Info("Print", "Checker : %s", GetName()) ;  
 
 }
 
@@ -167,7 +166,7 @@ ClassImp(AliPHOSQAChecker)
   void AliPHOSQAChecker::PrintAlarms()
 {
   // Prints the alarms of all attached checkables
-  cout << "Checker name : " << GetName() << endl ; 
+  Info("PrintAlarms", "Checker name : %s", GetName()) ; 
   if ( !(fCheckablesList->IsEmpty() ) ) {
     TIter next( fCheckablesList ) ; 
     AliPHOSQAVirtualCheckable * checkable ; 
@@ -181,9 +180,9 @@ ClassImp(AliPHOSQAChecker)
 {
   // Prints the checkables attached to this checker
   if ( fCheckablesList->IsEmpty() ) 
-    cout << "No checkables are checked by " << GetName() << endl ; 
+    Info("Status", "No checkables are checked by %s", GetName()) ; 
   else {
-    cout << "The following checkables are checked by " << GetName() << endl ; 
+    Info("Status", "The following checkables are checked by %s", GetName()) ; 
     TIter next(fCheckablesList) ; 
     AliPHOSQAVirtualCheckable * checkable ; 
     while ( (checkable = (AliPHOSQAVirtualCheckable*)next() ) )