]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - ITS/AliITShit.cxx
Changes needed by ICC/IFC compiler (Intel)
[u/mrichter/AliRoot.git] / ITS / AliITShit.cxx
index 21a38d5a1ffc0f4eab7e9271e1c84ba1c4737b21..5e10b5a9317068ca40eafdbdcd433c0ccbe6a1c4 100644 (file)
 
 /*
 $Log$
+Revision 1.13  2002/03/09 18:35:35  nilsen
+Added functions to print out Hit data members.
+
+Revision 1.12  2002/03/08 16:05:05  nilsen
+Standeard io streamers added to make debugging et al. easier.
+
 Revision 1.11  2001/01/30 09:23:13  hristov
 Streamers removed (R.Brun)
 
@@ -482,11 +488,16 @@ void AliITShit::Print(ostream *os){
 #else
     Int_t fmt;
 #endif
+#else
+#if defined __ICC
+    ios::fmtflags fmt;
 #else
     Int_t fmt;
+#endif
 #endif
  
     fmt = os->setf(ios::scientific);  // set scientific floating point output
+    *os << fTrack << " " << fX << " " << fY << " " << fZ << " ";
     fmt = os->setf(ios::hex); // set hex for fStatus only.
     *os << fStatus << " ";
     fmt = os->setf(ios::dec); // every thing else decimel.
@@ -503,6 +514,8 @@ void AliITShit::Read(istream *is){
 // Standard input format for this class.
 ////////////////////////////////////////////////////////////////////////
  
+
+    *is >> fTrack >> fX >> fY >> fZ;
     *is >> fStatus >> fLayer >> fLadder >> fDet >> fPx >> fPy >> fPz >>
           fDestep >> fTof;
     return;