Changeset 4c60ef for molecuilder/src/Actions
- Timestamp:
- Mar 10, 2010, 5:51:48 PM (16 years ago)
- Children:
- 4fc41a
- Parents:
- 025ca2
- Location:
- molecuilder/src/Actions
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
molecuilder/src/Actions/AtomsCalculation_impl.hpp
r025ca2 r4c60ef 29 29 template<typename T> 30 30 std::vector<T>* AtomsCalculation<T>::doCalc(){ 31 World* world = World::get ();31 World* world = World::getPointer(); 32 32 int steps = world->numAtoms(); 33 int count = 0;34 33 std::vector<T> *res = new std::vector<T>(); 35 34 res->reserve(steps); -
molecuilder/src/Actions/ManipulateAtomsProcess.cpp
r025ca2 r4c60ef 23 23 24 24 void ManipulateAtomsProcess::call(){ 25 World::get ()->doManipulate(this);25 World::getInstance().doManipulate(this); 26 26 } 27 27
Note:
See TracChangeset
for help on using the changeset viewer.