PSCF v1.2
|
Default Factory for subclasses of Sweep. More...
#include <SweepFactory.h>
Public Member Functions | |
SweepFactory (System< D > &system) | |
Constructor. | |
Sweep< D > * | factory (std::string const &className) const |
Method to create any Sweep subclass. | |
![]() | |
Factory () | |
Constructor. | |
virtual | ~Factory () |
Destructor. | |
void | addSubfactory (Factory< Sweep< D > > &subfactory) |
Add a new subfactory to the list. | |
Sweep< 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. | |
Sweep< D > * | readObjectOptional (std::istream &in, ParamComposite &parent, std::string &className, bool &isEnd) |
Read an optional class name, instantiate an object, and read its parameters. | |
Sweep< D > * | loadObject (Serializable::IArchive &ar, ParamComposite &parent, std::string &className) |
Load a class name, instantiate an object, and load the object. | |
Additional Inherited Members | |
![]() | |
Sweep< 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? | |
Default Factory for subclasses of Sweep.
Definition at line 40 of file rpg/System.h.
Pscf::Rpg::SweepFactory< D >::SweepFactory | ( | System< D > & | system | ) |
Constructor.
system | parent System object |
Definition at line 21 of file rpg/scft/sweep/SweepFactory.tpp.
|
virtual |
Method to create any Sweep subclass.
className | name of the Sweep subclass |
Implements Util::Factory< Sweep< D > >.
Definition at line 29 of file rpg/scft/sweep/SweepFactory.tpp.