#include <processor.h>
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 | |
| static Processor * | NEW () |
Protected Member Functions | |
| void | process_pixel (float *x) const |
ie - amp=1, phase=unmodified. Useful for performing phase-residual-like computations with dot products.
Definition at line 2583 of file processor.h.
| string EMAN::ComplexNormPixel::get_name | ( | ) | const [inline, virtual] |
Get the processor's name.
Each processor is identified by a unique name.
Implements EMAN::Processor.
Definition at line 2586 of file processor.h.
| static Processor* EMAN::ComplexNormPixel::NEW | ( | ) | [inline, static] |
| string EMAN::ComplexNormPixel::get_desc | ( | ) | const [inline, virtual] |
Get the descrition of this specific processor.
This function must be overwritten by a subclass.
Implements EMAN::Processor.
Definition at line 2595 of file processor.h.
02596 { 02597 return "Each Fourier pixel will be normalized. ie - amp=1, phase=unmodified. Useful for performing phase-residual-like computations with dot products."; 02598 }
| void EMAN::ComplexNormPixel::process_pixel | ( | float * | x | ) | const [inline, protected, virtual] |
Implements EMAN::ComplexPixelProcessor.
Definition at line 2601 of file processor.h.
02602 { 02603 *x=1.0; 02604 }
1.5.6