#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 1188 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 1208 of file processor.h. 01209 { 01210 return "f(x) = floor(x)"; 01211 }
|
|
Get the processor's name. Each processor is identified by a unique name.
Implements EMAN::Processor. Definition at line 1191 of file processor.h. 01192 {
01193 return NAME;
01194 }
|
|
Definition at line 1195 of file processor.h. 01196 { 01197 return new FloorValueProcessor(); 01198 }
|
|
Implements EMAN::RealPixelProcessor. Definition at line 1203 of file processor.h. References x. 01204 { 01205 *x = floor(*x); 01206 }
|
|
Definition at line 75 of file processor.cpp. |