|
| enum | Control { Run,
Pause,
Stop
} |
| |
| virtual | ~ParallelTask () |
| |
| bool | execute () |
| |
| virtual bool | executeParallel (bool parallel) |
| |
| void | setProgressMeter (ProgressMeter *) |
| | Must be called before execute() More...
|
| |
| int64_t | nrDone () const |
| | May be -1, i.e. class does not report nrdone. More...
|
| |
| int64_t | totalNr () const |
| |
| virtual | ~Task () |
| |
| virtual uiString | message () const |
| |
| virtual uiString | nrDoneText () const |
| |
| virtual uiRetVal | errorWithDetails () const |
| |
| virtual void | enableWorkControl (bool=true) |
| | Must be called before execute() More...
|
| |
| bool | workControlEnabled () const |
| |
| virtual void | controlWork (Control) |
| |
| virtual Control | getState () const |
| |
| | NamedCallBacker (const char *nm=0) |
| |
| | NamedCallBacker (const NamedCallBacker &) |
| |
| bool | operator== (const NamedCallBacker &oth) const |
| |
| bool | operator== (const NamedObject &oth) const |
| |
| virtual Notifier< NamedCallBacker > & | objectToBeDeleted () const |
| |
| | CallBacker () |
| |
| | CallBacker (const CallBacker &) |
| |
| virtual | ~CallBacker () |
| |
| bool | attachCB (const NotifierAccess &, const CallBack &, bool onlyifnew=false) const |
| |
| bool | attachCB (const NotifierAccess *notif, const CallBack &cb, bool onlyifnew=false) const |
| |
| void | detachCB (const NotifierAccess &, const CallBack &) const |
| |
| void | detachCB (const NotifierAccess *notif, const CallBack &cb) const |
| |
| bool | isNotifierAttached (const NotifierAccess *) const |
| | Only for debugging purposes, don't use. More...
|
| |
| virtual bool | isCapsule () const |
| |
| void | stopReceivingNotifications () const |
| |
| | NamedObject (const char *nm=0) |
| |
| | NamedObject (const NamedObject &oth) |
| |
| virtual | ~NamedObject () |
| |
| NamedObject & | operator= (const NamedObject &) |
| |
| bool | operator== (const NamedObject &oth) const |
| |
| virtual const OD::String & | name () const |
| |
| virtual BufferString | getName () const |
| |
| virtual void | setName (const char *nm) |
| |
| bool | getNameFromPar (const IOPar &) |
| |
| void | putNameInPar (IOPar &) const |
| |
| static uiString | sPosFinished () |
| |
| static uiString | sTrcFinished () |
| |
| static uiString | stdMessage () |
| |
| static uiString | stdNrDoneText () |
| |
| static void | createReceiverForCurrentThread () |
| |
| static void | removeReceiverForCurrentThread () |
| |
| virtual int | maxNrThreads () const |
| |
| virtual int | minThreadSize () const |
| |
| virtual bool | stopAllOnFailure () const |
| |
| | ParallelTask (const char *nm=0) |
| |
| | ParallelTask (const ParallelTask &) |
| |
| int64_t | calculateThreadSize (int64_t totalnr, int nrthreads, int thread) const |
| |
| void | addToNrDone (int64_t increment) |
| |
| void | quickAddToNrDone (int64_t loopidx) |
| |
| void | resetNrDone () |
| |
| | Task (const char *nm=0) |
| |
| virtual bool | shouldContinue () |
| |
| void | sendDelNotif () const |
| |
| void | detachAllNotifiers () const |
| | Call from the destructor of your inherited object. More...
|
| |
template<class fT, class ArrT>
class Array1DStacker< fT, ArrT >
Gently stacks ArrayND by summation along the secondary axis Currently implemented only 1D, and Array1D's need to return getData() non-null. With normalize_, will return the average instead of the sum.