PSCF v1.2
|
Factory for subclasses of Simulator. More...
#include <SimulatorFactory.h>
Public Member Functions | |
SimulatorFactory (System< D > &system) | |
Constructor. | |
Simulator< D > * | factory (const std::string &className) const |
Method to create any Simulator supplied with PSCF. | |
![]() | |
Factory () | |
Constructor. | |
virtual | ~Factory () |
Destructor. | |
void | addSubfactory (Factory< Simulator< D > > &subfactory) |
Add a new subfactory to the list. | |
Simulator< D > * | readObject (std::istream &in, ParamComposite &parent, std::string &className, bool &isEnd, bool isRequired=true) |
Read a class name, instantiate an object, and read its parameters. | |
Simulator< D > * | readObjectOptional (std::istream &in, ParamComposite &parent, std::string &className, bool &isEnd) |
Read an optional class name, instantiate an object, and read its parameters. | |
Simulator< D > * | loadObject (Serializable::IArchive &ar, ParamComposite &parent, std::string &className) |
Load a class name, instantiate an object, and load the object. | |
Additional Inherited Members | |
![]() | |
Simulator< D > * | trySubfactories (const std::string &className) const |
Search through subfactories for match. | |
void | setIoCommunicator (MPI::Intracomm &communicator) |
Set associated Mpi communicator. | |
bool | hasIoCommunicator () const |
Does this factory have a param communicator? | |
Factory for subclasses of Simulator.
Definition at line 39 of file rpc/System.h.
Pscf::Rpc::SimulatorFactory< D >::SimulatorFactory | ( | System< D > & | system | ) |
Constructor.
system | parent System<D> object |
Definition at line 20 of file rpc/fts/simulator/SimulatorFactory.tpp.
|
virtual |
Method to create any Simulator supplied with PSCF.
className | name of the Simulator subclass |
Implements Util::Factory< Simulator< D > >.
Definition at line 28 of file rpc/fts/simulator/SimulatorFactory.tpp.