]> git.treefish.org Git - phys/latlib.git/blob - o815/obs.cpp
Removed mpi.h from o815 header.
[phys/latlib.git] / o815 / obs.cpp
1 #include "o815.h"
2
3 #include "latlib/hypercache.h"
4
5 #include <mpi.h>
6
7 void o815::obs::finish() {
8   _finish();
9 }
10
11 void o815::obs::start() {
12   if(O815->rank==0) {
13     *out << "#" << O815->programid << "-" << obsid << obsidpostfix << O815->headMaster() << endl << flush;
14     *out << "#" << O815->programid << "-" << obsid << obsidpostfix << O815->headMaster() << "-" << datadesc << endl << flush;
15   }
16
17   if (O815->comargs.outdir=="")
18     MPI_Barrier(MPI_COMM_WORLD);
19   
20   _start();
21 }
22
23 void o815::obs::meas(bool loadedobs, const int& nthmeas) {
24   _meas(loadedobs, nthmeas);
25 }
26
27 o815::obs::obs(const string& _obsid, const string& _datadesc, o815 *_O815, const int& obsmemSize, const string& _obsidpostfix) {
28   obsid = _obsid;
29   obsidpostfix = _obsidpostfix;
30   O815 = _O815;
31   datadesc = _datadesc;
32   O815->out->newsub(obsid+obsidpostfix);
33
34   out = O815->out->out[obsid+obsidpostfix];
35   log = O815->out->log;
36   paraQ = O815->paraQ;
37
38   ocid = hypercache::initO(O815->programid + "-" + obsid, O815->comargs.nequi, O815->comargs.nskip,
39                            O815->comargs.obscache.first, &obsMem, obsmemSize, O815->comargs.obscache.second, log);
40 }