#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 | |
static Processor * | NEW () |
Static Public Attributes | |
static const string | NAME = "math.sqrt" |
Protected Member Functions | |
void | process_pixel (float *x) const |
Definition at line 1439 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 1451 of file processor.h.
|
|
Get the processor's name. Each processor is identified by a unique name.
Implements EMAN::Processor. Definition at line 1442 of file processor.h. References NAME. 01443 { 01444 return NAME; 01445 }
|
|
Definition at line 1446 of file processor.h. 01447 { 01448 return new ValueSqrtProcessor(); 01449 }
|
|
Implements EMAN::RealPixelProcessor. Definition at line 1459 of file processor.h. References sqrt().
|
|
Definition at line 1456 of file processor.h. Referenced by get_name(). |