]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
print debug information of HLT loglevel conmtains to kHLTLogDebug
authorrichterm <richterm@f7af4fe6-9843-0410-8265-dc069ae4e863>
Thu, 21 Jan 2010 07:56:00 +0000 (07:56 +0000)
committerrichterm <richterm@f7af4fe6-9843-0410-8265-dc069ae4e863>
Thu, 21 Jan 2010 07:56:00 +0000 (07:56 +0000)
- HLTOUT content
- HLT ESD

HLT/rec/AliHLTReconstructor.cxx

index 0b61f5a010091b7caaa37c45b66e1c69e390525b..e9114feef63e0c288772a1639ada15705d37c705 100644 (file)
@@ -416,7 +416,7 @@ void AliHLTReconstructor::FillESD(TTree* /*digitsTree*/, TTree* /*clustersTree*/
 
     AliHLTOUTDigitReader* pHLTOUT=new AliHLTOUTDigitReader(esd->GetEventNumberInFile(), fpEsdManager);
     if (pHLTOUT) {
-      ProcessHLTOUT(pHLTOUT, esd);
+      ProcessHLTOUT(pHLTOUT, esd, (pSystem->GetGlobalLoggingLevel()&kHLTLogDebug)!=0);
       delete pHLTOUT;
     } else {
       AliError("error creating HLTOUT handler");
@@ -475,6 +475,10 @@ void AliHLTReconstructor::ProcessHLTOUT(AliHLTOUT* pHLTOUT, AliESDEvent* esd, bo
       AliError("error processing HLTOUT");
     }
   }
+  if (bVerbose) {
+    AliInfo("HLT ESD content:");
+    esd->Print();
+  }
   pHLTOUT->Reset();
 }