[bcf653] | 1 | /*
|
---|
| 2 | * Project: MoleCuilder
|
---|
| 3 | * Description: creates and alters molecular systems
|
---|
[0aa122] | 4 | * Copyright (C) 2010-2012 University of Bonn. All rights reserved.
|
---|
[5aaa43] | 5 | * Copyright (C) 2013 Frederik Heber. All rights reserved.
|
---|
[94d5ac6] | 6 | *
|
---|
| 7 | *
|
---|
| 8 | * This file is part of MoleCuilder.
|
---|
| 9 | *
|
---|
| 10 | * MoleCuilder is free software: you can redistribute it and/or modify
|
---|
| 11 | * it under the terms of the GNU General Public License as published by
|
---|
| 12 | * the Free Software Foundation, either version 2 of the License, or
|
---|
| 13 | * (at your option) any later version.
|
---|
| 14 | *
|
---|
| 15 | * MoleCuilder is distributed in the hope that it will be useful,
|
---|
| 16 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
| 17 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
| 18 | * GNU General Public License for more details.
|
---|
| 19 | *
|
---|
| 20 | * You should have received a copy of the GNU General Public License
|
---|
| 21 | * along with MoleCuilder. If not, see <http://www.gnu.org/licenses/>.
|
---|
[bcf653] | 22 | */
|
---|
| 23 |
|
---|
[ab4b55] | 24 | /*
|
---|
| 25 | * XyzParser.cpp
|
---|
| 26 | *
|
---|
| 27 | * Created on: Mar 2, 2010
|
---|
| 28 | * Author: metzler
|
---|
| 29 | */
|
---|
| 30 |
|
---|
[bf3817] | 31 | // include config.h
|
---|
| 32 | #ifdef HAVE_CONFIG_H
|
---|
| 33 | #include <config.h>
|
---|
| 34 | #endif
|
---|
| 35 |
|
---|
[9eb71b3] | 36 | //#include "CodePatterns/MemDebug.hpp"
|
---|
[112b09] | 37 |
|
---|
[c2808e] | 38 | #include <limits>
|
---|
[637358] | 39 | #include <vector>
|
---|
| 40 |
|
---|
[ad011c] | 41 | #include "CodePatterns/Log.hpp"
|
---|
| 42 | #include "CodePatterns/Verbose.hpp"
|
---|
[42127c] | 43 |
|
---|
[ab4b55] | 44 | #include "XyzParser.hpp"
|
---|
[42127c] | 45 |
|
---|
[6f0841] | 46 | #include "Atom/atom.hpp"
|
---|
[3bdb6d] | 47 | #include "Element/element.hpp"
|
---|
| 48 | #include "Element/periodentafel.hpp"
|
---|
[42127c] | 49 | #include "molecule.hpp"
|
---|
| 50 | #include "World.hpp"
|
---|
[ab4b55] | 51 |
|
---|
| 52 | using namespace std;
|
---|
| 53 |
|
---|
[765f16] | 54 | // declare specialized static variables
|
---|
| 55 | const std::string FormatParserTrait<xyz>::name = "xyz";
|
---|
| 56 | const std::string FormatParserTrait<xyz>::suffix = "xyz";
|
---|
| 57 | const ParserTypes FormatParserTrait<xyz>::type = xyz;
|
---|
| 58 |
|
---|
[ab4b55] | 59 | /**
|
---|
| 60 | * Constructor.
|
---|
| 61 | */
|
---|
[765f16] | 62 | FormatParser< xyz >::FormatParser() :
|
---|
| 63 | FormatParser_common(NULL),
|
---|
[97b825] | 64 | comment("")
|
---|
| 65 | {}
|
---|
[ab4b55] | 66 |
|
---|
| 67 | /**
|
---|
| 68 | * Destructor.
|
---|
| 69 | */
|
---|
[765f16] | 70 | FormatParser< xyz >::~FormatParser()
|
---|
| 71 | {}
|
---|
[ab4b55] | 72 |
|
---|
| 73 | /**
|
---|
| 74 | * Loads an XYZ file into the World.
|
---|
| 75 | *
|
---|
| 76 | * \param XYZ file
|
---|
| 77 | */
|
---|
[765f16] | 78 | void FormatParser< xyz >::load(istream* file)
|
---|
[0180d6] | 79 | {
|
---|
[dddbfe] | 80 | atom* newAtom = NULL;
|
---|
| 81 | molecule* newmol = NULL;
|
---|
[ab4b55] | 82 | int numberOfAtoms;
|
---|
[58fccca] | 83 | string elementtype;
|
---|
| 84 | string streambuffer;
|
---|
[637358] | 85 | std::vector<atom *> AddedAtoms;
|
---|
[ab4b55] | 86 |
|
---|
[0180d6] | 87 | // create the molecule
|
---|
[dddbfe] | 88 | newmol = World::getInstance().createMolecule();
|
---|
| 89 | newmol->ActiveFlag = true;
|
---|
[0180d6] | 90 |
|
---|
| 91 | // the first line tells number of atoms,
|
---|
| 92 | // where we need this construct due to skipping of empty lines below
|
---|
[58fccca] | 93 | getline(*file, streambuffer);
|
---|
[0180d6] | 94 | unsigned int step = 0;
|
---|
[4fdc65] | 95 | while (file->good()) {
|
---|
[58fccca] | 96 | std::stringstream numberstream(streambuffer);
|
---|
[0180d6] | 97 | numberstream >> numberOfAtoms;
|
---|
[637358] | 98 | if (step == 0)
|
---|
| 99 | AddedAtoms.resize(numberOfAtoms);
|
---|
[0180d6] | 100 | // the second line is always a comment
|
---|
[58fccca] | 101 | getline(*file, streambuffer);
|
---|
| 102 | comment = streambuffer;
|
---|
[259887] | 103 | LOG(3, "DEBUG: comment is '" << comment << "'.");
|
---|
[0180d6] | 104 |
|
---|
| 105 | for (int i = 0; i < numberOfAtoms; i++) {
|
---|
| 106 | // parse type and position
|
---|
[58fccca] | 107 | *file >> elementtype;
|
---|
[0180d6] | 108 | Vector tempVector;
|
---|
| 109 | for (int j=0;j<NDIM;j++) {
|
---|
| 110 | *file >> tempVector[j];
|
---|
| 111 | }
|
---|
[58fccca] | 112 | LOG(4, "INFO: Parsed type as " << elementtype << " and position at "
|
---|
[0180d6] | 113 | << tempVector << " for time step " << step);
|
---|
| 114 |
|
---|
| 115 | if (step == 0) {
|
---|
| 116 | newAtom = World::getInstance().createAtom();
|
---|
[58fccca] | 117 | newAtom->setType(World::getInstance().getPeriode()->FindElement(elementtype.c_str()));
|
---|
[0180d6] | 118 | newmol->AddAtom(newAtom);
|
---|
[637358] | 119 | AddedAtoms[i] = newAtom;
|
---|
| 120 | LOG(5, "INFO: Created new atom, setting " << i << " th component of AddedAtoms.");
|
---|
[0180d6] | 121 | } else {
|
---|
[637358] | 122 | newAtom = AddedAtoms[i];
|
---|
| 123 | LOG(5, "INFO: Using present atom " << *newAtom << " from " << i << " th component of AddedAtoms.");
|
---|
[58fccca] | 124 | ASSERT(newAtom->getType() == World::getInstance().getPeriode()->FindElement(elementtype.c_str()),
|
---|
| 125 | "FormatParser< xyz >::load() - atom has different type "+newAtom->getType()->getSymbol()+" than parsed now "+elementtype+", mixed up order?");
|
---|
[0180d6] | 126 | }
|
---|
| 127 | newAtom->setPositionAtStep(step, tempVector);
|
---|
[d74077] | 128 | }
|
---|
[58fccca] | 129 | getline (*file, streambuffer); // eat away rest of last line
|
---|
[0180d6] | 130 | // skip empty lines
|
---|
| 131 | unsigned int counter = 0;
|
---|
| 132 | while (file->good()) {
|
---|
[58fccca] | 133 | getline (*file, streambuffer);
|
---|
| 134 | LOG(4, "INFO: Skipped line is '" << streambuffer << "'");
|
---|
[0180d6] | 135 | counter++;
|
---|
[58fccca] | 136 | if (!streambuffer.empty())
|
---|
[0180d6] | 137 | break;
|
---|
| 138 | }
|
---|
| 139 | LOG(3, "INFO: I skipped "+toString(counter)+" empty lines.");
|
---|
| 140 | ++step;
|
---|
[4fdc65] | 141 | }
|
---|
[a58c16] | 142 | BOOST_FOREACH(const atom *_atom, const_cast<const World &>(World::getInstance()).getAllAtoms())
|
---|
| 143 | LOG(3, "INFO: Atom " << _atom->getName() << " " << *dynamic_cast<const AtomInfo *>(_atom) << ".");
|
---|
[4afa46] | 144 |
|
---|
| 145 | // refresh atom::nr and atom::name
|
---|
| 146 | newmol->getAtomCount();
|
---|
[ab4b55] | 147 | }
|
---|
| 148 |
|
---|
[d5b90b] | 149 | const std::string FormatParser< xyz >::printCoordinate(const double value)
|
---|
| 150 | {
|
---|
| 151 | std::stringstream position;
|
---|
| 152 | if (fabs(value) > 1000) // enforce precision for large components
|
---|
| 153 | position << std::fixed << std::setprecision(3) << value;
|
---|
| 154 | else
|
---|
| 155 | position << value;
|
---|
| 156 | return position.str();
|
---|
| 157 | }
|
---|
| 158 |
|
---|
[ab4b55] | 159 | /**
|
---|
[73916f] | 160 | * Saves the \a atoms into as a XYZ file.
|
---|
[ab4b55] | 161 | *
|
---|
[73916f] | 162 | * \param file where to save the state
|
---|
| 163 | * \param atoms atoms to store
|
---|
[ab4b55] | 164 | */
|
---|
[fac58f] | 165 | void FormatParser< xyz >::save(
|
---|
| 166 | ostream* file,
|
---|
| 167 | const std::vector<const atom *> &atoms) {
|
---|
[830b3e] | 168 | LOG(2, "DEBUG: Saving changes to xyz.");
|
---|
[0180d6] | 169 |
|
---|
| 170 | // get max and min trajectories
|
---|
[c2808e] | 171 | size_t min_trajectories = std::numeric_limits<size_t>::max();
|
---|
| 172 | size_t max_trajectories = std::numeric_limits<size_t>::min();
|
---|
[fac58f] | 173 | for (std::vector<const atom *>::const_iterator iter = atoms.begin();
|
---|
[0180d6] | 174 | iter != atoms.end();
|
---|
| 175 | ++iter) {
|
---|
| 176 | if (max_trajectories < (*iter)->getTrajectorySize())
|
---|
| 177 | max_trajectories = (*iter)->getTrajectorySize();
|
---|
[c2808e] | 178 | if (min_trajectories > (*iter)->getTrajectorySize())
|
---|
[0180d6] | 179 | min_trajectories = (*iter)->getTrajectorySize();
|
---|
| 180 | }
|
---|
[c2808e] | 181 | // no atoms? Then, they all have same amount
|
---|
| 182 | if (atoms.size() == 0)
|
---|
| 183 | min_trajectories = max_trajectories = 1;
|
---|
| 184 | ASSERT(min_trajectories == max_trajectories,
|
---|
| 185 | "FormatParser< xyz >::save() - not all atoms have same number of trajectories: "
|
---|
| 186 | +toString(min_trajectories)+" != "+toString(max_trajectories)+".");
|
---|
| 187 | LOG(2, "INFO: There are " << max_trajectories << " steps to save.");
|
---|
| 188 |
|
---|
| 189 | // always store at least one step
|
---|
| 190 | for (size_t step = 0; (step < max_trajectories) || (step == 0); ++step) {
|
---|
[0180d6] | 191 | if (step != 0)
|
---|
| 192 | *file << "\n";
|
---|
| 193 | //if (comment == "") {
|
---|
| 194 | time_t now = time((time_t *)NULL); // Get the system time and put it into 'now' as 'calender time'
|
---|
| 195 | comment = "Created by molecuilder on ";
|
---|
| 196 | // ctime ends in \n\0, we have to cut away the newline
|
---|
| 197 | std::string time(ctime(&now));
|
---|
| 198 | size_t pos = time.find('\n');
|
---|
| 199 | if (pos != 0)
|
---|
| 200 | comment += time.substr(0,pos);
|
---|
| 201 | else
|
---|
| 202 | comment += time;
|
---|
| 203 | comment += ", time step "+toString(step);
|
---|
| 204 | //}
|
---|
| 205 | *file << atoms.size() << endl << "\t" << comment << endl;
|
---|
| 206 |
|
---|
[fac58f] | 207 | for(vector<const atom*>::const_iterator it = atoms.begin(); it != atoms.end(); it++) {
|
---|
[d5b90b] | 208 | *file << (*it)->getType()->getSymbol();
|
---|
| 209 | *file << "\t" << printCoordinate((*it)->atStep(0, step));
|
---|
| 210 | *file << "\t" << printCoordinate((*it)->atStep(1, step));
|
---|
| 211 | *file << "\t" << printCoordinate((*it)->atStep(2, step));
|
---|
[0180d6] | 212 | *file << endl;
|
---|
| 213 | }
|
---|
[ab4b55] | 214 | }
|
---|
| 215 | }
|
---|