|
| virtual Action | Init (Diana::QEventAssembler &ev) |
| |
| virtual Action | Do (Diana::QEventAssembler &ev) |
| |
| virtual Action | Done () |
| | Done method is called after event loop. More...
|
| |
| virtual Action | Init (Diana::QEventAssembler &ev) |
| |
| virtual Action | Do (Diana::QEventAssembler &ev) |
| |
| virtual Action | Done () |
| | Done method is called after event loop. More...
|
| |
| | MTimeSort (QSequence *s) |
| |
| virtual | ~MTimeSort () |
| |
| virtual void | Init () |
| |
| virtual QEvent * | Do (QEvent *ev) |
| |
| virtual void | Done () |
| | Done method is called after event loop. More...
|
| |
| | QModule () |
| | constuctor More...
|
| |
| virtual | ~QModule () |
| | destructor More...
|
| |
| virtual void | Init (QEvent &ev)=0 |
| | Init method is called before event loop. More...
|
| |
| virtual void | Do (QEvent &ev) |
| | Do method is called on each event, getting the event as argument. More...
|
| |
| virtual void | Do (QEvent &ev, const QEventList &neighbours) |
| | Do method is called on each event, getting the event and its neighbours as argument. More...
|
| |
| | QBaseModule (Type type) |
| | constructor More...
|
| |
| virtual | ~QBaseModule () |
| | constructor More...
|
| |
| double | GetDouble (const std::string &parname, double defVal, bool warnCfg=true) const |
| | Get a double parameter from config file. More...
|
| |
| std::vector< double > | GetVectorDouble (const std::string &parname, std::vector< double > defVal, bool warnCfg=true) const |
| | Get a std::vector<double> parameter from config file with syntax "{x,y,z}". More...
|
| |
| int | GetInt (const std::string &parname, int defVal, bool warnCfg=true) const |
| | Get an int parameter from config file ( see GetDouble() ) More...
|
| |
| std::vector< int > | GetVectorInt (const std::string &parname, std::vector< int > defVal, bool warnCfg=true) const |
| | Get an vector<int> parameter from config file ( see GetVectorDouble() ) More...
|
| |
| bool | GetBool (const std::string &parname, bool defVal, bool warnCfg=true) const |
| | Get a bool parameter from config file ( see GetDouble() ) More...
|
| |
| std::vector< bool > | GetVectorBool (const std::string &parname, std::vector< bool > defVal, bool warnCfg=true) const |
| | Get a vector<bool> parameter from config file ( see GetVectorDouble() ) More...
|
| |
| const std::string & | GetString (const std::string &parname, const std::string &defVal, bool warnCfg=true) const |
| | Get a string parameter from config file ( see GetDouble() ) More...
|
| |
| std::vector< std::string > | GetVectorString (const std::string &parname, std::vector< std::string > defVal, bool warnCfg=true) const |
| | Get a vector<string> parameter from config file ( see GetVectorDouble() ) More...
|
| |
| void | Debug (const char *descr,...) const |
| | Send a debug message (used to debug the module) with printf syntax. More...
|
| |
| void | Info (const char *descr,...) const |
| | Send an info message (information) with printf syntax. More...
|
| |
| void | Warn (const char *descr,...) const |
| | Send a warning message (an error that the framework can recover) with printf syntax. More...
|
| |
| void | Error (const char *descr,...) const |
| | Send an error message (an error that the framework cannot recover) with printf syntax. More...
|
| |
| void | Panic (const char *descr,...) const |
| | Send a panic message (stops the framework) with printf syntax. More...
|
| |
| const QGlobalDataManager & | GlobalData () const |
| | interface for saving and loading global QObjects More...
|
| |
| bool | GetRunAgain () const |
| | Check if the sequence will be reiterated. More...
|
| |
| void | SetRunAgain (bool b) |
| | Set that the sequence will be reiterated. More...
|
| |
| unsigned int | GetIteration () const |
| | Get Current sequence iteration. More...
|
| |
| unsigned int | GetOccurrence () const |
| | get the number of times the same module is loaded inside a QSequence More...
|
| |
| bool | isEnabled () const |
| | check if module is enabled More...
|
| |
| std::string | GetFullPath () const |
| | Get Full Path of module "GetName() + "." + GetOccurrence". More...
|
| |
| const std::string & | GetName () const |
| | Get Module name. More...
|
| |
| const std::string & | GetLabel () const |
| | Get Module name + the optional ExtraLabel ("name_extralabel") More...
|
| |
| MsgLevel | GetVerbosity () |
| | get verbosity level set from config file More...
|
| |
| const QSequence & | GetSequence () const |
| | get reference to this sequence More...
|
| |
| void | Update (QSequence *s, unsigned int occurrence) |
| | set the occurrence in the same sequence. MV FIXME: should not be public More...
|
| |
| bool | NeedNeighbours () |
| | check wheter this module needs neighbours (available after the first event is processed) More...
|
| |
| void | BeginBase (QEventAssembler &ev) |
| | Begin Base method is called before event loop. More...
|
| |
| bool | ProcessBase (QEventAssembler &ev, QEventList &evl, const bool exec, QEventList &ovl) |
| | ProcessBase method is called for each event, getting the event and as argument. More...
|
| |
| void | EndBase () |
| | EndBase method is called after event loop. More...
|
| |
| const std::vector< QEventLabel > & | GetRequiredLabels () const |
| | Get labels of objects required by this module. More...
|
| |
Module for sorting events by time.
- Author
- Laura Kogler
This module generates a list of events sorted by time and saves it to an ascii file
- Author
- Laura Kogler
This module generates a list of events sorted by time and saves it to an ascii file
Definition at line 42 of file MTimeSort.hh.