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