#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 2544 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 2556 of file processor.h. 02557 { 02558 return "overwrites input, f(x) = radius * radius"; 02559 }
|
|
Get the processor's name. Each processor is identified by a unique name.
Implements EMAN::Processor. Definition at line 2547 of file processor.h. 02548 {
02549 return NAME;
02550 }
|
|
Definition at line 2551 of file processor.h. 02552 { 02553 return new MakeRadiusSquaredProcessor(); 02554 }
|
|
Implements EMAN::CircularMaskProcessor. Definition at line 2564 of file processor.h. 02565 { 02566 *pixel = dist; 02567 }
|
|
Definition at line 106 of file processor.cpp. |