source: src/Parser/XyzParser.cpp@ 50e4e5

Action_Thermostats Add_AtomRandomPerturbation Add_FitFragmentPartialChargesAction Add_RotateAroundBondAction Add_SelectAtomByNameAction Added_ParseSaveFragmentResults AddingActions_SaveParseParticleParameters Adding_Graph_to_ChangeBondActions Adding_MD_integration_tests Adding_ParticleName_to_Atom Adding_StructOpt_integration_tests AtomFragments Automaking_mpqc_open AutomationFragmentation_failures Candidate_v1.5.4 Candidate_v1.6.0 Candidate_v1.6.1 ChangeBugEmailaddress ChangingTestPorts ChemicalSpaceEvaluator CombiningParticlePotentialParsing Combining_Subpackages Debian_Package_split Debian_package_split_molecuildergui_only Disabling_MemDebug Docu_Python_wait EmpiricalPotential_contain_HomologyGraph EmpiricalPotential_contain_HomologyGraph_documentation Enable_parallel_make_install Enhance_userguide Enhanced_StructuralOptimization Enhanced_StructuralOptimization_continued Example_ManyWaysToTranslateAtom Exclude_Hydrogens_annealWithBondGraph FitPartialCharges_GlobalError Fix_BoundInBox_CenterInBox_MoleculeActions Fix_ChargeSampling_PBC Fix_ChronosMutex Fix_FitPartialCharges Fix_FitPotential_needs_atomicnumbers Fix_ForceAnnealing Fix_IndependentFragmentGrids Fix_ParseParticles Fix_ParseParticles_split_forward_backward_Actions Fix_PopActions Fix_QtFragmentList_sorted_selection Fix_Restrictedkeyset_FragmentMolecule Fix_StatusMsg Fix_StepWorldTime_single_argument Fix_Verbose_Codepatterns Fix_fitting_potentials Fixes ForceAnnealing_goodresults ForceAnnealing_oldresults ForceAnnealing_tocheck ForceAnnealing_with_BondGraph ForceAnnealing_with_BondGraph_continued ForceAnnealing_with_BondGraph_continued_betteresults ForceAnnealing_with_BondGraph_contraction-expansion FragmentAction_writes_AtomFragments FragmentMolecule_checks_bonddegrees GeometryObjects Gui_Fixes Gui_displays_atomic_force_velocity ImplicitCharges IndependentFragmentGrids IndependentFragmentGrids_IndividualZeroInstances IndependentFragmentGrids_IntegrationTest IndependentFragmentGrids_Sole_NN_Calculation JobMarket_RobustOnKillsSegFaults JobMarket_StableWorkerPool JobMarket_unresolvable_hostname_fix MoreRobust_FragmentAutomation ODR_violation_mpqc_open PartialCharges_OrthogonalSummation PdbParser_setsAtomName PythonUI_with_named_parameters QtGui_reactivate_TimeChanged_changes Recreated_GuiChecks Rewrite_FitPartialCharges RotateToPrincipalAxisSystem_UndoRedo SaturateAtoms_findBestMatching SaturateAtoms_singleDegree StoppableMakroAction Subpackage_CodePatterns Subpackage_JobMarket Subpackage_LinearAlgebra Subpackage_levmar Subpackage_mpqc_open Subpackage_vmg Switchable_LogView ThirdParty_MPQC_rebuilt_buildsystem TrajectoryDependenant_MaxOrder TremoloParser_IncreasedPrecision TremoloParser_MultipleTimesteps TremoloParser_setsAtomName Ubuntu_1604_changes stable
Last change on this file since 50e4e5 was 42127c, checked in by Frederik Heber <heber@…>, 13 years ago

Extracted definition of MoleculeListClass and put into own header module.

  • Property mode set to 100644
File size: 5.6 KB
Line 
1/*
2 * Project: MoleCuilder
3 * Description: creates and alters molecular systems
4 * Copyright (C) 2010 University of Bonn. All rights reserved.
5 * Please see the LICENSE file or "Copyright notice" in builder.cpp for details.
6 */
7
8/*
9 * XyzParser.cpp
10 *
11 * Created on: Mar 2, 2010
12 * Author: metzler
13 */
14
15// include config.h
16#ifdef HAVE_CONFIG_H
17#include <config.h>
18#endif
19
20#include "CodePatterns/MemDebug.hpp"
21
22#include <vector>
23
24#include "CodePatterns/Log.hpp"
25#include "CodePatterns/Verbose.hpp"
26
27#include "XyzParser.hpp"
28
29#include "atom.hpp"
30#include "Element/element.hpp"
31#include "Element/periodentafel.hpp"
32#include "molecule.hpp"
33#include "MoleculeListClass.hpp"
34#include "World.hpp"
35
36using namespace std;
37
38// declare specialized static variables
39const std::string FormatParserTrait<xyz>::name = "xyz";
40const std::string FormatParserTrait<xyz>::suffix = "xyz";
41const ParserTypes FormatParserTrait<xyz>::type = xyz;
42
43/**
44 * Constructor.
45 */
46FormatParser< xyz >::FormatParser() :
47 FormatParser_common(NULL),
48 comment("")
49{}
50
51/**
52 * Destructor.
53 */
54FormatParser< xyz >::~FormatParser()
55{}
56
57/**
58 * Loads an XYZ file into the World.
59 *
60 * \param XYZ file
61 */
62void FormatParser< xyz >::load(istream* file)
63{
64 atom* newAtom = NULL;
65 molecule* newmol = NULL;
66 int numberOfAtoms;
67 char commentBuffer[512], type[3];
68 string number;
69 std::vector<atom *> AddedAtoms;
70
71 // create the molecule
72 newmol = World::getInstance().createMolecule();
73 newmol->ActiveFlag = true;
74 // TODO: Remove the insertion into molecule when saving does not depend on them anymore. Also, remove molecule.hpp include
75 World::getInstance().getMolecules()->insert(newmol);
76
77 // the first line tells number of atoms,
78 // where we need this construct due to skipping of empty lines below
79 *file >> number >> ws;
80 unsigned int step = 0;
81 while (file->good()) {
82 std::stringstream numberstream(number);
83 numberstream >> numberOfAtoms;
84 if (step == 0)
85 AddedAtoms.resize(numberOfAtoms);
86 // the second line is always a comment
87 file->getline(commentBuffer, 512);
88 comment = commentBuffer;
89
90 for (int i = 0; i < numberOfAtoms; i++) {
91 // parse type and position
92 *file >> type;
93 Vector tempVector;
94 for (int j=0;j<NDIM;j++) {
95 *file >> tempVector[j];
96 }
97 LOG(4, "INFO: Parsed type as " << type << " and position at "
98 << tempVector << " for time step " << step);
99
100 if (step == 0) {
101 newAtom = World::getInstance().createAtom();
102 newAtom->setType(World::getInstance().getPeriode()->FindElement(type));
103 newmol->AddAtom(newAtom);
104 AddedAtoms[i] = newAtom;
105 LOG(5, "INFO: Created new atom, setting " << i << " th component of AddedAtoms.");
106 } else {
107 newAtom = AddedAtoms[i];
108 LOG(5, "INFO: Using present atom " << *newAtom << " from " << i << " th component of AddedAtoms.");
109 ASSERT(newAtom->getType() == World::getInstance().getPeriode()->FindElement(type),
110 "FormatParser< xyz >::load() - atom has different type "+newAtom->getType()->getSymbol()+" than parsed now "+type+", mixed up order?");
111 }
112 newAtom->setPositionAtStep(step, tempVector);
113 }
114 getline (*file, number); // eat away rest of last line
115 // skip empty lines
116 unsigned int counter = 0;
117 while (file->good()) {
118 getline (*file, number);
119 LOG(4, "INFO: Skipped line is '" << number << "'");
120 counter++;
121 if (!number.empty())
122 break;
123 }
124 LOG(3, "INFO: I skipped "+toString(counter)+" empty lines.");
125 ++step;
126 }
127 BOOST_FOREACH(atom *_atom, World::getInstance().getAllAtoms())
128 LOG(3, "INFO: Atom " << _atom->getName() << " " << *dynamic_cast<AtomInfo *>(_atom) << ".");
129
130 // refresh atom::nr and atom::name
131 newmol->getAtomCount();
132}
133
134/**
135 * Saves the \a atoms into as a XYZ file.
136 *
137 * \param file where to save the state
138 * \param atoms atoms to store
139 */
140void FormatParser< xyz >::save(ostream* file, const std::vector<atom *> &atoms) {
141 DoLog(0) && (Log() << Verbose(0) << "Saving changes to xyz." << std::endl);
142
143 // get max and min trajectories
144 unsigned int min_trajectories = 1;
145 unsigned int max_trajectories = 1;
146 for (std::vector<atom *>::const_iterator iter = atoms.begin();
147 iter != atoms.end();
148 ++iter) {
149 if (max_trajectories < (*iter)->getTrajectorySize())
150 max_trajectories = (*iter)->getTrajectorySize();
151 if ((min_trajectories > (*iter)->getTrajectorySize())
152 && (max_trajectories > (*iter)->getTrajectorySize()))
153 min_trajectories = (*iter)->getTrajectorySize();
154 }
155 ASSERT((min_trajectories == max_trajectories) || (min_trajectories == 1),
156 "FormatParser< xyz >::save() - not all atoms have same number of trajectories.");
157 LOG(2, "INFO: There are " << max_trajectories << " to save.");
158
159 for (unsigned int step = 0; step < max_trajectories; ++step) {
160 if (step != 0)
161 *file << "\n";
162 //if (comment == "") {
163 time_t now = time((time_t *)NULL); // Get the system time and put it into 'now' as 'calender time'
164 comment = "Created by molecuilder on ";
165 // ctime ends in \n\0, we have to cut away the newline
166 std::string time(ctime(&now));
167 size_t pos = time.find('\n');
168 if (pos != 0)
169 comment += time.substr(0,pos);
170 else
171 comment += time;
172 comment += ", time step "+toString(step);
173 //}
174 *file << atoms.size() << endl << "\t" << comment << endl;
175
176 for(vector<atom*>::const_iterator it = atoms.begin(); it != atoms.end(); it++) {
177 *file << noshowpoint << (*it)->getType()->getSymbol();
178 *file << "\t" << (*it)->atStep(0, step);
179 *file << "\t" << (*it)->atStep(1, step);
180 *file << "\t" << (*it)->atStep(2, step);
181 *file << endl;
182 }
183 }
184}
Note: See TracBrowser for help on using the repository browser.