Changeset efe516


Ignore:
Timestamp:
Mar 2, 2011, 9:53:09 PM (14 years ago)
Author:
Frederik Heber <heber@…>
Branches:
Action_Thermostats, Add_AtomRandomPerturbation, Add_FitFragmentPartialChargesAction, Add_RotateAroundBondAction, Add_SelectAtomByNameAction, Added_ParseSaveFragmentResults, AddingActions_SaveParseParticleParameters, Adding_Graph_to_ChangeBondActions, Adding_MD_integration_tests, Adding_ParticleName_to_Atom, Adding_StructOpt_integration_tests, AtomFragments, Automaking_mpqc_open, AutomationFragmentation_failures, Candidate_v1.5.4, Candidate_v1.6.0, Candidate_v1.6.1, ChangeBugEmailaddress, ChangingTestPorts, ChemicalSpaceEvaluator, CombiningParticlePotentialParsing, Combining_Subpackages, Debian_Package_split, Debian_package_split_molecuildergui_only, Disabling_MemDebug, Docu_Python_wait, EmpiricalPotential_contain_HomologyGraph, EmpiricalPotential_contain_HomologyGraph_documentation, Enable_parallel_make_install, Enhance_userguide, Enhanced_StructuralOptimization, Enhanced_StructuralOptimization_continued, Example_ManyWaysToTranslateAtom, Exclude_Hydrogens_annealWithBondGraph, FitPartialCharges_GlobalError, Fix_BoundInBox_CenterInBox_MoleculeActions, Fix_ChargeSampling_PBC, Fix_ChronosMutex, Fix_FitPartialCharges, Fix_FitPotential_needs_atomicnumbers, Fix_ForceAnnealing, Fix_IndependentFragmentGrids, Fix_ParseParticles, Fix_ParseParticles_split_forward_backward_Actions, Fix_PopActions, Fix_QtFragmentList_sorted_selection, Fix_Restrictedkeyset_FragmentMolecule, Fix_StatusMsg, Fix_StepWorldTime_single_argument, Fix_Verbose_Codepatterns, Fix_fitting_potentials, Fixes, ForceAnnealing_goodresults, ForceAnnealing_oldresults, ForceAnnealing_tocheck, ForceAnnealing_with_BondGraph, ForceAnnealing_with_BondGraph_continued, ForceAnnealing_with_BondGraph_continued_betteresults, ForceAnnealing_with_BondGraph_contraction-expansion, FragmentAction_writes_AtomFragments, FragmentMolecule_checks_bonddegrees, GeometryObjects, Gui_Fixes, Gui_displays_atomic_force_velocity, ImplicitCharges, IndependentFragmentGrids, IndependentFragmentGrids_IndividualZeroInstances, IndependentFragmentGrids_IntegrationTest, IndependentFragmentGrids_Sole_NN_Calculation, JobMarket_RobustOnKillsSegFaults, JobMarket_StableWorkerPool, JobMarket_unresolvable_hostname_fix, MoreRobust_FragmentAutomation, ODR_violation_mpqc_open, PartialCharges_OrthogonalSummation, PdbParser_setsAtomName, PythonUI_with_named_parameters, QtGui_reactivate_TimeChanged_changes, Recreated_GuiChecks, Rewrite_FitPartialCharges, RotateToPrincipalAxisSystem_UndoRedo, SaturateAtoms_findBestMatching, SaturateAtoms_singleDegree, StoppableMakroAction, Subpackage_CodePatterns, Subpackage_JobMarket, Subpackage_LinearAlgebra, Subpackage_levmar, Subpackage_mpqc_open, Subpackage_vmg, Switchable_LogView, ThirdParty_MPQC_rebuilt_buildsystem, TrajectoryDependenant_MaxOrder, TremoloParser_IncreasedPrecision, TremoloParser_MultipleTimesteps, TremoloParser_setsAtomName, Ubuntu_1604_changes, stable
Children:
7d8aa0
Parents:
2fa1dc
git-author:
Frederik Heber <heber@…> (03/01/11 14:16:44)
git-committer:
Frederik Heber <heber@…> (03/02/11 21:53:09)
Message:

Removed bond::nr.

Location:
src
Files:
9 edited

Legend:

Unmodified
Added
Removed
  • src/Actions/FragmentationAction/CreateAdjacencyAction.cpp

    r2fa1dc refe516  
    141141                            if (status) { // create bond if distance is smaller
    142142//                              Log() << Verbose(1) << "Adding Bond between " << *Walker << " and " << *OtherWalker << " in distance " << sqrt(distance) << "." << endl;
    143                               bond * const Binder = new bond(Walker->father, OtherWalker->father, 1, BondCount++);
     143                              bond * const Binder = new bond(Walker->father, OtherWalker->father, 1);
     144                              BondCount++;
    144145                              Walker->father->RegisterBond(WorldTime::getTime(),Binder);
    145146                              OtherWalker->father->RegisterBond(WorldTime::getTime(),Binder);
  • src/Bond/bond.cpp

    r2fa1dc refe516  
    3434  rightatom(NULL),
    3535  HydrogenBond(0),
    36   BondDegree(0),
    37   nr(-1)
     36  BondDegree(0)
    3837{};
    3938
     
    4443 * \param number increasing index
    4544 */
    46 bond::bond(atom *left, atom *right, const int degree, const int number) :
     45bond::bond(atom *left, atom *right, const int degree) :
    4746  leftatom(left),
    4847  rightatom(right),
    4948  HydrogenBond(0),
    50   BondDegree(degree),
    51   nr(number)
     49  BondDegree(degree)
    5250{
    5351  if ((left != NULL) && (right != NULL)) {
  • src/Bond/bond.hpp

    r2fa1dc refe516  
    4141  int HydrogenBond;  //!< Number of hydrogen atoms in the bond
    4242  int BondDegree;    //!< single, double, triple, ... bond
    43   int nr;           //!< unique number in a molecule, updated by BondGraph::CreateAdjacencyForList()
    4443
    4544  atom * GetOtherAtom(const ParticleInfo * const Atom) const;
     
    5150
    5251  bond();
    53   bond(atom *left, atom *right, const int degree=1, const int number=0);
     52  bond(atom *left, atom *right, const int degree=1);
    5453  ~bond();
    55 
    5654};
    5755
  • src/Graph/BondGraph.hpp

    r2fa1dc refe516  
    230230
    231231      LOG(3, "INFO: Creating bond between atoms " << atom1 << " and " << atom2 << ".");
    232       bond * const Binder = new bond(Walker, OtherWalker, 1, -1);
     232      bond * const Binder = new bond(Walker, OtherWalker, 1);
    233233      Walker->RegisterBond(WorldTime::getTime(), Binder);
    234234      OtherWalker->RegisterBond(WorldTime::getTime(), Binder);
  • src/Graph/BreadthFirstSearchAdd.cpp

    r2fa1dc refe516  
    7575      AddedAtomList[OtherAtom->getNr()] = Mol->AddCopyAtom(OtherAtom);
    7676      DoLog(0) && (Log() << Verbose(0) << "Added OtherAtom " << OtherAtom->getName());
    77       AddedBondList[Binder->nr] = Mol->CopyBond(AddedAtomList[Walker->getNr()], AddedAtomList[OtherAtom->getNr()], Binder);
    78       DoLog(0) && (Log() << Verbose(0) << " and bond " << *(AddedBondList[Binder->nr]) << ", ");
     77      AddedBondList[Binder] = Mol->CopyBond(AddedAtomList[Walker->getNr()], AddedAtomList[OtherAtom->getNr()], Binder);
     78      DoLog(0) && (Log() << Verbose(0) << " and bond " << *(AddedBondList[Binder]) << ", ");
    7979    } else { // this code should actually never come into play (all GraphEdge::white atoms are not yet present in BondMolecule, that's why they are GraphEdge::white in the first place)
    8080      DoLog(0) && (Log() << Verbose(0) << "Not adding OtherAtom " << OtherAtom->getName());
    81       if (AddedBondList[Binder->nr] == NULL) {
    82         AddedBondList[Binder->nr] = Mol->CopyBond(AddedAtomList[Walker->getNr()], AddedAtomList[OtherAtom->getNr()], Binder);
    83         DoLog(0) && (Log() << Verbose(0) << ", added Bond " << *(AddedBondList[Binder->nr]));
     81      if (AddedBondList[Binder] == NULL) {
     82        AddedBondList[Binder] = Mol->CopyBond(AddedAtomList[Walker->getNr()], AddedAtomList[OtherAtom->getNr()], Binder);
     83        DoLog(0) && (Log() << Verbose(0) << ", added Bond " << *(AddedBondList[Binder]));
    8484      } else
    8585        DoLog(0) && (Log() << Verbose(0) << ", not added Bond ");
     
    9696    if (!Binder->Cyclic)
    9797      DoLog(0) && (Log() << Verbose(0) << ", is not part of a cyclic bond, saturating bond with Hydrogen." << endl);
    98     if (AddedBondList[Binder->nr] == NULL) {
     98    if (AddedBondList[Binder] == NULL) {
    9999      if ((AddedAtomList[OtherAtom->getNr()] != NULL)) { // .. whether we add or saturate
    100         AddedBondList[Binder->nr] = Mol->CopyBond(AddedAtomList[Walker->getNr()], AddedAtomList[OtherAtom->getNr()], Binder);
     100        AddedBondList[Binder] = Mol->CopyBond(AddedAtomList[Walker->getNr()], AddedAtomList[OtherAtom->getNr()], Binder);
    101101      } else {
    102102#ifdef ADDHYDROGEN
     
    114114  DoLog(3) && (Log() << Verbose(3) << "Not Adding, has already been visited." << endl);
    115115  // This has to be a cyclic bond, check whether it's present ...
    116   if (AddedBondList[Binder->nr] == NULL) {
     116  if (AddedBondList[Binder] == NULL) {
    117117    if ((Binder != Bond) && (Binder->Cyclic) && (((ShortestPathList[Walker->getNr()] + 1) < BondOrder))) {
    118       AddedBondList[Binder->nr] = Mol->CopyBond(AddedAtomList[Walker->getNr()], AddedAtomList[OtherAtom->getNr()], Binder);
     118      AddedBondList[Binder] = Mol->CopyBond(AddedAtomList[Walker->getNr()], AddedAtomList[OtherAtom->getNr()], Binder);
    119119    } else { // if it's root bond it has to broken (otherwise we would not create the fragments)
    120120#ifdef ADDHYDROGEN
  • src/Graph/BreadthFirstSearchAdd.hpp

    r2fa1dc refe516  
    6969  int ComponentNr;
    7070  std::map<atomId_t, atom *> AddedAtomList;
    71   std::map<int, bond *> AddedBondList;
     71  std::map<bond *, bond *> AddedBondList; //!< maps from father bond to son
    7272
    7373  bool IsAngstroem;
  • src/atom_bondedparticle.cpp

    r2fa1dc refe516  
    104104  }
    105105
    106   bond* newBond = new bond((atom*) this, (atom*) Partner, 1, 0);
     106  bond* newBond = new bond((atom*) this, (atom*) Partner, 1);
    107107  RegisterBond(_step, newBond);
    108108  Partner->RegisterBond(_step, newBond);
  • src/molecule.cpp

    r2fa1dc refe516  
    744744  ASSERT(FindAtom(atom2->getNr()),"Second atom in bond-creation was not part of molecule");
    745745
    746   Binder = new bond(atom1, atom2, degree, getBondCount());
     746  Binder = new bond(atom1, atom2, degree);
    747747  atom1->RegisterBond(WorldTime::getTime(), Binder);
    748748  atom2->RegisterBond(WorldTime::getTime(), Binder);
  • src/moleculelist.cpp

    r2fa1dc refe516  
    512512      strcpy(PathBackup, path);
    513513    else {
    514       DoeLog(0) && (eLog()<< Verbose(0) << "OutputConfigForListOfFragments: NULL default path obtained from config!" << endl);
     514      ELOG(0, "OutputConfigForListOfFragments: NULL default path obtained from config!");
    515515      performCriticalExit();
    516516    }
     
    521521    }
    522522
    523     // output xyz file
    524     FragmentNumber = FixedDigitNumber(ListOfMolecules.size(), FragmentCounter++);
    525     FragmentName = prefix + FragmentNumber + ".conf.xyz";
    526     outputFragment.open(FragmentName.c_str(), ios::out);
    527     DoLog(2) && (Log() << Verbose(2) << "Saving bond fragment No. " << FragmentNumber << "/" << FragmentCounter - 1 << " as XYZ ...");
    528     if ((intermediateResult = (*ListRunner)->OutputXYZ(&outputFragment)))
    529       DoLog(0) && (Log() << Verbose(0) << " done." << endl);
    530     else
    531       DoLog(0) && (Log() << Verbose(0) << " failed." << endl);
    532     result = result && intermediateResult;
    533     outputFragment.close();
    534     outputFragment.clear();
    535 
    536     // list atoms in fragment for debugging
    537     DoLog(2) && (Log() << Verbose(2) << "Contained atoms: ");
    538     for (molecule::const_iterator iter = (*ListRunner)->begin(); iter != (*ListRunner)->end(); ++iter) {
    539       DoLog(0) && (Log() << Verbose(0) << (*iter)->getName() << " ");
    540     }
    541     DoLog(0) && (Log() << Verbose(0) << endl);
     523    {
     524      // list atoms in fragment for debugging
     525      std::stringstream output;
     526      output << "Contained atoms: ";
     527      for (molecule::const_iterator iter = (*ListRunner)->begin(); iter != (*ListRunner)->end(); ++iter) {
     528        output << (*iter)->getName() << " ";
     529      }
     530      LOG(2, output.str());
     531    }
     532
     533    {
     534      // output xyz file
     535      FragmentNumber = FixedDigitNumber(ListOfMolecules.size(), FragmentCounter++);
     536      FragmentName = prefix + FragmentNumber + ".conf.xyz";
     537      outputFragment.open(FragmentName.c_str(), ios::out);
     538      std::stringstream output;
     539      output << "Saving bond fragment No. " << FragmentNumber << "/" << FragmentCounter - 1 << " as XYZ ... ";
     540      if ((intermediateResult = (*ListRunner)->OutputXYZ(&outputFragment)))
     541        output << " done.";
     542      else
     543        output << " failed.";
     544      LOG(3, output.str());
     545      result = result && intermediateResult;
     546      outputFragment.close();
     547      outputFragment.clear();
     548    }
    542549
    543550    // center on edge
     
    554561    (*ListRunner)->Translate(&BoxDimension);
    555562
    556     // also calculate necessary orbitals
    557     //(*ListRunner)->CalculateOrbitals(*World::getInstance().getConfig);
    558 
    559563    // change path in config
    560564    FragmentName = PathBackup;
     
    565569    World::getInstance().getConfig()->SetDefaultPath(FragmentName.c_str());
    566570
    567     // and save as config
    568     FragmentName = prefix + FragmentNumber + ".conf";
    569     DoLog(2) && (Log() << Verbose(2) << "Saving bond fragment No. " << FragmentNumber << "/" << FragmentCounter - 1 << " as config ...");
    570     if ((intermediateResult = World::getInstance().getConfig()->Save(FragmentName.c_str(), (*ListRunner)->elemente, (*ListRunner))))
    571       DoLog(0) && (Log() << Verbose(0) << " done." << endl);
    572     else
    573       DoLog(0) && (Log() << Verbose(0) << " failed." << endl);
    574     result = result && intermediateResult;
     571    {
     572      // and save as config
     573      FragmentName = prefix + FragmentNumber + ".conf";
     574      std::stringstream output;
     575      output << "Saving bond fragment No. " << FragmentNumber << "/" << FragmentCounter - 1 << " as config ... ";
     576      if ((intermediateResult = World::getInstance().getConfig()->Save(FragmentName.c_str(), (*ListRunner)->elemente, (*ListRunner))))
     577        output << " done.";
     578      else
     579        output << " failed.";
     580      LOG(3, output.str());
     581      result = result && intermediateResult;
     582    }
    575583
    576584    // restore old config
    577585    World::getInstance().getConfig()->SetDefaultPath(PathBackup);
    578586
    579     // and save as mpqc input file
    580     FragmentName = prefix + FragmentNumber + ".conf";
    581     DoLog(2) && (Log() << Verbose(2) << "Saving bond fragment No. " << FragmentNumber << "/" << FragmentCounter - 1 << " as mpqc input ...");
    582     if ((intermediateResult = World::getInstance().getConfig()->SaveMPQC(FragmentName.c_str(), (*ListRunner))))
    583       DoLog(2) && (Log() << Verbose(2) << " done." << endl);
    584     else
    585       DoLog(0) && (Log() << Verbose(0) << " failed." << endl);
     587    {
     588      // and save as mpqc input file
     589      stringstream output;
     590      FragmentName = prefix + FragmentNumber + ".conf";
     591      output << "Saving bond fragment No. " << FragmentNumber << "/" << FragmentCounter - 1 << " as mpqc input ... ";
     592      if ((intermediateResult = World::getInstance().getConfig()->SaveMPQC(FragmentName.c_str(), (*ListRunner))))
     593        output << " done.";
     594      else
     595        output << " failed.";
     596      LOG(3, output.str());
     597    }
    586598
    587599    result = result && intermediateResult;
     
    590602    delete[](FragmentNumber);
    591603  }
    592   DoLog(0) && (Log() << Verbose(0) << " done." << endl);
     604  LOG(0, "STATUS: done.");
    593605
    594606  // printing final number
    595   DoLog(2) && (Log() << Verbose(2) << "Final number of fragments: " << FragmentCounter << "." << endl);
     607  LOG(2, "INFO: Final number of fragments: " << FragmentCounter << ".");
    596608
    597609  // printing final number
    598   DoLog(0) && (Log() << Verbose(0) << "For " << count << " fragments periodic correction would have been necessary." << endl);
     610  LOG(2, "INFO: For " << count << " fragments periodic correction would have been necessary.");
    599611
    600612  // restore cell_size
Note: See TracChangeset for help on using the changeset viewer.