#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 | |
Processor * | NEW () |
Static Public Attributes | |
const string | NAME = "math.toradiussqr" |
Protected Member Functions | |
void | process_dist_pixel (float *pixel, float dist) const |
Definition at line 2719 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 2731 of file processor.h. 02732 { 02733 return "overwrites input, f(x) = radius * radius"; 02734 }
|
|
Get the processor's name. Each processor is identified by a unique name.
Implements EMAN::Processor. Definition at line 2722 of file processor.h. 02723 {
02724 return NAME;
02725 }
|
|
Definition at line 2726 of file processor.h. 02727 { 02728 return new MakeRadiusSquaredProcessor(); 02729 }
|
|
Implements EMAN::CircularMaskProcessor. Definition at line 2739 of file processor.h. 02740 { 02741 *pixel = dist; 02742 }
|
|
Definition at line 111 of file processor.cpp. |