Changeset 8c6b68 for src/Atom/atom_atominfo.hpp
- Timestamp:
- Apr 10, 2018, 6:43:12 AM (7 years ago)
- Branches:
- AutomationFragmentation_failures, Candidate_v1.6.1, ChemicalSpaceEvaluator, Enhanced_StructuralOptimization_continued, Exclude_Hydrogens_annealWithBondGraph, ForceAnnealing_with_BondGraph, ForceAnnealing_with_BondGraph_contraction-expansion, Gui_displays_atomic_force_velocity, PythonUI_with_named_parameters, StoppableMakroAction, TremoloParser_IncreasedPrecision
- Children:
- 6145577
- Parents:
- efd020
- git-author:
- Frederik Heber <frederik.heber@…> (08/03/17 10:46:48)
- git-committer:
- Frederik Heber <frederik.heber@…> (04/10/18 06:43:12)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Atom/atom_atominfo.hpp
refd020 r8c6b68 58 58 virtual void UpdateStep(const unsigned int _step)=0; 59 59 60 /** Pops the last stepin all trajectory vectors.60 /** Pops all steps in the interval [\a _firststep, \a _laststep] in all trajectory vectors. 61 61 * 62 62 * This allows to decrease all trajectories contained in different classes 63 63 * by one consistently. This is implemented by the topmost class which calls 64 * the real functions, \sa removeTrajectoryStep(), by all necessary subclasses. 65 */ 66 virtual void removeStep(const unsigned int _step)=0; 64 * the real functions, \sa removeTrajectorySteps(), by all necessary subclasses. 65 * 66 * \param _firststep first step in interval to be removed 67 * \param _laststep last step in interval to be removed 68 */ 69 virtual void removeSteps(const unsigned int _firststep, const unsigned int _laststep)=0; 67 70 68 71 /** DEPRECATED: Getter for element indicated by AtomicElement. … … 314 317 /** Function used by this and inheriting classes to decrease the trajectory 315 318 * vectors by one. 316 */ 317 void removeTrajectoryStep(const unsigned int _step); 319 * 320 * \param _firststep first step in interval to be removed 321 * \param _laststep last step in interval to be removed 322 */ 323 void removeTrajectorySteps(const unsigned int _firststep, const unsigned int _laststep); 318 324 319 325 // make these protected only such that deriving atom class still has full … … 325 331 VectorTrajectory_t AtomicVelocity; //!< velocity vector of atom, giving last velocity within cell 326 332 VectorTrajectory_t AtomicForce; //!< Force vector of atom, giving last force within cell 333 334 /** Helper function to avoid an interval of steps in VectorTrajectory_t. 335 * 336 * \param _trajectory trajectory to remove in 337 * \param _firststep first step in interval to be removed 338 * \param _laststep last step in interval to be removed 339 */ 340 static void eraseInTrajctory( 341 VectorTrajectory_t &_trajectory, 342 const unsigned int _firststep, const unsigned int _laststep); 327 343 328 344 private:
Note:
See TracChangeset
for help on using the changeset viewer.