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 1313 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 1325 of file processor.h.

01326                 {
01327                         return "f(x) = sqrt(x)";
01328                 }

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 1316 of file processor.h.

References NAME.

01317                 {
01318                         return NAME;
01319                 }

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

Definition at line 1320 of file processor.h.

01321                 {
01322                         return new ValueSqrtProcessor();
01323                 }

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

Implements EMAN::RealPixelProcessor.

Definition at line 1333 of file processor.h.

References sqrt().

01334                 {
01335                         *x = sqrt(*x);
01336                 }


Member Data Documentation

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

Definition at line 1330 of file processor.h.

Referenced by get_name().


The documentation for this class was generated from the following files:
Generated on Tue Jul 12 13:48:44 2011 for EMAN2 by  doxygen 1.4.7