X-Git-Url: http://git.treefish.org/~alex/phys/latlib.git/blobdiff_plain/6441a11e7c0fe2ab5bad813770474858302a88dd..e82cb4b1f88e18f5b9487e49f79b9a091942132f:/writeout.h?ds=inline diff --git a/writeout.h b/writeout.h index 48057d4..fc48c16 100644 --- a/writeout.h +++ b/writeout.h @@ -3,25 +3,33 @@ #include #include +#include using namespace std; - + class writeout { public: writeout(const string& wdir, const string& signature, const int& rank, const int& procs); - ostream *out; + void newsub(string subname); + map out; + ostream *log; ~writeout(); private: - ofstream of; - streambuf *buf; + map of; + map buf; + ofstream logf; + streambuf *logbuf; string fulldir; char cRank[20]; - string tstamp(); + int rank; int numprocs; - string getdatfile(); + string getdatfile(string subname); + string timestring(); + string signature; + static string longToStr (long arg); }; #endif