ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/branches/new_design/OOPSE-3.0/src/brains/SimSnapshotManager.cpp
(Generate patch)

Comparing:
trunk/OOPSE-3.0/src/brains/SimSnapshotManager.cpp (file contents), Revision 1642 by tim, Mon Oct 25 04:08:14 2004 UTC vs.
branches/new_design/OOPSE-3.0/src/brains/SimSnapshotManager.cpp (file contents), Revision 1699 by tim, Tue Nov 2 17:00:12 2004 UTC

# Line 25 | Line 25 | SimSnapshotManager::SimSnapshotManager(){
25  
26   namespace oopse {
27  
28 < SimSnapshotManager::SimSnapshotManager(){
28 > SimSnapshotManager::SimSnapshotManager(SimModel* model) : model_(model){
29 >    int nAtoms = model->getNAtoms();
30 >    int nRigidBodies = model->getNRigidBodies();
31 >    
32      //allocate memory for snapshots
33 <    previousSnapshot_ = new Snapshot();
34 <    currentSnapshot_ = new Snapshot();
33 >    previousSnapshot_ = new Snapshot(nAtoms, nRigidBodies);
34 >    currentSnapshot_ = new Snapshot(nAtoms, nRigidBodies);
35   }
36  
37   bool SimSnapshotManager::advance() {

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines