#include <processor.h>
Inheritance diagram for EMAN::AbsoluateValueProcessor:
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.absvalue" |
Protected Member Functions | |
void | process_pixel (float *x) const |
string | get_desc () const |
Get the descrition of this specific processor. |
Definition at line 1205 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 1225 of file processor.h. 01226 { 01227 return "f(x) = |x|"; 01228 }
|
|
Get the processor's name. Each processor is identified by a unique name.
Implements EMAN::Processor. Definition at line 1208 of file processor.h. 01209 {
01210 return NAME;
01211 }
|
|
Definition at line 1212 of file processor.h. 01213 { 01214 return new AbsoluateValueProcessor(); 01215 }
|
|
Implements EMAN::RealPixelProcessor. Definition at line 1220 of file processor.h. References x. 01221 { 01222 *x = fabs(*x); 01223 }
|
|
Definition at line 74 of file processor.cpp. |