test commit and push upstream to origin
[cluster_expansion_mc.git] / MonteCarlo.h
blob48ab98a4e4dbd870bba76803f61fae68a52174c1
1 /*
2 * MonteCarlo.h
4 * Created on: Feb 5, 2010
5 * Author: rieger
6 */
8 #ifndef MONTECARLO_H_
9 #define MONTECARLO_H_
11 #include "Structure.h"
12 #include "Interactions.h"
15 class MonteCarlo {
16 long mcSteps;
17 double temperature;
18 static const double kBoltzmann = 8.617386e-05;// in eV*K^-1
19 Structure mcStructure;
20 void mcMove();
21 void mcSnapshot();
25 #endif /* MONTECARLO_H_ */