25 #include "coords_file.hpp" 33 split(std::string s) {
35 std::istringstream iss(s);
46 AsciiHandler::AsciiHandler(std::string fname, std::string mode)
50 this->_ifs.open(fname);
51 }
else if (mode ==
"w") {
52 this->_ofs.open(fname);
54 std::cerr <<
"unknown mode: " << mode << std::endl;
60 AsciiHandler::next() {
61 if (_ifs.is_open() && _ifs.good()) {
63 std::getline(_ifs, s);
69 return split<float>(s);
78 AsciiHandler::write(std::vector<float> row) {
79 if (_ofs.is_open() && _ofs.good()) {
95 XtcHandler::XtcHandler(std::string fname, std::string mode)
100 read_xtc_natoms(fname.c_str(), &_natoms);
101 _coord_buf =
static_cast<rvec*
>(calloc(_natoms,
sizeof(_coord_buf[0])));
103 _xdr = xdrfile_open(fname.c_str(), mode.c_str());
106 XtcHandler::~XtcHandler() {
120 int err = read_xtc(_xdr, _natoms, &step, &time_step, box, _coord_buf, &prec);
122 std::vector<float> v(_natoms*3);
123 for (
int i=0; i < _natoms; ++i) {
124 v[3*i] = _coord_buf[i][0];
125 v[3*i+1] = _coord_buf[i][1];
126 v[3*i+2] = _coord_buf[i][2];
136 XtcHandler::write(std::vector<float> row) {
138 float fake_box_matrix[3][3] = {{0,0,0}, {0,0,0}, {0,0,0}};
139 int natoms = row.size() / 3;
140 rvec* x =
static_cast<rvec*
>(calloc(natoms,
sizeof(rvec)));
141 for (
int i=0; i < natoms; ++i) {
143 x[i][1] = row[3*i+1];
144 x[i][2] = row[3*i+2];
146 write_xtc(_xdr, natoms, _nrow, _nrow*1.0f, fake_box_matrix, x, 1000.0f);
161 open(std::string fname, std::string mode) {
162 if ((fname.size() > 4)
163 && (fname.compare(fname.size()-4, 4,
".xtc") == 0)) {
164 return FilePointer(
new XtcHandler(fname, mode));
166 return FilePointer(
new AsciiHandler(fname, mode));