PSCF v1.2
|
A Parameter associated with a FSArray container. More...
#include <FSArrayParam.h>
Public Member Functions | |
FSArrayParam (const char *label, FSArray< Type, Capacity > &array, int n, bool isRequired=true) | |
Constructor. | |
void | writeParam (std::ostream &out) const |
Write parameter to stream. | |
![]() | |
ArrayParam (const char *label, int n, bool isRequired=true) | |
Constructor. | |
virtual | ~ArrayParam () |
Destructor. | |
int | n () const |
Get the logical array dimension. | |
std::string | indent () const |
Return indent string for this object (string of spaces). | |
virtual void | load (Serializable::IArchive &ar) |
Load from an archive. | |
virtual void | save (Serializable::OArchive &ar) |
Save to an archive. | |
std::string | label () const |
Return label string. | |
bool | isRequired () const |
Is this an optional parameter? | |
bool | isActive () const |
Is this parameter active? | |
![]() | |
Parameter (const char *label, bool isRequired=true) | |
Constructor. | |
virtual | ~Parameter () |
Destructor. | |
virtual void | readParam (std::istream &in) |
Read a label and (if the label matches) a parameter value. | |
std::string | label () const |
Return label string. | |
bool | isRequired () const |
Is this an optional parameter? | |
bool | isActive () const |
Is this parameter active? | |
![]() | |
virtual | ~ParamComponent () |
Destructor. | |
virtual void | resetParam () |
Nontrivial implementation provided by ParamComposite subclass. | |
void | setIndent (const ParamComponent &parent, bool next=true) |
Set indent level. | |
std::string | indent () const |
Return indent string for this object (string of spaces). | |
template<class Archive > | |
void | serialize (Archive &ar, const unsigned int version) |
Serialize this ParamComponent as a string. | |
![]() | |
virtual | ~Serializable () |
Destructor. | |
![]() | |
MpiFileIo () | |
Constructor. | |
MpiFileIo (const MpiFileIo &other) | |
Copy constructor. | |
bool | isIoProcessor () const |
Can this processor do file I/O ? | |
void | setIoCommunicator (MPI::Intracomm &communicator) |
Set the communicator. | |
void | clearCommunicator () |
Clear (nullify) the communicator. | |
bool | hasIoCommunicator () const |
Does this object have an associated MPI communicator? | |
MPI::Intracomm & | ioCommunicator () const |
Get the MPI communicator by reference. | |
Protected Member Functions | |
Type & | element (int i) |
Return a reference to one element of the array (non-const). | |
Type const & | element (int i) const |
Return a reference to one element of the array (const). | |
virtual void | readValue (std::istream &in) |
Read parameter value from an input stream. | |
virtual void | loadValue (Serializable::IArchive &ar) |
Load bare parameter value from an archive. | |
virtual void | saveValue (Serializable::OArchive &ar) |
Save parameter value to an archive. | |
virtual void | bcastValue () |
Broadcast parameter value within the ioCommunicator. | |
![]() | |
virtual void | readLabel (std::istream &in) |
Read parameter label from an input stream. | |
void | readEndBracket (std::istream &in) |
Read a closing bracket, if necessary. | |
bool | hasBrackets () const |
Are square brackets being used as delimiters? | |
![]() | |
![]() | |
ParamComponent () | |
Constructor. | |
ParamComponent (const ParamComponent &other) | |
Copy constructor. | |
Additional Inherited Members | |
![]() | |
typedef BinaryFileOArchive | OArchive |
Type of output archive used by save method. | |
typedef BinaryFileIArchive | IArchive |
Type of input archive used by load method. | |
![]() | |
template<class Type > | |
static void | saveOptional (Serializable::OArchive &ar, Type &value, bool isActive) |
Save an optional parameter value to an output archive. | |
template<class Type > | |
static void | saveOptionalCArray (Serializable::OArchive &ar, Type *ptr, int n, bool isActive) |
Save an optional C-array of n values to an output archive. | |
template<class Type > | |
static void | saveOptionalCArray2D (Serializable::OArchive &ar, Type *ptr, int m, int n, int np, bool isActive) |
Save an optional two-dimensional C array to an output archive. | |
![]() | |
static void | initStatic () |
Initialize static echo member to false. | |
static void | setEcho (bool echo=true) |
Enable or disable echoing for all subclasses of ParamComponent. | |
static bool | echo () |
Get echo parameter. | |
![]() | |
static const int | Width = 20 |
Width of output field for a scalar variable. | |
static const int | Precision = 12 |
Precision for io of floating point data field. | |
![]() | |
Label | label_ |
Label object that contains parameter label string. | |
![]() | |
Label | label_ |
Label object that contains parameter label string. | |
bool | isActive_ |
Is this parameter active (always true if isRequired). | |
A Parameter associated with a FSArray container.
Definition at line 26 of file FSArrayParam.h.
Util::FSArrayParam< Type, Capacity >::FSArrayParam | ( | const char * | label, |
FSArray< Type, Capacity > & | array, | ||
int | n, | ||
bool | isRequired = true ) |
Constructor.
label | label for array |
array | associated FSArray<Type, Capacity> container |
n | expected logical dimension (size) of array |
isRequired | Is this a required parameter (true) or optional ? |
Definition at line 106 of file FSArrayParam.h.
|
virtual |
Write parameter to stream.
out | output stream |
Reimplemented from Util::ArrayParam< Type >.
Definition at line 118 of file FSArrayParam.h.
References Util::Parameter::isActive(), UTIL_CHECK, and Util::ArrayParam< Type >::writeParam().
|
inlineprotectedvirtual |
Return a reference to one element of the array (non-const).
Implements Util::ArrayParam< Type >.
Definition at line 56 of file FSArrayParam.h.
|
inlineprotectedvirtual |
Return a reference to one element of the array (const).
Implements Util::ArrayParam< Type >.
Definition at line 62 of file FSArrayParam.h.
|
protectedvirtual |
Read parameter value from an input stream.
in | input stream from which to read |
Reimplemented from Util::ArrayParam< Type >.
Definition at line 131 of file FSArrayParam.h.
References Util::ArrayParam< Type >::readEndBracket(), and UTIL_CHECK.
|
protectedvirtual |
Load bare parameter value from an archive.
ar | input archive from which to load |
Reimplemented from Util::Parameter.
Definition at line 148 of file FSArrayParam.h.
References UTIL_CHECK.
|
protectedvirtual |
Save parameter value to an archive.
ar | output archive to which to save |
Reimplemented from Util::Parameter.
Definition at line 158 of file FSArrayParam.h.
References UTIL_CHECK.
|
protectedvirtual |
Broadcast parameter value within the ioCommunicator.
Reimplemented from Util::Parameter.
Definition at line 169 of file FSArrayParam.h.
References Util::bcast().