]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - CONTAINERS/AliArrayI.cxx
Changed from hardcoded param to a version which gets the param string from AliL3Trans...
[u/mrichter/AliRoot.git] / CONTAINERS / AliArrayI.cxx
index 101d1ef039dfbd11837366200358e136f8a52259..ae37f08c4b80ec1c37ab2914944a076fe2c52465 100644 (file)
@@ -15,6 +15,9 @@
 
 /*
 $Log$
+Revision 1.1  2000/11/01 15:57:13  kowal2
+Moved from the TPC directory
+
 Revision 1.2  2000/04/17 09:37:33  kowal2
 removed obsolete AliTPCDigitsDisplay.C
 
@@ -47,29 +50,3 @@ void AliArrayI::Expand(Int_t n)
   fArray = (Int_t*)  TStorage::ReAlloc(fArray, n * sizeof(Int_t),fN * sizeof(Int_t));
   if (fArray!=0) fN= n; 
 }
-/*
-void AliArrayI::Streamer(TBuffer &R__b)
-{
-   // Stream an object of class AliTPC.
-
-   if (R__b.IsReading()) {
-      Version_t R__v = R__b.ReadVersion(); if (R__v) { }
-      TObject::Streamer(R__b);     
-      //read pad parameters
-      R__b >> fN;
-      if (fArray!=0) {
-       delete [] fArray;
-       fArray = 0;
-      }
-      if (fN>0){
-       fArray = new Int_t[fN];
-       R__b.ReadFastArray(fArray,fN); 
-      }
-   } else {
-      R__b.WriteVersion(AliArrayI::IsA());
-      TObject::Streamer(R__b);   
-      R__b << fN;     
-      if (fN>0) R__b.WriteFastArray(fArray,fN); 
-   }
-}
-*/