EMAN::LogProcessor Class Reference

f(x) = log10(x) if x > 0; else f(x) = 0 More...

#include <processor.h>

Inheritance diagram for EMAN::LogProcessor:

Inheritance graph
[legend]
Collaboration diagram for EMAN::LogProcessor:

Collaboration graph
[legend]
List of all members.

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 ProcessorNEW ()

Static Public Attributes

static const string NAME = "math.log"

Protected Member Functions

void process_pixel (float *x) const

Detailed Description

f(x) = log10(x) if x > 0; else f(x) = 0

Definition at line 2269 of file processor.h.


Member Function Documentation

string EMAN::LogProcessor::get_desc (  )  const [inline, virtual]

Get the descrition of this specific processor.

This function must be overwritten by a subclass.

Returns:
The description of this processor.

Implements EMAN::Processor.

Definition at line 2281 of file processor.h.

02282                 {
02283                         return "f(x) = log10(x) if x > 0; else f(x) = 0;";
02284                 }

string EMAN::LogProcessor::get_name (  )  const [inline, virtual]

Get the processor's name.

Each processor is identified by a unique name.

Returns:
The processor's name.

Implements EMAN::Processor.

Definition at line 2272 of file processor.h.

References NAME.

02273                 {
02274                         return NAME;
02275                 }

static Processor* EMAN::LogProcessor::NEW (  )  [inline, static]

Definition at line 2276 of file processor.h.

02277                 {
02278                         return new LogProcessor();
02279                 }

void EMAN::LogProcessor::process_pixel ( float *  x  )  const [inline, protected, virtual]

Implements EMAN::RealPixelProcessor.

Definition at line 2289 of file processor.h.

References log10().

02290                 {
02291                         if (*x > 0)
02292                         {
02293                                 *x = log10(*x);
02294                         }
02295                         else
02296                         {
02297                                 *x = 0;
02298                         }
02299                 }


Member Data Documentation

const string LogProcessor::NAME = "math.log" [static]

Definition at line 2286 of file processor.h.

Referenced by get_name().


The documentation for this class was generated from the following files:
Generated on Tue Jun 11 12:43:48 2013 for EMAN2 by  doxygen 1.4.7