Changeset f2bb0f
- Timestamp:
- Mar 18, 2010, 3:32:00 PM (15 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:
- 53731f
- Parents:
- 75ac0c
- Location:
- src
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Legacy/oldmenu.cpp
r75ac0c rf2bb0f 424 424 void oldmenu::RemoveAtoms(molecule *mol) 425 425 { 426 atom * first, *second;426 atom *second; 427 427 int axis; 428 428 double tmp1, tmp2; -
src/Patterns/ObservedIterator.hpp
r75ac0c rf2bb0f 70 70 { 71 71 ++iter; 72 return *this; 72 73 } 73 74 74 ObservedIterator 75 ObservedIterator operator++(int) // postfix with the dummy int parameter 75 76 { 76 77 ObservedIterator ret(*this); -
src/World.cpp
r75ac0c rf2bb0f 170 170 atomId_t id = *(atomIdPool.begin()); 171 171 atomIdPool.erase(id); 172 return id; 172 173 } 173 174 } -
src/memoryallocator.hpp
r75ac0c rf2bb0f 115 115 template <typename X> void Free(X** buffer, const char *msg = NULL) 116 116 { 117 std::cout << "!!!!!!!!!!!!!!!!!removing pointer to buffer !!!!!!!!!!!!" << std::endl;118 117 if ((buffer == NULL) || (*buffer == NULL)) 119 118 return; … … 131 130 template <typename X> void Free(X* const buffer, const char *msg = NULL) 132 131 { 133 std::cout << "!!!!!!!!!!!!!!!!!removing direct buffer !!!!!!!!!!!!" << std::endl;134 132 if ((buffer == NULL)) 135 133 return; -
src/molecule_graph.cpp
r75ac0c rf2bb0f 17 17 #include "memoryallocator.hpp" 18 18 #include "molecule.hpp" 19 #include "Helpers/Assert.hpp" 19 20 20 21 struct BFSAccounting … … 101 102 atom *Walker = NULL; 102 103 atom *OtherWalker = NULL; 103 atom **AtomMap = NULL;104 vector<atom*> AtomMap; 104 105 int n[NDIM]; 105 106 double MinDistance, MaxDistance; … … 134 135 // create a list to map Tesselpoint::nr to atom * 135 136 Log() << Verbose(2) << "Creating TesselPoint to atom map ... " << endl; 136 AtomMap = Calloc<atom *> (AtomCount, "molecule::CreateAdjacencyList - **AtomCount"); 137 for (molecule::const_iterator iter = begin(); iter != end(); ++iter) { 138 std::cout << "!!!!!!!!!!!!Copying pointer to Atom number: " << (*iter)->nr << std::endl; 139 AtomMap[(*iter)->nr] = (*iter); 140 } 137 //AtomMap = Calloc<atom *> (AtomCount, "molecule::CreateAdjacencyList - **AtomCount"); 138 //for (molecule::const_iterator iter = begin(); iter != end(); ++iter) { 139 // std::cout << "!!!!!!!!!!!!Copying pointer to Atom number: " << (*iter)->nr << std::endl; 140 // AtomMap[(*iter)->nr] = (*iter); 141 //} 142 143 copy(atoms.begin(),atoms.end(),back_inserter(AtomMap)); 141 144 142 145 // 3a. go through every cell … … 149 152 if (List != NULL) { 150 153 for (LinkedNodes::const_iterator Runner = List->begin(); Runner != List->end(); Runner++) { 151 Walker = AtomMap[(*Runner)->nr]; 154 //Walker = AtomMap[(*Runner)->nr]; 155 Walker = dynamic_cast<atom*>(*Runner); 156 ASSERT(Walker,"Tesselpoint that was not an atom retrieved from LinkedNode"); 152 157 //Log() << Verbose(0) << "Current Atom is " << *Walker << "." << endl; 153 158 // 3c. check for possible bond between each atom in this and every one in the 27 cells … … 160 165 for (LinkedNodes::const_iterator OtherRunner = OtherList->begin(); OtherRunner != OtherList->end(); OtherRunner++) { 161 166 if ((*OtherRunner)->nr > Walker->nr) { 162 OtherWalker = AtomMap[(*OtherRunner)->nr]; 167 //OtherWalker = AtomMap[(*OtherRunner)->nr]; 168 OtherWalker = dynamic_cast<atom*>(*OtherRunner); 169 ASSERT(OtherWalker,"TesselPoint that was not an atom retrieved from LinkedNode"); 163 170 //Log() << Verbose(1) << "Checking distance " << OtherWalker->x.PeriodicDistanceSquared(&(Walker->x), cell_size) << " against typical bond length of " << bonddistance*bonddistance << "." << endl; 164 171 (BG->*minmaxdistance)(Walker, OtherWalker, MinDistance, MaxDistance, IsAngstroem); … … 178 185 } 179 186 } 180 std::cout << "trying to remove Pointer to buffer " << std::endl;181 Free(&AtomMap);182 187 delete (LC); 183 188 Log() << Verbose(1) << "I detected " << BondCount << " bonds in the molecule with distance " << BondDistance << "." << endl;
Note:
See TracChangeset
for help on using the changeset viewer.