#include <processor.h>
Inheritance diagram for EMAN::ValueSqrtProcessor:
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.sqrt" |
Protected Member Functions | |
void | process_pixel (float *x) const |
Definition at line 1367 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 1379 of file processor.h. 01380 { 01381 return "f(x) = sqrt(x)"; 01382 }
|
|
Get the processor's name. Each processor is identified by a unique name.
Implements EMAN::Processor. Definition at line 1370 of file processor.h. 01371 {
01372 return NAME;
01373 }
|
|
Definition at line 1374 of file processor.h. 01375 { 01376 return new ValueSqrtProcessor(); 01377 }
|
|
Implements EMAN::RealPixelProcessor. Definition at line 1387 of file processor.h.
|
|
Definition at line 83 of file processor.cpp. |