#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 2263 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 2275 of file processor.h.
|
|
Get the processor's name. Each processor is identified by a unique name.
Implements EMAN::Processor. Definition at line 2266 of file processor.h. References NAME. 02267 { 02268 return NAME; 02269 }
|
|
Definition at line 2270 of file processor.h. 02271 { 02272 return new LogProcessor(); 02273 }
|
|
Implements EMAN::RealPixelProcessor. Definition at line 2283 of file processor.h. References log10(). 02284 { 02285 if (*x > 0) 02286 { 02287 *x = log10(*x); 02288 } 02289 else 02290 { 02291 *x = 0; 02292 } 02293 }
|
|
Definition at line 2280 of file processor.h. Referenced by get_name(). |