#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 2188 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 2200 of file processor.h. 02201 { 02202 return "f(x) = log10(x) if x > 0; else f(x) = 0;"; 02203 }
|
|
Get the processor's name. Each processor is identified by a unique name.
Implements EMAN::Processor. Definition at line 2191 of file processor.h. 02192 {
02193 return NAME;
02194 }
|
|
Definition at line 2195 of file processor.h. 02196 { 02197 return new LogProcessor(); 02198 }
|
|
Implements EMAN::RealPixelProcessor. Definition at line 2208 of file processor.h. 02209 { 02210 if (*x > 0) 02211 { 02212 *x = log10(*x); 02213 } 02214 else 02215 { 02216 *x = 0; 02217 } 02218 }
|
|
Definition at line 103 of file processor.cpp. |