#include <processor.h>
Inheritance diagram for EMAN::MakeRadiusProcessor:
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.toradius" |
Protected Member Functions | |
void | process_dist_pixel (float *pixel, float dist) const |
Definition at line 2747 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 2759 of file processor.h. 02760 { 02761 return "overwrites input, f(x) = radius;"; 02762 }
|
|
Get the processor's name. Each processor is identified by a unique name.
Implements EMAN::Processor. Definition at line 2750 of file processor.h. 02751 {
02752 return NAME;
02753 }
|
|
Definition at line 2754 of file processor.h. 02755 { 02756 return new MakeRadiusProcessor(); 02757 }
|
|
Implements EMAN::CircularMaskProcessor. Definition at line 2767 of file processor.h. References dist(), and sqrt(). 02768 { 02769 *pixel = sqrt(dist); 02770 }
|
|
Definition at line 112 of file processor.cpp. |