]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
Redundant printout removed
authorskowron <skowron@f7af4fe6-9843-0410-8265-dc069ae4e863>
Thu, 2 Dec 2004 08:06:15 +0000 (08:06 +0000)
committerskowron <skowron@f7af4fe6-9843-0410-8265-dc069ae4e863>
Thu, 2 Dec 2004 08:06:15 +0000 (08:06 +0000)
ANALYSIS/AliReaderAOD.cxx

index 5467324a36720d4212cf59a2965af1e195c5e60a..86185b917c43469576aa5ef47e17546ef0a1d194 100644 (file)
@@ -305,7 +305,7 @@ Int_t AliReaderAOD::OpenFile(Int_t n)
     return 3;
   }
 
- Info("ReadNext","File Is Opened, Getting the TREE");
+ Info("ReadNext","File %s Is Opened, Getting the TREE",filename.Data());
  
  fTree = dynamic_cast<TTree*>(fFile->Get(fgkTreeName));
  if (fTree == 0x0)
@@ -414,7 +414,6 @@ Int_t AliReaderAOD::WriteAOD(AliReader* reader, const char* outfilename, const c
          {//else just pointer to event from input reader is passed
            recbuffer = event;
          } 
-       recbuffer->GetParticle(0)->Print();
       }
 
      if (reader->ReadsSim())
@@ -429,7 +428,6 @@ Int_t AliReaderAOD::WriteAOD(AliReader* reader, const char* outfilename, const c
          {//else just pointer to event from input reader is passed
            simbuffer = event;
          } 
-       simbuffer->GetParticle(0)->Print();
       }
      tree->Fill();
    }