Changeset b71881
- Timestamp:
- Feb 11, 2016, 8:06:49 AM (9 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:
- 7f1865d
- Parents:
- a0fa14
- git-author:
- Frederik Heber <heber@…> (12/28/15 06:18:42)
- git-committer:
- Frederik Heber <heber@…> (02/11/16 08:06:49)
- Location:
- src
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Atom/atom.cpp
ra0fa14 rb71881 56 56 father(this), 57 57 sort(&Nr), 58 mol(0) 58 mol(0), 59 selected(false) 59 60 { 60 61 // note AtomObserver about inserted atom … … 67 68 father(pointer), 68 69 sort(&Nr), 69 mol(0) 70 mol(0), 71 selected(false) 70 72 { 71 73 // sign on to father atom to be notified when it is removed … … 370 372 // no need to sign off 371 373 } 374 375 void atom::select() 376 { 377 OBSERVE; 378 selected = true; 379 NOTIFY(SelectionChanged); 380 } 381 382 void atom::unselect() 383 { 384 OBSERVE; 385 selected = false; 386 NOTIFY(SelectionChanged); 387 } -
src/Atom/atom.hpp
ra0fa14 rb71881 249 249 void unsetMolecule(); 250 250 251 //!> grant World (only) access to selection state changers 252 friend class World; 253 254 /** Sets the internal selection state to true. 255 * 256 */ 257 void select(); 258 259 /** Unsets the internal selection state to true. 260 * 261 */ 262 void unselect(); 263 251 264 // virtual void update(Observable *publisher); 252 265 // virtual void recieveNotification(Observable *publisher, Notification_ptr notification); 253 266 virtual void subjectKilled(Observable *publisher); 267 268 public: 269 270 /** Getter to internal selection status. 271 * 272 * \return true - atom is selected, false - else 273 */ 274 bool getSelected() const { return selected; } 254 275 255 276 private: … … 257 278 World* world; 258 279 atomId_t id; 280 //!> internal state whether atom is selected or not 281 bool selected; 259 282 }; 260 283 -
src/Atom/atom_observable.hpp
ra0fa14 rb71881 37 37 BondsRemoved, // new bonds have appeared on ListOfBonds 38 38 TrajectoryChanged, // trajectory has been extended 39 SelectionChanged, // indicate change of internal selection status 39 40 NotificationType_MAX // denotes the maximum of available notification types 40 41 }; -
src/molecule.cpp
ra0fa14 rb71881 97 97 _lastchangedatomid(-1), 98 98 last_atom(0), 99 molcenter(zeroVec) 99 molcenter(zeroVec), 100 selected(false) 100 101 { 101 102 // add specific channels … … 1190 1191 } 1191 1192 1193 void molecule::select() 1194 { 1195 OBSERVE; 1196 selected = true; 1197 NOTIFY(SelectionChanged); 1198 } 1199 1200 void molecule::unselect() 1201 { 1202 OBSERVE; 1203 selected = false; 1204 NOTIFY(SelectionChanged); 1205 } 1206 1192 1207 // construct idpool 1193 1208 CONSTRUCT_IDPOOL(atomId_t, continuousId) -
src/molecule.hpp
ra0fa14 rb71881 124 124 BoundingBoxChanged, 125 125 AboutToBeRemoved, 126 SelectionChanged, 126 127 NotificationType_MAX 127 128 }; … … 278 279 void resetFormula(); 279 280 281 //!> grant World (only) access to selection state changers 282 friend class World; 283 284 /** Sets the internal selection state to true. 285 * 286 */ 287 void select(); 288 289 /** Unsets the internal selection state to true. 290 * 291 */ 292 void unselect(); 293 280 294 public: 295 296 /** Getter to internal selection status. 297 * 298 * \return true - molecule is selected, false - else 299 */ 300 bool getSelected() const { return selected; } 281 301 282 302 /** Structure for the required information on the bounding box. … … 436 456 437 457 private: 458 //!> id of last atom that signalled changed associated with this molecule 438 459 atomId_t _lastchangedatomid; 439 460 440 461 int last_atom; //!< number given to last atom 441 462 463 //!> center of the molecule 442 464 Vector molcenter; 465 466 //!> internal state whether atom is selected or not 467 bool selected; 443 468 }; 444 469
Note:
See TracChangeset
for help on using the changeset viewer.