]> git.treefish.org Git - phys/heatbath.git/blob - heatbath.cpp
Fixed wrong 1mr+ update.
[phys/heatbath.git] / heatbath.cpp
1 #include <complex>
2
3 #include "latlib/o815/o815.h"
4
5 #ifdef ALGORITHM_NOR
6 #define ALGORITHM "nor"
7 #include "sim-nor.hpp"
8 #elif ALGORITHM_R
9 #define ALGORITHM "r"
10 #include "sim-r.hpp"
11 #elif ALGORITHM_1MR
12 #define ALGORITHM "1mr"
13 #include "sim-1mr.hpp"
14 #elif ALGORITHM_1MRPLUS
15 #define ALGORITHM "1mr+"
16 #include "sim-1mr+.hpp"
17 #elif ALGORITHM_1MRMINUS
18 #define ALGORITHM "1mr-"
19 #include "sim-1mr-.hpp"
20 #elif ALGORITHM_RMINUS
21 #define ALGORITHM "r-"
22 #include "sim-r-.hpp"
23 #else
24 #error NO UPDATE-ALGORITHM DEFINED!
25 #endif
26
27 o815 *O815;
28 sim *Sim;
29
30 const complex<double> _i_ = complex<double>(0.0,1.0);
31
32 #include "obs_phi2.hpp"
33 #include "obs_phi2_hist.hpp"
34 #include "obs_phip2_hist.hpp"
35
36 o815::comoption specOps[] = {
37   { "mass", required_argument, NULL, 'm', "set mass", "min:max:inc" },
38   { "", 0, NULL, 0, "", "" }
39 };
40
41 void parseSpecOps() 
42 {
43   for (int isopt = 0; isopt < O815->parsedSpecOps.size(); isopt++)
44     switch(O815->parsedSpecOps[isopt].first) {
45     case 'm':
46       O815->paraQ->addRange("mass", O815->parsedSpecOps[isopt].second);
47       break;
48     }
49 }
50
51 void helpHeader() 
52
53   cout << "Usage: ./heatbath-"ALGORITHM" [OPTIONS] [obs1] ... [obsN]" << endl << endl;
54 }
55
56 void parseLonelyArgs()
57 {
58   for (vector<char*>::iterator lonit = O815->lonelyArgs.begin(); lonit != O815->lonelyArgs.end(); ++lonit) {
59     if ( strcmp(*lonit, "phi2") == 0 ) {
60       *O815->out->log << "MASTER: registered observable: phi2" << endl << flush;
61       O815->observables.push_back(new obs_phi2(O815));
62     }
63     else if ( strcmp(*lonit, "phi2_hist") == 0 ) {
64       *O815->out->log << "MASTER: registered observable: phi2_hist" << endl << flush;
65       O815->observables.push_back(new obs_phi2_hist(O815));
66     }
67     else if ( strcmp(*lonit, "phip2_hist") == 0 ) {
68       *O815->out->log << "MASTER: registered observable: phip2_hist" << endl << flush;
69       O815->observables.push_back(new obs_phip2_hist(O815));
70     }
71   }
72 }
73
74 int main (int argc, char *argv[])
75 {
76   O815 = new o815(argc, argv, "heatbath-"ALGORITHM, specOps, &helpHeader);
77
78   O815->addPara("mass", 1);
79
80   parseSpecOps();
81
82   O815->postParaInit();
83
84   O815->Sim = new sim(O815);
85
86   parseLonelyArgs();
87   
88   O815->mainLoop();
89
90   delete O815;
91   return 0;
92 }