#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 1412 of file processor.h.
string EMAN::ValueSqrtProcessor::get_desc | ( | ) | const [inline, virtual] |
Get the descrition of this specific processor.
This function must be overwritten by a subclass.
Implements EMAN::Processor.
Definition at line 1424 of file processor.h.
string EMAN::ValueSqrtProcessor::get_name | ( | ) | const [inline, virtual] |
Get the processor's name.
Each processor is identified by a unique name.
Implements EMAN::Processor.
Definition at line 1415 of file processor.h.
References NAME.
01416 { 01417 return NAME; 01418 }
static Processor* EMAN::ValueSqrtProcessor::NEW | ( | ) | [inline, static] |
void EMAN::ValueSqrtProcessor::process_pixel | ( | float * | x | ) | const [inline, protected, virtual] |
Implements EMAN::RealPixelProcessor.
Definition at line 1432 of file processor.h.
References sqrt().
const string ValueSqrtProcessor::NAME = "math.sqrt" [static] |