source: src/Actions/UndoRedoHelpers.hpp@ 8c6b68

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
Last change on this file since 8c6b68 was 8c6b68, checked in by Frederik Heber <frederik.heber@…>, 7 years ago

atom::removeStep() extended to removing interval of steps.

  • AtomInfo::removeTrajectorySteps() and BondedParticle::removeTrajectorySteps() changed and all calls adapted.
  • Property mode set to 100644
File size: 5.0 KB
Line 
1/*
2 * UndoRedoHelpers.hpp
3 *
4 * Created on: Apr 5, 2012
5 * Author: heber
6 */
7
8#ifndef UNDOREDOHELPERS_HPP_
9#define UNDOREDOHELPERS_HPP_
10
11
12// include config.h
13#ifdef HAVE_CONFIG_H
14#include <config.h>
15#endif
16
17#include <vector>
18
19#include "Atom/AtomicInfo.hpp"
20#include "Bond/BondInfo.hpp"
21
22namespace MoleCuilder {
23
24 /** Adds removed atoms back to the world whose state is stored as AtomicInfo.
25 *
26 * @param atoms vector of atomicInfo
27 * @return restoral was successful, at least atom could not be restored.
28 */
29 bool AddAtomsFromAtomicInfo(const std::vector<AtomicInfo> &atoms);
30
31 /** Adds removed molecules with their atoms back to the world.
32 *
33 * @param mol_atoms map of molecules with ids and their atoms as AtomicInfo
34 * \return true - restoral was successful, at least one atom or molecule could not be restored
35 */
36 bool AddMoleculesFromAtomicInfo(std::map< moleculeId_t, std::vector<AtomicInfo> > &mol_atoms);
37
38 /** Removes atoms whose state information is stored as AtomicInfo.
39 *
40 * @param atoms vector of atomicInfo
41 */
42 void RemoveAtomsFromAtomicInfo(std::vector<AtomicInfo> &atoms);
43
44 /** Stores the required bond information in for all \a atoms in \a bonds.
45 *
46 * @param atoms atoms whose bonds to store
47 * @param bonds vector with bond information on return
48 */
49 void StoreBondInformationFromAtoms(
50 const std::vector<const atom*> &atoms,
51 std::vector<BondInfo> &bonds);
52
53 /** Recreates bonds from information stored in \a bonds.
54 *
55 * @param bonds bond state information
56 * @return true - all bonds restored, false - at least one bond could not be restored
57 */
58 bool AddBondsFromBondInfo(const std::vector< BondInfo > &bonds);
59
60 /** Sets atoms to state information stored as AtomicInfo.
61 *
62 * @param movedatoms vector of atomicInfo
63 */
64 void SetAtomsFromAtomicInfo(const std::vector<AtomicInfo> &_movedatoms);
65
66 /** Selects all atoms inside the given vector
67 *
68 * @param movedatoms vector of atomicInfo
69 */
70 void SelectAtomsFromAtomicInfo(const std::vector<AtomicInfo> &_movedatoms);
71
72 /** Helper function to allow setting arbitrary atom vectorial information via some
73 * \a setter function.
74 *
75 * @param movedatoms atoms whose info to change
76 * @param MovedToVector vector with old vectorial information
77 */
78 void ResetByFunction(
79 const std::vector<AtomicInfo> &movedatoms,
80 const std::vector<Vector> &MovedToVector,
81 boost::function<void(atom *, const Vector&)> &setter);
82
83 /** Sets the atoms whose id is stored in given AtomicInfo in \a movedatoms
84 * to position in \a MovedToVector.
85 *
86 * @param movedatoms atoms whose position to change
87 * @param MovedToVector vector with old positions
88 */
89 void ResetAtomPosition(const std::vector<AtomicInfo> &movedatoms, const std::vector<Vector> &MovedToVector);
90
91 /** Sets the atoms whose id is stored in given AtomicInfo in \a movedatoms
92 * to position in \a MovedToVector.
93 *
94 * @param movedatoms atoms whose position to change
95 * @param VelocityVector vector with old velocities
96 */
97 void ResetAtomVelocity(const std::vector<AtomicInfo> &movedatoms, const std::vector<Vector> &VelocityVector);
98
99 /** Sets the atoms whose id is stored in given AtomicInfo in \a movedatoms
100 * to position in \a MovedToVector.
101 *
102 * @param movedatoms atoms whose position to change
103 * @param ForceVector vector with old forces
104 */
105 void ResetAtomForce(const std::vector<AtomicInfo> &movedatoms, const std::vector<Vector> &ForceVector);
106
107 /** Remove all molecules identified by their ids given in \a ids.
108 *
109 * @param ids vector of molecular ids to remove
110 */
111 void RemoveMoleculesWithAtomsByIds(const std::vector<moleculeId_t> &ids);
112
113 /** Removes the time steps in given interval for all \a movedatoms.
114 *
115 * @param movedatoms atoms whose steps in [\a _firststep, \a _laststep] in time to remove
116 * @param _firststep first step in interval to be removed
117 * @param _laststep last step in interval to be removed
118 */
119 void removeSteps(
120 const std::vector<atomId_t> &movedatoms,
121 const unsigned int _firststep,
122 const unsigned int _laststep);
123
124 /** Adds another time step to all \a movedatoms.
125 *
126 * Note that the time step is initialized to zero.
127 *
128 * @param _ids atoms whose last step in time to remove
129 * @param _step which trajectory to insert/assign
130 */
131 void addNewStep(const std::vector<atomId_t> &_ids, const unsigned int _step);
132
133 /** Adds another time step to all \a movedatoms.
134 *
135 * Note that the time step is initialized to zero. This gives you a chance
136 * to set the time step and call setAtomsFromAtomicInfo() yourself.
137 *
138 * @param _movedatoms atoms whose last step in time to remove
139 * @param _step which trajectory to insert/assign
140 */
141 void addNewStep(const std::vector<AtomicInfo> &_movedatoms, const unsigned int _step);
142
143 /** Helper function to extract id information from vector of AtomicInfo.
144 *
145 * @param movedatoms atoms whose ids to extract
146 */
147 std::vector<atomId_t> getIdsFromAtomicInfo(const std::vector<AtomicInfo> &movedatoms);
148}
149
150
151
152#endif /* UNDOREDOHELPERS_HPP_ */
Note: See TracBrowser for help on using the repository browser.