Changes in src/Parser/XyzParser.cpp [bf3817:97b825]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Parser/XyzParser.cpp
rbf3817 r97b825 5 5 * Author: metzler 6 6 */ 7 8 // include config.h9 #ifdef HAVE_CONFIG_H10 #include <config.h>11 #endif12 7 13 8 #include "Helpers/MemDebug.hpp" … … 91 86 vector<atom*> atoms = World::getInstance().getAllAtoms(); 92 87 for(vector<atom*>::iterator it = atoms.begin(); it != atoms.end(); it++) { 93 *file << noshowpoint << (*it)->getType()-> getSymbol()<< "\t" << (*it)->at(0) << "\t" << (*it)->at(1) << "\t" << (*it)->at(2) << endl;88 *file << noshowpoint << (*it)->getType()->symbol << "\t" << (*it)->at(0) << "\t" << (*it)->at(1) << "\t" << (*it)->at(2) << endl; 94 89 } 95 90 }
Note:
See TracChangeset
for help on using the changeset viewer.