]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - TRD/AliTRDarrayF.cxx
Correction to the destructor
[u/mrichter/AliRoot.git] / TRD / AliTRDarrayF.cxx
index 223375dabf88660fbba0144ae0f5e3e2924cefc6..9f1ebf08bafa8c8198a59d14c6b8c01a162083a3 100644 (file)
 
 /*
 $Log$
+Revision 1.4  2000/06/09 11:10:07  cblume
+Compiler warnings and coding conventions, next round
+
+Revision 1.3  2000/06/08 18:32:58  cblume
+Make code compliant to coding conventions
+
 Revision 1.2  2000/05/08 16:17:27  cblume
 Merge TRD-develop
 
@@ -38,6 +44,15 @@ Add float array
 
 ClassImp(AliTRDarrayF)
 
+//_____________________________________________________________________________
+AliTRDarrayF::AliTRDarrayF():TArrayF()
+{
+  //
+  // Default constructor
+  //
+
+}
+
 //_____________________________________________________________________________
 AliTRDarrayF::~AliTRDarrayF()
 {
@@ -48,14 +63,14 @@ AliTRDarrayF::~AliTRDarrayF()
 }
 
 //_____________________________________________________________________________
-void AliTRDarrayF::Copy(AliTRDarrayF &a)
+void AliTRDarrayF::Copy(TObject &a)
 {
   //
   // Copy function
   //
 
   TObject::Copy(a);
-  TArrayF::Copy(a);
+  TArrayF::Copy(((TArrayF &) a));
 
 }