Changeset 01e6c5
- Timestamp:
- Sep 28, 2009, 6:43:02 PM (16 years ago)
- Children:
- 4cbac2
- Parents:
- 606dfb
- Location:
- molecuilder/src
- Files:
-
- 3 edited
-
atom.cpp (modified) (1 diff)
-
config.cpp (modified) (1 diff)
-
vectorunittest.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
molecuilder/src/atom.cpp
r606dfb r01e6c5 61 61 { 62 62 Free((void **)&ComponentNr, "atom::~atom: *ComponentNr"); 63 Free((void **)&Name, "atom::~atom: *Name"); 63 64 }; 64 65 -
molecuilder/src/config.cpp
r606dfb r01e6c5 1010 1010 repetition--; 1011 1011 cout << "Found " << repetition << " trajectory steps." << endl; 1012 mol->MDSteps = repetition; 1012 if (repetition <= 1) // if onyl one step, desactivate use of trajectories 1013 mol->MDSteps = 0; 1014 else 1015 mol->MDSteps = repetition; 1013 1016 } else { 1014 1017 // find the maximum number of MD steps so that we may parse last one (Ion_Type1_1 must always be present, because is the first atom) -
molecuilder/src/vectorunittest.cpp
r606dfb r01e6c5 13 13 #include <cppunit/ui/text/TestRunner.h> 14 14 15 #include "defs.hpp" 16 #include "vector.hpp" 15 17 #include "vectorunittest.hpp" 16 #include "vector.hpp"17 #include "defs.hpp"18 18 19 19 /********************************************** Test classes **************************************/
Note:
See TracChangeset
for help on using the changeset viewer.
