#include <processor.h>
Inheritance diagram for EMAN::BooleanProcessor:
Public Member Functions | |
string | get_name () const |
Get the processor's name. | |
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.notzero" |
Protected Member Functions | |
void | process_pixel (float *x) const |
Definition at line 1262 of file processor.h.
string EMAN::BooleanProcessor::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 1274 of file processor.h.
string EMAN::BooleanProcessor::get_name | ( | ) | const [inline, virtual] |
Get the processor's name.
Each processor is identified by a unique name.
Implements EMAN::Processor.
Definition at line 1265 of file processor.h.
References NAME.
01266 { 01267 return NAME; 01268 }
static Processor* EMAN::BooleanProcessor::NEW | ( | ) | [inline, static] |
void EMAN::BooleanProcessor::process_pixel | ( | float * | x | ) | const [inline, protected, virtual] |
const string BooleanProcessor::NAME = "threshold.notzero" [static] |