Changeset efe516
- Timestamp:
- Mar 2, 2011, 9:53:09 PM (14 years ago)
- 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)
- Location:
- src
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Actions/FragmentationAction/CreateAdjacencyAction.cpp
r2fa1dc refe516 141 141 if (status) { // create bond if distance is smaller 142 142 // 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++; 144 145 Walker->father->RegisterBond(WorldTime::getTime(),Binder); 145 146 OtherWalker->father->RegisterBond(WorldTime::getTime(),Binder); -
src/Bond/bond.cpp
r2fa1dc refe516 34 34 rightatom(NULL), 35 35 HydrogenBond(0), 36 BondDegree(0), 37 nr(-1) 36 BondDegree(0) 38 37 {}; 39 38 … … 44 43 * \param number increasing index 45 44 */ 46 bond::bond(atom *left, atom *right, const int degree , const int number) :45 bond::bond(atom *left, atom *right, const int degree) : 47 46 leftatom(left), 48 47 rightatom(right), 49 48 HydrogenBond(0), 50 BondDegree(degree), 51 nr(number) 49 BondDegree(degree) 52 50 { 53 51 if ((left != NULL) && (right != NULL)) { -
src/Bond/bond.hpp
r2fa1dc refe516 41 41 int HydrogenBond; //!< Number of hydrogen atoms in the bond 42 42 int BondDegree; //!< single, double, triple, ... bond 43 int nr; //!< unique number in a molecule, updated by BondGraph::CreateAdjacencyForList()44 43 45 44 atom * GetOtherAtom(const ParticleInfo * const Atom) const; … … 51 50 52 51 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); 54 53 ~bond(); 55 56 54 }; 57 55 -
src/Graph/BondGraph.hpp
r2fa1dc refe516 230 230 231 231 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); 233 233 Walker->RegisterBond(WorldTime::getTime(), Binder); 234 234 OtherWalker->RegisterBond(WorldTime::getTime(), Binder); -
src/Graph/BreadthFirstSearchAdd.cpp
r2fa1dc refe516 75 75 AddedAtomList[OtherAtom->getNr()] = Mol->AddCopyAtom(OtherAtom); 76 76 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]) << ", "); 79 79 } 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) 80 80 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])); 84 84 } else 85 85 DoLog(0) && (Log() << Verbose(0) << ", not added Bond "); … … 96 96 if (!Binder->Cyclic) 97 97 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) { 99 99 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); 101 101 } else { 102 102 #ifdef ADDHYDROGEN … … 114 114 DoLog(3) && (Log() << Verbose(3) << "Not Adding, has already been visited." << endl); 115 115 // This has to be a cyclic bond, check whether it's present ... 116 if (AddedBondList[Binder ->nr] == NULL) {116 if (AddedBondList[Binder] == NULL) { 117 117 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); 119 119 } else { // if it's root bond it has to broken (otherwise we would not create the fragments) 120 120 #ifdef ADDHYDROGEN -
src/Graph/BreadthFirstSearchAdd.hpp
r2fa1dc refe516 69 69 int ComponentNr; 70 70 std::map<atomId_t, atom *> AddedAtomList; 71 std::map< int, bond *> AddedBondList;71 std::map<bond *, bond *> AddedBondList; //!< maps from father bond to son 72 72 73 73 bool IsAngstroem; -
src/atom_bondedparticle.cpp
r2fa1dc refe516 104 104 } 105 105 106 bond* newBond = new bond((atom*) this, (atom*) Partner, 1 , 0);106 bond* newBond = new bond((atom*) this, (atom*) Partner, 1); 107 107 RegisterBond(_step, newBond); 108 108 Partner->RegisterBond(_step, newBond); -
src/molecule.cpp
r2fa1dc refe516 744 744 ASSERT(FindAtom(atom2->getNr()),"Second atom in bond-creation was not part of molecule"); 745 745 746 Binder = new bond(atom1, atom2, degree , getBondCount());746 Binder = new bond(atom1, atom2, degree); 747 747 atom1->RegisterBond(WorldTime::getTime(), Binder); 748 748 atom2->RegisterBond(WorldTime::getTime(), Binder); -
src/moleculelist.cpp
r2fa1dc refe516 512 512 strcpy(PathBackup, path); 513 513 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!"); 515 515 performCriticalExit(); 516 516 } … … 521 521 } 522 522 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 } 542 549 543 550 // center on edge … … 554 561 (*ListRunner)->Translate(&BoxDimension); 555 562 556 // also calculate necessary orbitals557 //(*ListRunner)->CalculateOrbitals(*World::getInstance().getConfig);558 559 563 // change path in config 560 564 FragmentName = PathBackup; … … 565 569 World::getInstance().getConfig()->SetDefaultPath(FragmentName.c_str()); 566 570 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 } 575 583 576 584 // restore old config 577 585 World::getInstance().getConfig()->SetDefaultPath(PathBackup); 578 586 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 } 586 598 587 599 result = result && intermediateResult; … … 590 602 delete[](FragmentNumber); 591 603 } 592 DoLog(0) && (Log() << Verbose(0) << " done." << endl);604 LOG(0, "STATUS: done."); 593 605 594 606 // printing final number 595 DoLog(2) && (Log() << Verbose(2) << "Final number of fragments: " << FragmentCounter << "." << endl);607 LOG(2, "INFO: Final number of fragments: " << FragmentCounter << "."); 596 608 597 609 // 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."); 599 611 600 612 // restore cell_size
Note:
See TracChangeset
for help on using the changeset viewer.