#include <processor.h>
Inheritance diagram for EMAN::LogProcessor:
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.log" |
Protected Member Functions | |
void | process_pixel (float *x) const |
Definition at line 2132 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 2144 of file processor.h. 02145 { 02146 return "f(x) = log10(x) if x > 0; else f(x) = 0;"; 02147 }
|
|
Get the processor's name. Each processor is identified by a unique name.
Implements EMAN::Processor. Definition at line 2135 of file processor.h. 02136 {
02137 return NAME;
02138 }
|
|
Definition at line 2139 of file processor.h. 02140 { 02141 return new LogProcessor(); 02142 }
|
|
Implements EMAN::RealPixelProcessor. Definition at line 2152 of file processor.h. 02153 { 02154 if (*x > 0) 02155 { 02156 *x = log10(*x); 02157 } 02158 else 02159 { 02160 *x = 0; 02161 } 02162 }
|
|
Definition at line 101 of file processor.cpp. |