EMAN::LinearRampFourierProcessor Class Reference

#include <processor.h>

Inheritance diagram for EMAN::LinearRampFourierProcessor:

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

Collaboration graph
[legend]
List of all members.

Public Member Functions

virtual string get_name () const
 Get the processor's name.
virtual string get_desc () const
 Get the descrition of this specific processor.

Static Public Member Functions

static ProcessorNEW ()

Static Public Attributes

static const string NAME = "filter.linearfourier"

Protected Member Functions

virtual void create_radial_func (vector< float > &radial_mask) const

Detailed Description

Definition at line 803 of file processor.h.


Member Function Documentation

void LinearRampFourierProcessor::create_radial_func ( vector< float > &  radial_mask  )  const [protected, virtual]

Implements EMAN::FourierProcessor.

Definition at line 1056 of file processor.cpp.

References Assert.

01057 {
01058         Assert(radial_mask.size() > 0);
01059         for (size_t i = 0; i < radial_mask.size(); i++) {
01060                 radial_mask[i] = (float)i;
01061         }
01062 }

virtual string EMAN::LinearRampFourierProcessor::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 811 of file processor.h.

00812                         {
00813                                 return "";
00814                         }

virtual string EMAN::LinearRampFourierProcessor::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 806 of file processor.h.

References NAME.

00807                         { 
00808                                 return NAME; 
00809                         }

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

Definition at line 816 of file processor.h.

00817                         {
00818                                 return new LinearRampFourierProcessor();
00819                         }


Member Data Documentation

const string LinearRampFourierProcessor::NAME = "filter.linearfourier" [static]

Definition at line 821 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:16:24 2010 for EMAN2 by  doxygen 1.4.7