ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/branches/new_design/OOPSE-2.0/src/primitives/Molecule.hpp
(Generate patch)

Comparing branches/new_design/OOPSE-2.0/src/primitives/Molecule.hpp (file contents):
Revision 1713 by tim, Fri Nov 5 02:56:22 2004 UTC vs.
Revision 1725 by tim, Wed Nov 10 22:01:06 2004 UTC

# Line 55 | Line 55 | class Molecule {
55   class Molecule {
56      public:
57  
58 <        Molecule();
58 >        typedef std::vector<Atom*>::iterator AtomIterator;
59 >        typedef std::vector<Bond*>::iterator BondIterator;
60 >        typedef std::vector<Bend*>::iterator BendIterator;
61 >        typedef std::vector<Torsion*>::iterator TorsionIterator;
62 >        typedef std::vector<RigidBody*>::iterator RigidBodyIterator;
63 >        typedef std::vector<CutoffGroup*>::iterator CutoffGroupIterator;
64 >        typedef std::vector<StuntDouble*>::iterator IntegrableObjectIterator;        
65 >
66 >        Molecule(int stampId, int globalIndex);
67          virtual ~Molecule();
68  
69          /**
# Line 72 | Line 80 | class Molecule {
80           */
81          int setGlobalIndex(int index) {
82              return globalIndex_;
75        }
76        
77        /**
78         * Returns the local index of this molecule
79         * @return the local index of this molecule
80         */
81        int getLocalIndex() {
82            return localIndex_;
83          }
84  
85          /** add an atom into this molecule */
# Line 142 | Line 142 | class Molecule {
142          unsigned int getNConstraints() {
143              return constraints_.size();
144          }
145 <        
145 >
146 >        Atom* getAtomAt(unsigned int i) {
147 >            assert(i < atoms_.size());
148 >            return atoms_[i];
149 >        }
150          /**
151           * Returns the first atom in this molecule and initialize the iterator.
152           * @return the first atom, return NULL if there is not cut off group in this molecule
# Line 239 | Line 243 | class Molecule {
243          friend std::ostream& operator <<(std::ostream& o, Molecule& mol);
244          
245      private:
246 <        int localIndex_;
246 >        
247          int globalIndex_;
248  
249          std::vector<Atom*> atoms_;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines