Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/World.hpp

    r6e97e5 r97ebf8  
    99#define WORLD_HPP_
    1010
     11/*********************************************** includes ***********************************/
     12
    1113#include <string>
    1214#include <map>
     
    2224#include "Patterns/Singleton.hpp"
    2325
     26// include config.h
     27#ifdef HAVE_CONFIG_H
     28#include <config.h>
     29#endif
    2430
    2531// forward declarations
     32class config;
    2633class periodentafel;
    2734class MoleculeListClass;
     
    3643class AtomsCalculation;
    3744
    38 
     45/****************************************** forward declarations *****************************/
     46
     47/********************************************** Class World *******************************/
    3948
    4049class World : public Singleton<World>, public Observable
     
    6776
    6877  /**
     78   * returns the configuration for the world.
     79   */
     80  config *&getConfig();
     81
     82  /**
    6983   * returns the first atom that matches a given descriptor.
    7084   * Do not rely on ordering for descriptors that match more than one atom.
     
    101115   */
    102116  std::vector<molecule*> getAllMolecules(MoleculeDescriptor descriptor);
     117  std::vector<molecule*> getAllMolecules();
    103118
    104119  /**
     
    106121   */
    107122  int numMolecules();
     123
     124  /**
     125   * get the domain size as a symmetric matrix (6 components)
     126   */
     127  double * getDomain();
     128
     129  /**
     130   * set the domain size as a symmetric matrix (6 components)
     131   */
     132  void setDomain(double * matrix);
     133
     134  /**
     135   * get the default name
     136   */
     137  char * getDefaultName();
     138
     139  /**
     140   * set the default name
     141   */
     142  void setDefaultName(char * name);
    108143
    109144  /***** Methods to work with the World *****/
     
    206241
    207242  periodentafel *periode;
     243  config *configuration;
     244  static double *cell_size;
     245  static char *defaultName;
    208246public:
    209247  AtomSet atoms;
Note: See TracChangeset for help on using the changeset viewer.