Changes in src/Parser/PdbParser.cpp [bd2390:21585f]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Parser/PdbParser.cpp
rbd2390 r21585f 74 74 */ 75 75 void PdbParser::load(istream* file) { 76 // TODO: PdbParser::load implementation77 ASSERT(false, "Not implemented yet");78 76 // string line; 79 77 // string::size_type location; … … 134 132 elementNo[Z] = (elementNo[Z]+1) % 100; // confine to two digits 135 133 const molecule *mol = (*atomIt)->getMolecule(); 136 if (mol == NULL) { // for homeless atoms, MolNo = -1is reserved137 MolNo = -1;134 if (mol == NULL) { // for homeless atoms, MolNo = 0 is reserved 135 MolNo = 0; 138 136 } else { 139 137 MolNo = mol->getId();
Note:
See TracChangeset
for help on using the changeset viewer.