Changeset 4e4940 for molecuilder/src/atom.cpp
- Timestamp:
- Aug 3, 2009, 8:10:09 AM (16 years ago)
- Children:
- 0e2190, 834ff3
- Parents:
- 3dc682
- File:
-
- 1 edited
-
molecuilder/src/atom.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
molecuilder/src/atom.cpp
r3dc682 r4e4940 30 30 MaxOrder = false; 31 31 }; 32 33 /** Constructor of class atom. 34 * 35 */ 36 atom::atom(atom *pointer) 37 { 38 Name = NULL; 39 previous = NULL; 40 next = NULL; 41 father = this; // generally, father is itself 42 Ancestor = NULL; 43 type = pointer->type; // copy element of atom 44 x.CopyVector(&pointer->x); // copy coordination 45 v.CopyVector(&pointer->v); // copy velocity 46 FixedIon = pointer->FixedIon; 47 nr = -1; 48 sort = &nr; 49 } 50 32 51 33 52 /** Destructor of class atom.
Note:
See TracChangeset
for help on using the changeset viewer.
