#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 2068 of file processor.h.
|
Definition at line 2071 of file processor.h. 02071 :to(0) 02072 { 02073 }
|
|
Get the descrition of this specific processor. This function must be overwritten by a subclass.
Implements EMAN::Processor. Definition at line 2098 of file processor.h. 02099 { 02100 return "f(x) = f(x) if f(x) is finite | to if f(x) is not finite"; 02101 }
|
|
Get the processor's name. Each processor is identified by a unique name.
Implements EMAN::Processor. Definition at line 2075 of file processor.h. 02076 {
02077 return NAME;
02078 }
|
|
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 2091 of file processor.h. References EMAN::TypeDict::put(). 02092 { 02093 TypeDict d; 02094 d.put("to", EMObject::FLOAT, "Pixels which are not finite will be set to this value"); 02095 return d; 02096 }
|
|
Definition at line 2080 of file processor.h. 02081 { 02082 return new FiniteProcessor(); 02083 }
|
|
Implements EMAN::RealPixelProcessor. Definition at line 487 of file processor.cpp. References EMAN::Util::goodf(), and x. 00488 { 00489 if ( !Util::goodf(x) ) { 00490 *x = to; 00491 } 00492 }
|
|
Set the processor parameters using a key/value dictionary.
Reimplemented from EMAN::RealPixelProcessor. Definition at line 2085 of file processor.h. References EMAN::Dict::has_key().
|
|
Definition at line 106 of file processor.cpp. |
|
Definition at line 2111 of file processor.h. |