CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
RandomP8.h
Go to the documentation of this file.
1 #include <Pythia8/Pythia.h>
2 #include "CLHEP/Random/RandomEngine.h"
3 
4 extern CLHEP::HepRandomEngine* randomEngine;
5 
6 class RandomP8 : public Pythia8::RndmEngine {
7 
8  public:
9 
10  // Constructor.
11  RandomP8() {;}
12 
13  // Routine for generating a random number.
14  double flat();
15 
16  private:
17 
18 };
CLHEP::HepRandomEngine * randomEngine
Definition: PYR.cc:4
double flat()
Definition: RandomP8.cc:8
RandomP8()
Definition: RandomP8.h:11