]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - EVGEN/AliGenHalo.cxx
Make revisions needed for compilation from the main AliRoot tree
[u/mrichter/AliRoot.git] / EVGEN / AliGenHalo.cxx
index 7f914866a040bcb259409cd0b3b4e1b016e1e047..8fb4b372aa9cada1233382067c3f82def2d9a6b7 100644 (file)
@@ -32,7 +32,9 @@
 ClassImp(AliGenHalo)
 
 AliGenHalo::AliGenHalo()
-    :AliGenerator(-1)
+    :AliGenerator(-1),
+     fp(0),
+     fFileName(0)
 {
 // Constructor
     fName="Halo";
@@ -40,11 +42,12 @@ AliGenHalo::AliGenHalo()
 //
 //  Read all particles
     fNpart=-1;
-    fp=0;
 }
 
 AliGenHalo::AliGenHalo(Int_t npart)
-    :AliGenerator(npart)
+    :AliGenerator(npart),
+     fp(0),
+     fFileName(0)
 {
 // Constructor
     fName="Halo";
@@ -52,17 +55,8 @@ AliGenHalo::AliGenHalo(Int_t npart)
 //
 //  Read all particles
     fNpart=-1;
-    fp=0;
 }
 
-AliGenHalo::AliGenHalo(const AliGenHalo & Halo)
-    :AliGenerator(Halo)
-{
-// Copy constructor
-    Halo.Copy(*this);
-}
-
-
 //____________________________________________________________
 AliGenHalo::~AliGenHalo()
 {
@@ -135,23 +129,6 @@ void AliGenHalo::Generate()
 }
  
 
-AliGenHalo& AliGenHalo::operator=(const  AliGenHalo& rhs)
-{
-// Assignment operator
-    rhs.Copy(*this);
-    return *this;
-}
-
-
-void AliGenHalo::Copy(TObject&) const
-{
-    //
-    // Copy 
-  //
-    Fatal("Copy","Not implemented!\n");
-}
-
-