ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/branches/new_design/OOPSE-3.0/src/brains/Snapshot.hpp
Revision: 1696
Committed: Tue Nov 2 15:23:46 2004 UTC (19 years, 8 months ago) by tim
File size: 3655 byte(s)
Log Message:
adding SimModel(something similar as SimInfo)

File Contents

# Content
1 /*
2 * Copyright (C) 2000-2004 Object Oriented Parallel Simulation Engine (OOPSE) project
3 *
4 * Contact: oopse@oopse.org
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public License
8 * as published by the Free Software Foundation; either version 2.1
9 * of the License, or (at your option) any later version.
10 * All we ask is that proper credit is given for our work, which includes
11 * - but is not limited to - adding the above copyright notice to the beginning
12 * of your source code files, and to any copyright notice that you may distribute
13 * with programs based on this work.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU Lesser General Public License for more details.
19 *
20 * You should have received a copy of the GNU Lesser General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
23 *
24 */
25
26 /**
27 * @file Snapshot.hpp
28 * @author tlin
29 * @date 10/20/2004
30 * @time 23:56am
31 * @version 1.0
32 */
33
34 #ifndef BRAINS_SNAPSHOT_HPP
35 #define BRAINS_SNAPSHOT_HPP
36
37 #include <vector>
38
39 #include "brains/DataStorage.hpp"
40
41 using namespace std;
42
43 namespace oopse{
44
45 /**
46 * @class Snapshot Snapshot.hpp "brains/Snapshot.hpp"
47 * @brief Snapshot class is a repository class for storing dynamic data during
48 * Simulation
49 * Every snapshot class will contain one DataStorage for atoms and one DataStorage
50 * for rigid bodies.
51 * @see SimData
52 */
53 class Snapshot {
54 public:
55
56 Snapshot(int nAtoms, int nRigidbodies) {
57 atomData.resize(nAtoms);
58 rigidbodyData.resize(nRigidbodies);
59 }
60
61 Snapshot(const Snapshot& s);
62
63 Snapshot& operator =(const Snapshot& s);
64
65 /** Returns the id of this Snapshot */
66 int getID() {
67 return id_;
68 }
69
70 /** Sets the id of this Snapshot */
71 void setID(int id) {
72 id_ = id;
73 }
74
75 int getSize() {
76 return atomData.getSize() + rigidbodyData.getSize();
77 }
78
79 /** Returns the number of atoms */
80 int getNumberOfAtoms() {
81 return atomData.getSize();
82 }
83
84 /** Returns the number of rigid bodies */
85 int getNumberOfRigidBodies() {
86 return rigidbodyData.getSize();
87 }
88
89 /** Returns the H-Matrix */
90 Mat3x3d getHmat() {
91 return hmat_;
92 }
93
94 /** Sets the H-Matrix */
95 void setHamt(const Mat3x3d& m) {
96 hmat_ = m;
97 invHmat_ = hmat_.inverse();
98 }
99
100 /** Returns the inverse H-Matrix */
101 Mat3x3d getInvHmat() {
102 return invHmat_;
103 }
104
105 double getTimeStamp() {
106 return timeStamp_;
107 }
108
109 void setTimeStamp(double timeStamp) {
110 timeStamp_ =timeStamp;
111 }
112
113 DataStorage atomData;
114 DataStorage rigidbodyData;
115
116 private:
117 double timeStamp_;
118 Mat3x3d hmat_;
119 Mat3x3d invHmat_;
120 int id_; /**< identification number of the snapshot */
121 };
122
123 typedef DataStorage (Snapshot::*DataStoragePointer);
124 }
125 #endif //BRAINS_SNAPSHOT_HPP