#include <processor.h>
Inheritance diagram for EMAN::FloorValueProcessor:
Public Member Functions | |
string | get_name () const |
Get the processor's name. | |
Static Public Member Functions | |
Processor * | NEW () |
Static Public Attributes | |
const string | NAME = "math.floor" |
Protected Member Functions | |
void | process_pixel (float *x) const |
string | get_desc () const |
Get the descrition of this specific processor. |
Definition at line 1038 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 1058 of file processor.h. 01059 { 01060 return "f(x) = floor(x)"; 01061 }
|
|
Get the processor's name. Each processor is identified by a unique name.
Implements EMAN::Processor. Definition at line 1041 of file processor.h. 01042 {
01043 return NAME;
01044 }
|
|
Definition at line 1045 of file processor.h. 01046 { 01047 return new FloorValueProcessor(); 01048 }
|
|
Implements EMAN::RealPixelProcessor. Definition at line 1053 of file processor.h. References x. 01054 { 01055 *x = floor(*x); 01056 }
|
|
Definition at line 74 of file processor.cpp. |