#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 1233 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 1253 of file processor.h. 01254 { 01255 return "f(x) = floor(x)"; 01256 }
|
|
Get the processor's name. Each processor is identified by a unique name.
Implements EMAN::Processor. Definition at line 1236 of file processor.h. 01237 {
01238 return NAME;
01239 }
|
|
Definition at line 1240 of file processor.h. 01241 { 01242 return new FloorValueProcessor(); 01243 }
|
|
Implements EMAN::RealPixelProcessor. Definition at line 1248 of file processor.h. References x. 01249 { 01250 *x = floor(*x); 01251 }
|
|
Definition at line 75 of file processor.cpp. |