Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/molecule.cpp

    read4e6 r24a5e0  
    3131 * Initialises molecule list with correctly referenced start and end, and sets molecule::last_atom to zero.
    3232 */
    33 molecule::molecule(const periodentafel * const teil) : elemente(teil), start(World::getInstance().createAtom()), end(World::getInstance().createAtom()),
     33molecule::molecule(const periodentafel * const teil) : elemente(teil), start(World::get()->createAtom()), end(World::get()->createAtom()),
    3434  first(new bond(start, end, 1, -1)), last(new bond(start, end, 1, -1)), MDSteps(0), AtomCount(0),
    3535  BondCount(0), ElementCount(0), NoNonHydrogen(0), NoNonBonds(0), NoCyclicBonds(0), BondDistance(0.),
     
    5656
    5757molecule *NewMolecule(){
    58   return new molecule(World::getInstance().getPeriode());
     58  return new molecule(World::get()->getPeriode());
    5959}
    6060
     
    9999
    100100std::string molecule::calcFormula(){
    101   std::map<atomicNumber_t,unsigned int> counts;
     101  int Counts[MAX_ELEMENTS];
    102102  stringstream sstr;
    103   periodentafel *periode = World::getInstance().getPeriode();
     103  for (int j = 0; j<MAX_ELEMENTS;j++)
     104    Counts[j] = 0;
    104105  for(atom *Walker = start; Walker != end; Walker = Walker->next) {
    105     counts[Walker->type->getNumber()]++;
    106   }
    107   std::map<atomicNumber_t,unsigned int>::reverse_iterator iter;
    108   for(iter = counts.rbegin(); iter != counts.rend(); ++iter) {
    109     atomicNumber_t Z = (*iter).first;
    110     sstr << periode->FindElement(Z)->symbol << (*iter).second;
     106    Counts[Walker->type->Z]++;
     107  }
     108  for(element* Elemental = elemente->end; Elemental != elemente->start; Elemental = Elemental->previous) {
     109    if (Counts[Elemental->Z] != 0)
     110      sstr << Elemental->symbol << Counts[Elemental->Z];
    111111  }
    112112  return sstr.str();
     
    261261  switch(TopBond->BondDegree) {
    262262    case 1:
    263       FirstOtherAtom = World::getInstance().createAtom();    // new atom
     263      FirstOtherAtom = World::get()->createAtom();    // new atom
    264264      FirstOtherAtom->type = elemente->FindElement(1);  // element is Hydrogen
    265265      FirstOtherAtom->v.CopyVector(&TopReplacement->v); // copy velocity
     
    318318
    319319      // create the two Hydrogens ...
    320       FirstOtherAtom = World::getInstance().createAtom();
    321       SecondOtherAtom = World::getInstance().createAtom();
     320      FirstOtherAtom = World::get()->createAtom();
     321      SecondOtherAtom = World::get()->createAtom();
    322322      FirstOtherAtom->type = elemente->FindElement(1);
    323323      SecondOtherAtom->type = elemente->FindElement(1);
     
    373373    case 3:
    374374      // take the "usual" tetraoidal angle and add the three Hydrogen in direction of the bond (height of the tetraoid)
    375       FirstOtherAtom = World::getInstance().createAtom();
    376       SecondOtherAtom = World::getInstance().createAtom();
    377       ThirdOtherAtom = World::getInstance().createAtom();
     375      FirstOtherAtom = World::get()->createAtom();
     376      SecondOtherAtom = World::get()->createAtom();
     377      ThirdOtherAtom = World::get()->createAtom();
    378378      FirstOtherAtom->type = elemente->FindElement(1);
    379379      SecondOtherAtom->type = elemente->FindElement(1);
     
    494494    MDSteps++;
    495495  for(i=0;i<NumberOfAtoms;i++){
    496     Walker = World::getInstance().createAtom();
     496    Walker = World::get()->createAtom();
    497497    getline(xyzfile,line,'\n');
    498498    istringstream *item = new istringstream(line);
Note: See TracChangeset for help on using the changeset viewer.