OpendTect  6.3
Public Member Functions | Protected Member Functions | Protected Attributes | Private Member Functions | List of all members
Array2DFilterer< T > Class Template Reference

Filters an Array2D. More...

Inheritance diagram for Array2DFilterer< T >:
[legend]

Public Member Functions

 Array2DFilterer (Array2D< T > &, const Array2DFilterPars &)
 
 Array2DFilterer (const Array2D< T > &, Array2D< T > &, const RowCol &origin, const Array2DFilterPars &)
 
 ~Array2DFilterer ()
 
void setScope (const Interval< int > &rowrg, const Interval< int > &colrg)
 
Array2D< T > & output ()
 
const Array2D< T > & output () const
 
const Array2DFilterParspars () const
 
const Stats::RunCalc< float > & calc () const
 
int nextStep ()
 
uiString message () const
 
od_int64 nrDone () const
 
uiString nrDoneText () const
 
od_int64 totalNr () const
 
- Public Member Functions inherited from Executor
 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 ()
 
- Public Member Functions inherited from SequentialTask
 SequentialTask (const char *nm=0)
 
virtual ~SequentialTask ()
 
void setProgressMeter (ProgressMeter *)
 Must be called before execute() More...
 
ProgressMeterprogressMeter ()
 
const ProgressMeterprogressMeter () const
 
bool execute ()
 
- Public Member Functions inherited from Task
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
 
- Public Member Functions inherited from NamedCallBacker
 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
 
- Public Member Functions inherited from CallBacker
 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
 
- Public Member Functions inherited from NamedObject
 NamedObject (const char *nm=0)
 
 NamedObject (const NamedObject &oth)
 
virtual ~NamedObject ()
 
NamedObjectoperator= (const NamedObject &)
 
bool operator== (const NamedObject &oth) const
 
virtual const OD::Stringname () const
 
virtual BufferString getName () const
 
virtual void setName (const char *nm)
 
bool getNameFromPar (const IOPar &)
 
void putNameInPar (IOPar &) const
 

Protected Member Functions

void filterRow (int)
 
void doPoint (int, int)
 
- Protected Member Functions inherited from Executor
virtual bool goImpl (od_ostream *, bool, bool, int)
 
- Protected Member Functions inherited from Task
 Task (const char *nm=0)
 
virtual bool shouldContinue ()
 
- Protected Member Functions inherited from NamedCallBacker
void sendDelNotif () const
 
- Protected Member Functions inherited from CallBacker
void detachAllNotifiers () const
 Call from the destructor of your inherited object. More...
 

Protected Attributes

Array2D< T > & output_
 
Array2DFilterPars pars_
 
Stats::RunCalc< float > * calc_
 
Array2DImpl< T > input_
 
RowCol origin_
 
Interval< int > outputrowrg_
 
Interval< int > outputcolrg_
 
const int inputrowsize_
 
const int inputcolsize_
 
const int nrcols_
 
bool linefilt_
 
int nrrowsdone_
 
- Protected Attributes inherited from SequentialTask
ProgressMeterprogressmeter_
 
int lastupdate_
 
- Protected Attributes inherited from Task
Control control_
 
Threads::ConditionVarworkcontrolcondvar_
 
- Protected Attributes inherited from NamedCallBacker
Notifier< NamedCallBackerdelnotif_
 
Threads::Atomic< bool > delalreadytriggered_
 
- Protected Attributes inherited from NamedObject
BufferString name_
 

Private Member Functions

 mODTextTranslationClass (Array2DFilterer)
 

Additional Inherited Members

- Public Types inherited from Task
enum  Control { Run, Pause, Stop }
 
- Static Public Member Functions inherited from SequentialTask
static int ErrorOccurred ()
 
static int Finished ()
 
static int MoreToDo ()
 
static int WarningAvailable ()
 
- Static Public Member Functions inherited from Task
static uiString stdMessage ()
 
static uiString stdNrDoneText ()
 
- Static Public Member Functions inherited from CallBacker
static void createReceiverForCurrentThread ()
 
static void removeReceiverForCurrentThread ()
 
- Public Attributes inherited from Executor
Notifier< Executorprestep
 
Notifier< Executorpoststep
 Only when MoreToDo will be returned. More...
 

Detailed Description

template<class T>
class Array2DFilterer< T >

Filters an Array2D.

Note that you cannot change the filter pars after construction.

Constructor & Destructor Documentation

template<class T >
Array2DFilterer< T >::Array2DFilterer ( Array2D< T > &  a,
const Array2DFilterPars p 
)
inline
template<class T >
Array2DFilterer< T >::Array2DFilterer ( const Array2D< T > &  input,
Array2D< T > &  a,
const RowCol origin,
const Array2DFilterPars p 
)
inline
template<class T >
Array2DFilterer< T >::~Array2DFilterer ( )
inline

Member Function Documentation

template<class T >
const Stats::RunCalc<float>& Array2DFilterer< T >::calc ( ) const
inline
template<class T >
void Array2DFilterer< T >::doPoint ( int  row,
int  col 
)
inlineprotected
template<class T >
void Array2DFilterer< T >::filterRow ( int  row)
inlineprotected
template<class T >
uiString Array2DFilterer< T >::message ( ) const
inlinevirtual

Implements Executor.

template<class T >
Array2DFilterer< T >::mODTextTranslationClass ( Array2DFilterer< T >  )
private
template<class T >
int Array2DFilterer< T >::nextStep ( )
inlinevirtual
Return values
MoreToDo()Not finished. Call me again.
Finished()Nothing more to do.
ErrorOccurred()Something went wrong.
Note
if function returns a value greater than cMoreToDo(),it should be interpreted as cMoreToDo().

Implements SequentialTask.

template<class T >
od_int64 Array2DFilterer< T >::nrDone ( ) const
inlinevirtual
Note
only used for displaying progress.

Implements Executor.

template<class T >
uiString Array2DFilterer< T >::nrDoneText ( ) const
inlinevirtual

Implements Executor.

template<class T >
Array2D<T>& Array2DFilterer< T >::output ( )
inline
template<class T >
const Array2D<T>& Array2DFilterer< T >::output ( ) const
inline
template<class T >
const Array2DFilterPars& Array2DFilterer< T >::pars ( ) const
inline
template<class T >
void Array2DFilterer< T >::setScope ( const Interval< int > &  rowrg,
const Interval< int > &  colrg 
)
inline
template<class T >
od_int64 Array2DFilterer< T >::totalNr ( ) const
inlinevirtual

Reimplemented from Task.

Member Data Documentation

template<class T >
Stats::RunCalc<float>* Array2DFilterer< T >::calc_
protected
template<class T >
Array2DImpl<T> Array2DFilterer< T >::input_
protected
template<class T >
const int Array2DFilterer< T >::inputcolsize_
protected
template<class T >
const int Array2DFilterer< T >::inputrowsize_
protected
template<class T >
bool Array2DFilterer< T >::linefilt_
protected
template<class T >
const int Array2DFilterer< T >::nrcols_
protected
template<class T >
int Array2DFilterer< T >::nrrowsdone_
protected
template<class T >
RowCol Array2DFilterer< T >::origin_
protected
template<class T >
Array2D<T>& Array2DFilterer< T >::output_
protected
template<class T >
Interval<int> Array2DFilterer< T >::outputcolrg_
protected
template<class T >
Interval<int> Array2DFilterer< T >::outputrowrg_
protected
template<class T >
Array2DFilterPars Array2DFilterer< T >::pars_
protected

Generated at for the OpendTect seismic interpretation project. Copyright (C): dGB Beheer B. V. 2017