RBGen
Version of the Day
|
Abstract base class for encapsulating dataset preprocessing. More...
#include <RBGen_Preprocessor.hpp>
Public Member Functions | |
Constructor/Destructor. | |
Preprocessor () | |
Default constructor. More... | |
virtual | ~Preprocessor () |
Destructor. More... | |
Initialization/Reset Methods | |
virtual void | Initialize (const Teuchos::RCP< Teuchos::ParameterList > ¶ms, const Teuchos::RCP< FileIOHandler< DataSetType > > &fileio)=0 |
Initialize preprocessor. More... | |
virtual void | Reset ()=0 |
Reset preprocessor. More... | |
Preprocess Methods | |
virtual void | Preprocess (Teuchos::RCP< DataSetType > &ss)=0 |
Preprocess the snapshot set passed in. More... | |
Status Methods | |
virtual bool | isInitialized () const =0 |
Return initialized status of the preprocessor. More... | |
Abstract base class for encapsulating dataset preprocessing.
Definition at line 14 of file RBGen_Preprocessor.hpp.
|
inline |
Default constructor.
Definition at line 21 of file RBGen_Preprocessor.hpp.
|
inlinevirtual |
Destructor.
Definition at line 24 of file RBGen_Preprocessor.hpp.
|
pure virtual |
Initialize preprocessor.
Implemented in RBGen::MSPreprocessor, and RBGen::NoPreprocessor< DataSetType >.
|
pure virtual |
Reset preprocessor.
Implemented in RBGen::MSPreprocessor, and RBGen::NoPreprocessor< DataSetType >.
|
pure virtual |
Preprocess the snapshot set passed in.
Implemented in RBGen::MSPreprocessor, and RBGen::NoPreprocessor< DataSetType >.
|
pure virtual |
Return initialized status of the preprocessor.
Implemented in RBGen::MSPreprocessor, and RBGen::NoPreprocessor< DataSetType >.