--- trunk/mdtools/headers/randomSPRNG.hpp 2003/01/03 22:04:50 223 +++ trunk/mdtools/headers/randomSPRNG.hpp 2003/01/27 21:28:19 249 @@ -1,4 +1,4 @@ -#idndef __randomSPRNG_H +#ifndef __randomSPRNG_H #define __randomSPRNG_H /* Define the random number generator used by SPRNG @@ -22,20 +22,20 @@ class randomSPRNG{ (protected) int nSPRNGStreams; static int nStreamsInitialized; -} +}; class gaussianSPRNG : protected randomSPRNG{ public: - gaussianSPRNG(iseed):randomSPRNG(iseed){} + gaussianSPRNG(int iseed):randomSPRNG(iseed){} ~gaussianSPRNG(){} double getGaussian(); protected: -} +};