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