#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 | |
static Processor * | NEW () |
Static Public Attributes | |
static const string | NAME = "math.log" |
Protected Member Functions | |
void | process_pixel (float *x) const |
Definition at line 2223 of file processor.h.
string EMAN::LogProcessor::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 2235 of file processor.h.
string EMAN::LogProcessor::get_name | ( | ) | const [inline, virtual] |
Get the processor's name.
Each processor is identified by a unique name.
Implements EMAN::Processor.
Definition at line 2226 of file processor.h.
References NAME.
02227 { 02228 return NAME; 02229 }
static Processor* EMAN::LogProcessor::NEW | ( | ) | [inline, static] |
void EMAN::LogProcessor::process_pixel | ( | float * | x | ) | const [inline, protected, virtual] |
Implements EMAN::RealPixelProcessor.
Definition at line 2243 of file processor.h.
References log10().
02244 { 02245 if (*x > 0) 02246 { 02247 *x = log10(*x); 02248 } 02249 else 02250 { 02251 *x = 0; 02252 } 02253 }
const string LogProcessor::NAME = "math.log" [static] |