#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 | |
Processor * | NEW () |
Static Public Attributes | |
const string | NAME = "filter.linearfourier" |
Protected Member Functions | |
virtual void | create_radial_func (vector< float > &radial_mask) const |
|
Implements EMAN::FourierProcessor. Definition at line 1138 of file processor.cpp. References Assert. 01139 { 01140 Assert(radial_mask.size() > 0); 01141 for (size_t i = 0; i < radial_mask.size(); i++) { 01142 radial_mask[i] = (float)i; 01143 } 01144 }
|
|
Get the descrition of this specific processor. This function must be overwritten by a subclass.
Implements EMAN::Processor. Definition at line 870 of file processor.h. 00871 { 00872 return ""; 00873 }
|
|
Get the processor's name. Each processor is identified by a unique name.
Implements EMAN::Processor. Definition at line 865 of file processor.h. 00866 {
00867 return NAME;
00868 }
|
|
Definition at line 875 of file processor.h. 00876 { 00877 return new LinearRampFourierProcessor(); 00878 }
|
|
Definition at line 69 of file processor.cpp. |