Compilation warning suppression
authordecaro <decaro@f7af4fe6-9843-0410-8265-dc069ae4e863>
Fri, 8 Feb 2008 15:08:56 +0000 (15:08 +0000)
committerdecaro <decaro@f7af4fe6-9843-0410-8265-dc069ae4e863>
Fri, 8 Feb 2008 15:08:56 +0000 (15:08 +0000)
EVE/EveDet/AliEveTOFDigitsInfo.cxx

index de82a3d821921f75c4de62fd048e2a96512a303e..7af5b9893c9deaa01a4a002949dfbfc4210d0d67 100644 (file)
@@ -74,12 +74,15 @@ void AliEveTOFDigitsInfo::ReadRaw(AliRawReader* rawReader, Int_t nEvent)
   //ftxt << endl;
   //ftxt << "  " << nEvent << endl;
 
+  if (nEvent<0) printf("%3i\n", nEvent); // only to use nEvent variable
+
   const Int_t kDDL = AliDAQ::NumberOfDdls("TOF");
 
   TClonesArray *tofDigits = new TClonesArray("AliTOFdigit",10000);
   fTree = new TTree();
   Int_t bufsize = 32000;
-  TBranch *branch = fTree->Branch("TOF", &tofDigits, bufsize);
+  //TBranch *branch = fTree->Branch("TOF", &tofDigits, bufsize);
+  fTree->Branch("TOF", &tofDigits, bufsize);
   fTree->GetEntry(0);
 
   TClonesArray * clonesRawData = 0x0;