Changeset 897a01 for src/UIElements/Qt4/InstanceBoard/QtObservedAtom.hpp
- Timestamp:
- Apr 11, 2018, 6:29:56 AM (7 years ago)
- Branches:
- Candidate_v1.6.1, ChemicalSpaceEvaluator, Gui_displays_atomic_force_velocity, PythonUI_with_named_parameters, TremoloParser_IncreasedPrecision
- Children:
- 8ac6d0e
- Parents:
- 8450da
- git-author:
- Frederik Heber <frederik.heber@…> (08/08/17 21:26:57)
- git-committer:
- Frederik Heber <frederik.heber@…> (04/11/18 06:29:56)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/UIElements/Qt4/InstanceBoard/QtObservedAtom.hpp
r8450da r897a01 136 136 const Vector& getAtomPosition() const; 137 137 138 /** Getter to atom velocity contained in \a ObservedValues. 139 * 140 * \return atom's velocity 141 */ 142 const Vector& getAtomVelocity() const; 143 144 /** Getter to atom force contained in \a ObservedValues. 145 * 146 * \return atom's force 147 */ 148 const Vector& getAtomForce() const; 149 138 150 /** Getter to the observed state of the associated molecule. 139 151 * … … 155 167 void nameChanged(); 156 168 void positionChanged(); 169 void velocityChanged(); 170 void forceChanged(); 157 171 void atomRemoved(); 158 172 void selectedChanged(); … … 174 188 static std::string updateName(const atom &_atom); 175 189 static Vector updatePosition(const atom &_atom); 190 static Vector updateVelocity(const atom &_atom); 191 static Vector updateForce(const atom &_atom); 176 192 static bool updateSelected(const atom &_atom); 177 193 … … 188 204 //!> contains the current atom position 189 205 AtomPosition, 206 //!> contains the current atom velocity 207 AtomVelocity, 208 //!> contains the current atom force 209 AtomForce, 190 210 //!> contains the current atom's selection status 191 211 AtomSelected, … … 253 273 //!> list of channels when position needs to update 254 274 static const Observable::channels_t AtomPositionChannels; 275 //!> list of channels when velocity needs to update 276 static const Observable::channels_t AtomVelocityChannels; 277 //!> list of channels when force needs to update 278 static const Observable::channels_t AtomForceChannels; 255 279 //!> list of channels when selection needs to update 256 280 static const Observable::channels_t AtomSelectedChannels;
Note:
See TracChangeset
for help on using the changeset viewer.