ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/OpenMD/branches/development/src/primitives/Molecule.hpp
(Generate patch)

Comparing trunk/src/primitives/Molecule.hpp (file contents):
Revision 963 by tim, Wed May 17 21:51:42 2006 UTC vs.
Revision 1211 by gezelter, Wed Jan 23 16:38:22 2008 UTC

# Line 77 | Line 77 | namespace oopse{
77      typedef std::vector<Torsion*>::iterator TorsionIterator;
78      typedef std::vector<RigidBody*>::iterator RigidBodyIterator;
79      typedef std::vector<CutoffGroup*>::iterator CutoffGroupIterator;
80 <    typedef std::vector<StuntDouble*>::iterator IntegrableObjectIterator;        
80 >    typedef std::vector<StuntDouble*>::iterator IntegrableObjectIterator;
81      typedef std::vector<ConstraintPair*>::iterator ConstraintPairIterator;
82      typedef std::vector<ConstraintElem*>::iterator ConstraintElemIterator;
83 <        
84 <
83 >    
84 >    
85      Molecule(int stampId, int globalIndex, const std::string& molName);
86      virtual ~Molecule();
87 <
87 >    
88      /**
89       * Returns the global index of this molecule.
90       * @return  the global index of this molecule
# Line 92 | Line 92 | namespace oopse{
92      int getGlobalIndex() {
93        return globalIndex_;
94      }
95 <
95 >    
96      /**
97       * Returns the stamp id of this molecule
98 <     * @note Ideally, every molecule should keep a pointer of its molecule stamp instead of its
99 <     * stamp id. However, the pointer will become invalid, if the molecule migrate to other processor.
98 >     * @note Ideally, every molecule should keep a pointer of its
99 >     * molecule stamp instead of its stamp id. However, the pointer
100 >     * will become invalid, if the molecule migrate to other
101 >     * processor.
102       */
103      int getStampId() {
104        return stampId_;
105      }
106 <
106 >    
107      /** Returns the name of the molecule */
108      std::string getType() {
109        return moleculeName_;
110      }
111 <        
111 >    
112      /**
113       * Sets the global index of this molecule.
114       * @param new global index to be set
# Line 114 | Line 116 | namespace oopse{
116      void setGlobalIndex(int index) {
117        globalIndex_ = index;
118      }
119 <
120 <        
119 >    
120 >    
121      /** add an atom into this molecule */
122      void addAtom(Atom* atom);
123 <
123 >    
124      /** add a bond into this molecule */
125      void addBond(Bond* bond);
126 <
126 >    
127      /** add a bend into this molecule */
128      void addBend(Bend* bend);
129 <
129 >    
130      /** add a torsion into this molecule*/
131      void addTorsion(Torsion* torsion);
132 <
132 >    
133      /** add a rigidbody into this molecule */
134      void addRigidBody(RigidBody *rb);
135 <
135 >    
136      /** add a cutoff group into this molecule */
137      void addCutoffGroup(CutoffGroup* cp);    
138 <
138 >    
139      void addConstraintPair(ConstraintPair* consPair);
140 <        
140 >    
141      void addConstraintElem(ConstraintElem* consElem);
142 <
142 >    
143      /** */
144      void complete();
145 <
145 >    
146      /** Returns the total number of atoms in this molecule */
147      unsigned int getNAtoms() {
148        return atoms_.size();
149      }
150 <
150 >    
151      /** Returns the total number of bonds in this molecule */        
152      unsigned int getNBonds(){
153        return bonds_.size();
154      }
155 <
155 >    
156      /** Returns the total number of bends in this molecule */        
157      unsigned int getNBends() {
158        return bends_.size();
159      }
160 <
160 >    
161      /** Returns the total number of torsions in this molecule */        
162      unsigned int getNTorsions() {
163        return torsions_.size();
164      }
165 <
165 >    
166      /** Returns the total number of rigid bodies in this molecule */        
167      unsigned int getNRigidBodies() {
168        return rigidBodies_.size();
169      }
170 <
170 >    
171      /** Returns the total number of integrable objects in this molecule */
172      unsigned int getNIntegrableObjects() {
173        return integrableObjects_.size();
174      }
175 <
175 >    
176      /** Returns the total number of cutoff groups in this molecule */
177      unsigned int getNCutoffGroups() {
178        return cutoffGroups_.size();
179      }
180 <
180 >    
181      /** Returns the total number of constraints in this molecule */
182      unsigned int getNConstraintPairs() {
183        return constraintPairs_.size();
184      }
185 <
185 >    
186      Atom* getAtomAt(unsigned int i) {
187        assert(i < atoms_.size());
188        return atoms_[i];
189      }
190 <
190 >    
191      RigidBody* getRigidBodyAt(unsigned int i) {
192        assert(i < rigidBodies_.size());
193        return rigidBodies_[i];
194      }
195 <        
195 >    
196      Atom* beginAtom(std::vector<Atom*>::iterator& i) {
197        i = atoms_.begin();
198        return (i == atoms_.end()) ? NULL : *i;
199      }
200 <
200 >    
201      Atom* nextAtom(std::vector<Atom*>::iterator& i) {
202        ++i;
203        return (i == atoms_.end()) ? NULL : *i;    
204      }
205 <
205 >    
206      Bond* beginBond(std::vector<Bond*>::iterator& i) {
207        i = bonds_.begin();
208        return (i == bonds_.end()) ? NULL : *i;
209      }
210 <
210 >    
211      Bond* nextBond(std::vector<Bond*>::iterator& i) {
212        ++i;
213        return (i == bonds_.end()) ? NULL : *i;    
214 <
214 >      
215      }
216 <
216 >    
217      Bend* beginBend(std::vector<Bend*>::iterator& i) {
218        i = bends_.begin();
219        return (i == bends_.end()) ? NULL : *i;
220      }
221 <
221 >    
222      Bend* nextBend(std::vector<Bend*>::iterator& i) {
223        ++i;
224        return (i == bends_.end()) ? NULL : *i;    
225      }
226 <
226 >    
227      Torsion* beginTorsion(std::vector<Torsion*>::iterator& i) {
228        i = torsions_.begin();
229        return (i == torsions_.end()) ? NULL : *i;
230      }
231 <
231 >    
232      Torsion* nextTorsion(std::vector<Torsion*>::iterator& i) {
233        ++i;
234        return (i == torsions_.end()) ? NULL : *i;    
235      }    
236 <
236 >    
237      RigidBody* beginRigidBody(std::vector<RigidBody*>::iterator& i) {
238        i = rigidBodies_.begin();
239        return (i == rigidBodies_.end()) ? NULL : *i;
240      }
241 <
241 >    
242      RigidBody* nextRigidBody(std::vector<RigidBody*>::iterator& i) {
243        ++i;
244        return (i == rigidBodies_.end()) ? NULL : *i;    
245      }
246 <
246 >    
247      StuntDouble* beginIntegrableObject(std::vector<StuntDouble*>::iterator& i) {
248        i = integrableObjects_.begin();
249        return (i == integrableObjects_.end()) ? NULL : *i;
250      }
251 <
251 >    
252      StuntDouble* nextIntegrableObject(std::vector<StuntDouble*>::iterator& i) {
253        ++i;
254        return (i == integrableObjects_.end()) ? NULL : *i;    
255      }    
256 <
256 >    
257      CutoffGroup* beginCutoffGroup(std::vector<CutoffGroup*>::iterator& i) {
258        i = cutoffGroups_.begin();
259        return (i == cutoffGroups_.end()) ? NULL : *i;
260      }
261  
262 <    CutoffGroup* nextCutoffGroup(std::vector<CutoffGroup*>::iterator& i) {            
262 >    CutoffGroup* nextCutoffGroup(std::vector<CutoffGroup*>::iterator& i) {
263        ++i;
264        return (i == cutoffGroups_.end()) ? NULL : *i;    
265      }
266 <
266 >    
267      ConstraintPair* beginConstraintPair(std::vector<ConstraintPair*>::iterator& i) {
268        i = constraintPairs_.begin();
269        return (i == constraintPairs_.end()) ? NULL : *i;
270      }
271 <
271 >    
272      ConstraintPair* nextConstraintPair(std::vector<ConstraintPair*>::iterator& i) {            
273        ++i;
274        return (i == constraintPairs_.end()) ? NULL : *i;    
275      }        
276 <
276 >    
277      ConstraintElem* beginConstraintElem(std::vector<ConstraintElem*>::iterator& i) {
278        i = constraintElems_.begin();
279        return (i == constraintElems_.end()) ? NULL : *i;
280      }
281 <
281 >    
282      ConstraintElem* nextConstraintElem(std::vector<ConstraintElem*>::iterator& i) {            
283        ++i;
284        return (i == constraintElems_.end()) ? NULL : *i;    
285      }
286 <        
287 <    /** return the total potential energy of short range interaction of this molecule */
286 >    
287 >    /**
288 >     * Returns the total potential energy of short range interaction
289 >     * of this molecule
290 >     */    
291      RealType getPotential();
292 <
292 >    
293      /** get total mass of this molecule */        
294      RealType getMass();
295 <
295 >    
296      /** return the center of mass of this molecule */
297      Vector3d getCom();
298 <
298 >    
299      /** Moves the center of this molecule */
300      void moveCom(const Vector3d& delta);
301 <
301 >    
302      /** Returns the velocity of center of mass of this molecule */
303      Vector3d getComVel();
304  
# Line 302 | Line 307 | namespace oopse{
307      }
308          
309      friend std::ostream& operator <<(std::ostream& o, Molecule& mol);
310 <        
310 >    
311    private:
312 <        
312 >    
313      int globalIndex_;
314 <
314 >    
315      std::vector<Atom*> atoms_;
316      std::vector<Bond*> bonds_;
317      std::vector<Bend*> bends_;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines