#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 1399 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 1411 of file processor.h. 01412 { 01413 return "f(x) = sqrt(x)"; 01414 }
|
|
Get the processor's name. Each processor is identified by a unique name.
Implements EMAN::Processor. Definition at line 1402 of file processor.h. 01403 {
01404 return NAME;
01405 }
|
|
Definition at line 1406 of file processor.h. 01407 { 01408 return new ValueSqrtProcessor(); 01409 }
|
|
Implements EMAN::RealPixelProcessor. Definition at line 1419 of file processor.h.
|
|
Definition at line 85 of file processor.cpp. |