Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Parser/PdbParser.cpp

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