#endif
#include "obs_phi2.hpp"
+#include "obs_phi2_hist.hpp"
o815 *O815;
sim *Sim;
if ( strcmp(*lonit, "phi2") == 0 ) {
*O815->out->log << "MASTER: registered observable: phi2" << endl << flush;
O815->observables.push_back(new obs_phi2(O815));
- }
+ }
+ else if ( strcmp(*lonit, "phi2_hist") == 0 ) {
+ *O815->out->log << "MASTER: registered observable: phi2_hist" << endl << flush;
+ O815->observables.push_back(new obs_phi2_hist(O815));
+ }
}
}