#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 | |
static Processor * | NEW () |
Static Public Attributes | |
static 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 2105 of file processor.h.
|
Definition at line 2108 of file processor.h. Referenced by NEW(). 02108 :to(0) 02109 { 02110 }
|
|
Get the descrition of this specific processor. This function must be overwritten by a subclass.
Implements EMAN::Processor. Definition at line 2135 of file processor.h.
|
|
Get the processor's name. Each processor is identified by a unique name.
Implements EMAN::Processor. Definition at line 2112 of file processor.h. References NAME. 02113 { 02114 return NAME; 02115 }
|
|
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 2128 of file processor.h. References EMAN::EMObject::FLOAT, and EMAN::TypeDict::put(). 02129 { 02130 TypeDict d; 02131 d.put("to", EMObject::FLOAT, "Pixels which are not finite will be set to this value"); 02132 return d; 02133 }
|
|
Definition at line 2117 of file processor.h. References FiniteProcessor(). 02118 { 02119 return new FiniteProcessor(); 02120 }
|
|
Implements EMAN::RealPixelProcessor. Definition at line 482 of file processor.cpp. References EMAN::Util::goodf(), and to. 00483 { 00484 if ( !Util::goodf(x) ) { 00485 *x = to; 00486 } 00487 }
|
|
Set the processor parameters using a key/value dictionary.
Reimplemented from EMAN::RealPixelProcessor. Definition at line 2122 of file processor.h. References EMAN::Dict::has_key(), EMAN::Processor::params, and to.
|
|
Definition at line 2140 of file processor.h. Referenced by get_name(). |
|
Definition at line 2148 of file processor.h. Referenced by process_pixel(), and set_params(). |