]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
messages moved to debug stream
authormasera <masera@f7af4fe6-9843-0410-8265-dc069ae4e863>
Tue, 17 Oct 2006 17:24:18 +0000 (17:24 +0000)
committermasera <masera@f7af4fe6-9843-0410-8265-dc069ae4e863>
Tue, 17 Oct 2006 17:24:18 +0000 (17:24 +0000)
ITS/AliITS.cxx
ITS/AliITSDigitizer.cxx
ITS/AliITSLoader.cxx
ITS/AliITSvPPRasymmFMD.cxx

index 679095c003195c2ebab6041341e32e4b8909a008..5e8d8e08b93418d0401de896e515a20b391a93d0 100644 (file)
@@ -1145,8 +1145,8 @@ AliLoader* AliITS::MakeLoader(const char* topfoldername){
     //builds ITSgetter (AliLoader type)
     //if detector wants to use castomized getter, it must overload this method
 
-    Info("MakeLoader","Creating AliITSLoader. Top folder is %s.",
-         topfoldername);
+    AliDebug(1,Form("Creating AliITSLoader. Top folder is %s.",
+         topfoldername));
     fLoader = new AliITSLoader(GetName(),topfoldername);
     return fLoader;
 }
index f7123febd44ec8916dad88658758f23b6ae706b4..96759dbcdf97b825550fde763a3a9bbb3e94d27a 100644 (file)
 #include <TTree.h>
 #include <TBranch.h>
 
-#include <AliRun.h>
-#include <AliRunLoader.h>
-#include <AliLoader.h>
-#include <AliRunDigitizer.h>
+#include "AliRun.h"
+#include "AliRunLoader.h"
+#include "AliLoader.h"
+#include "AliLog.h"
+#include "AliRunDigitizer.h"
 #include "AliITSDigitizer.h"
 #include "AliITSgeom.h"
 #include "AliITSsimulation.h"
@@ -213,11 +214,13 @@ void AliITSDigitizer::Exec(Option_t* opt){
     
     // Digitize
     fITS->MakeBranchInTreeD(outgime->TreeD());
-    if(fRoif!=0) Info("AliITSDigitizer","Region of Interest digitization selected");
-    else Info("AliITSDigitizer","No Region of Interest selected. Digitizing everything");
-    //cout <<"fModActive="<<fModActive<<" fRoif="<<fRoif;
+    if(fRoif!=0) {
+      AliDebug(1,"Region of Interest digitization selected");
+    }
+    else {
+      AliDebug(1,"No Region of Interest selected. Digitizing everything");
+    }
     if(fModActive==0) fRoif = 0; // fModActive array must be define for RIO cuts.
-    //cout <<" fRoif="<<fRoif<<endl;
 
     for(ifiles=0; ifiles<nfiles; ifiles++ )
      {
@@ -343,7 +346,7 @@ void AliITSDigitizer::SetByRegionOfInterest(TTree *ts){
       //cout << fModActive[m];
       //cout << endl;
     } // end for m
-    Info("AliITSDigitizer","Digitization by Region of Interest selected");
+    AliDebug(1,"Digitization by Region of Interest selected");
     sdig->Clear();
     delete sdig;
     return;
index b7c3d27c260a089ce1f57c3452e08a04f12c3449..55b3ca3983e3c7b1c8f8612cd47a0dddc906e3ea 100644 (file)
@@ -323,7 +323,7 @@ AliITSgeom* AliITSLoader::GetITSgeom(Bool_t force) {
     Error("GetITSgeom","no ITS geometry available");
     return NULL;
   }
-  AliWarning("AliITSgeom object has been fetched from galice.root file");
+  AliDebug(1,"AliITSgeom object has been fetched from galice.root file");
   return fGeom;
 }
 //______________________________________________________________________
index 7ebc189237c9c8ef43ee8327b7056d2180e1569b..bf559731c016472793538d922bbd75c20d3d3ffc 100644 (file)
@@ -654,14 +654,14 @@ void AliITSvPPRasymmFMD::CreateGeometry(){
     }// end if
 
 
-    AliInfo(Form("Detector thickness on layer 1 is set to %f microns",ddet1));
-    AliInfo(Form("Chip thickness on layer 1 is set to %f microns",dchip1));
-    AliInfo(Form("Detector thickness on layer 2 is set to %f microns",ddet2));
-    AliInfo(Form("Chip thickness on layer 2 is set to %f microns",dchip2));
+    AliDebug(1,Form("Detector thickness on layer 1 is set to %f microns",ddet1));
+    AliDebug(1,Form("Chip thickness on layer 1 is set to %f microns",dchip1));
+    AliDebug(1,Form("Detector thickness on layer 2 is set to %f microns",ddet2));
+    AliDebug(1,Form("Chip thickness on layer 2 is set to %f microns",dchip2));
     if(rails == 0 ) {
-      AliInfo("Rails are out.");
+      AliDebug(1,"Rails are out.");
     } else {
-      AliInfo("Rails are in.");
+      AliDebug(1,"Rails are in.");
     }// end if
 
     ddet1  = ddet1*0.0001/2.; // conversion from tot length in um to half in cm
@@ -5644,7 +5644,7 @@ void AliITSvPPRasymmFMD::Init(){
     // Return:
     //   none.
 
-    AliInfo(Form("Init: Major version %d Minor version %d",fMajorVersion,
+    AliDebug(1,Form("Init: Major version %d Minor version %d",fMajorVersion,
                 fMinorVersion));
     //
     if(fRead[0]=='\0') strncpy(fRead,fEuclidGeomDet,60);