]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - STEER/AliRndm.cxx
Change of coordinate system x->-x, z->-z
[u/mrichter/AliRoot.git] / STEER / AliRndm.cxx
index 63a535f496c6c63d893631bdb5f2cf3fb0eb524a..facdc8ee62d9e753e0ba3b731a5477419fe1d4b3 100644 (file)
  * provided "as is" without express or implied warranty.                  *
  **************************************************************************/
 
-/*
-$Log$
-Revision 1.2  2000/12/01 08:40:48  alibrary
-Correction of a small bug - sRandom can be used now
-
-Revision 1.1  2000/11/30 07:12:48  alibrary
-Introducing new Rndm and QA classes
-
-*/
+/* $Id$ */
 
 ///////////////////////////////////////////////////////////////////////////////
 //                                                                           //
 //                                                                           //
 ///////////////////////////////////////////////////////////////////////////////
 
-#include "TSystem.h"
 #include "TFile.h"
+#include "TError.h"
+#include "TRandom3.h"
+#include "TSystem.h"
 
 #include "AliRndm.h"
-#include "TRandom3.h"
 
 ClassImp(AliRndm)
 
+//_______________________________________________________________________
+AliRndm::AliRndm():
+  fRandom(gRandom)
+{
+  // 
+  // Default ctor
+  //
+}
+
+//_______________________________________________________________________
+AliRndm::AliRndm(const AliRndm& rn):
+  fRandom(gRandom)
+{
+  //
+  // Copy constructor
+  //
+  rn.Copy(*this);
+}
+
+//_______________________________________________________________________
+void AliRndm::Copy(AliRndm&) const
+{
+  ::Fatal("Copy","Not implemented\n");
+}
+
 
 //_____________________________________________________________________________
 void AliRndm::Rndm(Float_t* array, const Int_t size) const