Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018 #ifndef MYEVTRANDOMENGINE_HH
00019 #define MYEVTRANDOMENGINE_HH
00020
00021
00022 #include "CLHEP/Random/RandomEngine.h"
00023 #include "EvtGenBase/EvtRandomEngine.hh"
00024
00025 class myEvtRandomEngine : public EvtRandomEngine
00026 {
00027
00028 public:
00029
00030 myEvtRandomEngine(CLHEP::HepRandomEngine* xx);
00031
00032 virtual ~myEvtRandomEngine();
00033
00034 virtual double random();
00035
00036 private:
00037
00038 CLHEP::HepRandomEngine* the_engine;
00039
00040 };
00041
00042 #endif
00043