#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 1010 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 1030 of file processor.h. 01031 { 01032 return "f(x) = |x|"; 01033 }
|
|
Get the processor's name. Each processor is identified by a unique name.
Implements EMAN::Processor. Definition at line 1013 of file processor.h. 01014 {
01015 return NAME;
01016 }
|
|
Definition at line 1017 of file processor.h. 01018 { 01019 return new AbsoluateValueProcessor(); 01020 }
|
|
Implements EMAN::RealPixelProcessor. Definition at line 1025 of file processor.h. References x. 01026 { 01027 *x = fabs(*x); 01028 }
|
|
Definition at line 72 of file processor.cpp. |