![]() |
Reference documentation for deal.II version 8.1.0
|
#include <named_data.h>
Public Member Functions | |
void | add (const std::string &name) |
template<typename DATA > | |
void | initialize (const NamedData< DATA > &data) |
unsigned int | size () const |
unsigned int | operator() (unsigned int i) const |
Private Attributes | |
std::vector< std::string > | names |
std::vector< unsigned int > | indices |
Select data from NamedData corresponding to the attached name.
Given a list of names to search for (provided by add()), objects of this class provide an index list of the selected data.
Definition at line 185 of file named_data.h.
|
inline |
Add a new name to be searched for in NamedData.
Definition at line 409 of file named_data.h.
|
inline |
Create the index vector pointing into the NamedData object.
Definition at line 417 of file named_data.h.
|
inline |
The number of names in this object. This function may be used whether initialize() was called before or not.
Definition at line 427 of file named_data.h.
Return the corresponding index in the NamedData object supplied to the last initialize(). It is an error if initialize() has not been called before.
Indices are in the same order as the calls to add().
Definition at line 435 of file named_data.h.
|
private |
The selected names.
Definition at line 230 of file named_data.h.
|
private |
The index map generated by initialize() and accessed by operator().
Definition at line 236 of file named_data.h.