#include <processor.h>
Inheritance diagram for EMAN::ToZeroProcessor:
Public Member Functions | |
string | get_name () const |
Get the processor's name. | |
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 = "threshold.belowtozero" |
Protected Member Functions | |
void | process_pixel (float *x) const |
minval |
Definition at line 1468 of file processor.h.
|
Get the descrition of this specific processor. This function must be overwritten by a subclass.
Implements EMAN::Processor. Definition at line 1486 of file processor.h.
|
|
Get the processor's name. Each processor is identified by a unique name.
Implements EMAN::Processor. Definition at line 1471 of file processor.h. References NAME. 01472 { 01473 return NAME; 01474 }
|
|
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 1479 of file processor.h. References EMAN::EMObject::FLOAT, and EMAN::TypeDict::put(). 01480 { 01481 TypeDict d; 01482 d.put("minval", EMObject::FLOAT, "Everything below this value is set to zero"); 01483 return d; 01484 }
|
|
Definition at line 1475 of file processor.h. 01476 { 01477 return new ToZeroProcessor(); 01478 }
|
|
Implements EMAN::RealPixelProcessor. Definition at line 1494 of file processor.h. References EMAN::RealPixelProcessor::value.
|
|
Definition at line 1491 of file processor.h. Referenced by get_name(). |