Main Page | Modules | Namespace List | Class Hierarchy | Alphabetical List | Class List | Directories | File List | Namespace Members | Class Members | File Members

EMAN::AbsoluateValueProcessor Class Reference

f(x) = |x| More...

#include <processor.h>

Inheritance diagram for EMAN::AbsoluateValueProcessor:

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

Collaboration graph
[legend]
List of all members.

Public Member Functions

string get_name () const
 Get the processor's name.

Static Public Member Functions

static ProcessorNEW ()

Static Public Attributes

static const string NAME = "math.absvalue"

Protected Member Functions

void process_pixel (float *x) const
string get_desc () const
 Get the descrition of this specific processor.

Detailed Description

f(x) = |x|

Definition at line 1220 of file processor.h.


Member Function Documentation

string EMAN::AbsoluateValueProcessor::get_desc  )  const [inline, protected, 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 1240 of file processor.h.

01241                 {
01242                         return "f(x) = |x|";
01243                 }

string EMAN::AbsoluateValueProcessor::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 1223 of file processor.h.

References NAME.

01224                 {
01225                         return NAME;
01226                 }

static Processor* EMAN::AbsoluateValueProcessor::NEW  )  [inline, static]
 

Definition at line 1227 of file processor.h.

01228                 {
01229                         return new AbsoluateValueProcessor();
01230                 }

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

Implements EMAN::RealPixelProcessor.

Definition at line 1235 of file processor.h.

01236                 {
01237                         *x = fabs(*x);
01238                 }


Member Data Documentation

const string AbsoluateValueProcessor::NAME = "math.absvalue" [static]
 

Definition at line 1232 of file processor.h.

Referenced by get_name().


The documentation for this class was generated from the following files:
Generated on Tue May 25 17:36:56 2010 for EMAN2 by  doxygen 1.4.4