#include <processor.h>
Inheritance diagram for EMAN::FiniteProcessor:
Public Member Functions | |
FiniteProcessor () | |
string | get_name () const |
Get the processor's name. | |
void | set_params (const Dict &new_params) |
Set the processor parameters using a key/value dictionary. | |
TypeDict | get_param_types () const |
Get processor parameter information in a dictionary. | |
string | get_desc () const |
Get the descrition of this specific processor. | |
Static Public Member Functions | |
Processor * | NEW () |
Static Public Attributes | |
const string | NAME = "math.finite" |
Protected Member Functions | |
void | process_pixel (float *x) const |
Private Attributes | |
float | to |
to | Pixels which are not finite will be set to this value |
Definition at line 1974 of file processor.h.
|
Definition at line 1977 of file processor.h. 01977 :to(0) 01978 { 01979 }
|
|
Get the descrition of this specific processor. This function must be overwritten by a subclass.
Implements EMAN::Processor. Definition at line 2004 of file processor.h. 02005 { 02006 return "f(x) = f(x) if f(x) is finite | to if f(x) is not finite"; 02007 }
|
|
Get the processor's name. Each processor is identified by a unique name.
Implements EMAN::Processor. Definition at line 1981 of file processor.h. 01982 {
01983 return NAME;
01984 }
|
|
Get processor parameter information in a dictionary. Each parameter has one record in the dictionary. Each record contains its name, data-type, and description.
Reimplemented from EMAN::Processor. Definition at line 1997 of file processor.h. References EMAN::TypeDict::put(). 01998 { 01999 TypeDict d; 02000 d.put("to", EMObject::FLOAT, "Pixels which are not finite will be set to this value"); 02001 return d; 02002 }
|
|
Definition at line 1986 of file processor.h. 01987 { 01988 return new FiniteProcessor(); 01989 }
|
|
Implements EMAN::RealPixelProcessor. Definition at line 475 of file processor.cpp. References EMAN::Util::goodf(), and x. 00476 { 00477 if ( !Util::goodf(x) ) { 00478 *x = to; 00479 } 00480 }
|
|
Set the processor parameters using a key/value dictionary.
Reimplemented from EMAN::RealPixelProcessor. Definition at line 1991 of file processor.h. References EMAN::Dict::has_key().
|
|
Definition at line 98 of file processor.cpp. |
|
Definition at line 2017 of file processor.h. |