#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 2685 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 2697 of file processor.h. 02698 { 02699 return "overwrites input, f(x) = radius * radius"; 02700 }
|
|
Get the processor's name. Each processor is identified by a unique name.
Implements EMAN::Processor. Definition at line 2688 of file processor.h. 02689 {
02690 return NAME;
02691 }
|
|
Definition at line 2692 of file processor.h. 02693 { 02694 return new MakeRadiusSquaredProcessor(); 02695 }
|
|
Implements EMAN::CircularMaskProcessor. Definition at line 2705 of file processor.h. 02706 { 02707 *pixel = dist; 02708 }
|
|
Definition at line 111 of file processor.cpp. |