#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 1338 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 1351 of file processor.h. 01352 { 01353 return "f(x) = x * x;"; 01354 }
|
|
Get the processor's name. Each processor is identified by a unique name.
Implements EMAN::Processor. Definition at line 1341 of file processor.h. 01342 {
01343 return NAME;
01344 }
|
|
Definition at line 1345 of file processor.h. 01346 { 01347 return new ValueSquaredProcessor(); 01348 }
|
|
Implements EMAN::RealPixelProcessor. Definition at line 1359 of file processor.h. 01360 { 01361 (*x) *= (*x); 01362 }
|
|
Definition at line 82 of file processor.cpp. |