State




This class represents the local parameters defining the “state” of our dynamic system (i.e. a particle). The data members are:

// the model name (obsolete)
std::string name;
// other names ( the model representation, etc)
std::map< std::string, std::string > names;

// the main State HyperVector (vector and its covariance matrix)
HyperVector hv;
// additional HyperVector's
std::map< std::string, HyperVector > hvs;

// this is the running parameter of some models.
double parameter;

The name and the map of names are inherited from the base class NamedObject, while the HV and HV map are inherited from the base class HyperVectorObject. Example on how to create a State.