]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
Code verbosity containment: AliInfo/Warning->AliDebug(1)
authordecaro <decaro@f7af4fe6-9843-0410-8265-dc069ae4e863>
Sat, 21 Nov 2009 11:24:09 +0000 (11:24 +0000)
committerdecaro <decaro@f7af4fe6-9843-0410-8265-dc069ae4e863>
Sat, 21 Nov 2009 11:24:09 +0000 (11:24 +0000)
TOF/AliTOFDigitMap.cxx
TOF/AliTOFDigitizer.cxx
TOF/AliTOFSDigitizer.cxx

index d95e46d68e625a53f6321e90171097670e0e8ebf..0d07fd1e076745dcde78f5c88ff5a7650f4b139d 100644 (file)
@@ -160,9 +160,9 @@ void AliTOFDigitMap::AddDigit(Int_t *vol, Int_t idigit)
   // 0 means empty pad, we need to shift indeces by 1
 
   if (fDigitMap[CheckedIndex(vol)][kMaxDigitsPerPad-1]!=0) {
-    AliWarning(Form("In the volume (Se%i, Pl%i, St%i, PadR%i, Pad%i) there is not more possibility to add other digits.", vol[0], vol[1], vol[2], vol[4], vol[3]));
-    AliWarning(Form("Then, the digit number %i will be not inserted in the digit map, i.e. it will be lost.", idigit));
-    AliWarning(Form("Please, check the possibility to increase the digit map size (succently set to %i)", kMaxDigitsPerPad));
+    AliDebug(1,Form("In the volume (Se%i, Pl%i, St%i, PadR%i, Pad%i) there is not more possibility to add other digits.", vol[0], vol[1], vol[2], vol[4], vol[3]));
+    AliDebug(1,Form("Then, the digit number %i will be not inserted in the digit map, i.e. it will be lost.", idigit));
+    AliDebug(1,Form("Please, check the possibility to increase the digit map size (succently set to %i)", kMaxDigitsPerPad));
     return;
   }
 
index fb7bc8a04644679b5b87ec5d1f2f279fe10a707d..591ac69d7b64046e97938af0ce13861cb1d89f9f 100644 (file)
@@ -197,7 +197,7 @@ void AliTOFDigitizer::Exec(Option_t* /*option*/)
   treeD->Fill();
 
   AliDebug(2,"----------------------------------------");
-  AliInfo(Form("%d digits have been created", fDigits->GetEntriesFast()));
+  AliDebug(1,Form("%d digits have been created", fDigits->GetEntriesFast()));
   AliDebug(2,"----------------------------------------");
 
   outgime->WriteDigits("OVERWRITE");
index dab096a05633d2e158b44bb5aae35c5ee153894f..3ee8dfcf3f02abd47566a3c59d368c381efb9fb7 100644 (file)
@@ -567,7 +567,7 @@ void AliTOFSDigitizer::Exec(Option_t *verboseOption) {
       AliDebug(2,"----------------------------------------");
       AliDebug(2,Form("After sdigitizing %d hits in event %d", nselectedHitsinEv, iEvent));
       //" (" << nHitsFromPrim << " from primaries and " << nHitsFromSec << " from secondaries) TOF hits, " 
-      AliInfo(Form("%d sdigits have been created", ntotalsdigitsinEv));
+      AliDebug(1,Form("%d sdigits have been created", ntotalsdigitsinEv));
       AliDebug(2,Form("(%d due to signals and %d due to border effect)", nsignalsdigitsinEv, nnoisesdigitsinEv));
       AliDebug(2,Form("%d total updates of the hit map have been performed in current event", ntotalupdatesinEv));
       AliDebug(2,"----------------------------------------");