#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 2760 of file processor.h.
|
Get the descrition of this specific processor. This function must be overwritten by a subclass.
Reimplemented from EMAN::CircularMaskProcessor. Definition at line 2772 of file processor.h.
|
|
Get the processor's name. Each processor is identified by a unique name.
Implements EMAN::Processor. Definition at line 2763 of file processor.h. References NAME. 02764 { 02765 return NAME; 02766 }
|
|
Definition at line 2767 of file processor.h. 02768 { 02769 return new MakeRadiusSquaredProcessor(); 02770 }
|
|
Implements EMAN::CircularMaskProcessor. Definition at line 2780 of file processor.h. 02781 { 02782 *pixel = dist; 02783 }
|
|
Definition at line 2777 of file processor.h. Referenced by get_name(). |