#include <processor.h>
Inheritance diagram for EMAN::ComplexNormPixel:
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 () |
Static Public Attributes | |
static const string | NAME = "complex.normpixels" |
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 2832 of file processor.h.
|
Get the descrition of this specific processor. This function must be overwritten by a subclass.
Implements EMAN::Processor. Definition at line 2844 of file processor.h. 02845 { 02846 return "Each Fourier pixel will be normalized. ie - amp=1, phase=unmodified. Useful for performing phase-residual-like computations with dot products."; 02847 }
|
|
Get the processor's name. Each processor is identified by a unique name.
Implements EMAN::Processor. Definition at line 2835 of file processor.h. References NAME. 02836 { 02837 return NAME; 02838 }
|
|
Definition at line 2839 of file processor.h. 02840 { 02841 return new ComplexNormPixel(); 02842 }
|
|
Implements EMAN::ComplexPixelProcessor. Definition at line 2852 of file processor.h. 02853 { 02854 *x=1.0; 02855 }
|
|
Definition at line 2849 of file processor.h. Referenced by get_name(). |