--- trunk/OOPSE/libmdtools/SimInfo.cpp 2003/04/02 22:19:03 443 +++ trunk/OOPSE/libmdtools/SimInfo.cpp 2003/04/04 19:16:11 457 @@ -29,11 +29,22 @@ SimInfo::SimInfo(){ useGB = 0; useEAM = 0; - - wrapMeSimInfo( this ); } +void SimInfo::setBox(double newBox[3]) { + box_x = newBox[0]; + box_y = newBox[1]; + box_z = newBox[2]; + setFortranBoxSize(newBox); +} + +void SimInfo::getBox(double theBox[3]) { + theBox[0] = box_x; + theBox[1] = box_y; + theBox[2] = box_z; +} + void SimInfo::refreshSim(){ simtype fInfo;