Changeset d473c3


Ignore:
Timestamp:
Sep 6, 2008, 3:08:32 PM (17 years ago)
Author:
Frederik Heber <heber@…>
Children:
b21e1f
Parents:
f9cd68
Message:

BUGFIX: config::SaveMPQC() used molecule::DetermineCenter() which relies on the created bond structure, causing segfault.

When storing a newly created configuration file, the bond structure needs not be present yet. Hence, we created the function molecule:DetermineCenterOfAll(), similar to molecule::DetermineCenterOfGravity() just without scaling by masses. This new function is now used instead.

Location:
molecuilder/src
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • molecuilder/src/config.cpp

    rf9cd68 rd473c3  
    10721072bool config::SaveMPQC(ofstream *output, molecule *mol) const
    10731073{
    1074   int ElementNo;
     1074  int ElementNo = 0;
    10751075  int AtomNo;
    10761076  atom *Walker = NULL;
    1077   element *runner;
    1078   Vector center;
     1077  element *runner = mol->elemente->start;
     1078  Vector *center = NULL;
    10791079
    10801080  *output << "% Created by MoleCuilder" << endl;
     
    10861086  *output << "\t\t\tunit = " << (IsAngstroem ? "angstrom" : "bohr" ) << endl;
    10871087  *output << "\t\t\t{ atoms geometry } = {" << endl;
    1088   mol->DetermineCenter(center);
     1088  center = mol->DetermineCenterOfAll(output);
    10891089  // output of atoms
    1090   ElementNo = 0;
    1091   runner = mol->elemente->start;
    10921090  while (runner->next != mol->elemente->end) { // go through every element
    10931091    runner = runner->next;
     
    11001098        if (Walker->type == runner) { // if this atom fits to element
    11011099          AtomNo++;
    1102           *output << "\t\t\t\t" << Walker->type->symbol << " [ " << Walker->x.x[0]-center.x[0] << "\t" << Walker->x.x[1]-center.x[1] << "\t" << Walker->x.x[2]-center.x[2] << " ]" << endl;
     1100          *output << "\t\t\t\t" << Walker->type->symbol << " [ " << Walker->x.x[0]-center->x[0] << "\t" << Walker->x.x[1]-center->x[1] << "\t" << Walker->x.x[2]-center->x[2] << " ]" << endl;
    11031101        }
    11041102      }
    11051103    }
    11061104  }
     1105  delete(center);
    11071106  *output << "\t\t\t}" << endl;
    11081107  *output << "\t\t)" << endl;
  • molecuilder/src/molecules.cpp

    rf9cd68 rd473c3  
    720720  }
    721721};
     722
     723/** Returns vector pointing to center of gravity.
     724 * \param *out output stream for debugging
     725 * \return pointer to center of gravity vector
     726 */
     727Vector * molecule::DetermineCenterOfAll(ofstream *out)
     728{
     729  atom *ptr = start->next;  // start at first in list
     730  Vector *a = new Vector();
     731  Vector tmp;
     732  double Num = 0;
     733 
     734  a->Zero();
     735
     736  if (ptr != end) {   //list not empty?
     737    while (ptr->next != end) {  // continue with second if present
     738      ptr = ptr->next;
     739      Num += 1.;
     740      tmp.CopyVector(&ptr->x);
     741      a->AddVector(&tmp);       
     742    }
     743    a->Scale(-1./Num); // divide through total mass (and sign for direction)
     744  }
     745  //cout << Verbose(1) << "Resulting center of gravity: ";
     746  //a->Output(out);
     747  //cout << endl;
     748  return a;
     749};
    722750
    723751/** Returns vector pointing to center of gravity.
  • molecuilder/src/molecules.hpp

    rf9cd68 rd473c3  
    253253  void DetermineCenter(Vector &center);
    254254  Vector * DetermineCenterOfGravity(ofstream *out);
     255  Vector * DetermineCenterOfAll(ofstream *out);
    255256  void SetBoxDimension(Vector *dim);
    256257  double * ReturnFullMatrixforSymmetric(double *cell_size);
Note: See TracChangeset for help on using the changeset viewer.