]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - TRD/AliTRDarrayI.h
Adding missing include
[u/mrichter/AliRoot.git] / TRD / AliTRDarrayI.h
index fdae3ec1d4a9860b958d6ec556f88681185a46e9..bb59602f61cc82734a5421892c9bcda9c8d15084 100644 (file)
@@ -1,21 +1,30 @@
-#ifndef AliTRDArrayI_H
-#define AliTRDArrayI_H
+#ifndef ALITRDARRAYI_H
+#define ALITRDARRAYI_H
 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
  * See cxx source for full Copyright notice                               */
 
-/* $Id: AliTRDarrayI.h,v */
+/* $Id$*/
 
-#include "TObject.h"
-#include "TArrayI.h"
+#include <TObject.h>
+#include <TArrayI.h>
+/////////////////////////////////////////////////////////////
+//                                                         //
+//  Array of integers                                      //
+//  Origin M.Ivanov                                        //
+//                                                         //
+/////////////////////////////////////////////////////////////                   
 
-class AliTRDarrayI: public TObject ,public TArrayI {
+class AliTRDarrayI: public TObjectpublic TArrayI {
 
 public:
 
-  ~AliTRDarrayI();
+  AliTRDarrayI();
+  virtual ~AliTRDarrayI();
+  void Copy(TObject &a) const;
   void Expand(Int_t n);  
 
-  ClassDef(AliTRDarrayI,1)  
+  ClassDef(AliTRDarrayI,1)  // An array of integers
 
 };