Changeset bd58fb
- Timestamp:
- Mar 4, 2010, 3:20:51 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:
- e87acf
- Parents:
- 57adc7
- Location:
- src
- Files:
-
- 1 added
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Patterns/Observer.cpp
r57adc7 rbd58fb 75 75 Observable::_Observable_protector::_Observable_protector(Observable *_protege) : 76 76 protege(_protege) 77 { 78 start_observer_internal(protege); 79 } 80 81 Observable::_Observable_protector::_Observable_protector(const _Observable_protector &dest) : 82 protege(dest.protege) 77 83 { 78 84 start_observer_internal(protege); -
src/Patterns/Observer.hpp
r57adc7 rbd58fb 29 29 30 30 class Observable; 31 template<class _Set> 32 class ObservedIterator; 31 33 32 34 /** … … 46 48 { 47 49 friend class Observable; 50 template<class> friend class ObservedIterator; 48 51 public: 49 52 Observer(); … … 129 132 public: 130 133 _Observable_protector(Observable *); 134 _Observable_protector(const _Observable_protector&); 131 135 ~_Observable_protector(); 132 136 private: -
src/molecule.cpp
r57adc7 rbd58fb 31 31 * Initialises molecule list with correctly referenced start and end, and sets molecule::last_atom to zero. 32 32 */ 33 molecule::molecule(const periodentafel * const teil) : elemente(teil), start(World::get()->createAtom()),end(World::get()->createAtom()),34 first(new bond( start, end, 1, -1)), last(new bond(start, end, 1, -1)), MDSteps(0), AtomCount(0),33 molecule::molecule(const periodentafel * const teil) : elemente(teil),start(World::get()->createAtom()),end(World::get()->createAtom()), 34 first(new bond(0, 0, 1, -1)), last(new bond(0, 0, 1, -1)), MDSteps(0), AtomCount(0), 35 35 BondCount(0), ElementCount(0), NoNonHydrogen(0), NoNonBonds(0), NoCyclicBonds(0), BondDistance(0.), 36 36 ActiveFlag(false), IndexNr(-1), … … 113 113 } 114 114 115 /************************** Access to the List of Atoms ****************/ 116 117 118 molecule::iterator molecule::begin(){ 119 return molecule::iterator(atoms.begin(),this); 120 } 121 122 molecule::const_iterator molecule::begin() const{ 123 return atoms.begin(); 124 } 125 126 molecule::iterator molecule::ende(){ 127 return molecule::iterator(atoms.end(),this); 128 } 129 130 molecule::const_iterator molecule::ende() const{ 131 return atoms.end(); 132 } 115 133 116 134 /** Adds given atom \a *pointer from molecule list. -
src/molecule.hpp
r57adc7 rbd58fb 34 34 #include "tesselation.hpp" 35 35 #include "Patterns/Observer.hpp" 36 #include "Patterns/ObservedIterator.hpp" 36 37 #include "Patterns/Cacheable.hpp" 37 38 … … 88 89 friend molecule *NewMolecule(); 89 90 friend void DeleteMolecule(molecule *); 91 90 92 public: 93 94 typedef std::set<atom*> atomSet; 95 typedef ObservedIterator<atomSet> iterator; 96 typedef atomSet::const_iterator const_iterator; 91 97 double cell_size[6];//!< cell size 92 98 const periodentafel * const elemente; //!< periodic table with each element 99 // old deprecated atom handling 93 100 atom *start; //!< start of atom list 94 101 atom *end; //!< end of atom list … … 112 119 Cacheable<string> formula; 113 120 moleculeId_t id; 121 atomSet atoms; //<!set of atoms 114 122 protected: 115 123 molecule(const periodentafel * const teil); … … 125 133 const std::string getFormula(); 126 134 std::string calcFormula(); 135 136 iterator begin(); 137 const_iterator begin() const; 138 iterator ende(); 139 const_iterator ende() const; 127 140 128 141 -
src/unittests/ObserverTest.cpp
r57adc7 rbd58fb 11 11 #include <cppunit/extensions/TestFactoryRegistry.h> 12 12 #include <cppunit/ui/text/TestRunner.h> 13 #include <set> 13 14 14 15 #include "Patterns/Observer.hpp" 16 #include "Patterns/ObservedIterator.hpp" 15 17 16 18 #include <iostream> … … 83 85 }; 84 86 87 class ObservableCollection : public Observable { 88 public: 89 typedef std::set<SimpleObservable*> set; 90 typedef ObservedIterator<set> iterator; 91 92 ObservableCollection(int num){ 93 for(int i=0; i<num; ++i){ 94 SimpleObservable *content = new SimpleObservable(); 95 content->signOn(this); 96 theSet.insert(content); 97 } 98 } 99 100 ~ObservableCollection(){ 101 set::iterator iter; 102 for(iter=theSet.begin(); iter!=theSet.end(); ++iter ){ 103 delete (*iter); 104 } 105 } 106 107 iterator begin(){ 108 return iterator(theSet.begin(),this); 109 } 110 111 iterator end(){ 112 return iterator(theSet.end(),this); 113 } 114 115 private: 116 set theSet; 117 }; 118 85 119 /******************* actuall tests ***************/ 86 120 … … 95 129 observer3 = new UpdateCountObserver(); 96 130 observer4 = new UpdateCountObserver(); 131 132 collection = new ObservableCollection(5); 97 133 } 98 134 … … 107 143 delete observer3; 108 144 delete observer4; 145 146 delete collection; 109 147 } 110 148 … … 163 201 } 164 202 203 void ObserverTest::iteratorTest(){ 204 collection->signOn(observer1); 205 { 206 ObservableCollection::iterator iter; 207 for(iter=collection->begin(); iter!=collection->end(); ++iter){ 208 (*iter)->changeMethod(); 209 } 210 // At this point no change should have been propagated 211 CPPUNIT_ASSERT_EQUAL( 0, observer1->updates); 212 } 213 // After the Iterator has died the propagation should take place 214 CPPUNIT_ASSERT_EQUAL( 1, observer1->updates); 215 collection->signOff(observer1); 216 } 217 165 218 166 219 void ObserverTest::CircleDetectionTest() { -
src/unittests/ObserverTest.hpp
r57adc7 rbd58fb 16 16 class CallObservable; 17 17 class SuperObservable; 18 class ObservableCollection; 18 19 19 20 … … 24 25 CPPUNIT_TEST ( doesBlockUpdateTest ); 25 26 CPPUNIT_TEST ( doesSubObservableTest ); 27 CPPUNIT_TEST ( iteratorTest ); 26 28 CPPUNIT_TEST ( CircleDetectionTest ); 27 29 CPPUNIT_TEST_SUITE_END(); … … 34 36 void doesBlockUpdateTest(); 35 37 void doesSubObservableTest(); 38 void iteratorTest(); 36 39 void CircleDetectionTest(); 37 40 … … 46 49 CallObservable *callObservable; 47 50 SuperObservable *superObservable; 51 52 ObservableCollection *collection; 48 53 }; 49 54
Note:
See TracChangeset
for help on using the changeset viewer.