#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 808 of file processor.h.
|
Implements EMAN::FourierProcessor. Definition at line 1107 of file processor.cpp. References Assert. 01108 { 01109 Assert(radial_mask.size() > 0); 01110 for (size_t i = 0; i < radial_mask.size(); i++) { 01111 radial_mask[i] = (float)i; 01112 } 01113 }
|
|
Get the descrition of this specific processor. This function must be overwritten by a subclass.
Implements EMAN::Processor. Definition at line 816 of file processor.h.
|
|
Get the processor's name. Each processor is identified by a unique name.
Implements EMAN::Processor. Definition at line 811 of file processor.h. References NAME. 00812 { 00813 return NAME; 00814 }
|
|
Definition at line 821 of file processor.h. 00822 { 00823 return new LinearRampFourierProcessor(); 00824 }
|
|
Definition at line 826 of file processor.h. Referenced by get_name(). |