Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Parser/PdbParser.cpp

    rbd2390 r21585f  
    7474 */
    7575void PdbParser::load(istream* file) {
    76   // TODO: PdbParser::load implementation
    77   ASSERT(false, "Not implemented yet");
    7876//  string line;
    7977//  string::size_type location;
     
    134132      elementNo[Z] = (elementNo[Z]+1) % 100;   // confine to two digits
    135133      const molecule *mol = (*atomIt)->getMolecule();
    136       if (mol == NULL) {  // for homeless atoms, MolNo = -1 is reserved
    137         MolNo = -1;
     134      if (mol == NULL) {  // for homeless atoms, MolNo = 0 is reserved
     135        MolNo = 0;
    138136      } else {
    139137        MolNo = mol->getId();
Note: See TracChangeset for help on using the changeset viewer.