xc
|
ID that can move between processes. More...
#include <MovableID.h>
Public Member Functions | |
MovableID (const size_t &sz=0) | |
Constructor. | |
MovableID (const ID &) | |
Constructor. | |
void | setID (const ID &) |
Asigna el ID. | |
virtual int | sendSelf (CommParameters &) |
Envia el ID with the parameters (channel,...) being passed as argument. | |
virtual int | recvSelf (const CommParameters &) |
Receives the ID through the communicator being passed as argument. | |
![]() | |
ID (void) | |
Default constructor, sets size = 0;. | |
ID (const int &) | |
Constructor used to allocate a ID of size size. More... | |
ID (const v_int &) | |
ID (const boost::python::list &) | |
Constructor (Python interface). | |
ID (const std::set< int > &) | |
template<class InputIterator > | |
ID (InputIterator first, InputIterator last) | |
int | Size (void) const |
Returns the vector size. | |
void | Zero (void) |
Zeros out the ID, i.e. More... | |
const int * | getDataPtr (void) const |
Returns a const pointer to the vector data. | |
int * | getDataPtr (void) |
Returns a const pointer to the vector data. | |
bool | isEmpty (void) const |
Returns true if the vector is empty. | |
int | resize (const int &newSize, const int &defaultValue=0) |
const int & | max (void) const |
Returns the maximum of vector components. | |
const int & | min (void) const |
Returns the minimum of vector components. | |
bool | checkRange (const int &) const |
check if argument is inside range [0,sz-1] | |
int & | operator() (const int &) |
Returns a reference to the element at position i in the container (does not range checking unless _G3DEBUG is set => faster than [] operator). More... | |
const int & | operator() (const int &) const |
Returns a const reference to the element at position i in the container (does not range checking unless _G3DEBUG is set => faster than [] operator). More... | |
int & | operator[] (const int &i) |
Returns a reference to the element at position i in the container (does range checking => slower than () operator). More... | |
const int & | operator[] (const int &i) const |
Returns a reference to the element at position i in the container (does range checking => slower than () operator). More... | |
int | getLocation (const int &) const |
Returns the position of 'value' in the vector. More... | |
int | getLocationOrdered (const int &) const |
int | removeValue (const int &) |
Remove value from the array. More... | |
![]() | |
MovableObject (int classTag, int dbTag) | |
Constructor. More... | |
MovableObject (int classTag) | |
Constructor. More... | |
MovableObject (const MovableObject &) | |
Copy constructor. Doesn't copy the dbTag. | |
MovableObject & | operator= (const MovableObject &) |
Assignment operator. Doesn't copy the dbTag. | |
int | getClassTag (void) const |
Return the class identifier. | |
int | getDbTag (void) const |
Return the object identifier in the database. | |
int | getDbTag (CommParameters &) |
Return the object identifier in the database. | |
void | setDbTag (int dbTag) |
Sets the object identifier in the database. | |
void | setDbTag (CommParameters &) |
Sets the object identifier in the database if not already set. More... | |
virtual int | setParameter (const std::vector< std::string > &argv, Parameter ¶m) |
Sets the value param to the parameter argv . | |
virtual int | updateParameter (int parameterID, Information &info) |
Updates the parameter identified by parameterID with info . | |
virtual int | activateParameter (int parameterID) |
Activates the parameter identified by parameterID . | |
virtual int | setVariable (const std::string &variable, Information &) |
Set the value of the variable idenfified by var . | |
virtual int | getVariable (const std::string &variable, Information &) |
Return the value of the variable idenfified by var . | |
![]() | |
DistributedBase (void) | |
Constructor. | |
const int & | getDbTagDataPos (const int &i) const |
Returns the data at the i-th position. | |
void | setDbTagDataPos (const int &i, const int &v) |
Sets the data at the i-th position. | |
void | inicComm (const int &dataSize) const |
Initializes communication. | |
Protected Member Functions | |
DbTagData & | getDbTagData (void) const |
Returns a vector to store the dbTags of the class members. More... | |
Additional Inherited Members | |
![]() | |
typedef std::vector< int > | v_int |
ID that can move between processes.
|
protectedvirtual |
Returns a vector to store the dbTags of the class members.
Reimplemented from XC::DistributedBase.