#include <processor.h>
Inheritance diagram for EMAN::CutToZeroProcessor:
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_cut" |
Protected Member Functions | |
void | process_pixel (float *x) const |
minval | the value that will be set to zero - all values below will also be set to zero. Values above get minval subtracted from them |
Definition at line 1829 of file processor.h.
string EMAN::CutToZeroProcessor::get_desc | ( | ) | const [inline, virtual] |
Get the descrition of this specific processor.
This function must be overwritten by a subclass.
Implements EMAN::Processor.
Definition at line 1847 of file processor.h.
string EMAN::CutToZeroProcessor::get_name | ( | ) | const [inline, virtual] |
Get the processor's name.
Each processor is identified by a unique name.
Implements EMAN::Processor.
Definition at line 1832 of file processor.h.
References NAME.
01833 { 01834 return NAME; 01835 }
TypeDict EMAN::CutToZeroProcessor::get_param_types | ( | ) | const [inline, virtual] |
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 1840 of file processor.h.
References EMAN::EMObject::FLOAT, and EMAN::TypeDict::put().
01841 { 01842 TypeDict d; 01843 d.put("minval", EMObject::FLOAT, "the value that will be set to zero - all values below will also be set to zero. Values above get minval subtracted from them" ); 01844 return d; 01845 }
static Processor* EMAN::CutToZeroProcessor::NEW | ( | ) | [inline, static] |
void EMAN::CutToZeroProcessor::process_pixel | ( | float * | x | ) | const [inline, protected, virtual] |
Implements EMAN::RealPixelProcessor.
Definition at line 1855 of file processor.h.
References EMAN::RealPixelProcessor::value.
const string CutToZeroProcessor::NAME = "threshold.belowtozero_cut" [static] |