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

EMAN::ValueSqrtProcessor Class Reference

f(x) = sqrt(x) More...

#include <processor.h>

Inheritance diagram for EMAN::ValueSqrtProcessor:

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

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.sqrt"

Protected Member Functions

void process_pixel (float *x) const

Detailed Description

f(x) = sqrt(x)

Definition at line 1439 of file processor.h.


Member Function Documentation

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

01452                 {
01453                         return "f(x) = sqrt(x)";
01454                 }

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

References NAME.

01443                 {
01444                         return NAME;
01445                 }

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

Definition at line 1446 of file processor.h.

01447                 {
01448                         return new ValueSqrtProcessor();
01449                 }

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

Implements EMAN::RealPixelProcessor.

Definition at line 1459 of file processor.h.

References sqrt().

01460                 {
01461                         *x = sqrt(*x);
01462                 }


Member Data Documentation

const string ValueSqrtProcessor::NAME = "math.sqrt" [static]
 

Definition at line 1456 of file processor.h.

Referenced by get_name().


The documentation for this class was generated from the following files:
Generated on Mon Jul 19 13:06:34 2010 for EMAN2 by  doxygen 1.4.4