#include <processor.h>
Inheritance diagram for EMAN::LinearRampFourierProcessor:
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 Processor * | NEW () |
Static Public Attributes | |
static const string | NAME = "filter.linearfourier" |
Protected Member Functions | |
virtual void | create_radial_func (vector< float > &radial_mask) const |
Definition at line 887 of file processor.h.
void LinearRampFourierProcessor::create_radial_func | ( | vector< float > & | radial_mask | ) | const [protected, virtual] |
Implements EMAN::FourierProcessor.
Definition at line 1144 of file processor.cpp.
References Assert.
01145 { 01146 Assert(radial_mask.size() > 0); 01147 for (size_t i = 0; i < radial_mask.size(); i++) { 01148 radial_mask[i] = (float)i; 01149 } 01150 }
virtual string EMAN::LinearRampFourierProcessor::get_desc | ( | ) | const [inline, virtual] |
Get the descrition of this specific processor.
This function must be overwritten by a subclass.
Implements EMAN::Processor.
Definition at line 895 of file processor.h.
virtual string EMAN::LinearRampFourierProcessor::get_name | ( | ) | const [inline, virtual] |
Get the processor's name.
Each processor is identified by a unique name.
Implements EMAN::Processor.
Definition at line 890 of file processor.h.
References NAME.
00891 { 00892 return NAME; 00893 }
static Processor* EMAN::LinearRampFourierProcessor::NEW | ( | ) | [inline, static] |
Definition at line 900 of file processor.h.
00901 { 00902 return new LinearRampFourierProcessor(); 00903 }
const string LinearRampFourierProcessor::NAME = "filter.linearfourier" [static] |