]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - TOF/AliTOFDDLRawData.cxx
Fix for TOF new calib task for CPass
[u/mrichter/AliRoot.git] / TOF / AliTOFDDLRawData.cxx
index b42a8263dcaca4eeff5ce292250da0e9e7ae0e0c..099903e19a0e1d4b10060ffc91d94dc98012e112 100644 (file)
@@ -91,6 +91,10 @@ Revision 0.01  2004/6/11 A.De Caro, S.B.Sellitto, R.Silvestri
 
 extern TRandom *gRandom;
 
+using std::ofstream;
+using std::endl;
+using std::cout;
+using std::ios;
 ClassImp(AliTOFDDLRawData)
 
 //---------------------------------------------------------------------------
@@ -854,14 +858,14 @@ void AliTOFDDLRawData::MakeTRMtrailer(UInt_t *buf)
   UInt_t trmCRC=0x0;
   for (Int_t ii=fIndex-(fWordsPerTRM-1); ii<fIndex; ii++)
     trmCRC ^= buf[ii];
-  printf(" A trmCRC=%d\n",trmCRC);
+  //PH  printf(" A trmCRC=%d\n",trmCRC);
 
   word = 0x0;
   word ^= ( (trmCRC & 0x00000fff) >>  0);
   word ^= ( (trmCRC & 0x00fff000) >> 12);
   word ^= ( (trmCRC & 0xff000000) >> 24);
 
-  printf(" B trmCRC=%d\n",word);
+  //PH  printf(" B trmCRC=%d\n",word);
 
   AliBitPacking::PackWord(word,baseWord, 4,15); // event CRC --> CHANGED