#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 1370 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 1383 of file processor.h. 01384 { 01385 return "f(x) = x * x;"; 01386 }
|
|
Get the processor's name. Each processor is identified by a unique name.
Implements EMAN::Processor. Definition at line 1373 of file processor.h. 01374 {
01375 return NAME;
01376 }
|
|
Definition at line 1377 of file processor.h. 01378 { 01379 return new ValueSquaredProcessor(); 01380 }
|
|
Implements EMAN::RealPixelProcessor. Definition at line 1391 of file processor.h. 01392 { 01393 (*x) *= (*x); 01394 }
|
|
Definition at line 84 of file processor.cpp. |