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

EMAN::FloorValueProcessor Class Reference

f(x) = floor(x) More...

#include <processor.h>

Inheritance diagram for EMAN::FloorValueProcessor:

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

Collaboration graph
[legend]
List of all members.

Public Member Functions

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

Static Public Member Functions

ProcessorNEW ()

Static Public Attributes

const string NAME = "math.floor"

Protected Member Functions

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

Detailed Description

f(x) = floor(x)

Definition at line 1134 of file processor.h.


Member Function Documentation

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

01155                 {
01156                         return "f(x) = floor(x)";
01157                 }

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

01138                 {
01139                         return NAME;
01140                 }

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

Definition at line 1141 of file processor.h.

01142                 {
01143                         return new FloorValueProcessor();
01144                 }

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

Implements EMAN::RealPixelProcessor.

Definition at line 1149 of file processor.h.

References x.

01150                 {
01151                         *x = floor(*x);
01152                 }


Member Data Documentation

const string FloorValueProcessor::NAME = "math.floor" [static]
 

Definition at line 80 of file processor.cpp.


The documentation for this class was generated from the following files:
Generated on Tue Jul 12 13:51:47 2011 for EMAN2 by  doxygen 1.3.9.1