]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - TRD/AliTRDarrayI.cxx
Added a prototection to prevent deleting the run loader in case the getter is inoked...
[u/mrichter/AliRoot.git] / TRD / AliTRDarrayI.cxx
index ace0b347684b75e1f74a48029c240024a65860f6..aed8018db16ae21df156d585328301d90abd304a 100644 (file)
  * provided "as is" without express or implied warranty.                  *
  **************************************************************************/
 
-/*
-$Log$
-Revision 1.2  2000/05/08 16:17:27  cblume
-Merge TRD-develop
-
-Revision 1.1.4.1  2000/05/08 14:35:54  cblume
-Update
-
-Revision 1.1  2000/02/28 18:57:18  cblume
-Add new TRD classes
-
-*/
+/* $Id$ */
 
 ///////////////////////////////////////////////////////////////////////
 //                                                                   //  
@@ -41,6 +30,15 @@ Add new TRD classes
 
 ClassImp(AliTRDarrayI)
 
+//_____________________________________________________________________________
+AliTRDarrayI::AliTRDarrayI():TArrayI()
+{
+  //
+  // Default constructor
+  //
+
+}
+
 //_____________________________________________________________________________
 AliTRDarrayI::~AliTRDarrayI()
 {
@@ -51,18 +49,17 @@ AliTRDarrayI::~AliTRDarrayI()
 }
 
 //_____________________________________________________________________________
-void AliTRDarrayI::Copy(AliTRDarrayI &a)
+void AliTRDarrayI::Copy(TObject &a)
 {
   //
   // Copy function
   //
 
   TObject::Copy(a);
-  TArrayI::Copy(a);
+  TArrayI::Copy(((TArrayI &) a));
 
 }
 
-
 //_____________________________________________________________________________
 void AliTRDarrayI::Expand(Int_t n)
 {