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 1733 by tim, Fri Nov 12 06:19:04 2004 UTC

# Line 25 | Line 25 | SimSnapshotManager::SimSnapshotManager(){
25  
26   namespace oopse {
27  
28 < SimSnapshotManager::SimSnapshotManager(){
28 > SimSnapshotManager::SimSnapshotManager(SimInfo* info) : info_(info){
29 >    int nAtoms = info_->getNAtoms();
30 >    int nRigidBodies = info_->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