#include <processor.h>
Inheritance diagram for EMAN::MakeRadiusSquaredProcessor:
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.toradiussqr" |
Protected Member Functions | |
void | process_dist_pixel (float *pixel, float dist) const |
Definition at line 2766 of file processor.h.
string EMAN::MakeRadiusSquaredProcessor::get_desc | ( | ) | const [inline, virtual] |
Get the descrition of this specific processor.
This function must be overwritten by a subclass.
Reimplemented from EMAN::CircularMaskProcessor.
Definition at line 2778 of file processor.h.
string EMAN::MakeRadiusSquaredProcessor::get_name | ( | ) | const [inline, virtual] |
Get the processor's name.
Each processor is identified by a unique name.
Implements EMAN::Processor.
Definition at line 2769 of file processor.h.
References NAME.
02770 { 02771 return NAME; 02772 }
static Processor* EMAN::MakeRadiusSquaredProcessor::NEW | ( | ) | [inline, static] |
Definition at line 2773 of file processor.h.
02774 { 02775 return new MakeRadiusSquaredProcessor(); 02776 }
void EMAN::MakeRadiusSquaredProcessor::process_dist_pixel | ( | float * | pixel, | |
float | dist | |||
) | const [inline, protected, virtual] |
Implements EMAN::CircularMaskProcessor.
Definition at line 2786 of file processor.h.
02787 { 02788 *pixel = dist; 02789 }
const string MakeRadiusSquaredProcessor::NAME = "math.toradiussqr" [static] |