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

Comparing branches/new_design/OOPSE-4/src/brains/SimSnapshotManager.cpp (file contents):
Revision 1698, Thu Oct 28 22:34:02 2004 UTC vs.
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