]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - STRUCT/AliALIFE.h
Corrections to obey the coding conventions
[u/mrichter/AliRoot.git] / STRUCT / AliALIFE.h
index bcfc46a78e72a6e9a5605aa253fc346f7c66c0c2..cbda6ec48e3e73a168f074d3bd8a50842ab13b65 100644 (file)
@@ -5,14 +5,18 @@
 
 /* $Id$ */
 
-#include "TFile.h"
+#include "TObject.h"
 #include "TString.h"
 
 class AliALIFE : public  TObject {
  public:
     AliALIFE(const char *name1, const char *name2);
     AliALIFE();    
-    ~AliALIFE(){;}
+    AliALIFE(const AliALIFE &rh) {
+      // copy ctor requested by coding convention but not needed
+      Fatal("Copy constructor","not implemented");
+    }
+    virtual ~AliALIFE() {}
     void Cylinder(Float_t rmin, Float_t rmax,
                  Float_t zmin, Float_t zmax,
                  Float_t pos[3],
@@ -62,6 +66,10 @@ class AliALIFE : public  TObject {
  private:
     void BodyHeader();
     void VolumeHeader();
+    AliALIFE & operator = (const AliALIFE &) {
+      // assignement operator requested by coding convention but not needed
+      return *this;
+    }
     
 
    ClassDef(AliALIFE,1)