|
MueLu Version of the Day
|
Class that provides default factories within Needs class. More...
#include <MueLu_FactoryManagerBase.hpp>
Public Member Functions | |
| FactoryManagerBase () | |
| virtual | ~FactoryManagerBase () |
| Destructor. | |
| virtual const RCP< const FactoryBase > | GetFactory (const std::string &varName) const =0 |
| Get. | |
| virtual bool | hasFactory (const std::string &varName) const =0 |
| Check. | |
| virtual void | Clean () const |
| bool | IgnoreUserData () const |
| get IgnoreUserData flag | |
| void | SetIgnoreUserData (bool bIgnoreUserData=false) |
| set IgnoreUserData flag | |
Public Member Functions inherited from MueLu::BaseClass | |
| virtual | ~BaseClass () |
| Destructor. | |
Public Member Functions inherited from MueLu::VerboseObject | |
| VerboseObject () | |
| virtual | ~VerboseObject () |
| Destructor. | |
| VerbLevel | GetVerbLevel () const |
| Get the verbosity level. | |
| void | SetVerbLevel (const VerbLevel verbLevel) |
| Set the verbosity level of this object. | |
| int | GetProcRankVerbose () const |
| Get proc rank used for printing. Do not use this information for any other purpose. | |
| int | SetProcRankVerbose (int procRank) const |
| Set proc rank used for printing. | |
| bool | IsPrint (MsgType type, int thisProcRankOnly=-1) const |
| Find out whether we need to print out information for a specific message type. | |
| Teuchos::FancyOStream & | GetOStream (MsgType type, int thisProcRankOnly=0) const |
| Get an output stream for outputting the input message type. | |
| Teuchos::FancyOStream & | GetBlackHole () const |
Public Member Functions inherited from MueLu::Describable | |
| virtual | ~Describable () |
| Destructor. | |
| virtual void | describe (Teuchos::FancyOStream &out_arg, const VerbLevel verbLevel=Default) const |
| virtual std::string | description () const |
| Return a simple one-line description of this object. | |
| void | describe (Teuchos::FancyOStream &out, const Teuchos::EVerbosityLevel verbLevel=Teuchos::Describable::verbLevel_default) const |
| Print the object with some verbosity level to an FancyOStream object. | |
| virtual std::string | ShortClassName () const |
| Return the class name of the object, without template parameters and without namespace. | |
Private Attributes | |
| bool | bIgnoreUserData_ |
Additional Inherited Members | |
Static Public Member Functions inherited from MueLu::VerboseObject | |
| static void | SetDefaultVerbLevel (const VerbLevel defaultVerbLevel) |
| Set the default (global) verbosity level. | |
| static VerbLevel | GetDefaultVerbLevel () |
| Get the default (global) verbosity level. | |
| static void | SetMueLuOStream (const Teuchos::RCP< Teuchos::FancyOStream > &mueluOStream) |
| static void | SetMueLuOFileStream (const std::string &filename) |
| static Teuchos::RCP< Teuchos::FancyOStream > | GetMueLuOStream () |
Class that provides default factories within Needs class.
Definition at line 27 of file MueLu_FactoryManagerBase.hpp.
|
inline |
Definition at line 30 of file MueLu_FactoryManagerBase.hpp.
|
inlinevirtual |
Destructor.
Definition at line 34 of file MueLu_FactoryManagerBase.hpp.
|
pure virtual |
Get.
Implemented in MueLu::FactoryManager< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
|
pure virtual |
Check.
Implemented in MueLu::FactoryManager< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
|
inlinevirtual |
Reimplemented in MueLu::FactoryManager< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 51 of file MueLu_FactoryManagerBase.hpp.
|
inline |
get IgnoreUserData flag
Definition at line 58 of file MueLu_FactoryManagerBase.hpp.
|
inline |
set IgnoreUserData flag
Definition at line 61 of file MueLu_FactoryManagerBase.hpp.
|
private |
boolean flag that controls behaviour of Level::GetFactory if bIgnoreUserData == true, the Level::GetFactory function always asks the Factory manager for a valid factory given a variable name if bIgnoreUserData == false, the Level::GetFactory prefers user-provided data for a variable name if available. Otherwise the factory manager is asked for a valid factory default: bIgnoreUserData = false;
Definition at line 68 of file MueLu_FactoryManagerBase.hpp.