Definition at line 31 of file DMEM.cc.
|
| DMEM (PoolPtr pool, const ParameterSet ¶meters) |
|
virtual void | beginIntegration () override |
| Called once at the beginning of the integration.
|
|
virtual Status | work () override |
| Main function. More...
|
|
| Module (PoolPtr pool, const std::string &name) |
| Constructor. More...
|
|
virtual void | configure () |
| Called once at the beginning of the job.
|
|
virtual void | beginPoint () |
| Called once when a new PS point is started. More...
|
|
virtual void | beginLoop () |
| Called once at the beginning of a loop. More...
|
|
virtual void | endLoop () |
| Called once at the end of a loop. More...
|
|
virtual void | endPoint () |
| Called once when a PS point is finished. More...
|
|
virtual void | endIntegration () |
| Called once at the end of the integration.
|
|
virtual void | finish () |
| Called once at the end of the job.
|
|
virtual std::string | name () const final |
|
|
enum | Status : std::int8_t { OK,
NEXT,
ABORT
} |
|
static std::string | statusToString (const Status &status) |
|
static bool | is_virtual_module (const std::string &name) |
| Test if a given name correspond to a virtual module. More...
|
|
template<typename T , typename... Args> |
std::shared_ptr< T > | produce (const std::string &name, Args... args) |
| Add a new output to the module. More...
|
|
template<typename T > |
Value< T > | get (const std::string &module, const std::string &name) |
|
template<typename T > |
Value< T > | get (const InputTag &tag) |
|
PoolPtr | m_pool |
|
◆ work()
virtual Status DMEM::work |
( |
| ) |
|
|
inlineoverridevirtual |
Main function.
This method is called for each integration step. The module's logic and work happen here.
You'll usually want to override this function if you want your module to perform some task.
Reimplemented from Module.
Definition at line 54 of file DMEM.cc.
The documentation for this class was generated from the following file: