#ifndef LESTER_FLATRANDOM_H #define LESTER_FLATRANDOM_H /* Alter the implementation of the function FlatRandom() below so that you get your random numbers from your preferred source. */ #include "CLHEP/Random/RandFlat.h" namespace Lester { double FlatRandom() { return CLHEP::RandFlat::shoot(); } } #endif