ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/trunk/mdtools/headers/randomSPRNG.hpp
Revision: 218
Committed: Sun Dec 29 19:11:05 2002 UTC (22 years, 4 months ago) by chuckv
File size: 265 byte(s)
Log Message:
Changed thermo getKinetic and getPotential for MPI.
Added header for SPRNG random number generator class.

File Contents

# Content
1 #idndef __randomSPRNG_H
2 #define __randomSPRNG_H
3
4
5 class gaussianSPRNG{
6 public:
7
8 gaussianSPRNG();
9 ~gaussianSPRNG();
10
11 double getGaussianSPRNG();
12 }
13
14 class ranStreamSPRNG{
15 public:
16 ranStreamSPRNG();
17 ~ranStreamSPRNG();
18
19 double getRanStreamSPRNG();
20 }
21
22
23 #endif