|
| enum | Control { Run,
Pause,
Stop
} |
| |
| | Executor (const char *nm) |
| |
| virtual | ~Executor () |
| |
| virtual int | doStep () |
| |
| bool | go (od_ostream *s=0, bool isfirst=true, bool islast=true, int delaybtwnstepsinms=0) |
| |
| bool | go (od_ostream &s, bool isfirst=true, bool islast=true, int delaybtwnstepsinms=0) |
| |
| virtual bool | execute () |
| |
| | SequentialTask (const char *nm=0) |
| |
| virtual | ~SequentialTask () |
| |
| void | setProgressMeter (ProgressMeter *) |
| | Must be called before execute() More...
|
| |
| ProgressMeter * | progressMeter () |
| |
| const ProgressMeter * | progressMeter () const |
| |
| bool | execute () |
| |
| virtual | ~Task () |
| |
| 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 int | ErrorOccurred () |
| |
| static int | Finished () |
| |
| static int | MoreToDo () |
| |
| static int | WarningAvailable () |
| |
| static uiString | stdMessage () |
| |
| static uiString | stdNrDoneText () |
| |
| static void | createReceiverForCurrentThread () |
| |
| static void | removeReceiverForCurrentThread () |
| |
| Notifier< Executor > | prestep |
| |
| Notifier< Executor > | poststep |
| | Only when MoreToDo will be returned. More...
|
| |
| virtual bool | usePar (const IOPar &) |
| |
| virtual bool | setIO (const IOPar &) |
| |
| virtual bool | checkParameters () |
| |
| bool | read () |
| |
| bool | readData () |
| |
| bool | readInputCube (const int szfastx, const int szfasty, const int szfastz) |
| |
| bool | butterflyOperator () |
| |
| bool | scaleArray () |
| |
| void | smartScale () |
| |
| bool | writeOutput () |
| |
| virtual bool | preProcessArray () |
| |
| virtual bool | unProcessArray () |
| |
| virtual bool | goImpl (od_ostream *, bool, bool, int) |
| |
| | Task (const char *nm=0) |
| |
| virtual bool | shouldContinue () |
| |
| void | sendDelNotif () const |
| |
| void | detachAllNotifiers () const |
| | Call from the destructor of your inherited object. More...
|
| |
| IOObj * | inioobj_ |
| |
| IOObj * | outioobj_ |
| |
| TrcKeyZSampling | tkzs_ |
| |
| uiString | errmsg_ |
| |
| SeisTrcBuf & | seisbuf_ |
| |
| TrcKeySampling | seisbuftks_ |
| |
| SeisTrcWriter * | wrr_ |
| |
| Seis::Provider * | prov_ |
| |
| SeisTrcBuf | tmpseisbuf_ |
| |
| bool | read_ |
| |
| int | nrdone_ |
| |
| int | totnr_ |
| |
| Array3D< float_complex > * | trcarr_ |
| |
| Array3D< float_complex > * | butterfly_ |
| |
| Array3D< float_complex > * | geom_ |
| |
| Fourier::CC * | fft_ |
| |
| bool | smartscaling_ |
| |
| float | rmsmax_ |
| |
| float | pow_ |
| |
| TaskRunner * | taskrun_ |
| |
| od_ostream * | strm_ |
| |
| float | taperangle_ |
| |
| ProgressMeter * | progressmeter_ |
| |
| int | lastupdate_ |
| |
| Control | control_ |
| |
| Threads::ConditionVar * | workcontrolcondvar_ |
| |
| Notifier< NamedCallBacker > | delnotif_ |
| |
| Threads::Atomic< bool > | delalreadytriggered_ |
| |
| BufferString | name_ |
| |