Changeset 075729 for molecuilder/src/World.hpp
- Timestamp:
- Apr 27, 2010, 2:25:42 PM (16 years ago)
- Children:
- 90c4460
- Parents:
- 1561e2 (diff), 2bc713 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - File:
-
- 1 edited
-
molecuilder/src/World.hpp (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
molecuilder/src/World.hpp
r1561e2 r075729 9 9 #define WORLD_HPP_ 10 10 11 /*********************************************** includes ***********************************/ 12 11 13 #include <string> 12 14 #include <map> … … 22 24 #include "Patterns/Singleton.hpp" 23 25 26 // include config.h 27 #ifdef HAVE_CONFIG_H 28 #include <config.h> 29 #endif 24 30 25 31 // forward declarations … … 36 42 class AtomsCalculation; 37 43 38 44 /****************************************** forward declarations *****************************/ 45 46 /********************************************** Class World *******************************/ 39 47 40 48 class World : public Singleton<World>, public Observable … … 107 115 int numMolecules(); 108 116 117 /** 118 * get the domain size as a symmetric matrix (6 components) 119 */ 120 double * getDomain(); 121 122 /** 123 * set the domain size as a symmetric matrix (6 components) 124 */ 125 void setDomain(double * matrix); 126 127 /** 128 * get the default name 129 */ 130 char * getDefaultName(); 131 132 /** 133 * set the default name 134 */ 135 void setDefaultName(char * name); 136 109 137 /***** Methods to work with the World *****/ 110 138 … … 206 234 207 235 periodentafel *periode; 236 static double *cell_size; 237 static char *defaultName; 208 238 public: 209 239 AtomSet atoms;
Note:
See TracChangeset
for help on using the changeset viewer.
