#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 2629 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 2641 of file processor.h. 02642 { 02643 return "overwrites input, f(x) = radius * radius"; 02644 }
|
|
Get the processor's name. Each processor is identified by a unique name.
Implements EMAN::Processor. Definition at line 2632 of file processor.h. 02633 {
02634 return NAME;
02635 }
|
|
Definition at line 2636 of file processor.h. 02637 { 02638 return new MakeRadiusSquaredProcessor(); 02639 }
|
|
Implements EMAN::CircularMaskProcessor. Definition at line 2649 of file processor.h. 02650 { 02651 *pixel = dist; 02652 }
|
|
Definition at line 109 of file processor.cpp. |