#ifndef _EVENTGEN_H_ #define _EVENTGEN_H_ #include using namespace std; class histogramEventGenerator { public: histogramEventGenerator(string filename); long next(); // produce the next random number protected: // YOUR VARIABLES GO HERE }; class uniformEventGenerator { public: uniformEventGenerator(long mean); long next(); // produce the next random number protected: // YOUR VARIABLES GO HERE }; #endif