]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - TEvtGen/EvtGenBase/EvtRandomEngine.hh
Updates EvtGen Code
[u/mrichter/AliRoot.git] / TEvtGen / EvtGenBase / EvtRandomEngine.hh
index f168c5a14439f0fc517d41c8f3bd8834d1ba9453..a849e64183d0e9c4bd0d6c2096177493bbd94ccd 100644 (file)
@@ -24,8 +24,6 @@
 #ifndef EVTRANDOMENGINE_HH
 #define EVTRANDOMENGINE_HH
 
-#include <TRandom.h>
-
 class EvtRandomEngine{
 
 public:
@@ -38,33 +36,6 @@ private:
 
 };
 
-//define class for generating random numbers (I put this in place of the commented part)
-class EvtNUMRandomEngine:public EvtRandomEngine{
-public:
-  double random(){return  gRandom->Rndm();}
-};
-
-
-//old lines: those are in the macro testEvtGen.cc    
-/*
-//define class for generating random numbers
-class EvtCLHEPRandomEngine:public EvtRandomEngine{
-public:
-  double random();
-};
-
-#ifdef NOCLHEPNAMESPACE
-namespace CLHEP {
-typedef HepJamesRandom HepJamesRandom ;
-}
-#endif
-
-double EvtCLHEPRandomEngine::random(){
-  static CLHEP::HepJamesRandom randengine;
-  return randengine.flat();
-}
-*/
-
 #endif