#include <processor.h>
Inheritance diagram for EMAN::ValueSquaredProcessor:
Public Member Functions | |
string | get_name () const |
Get the processor's name. | |
string | get_desc () const |
Get the descrition of this specific processor. | |
Static Public Member Functions | |
Processor * | NEW () |
Static Public Attributes | |
const string | NAME = "math.squared" |
Protected Member Functions | |
void | process_pixel (float *x) const |
Definition at line 1284 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 1297 of file processor.h. 01298 { 01299 return "f(x) = x * x;"; 01300 }
|
|
Get the processor's name. Each processor is identified by a unique name.
Implements EMAN::Processor. Definition at line 1287 of file processor.h. 01288 {
01289 return NAME;
01290 }
|
|
Definition at line 1291 of file processor.h. 01292 { 01293 return new ValueSquaredProcessor(); 01294 }
|
|
Implements EMAN::RealPixelProcessor. Definition at line 1305 of file processor.h. 01306 { 01307 (*x) *= (*x); 01308 }
|
|
Definition at line 87 of file processor.cpp. |