// RandomSeed.cpp #include "CLHEP/Random/RandFlat.h" long MAX_SEED = 100000000; // Return a random number seed defined to be a long in the range // (0,MAX_SEED). long RandomSeed(int i) { return RandFlat::shootInt(MAX_SEED); }