50 |
|
#include <iostream> |
51 |
|
#include <fstream> |
52 |
|
#include <string> |
53 |
+ |
#include <string.h> |
54 |
+ |
#include <stdio.h> |
55 |
+ |
#include <stdlib.h> |
56 |
+ |
#include <unistd.h> |
57 |
+ |
#include <sys/types.h> |
58 |
+ |
#include <sys/stat.h> |
59 |
+ |
#include <algorithm> |
60 |
+ |
#include <vector> |
61 |
+ |
#include <map> |
62 |
|
|
63 |
+ |
#include "primitives/Atom.hpp" |
64 |
|
#include "brains/SimInfo.hpp" |
65 |
+ |
#include "brains/Thermo.hpp" |
66 |
+ |
#include "primitives/StuntDouble.hpp" |
67 |
|
|
56 |
– |
#ifdef IS_MPI |
57 |
– |
#include <mpi.h> |
58 |
– |
#endif |
59 |
– |
|
68 |
|
namespace oopse { |
69 |
|
|
70 |
|
class RestWriter{ |
73 |
|
RestWriter( SimInfo* info ); |
74 |
|
~RestWriter(); |
75 |
|
|
76 |
< |
void writeZangle(); |
76 |
> |
void writeZAngFile(); |
77 |
|
|
78 |
|
private: |
79 |
< |
|
79 |
> |
void writeZangle(std::ostream& finalOut); |
80 |
> |
|
81 |
|
SimInfo* info_; |
82 |
< |
std::string outName; |
74 |
< |
|
82 |
> |
std::string outName_; |
83 |
|
}; |
84 |
|
|
85 |
|
} |