]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - EVE/alice-macros/jetplane.C
Adding more information to the debug output
[u/mrichter/AliRoot.git] / EVE / alice-macros / jetplane.C
index 4059191367b4f540ba7404111c08723b27931ef7..0cf582e7e705a5b47b61cf495eaf42560d2be7a5 100644 (file)
@@ -4,10 +4,11 @@
 /**************************************************************************
  * Copyright(c) 1998-2008, ALICE Experiment at CERN, all rights reserved. *
  * See http://aliceinfo.cern.ch/Offline/AliRoot/License.html for          *
- * full copyright notice.                                                 * 
+ * full copyright notice.                                                 *
  **************************************************************************/
+
 AliEveJetPlane* jetplane(Int_t iev)
-{      
+{
   TFile* f       = new TFile("aod.root");
   TTree* treeAOD = (TTree*) f->Get("AOD");
   AliAODEvent* aod = new AliAODEvent();
@@ -20,7 +21,7 @@ AliEveJetPlane* jetplane(Int_t iev)
 
   TClonesArray* jets = aod->GetJets();
   Int_t njets = jets->GetEntries();
-  printf("AliEveEventManager: %5d Number of jets: %5d \n", iev, njets);
+  printf("Event: %5d Number of jets: %5d \n", iev, njets);
 
   for (Int_t ij = 0; ij < njets; ij++)
   {
@@ -32,7 +33,7 @@ AliEveJetPlane* jetplane(Int_t iev)
 
   TClonesArray* tracks = aod->GetTracks();
   Int_t ntracks = tracks->GetEntries();
-  printf("AliEveEventManager: %5d Number of tracks: %5d \n", iev, ntracks);
+  printf("Event: %5d Number of tracks: %5d \n", iev, ntracks);
 
   for (Int_t ij = 0; ij < ntracks; ij++)
   {