#include <reconstructor_tools.h>


Public Member Functions | |
| InterpolatedFRCMode4 () | |
| virtual | ~InterpolatedFRCMode4 () |
| Destructor. | |
| virtual string | get_name () const |
| Get the unique name of this class (especially for factory based instantiation access). | |
| virtual string | get_desc () const |
| Get a clear, concise description of this class. | |
| virtual bool | continue_frc_calc (const float &xx, const float &yy, const float &zz, const float dt[], const float &weight=1.0) |
| continue_frc_calc1 - function for including an additional pixel in the calculation of the FRC FRC calculated using nearest neighbor. | |
Static Public Member Functions | |
| static InterpolatedFRC * | NEW () |
Private Member Functions | |
| InterpolatedFRCMode4 (const InterpolatedFRCMode4 &that) | |
| InterpolatedFRCMode4 & | operator= (const InterpolatedFRCMode4 &that) |
Definition at line 859 of file reconstructor_tools.h.
| EMAN::InterpolatedFRCMode4::InterpolatedFRCMode4 | ( | ) | [inline] |
| virtual EMAN::InterpolatedFRCMode4::~InterpolatedFRCMode4 | ( | ) | [inline, virtual] |
| EMAN::InterpolatedFRCMode4::InterpolatedFRCMode4 | ( | const InterpolatedFRCMode4 & | that | ) | [private] |
| virtual string EMAN::InterpolatedFRCMode4::get_name | ( | ) | const [inline, virtual] |
Get the unique name of this class (especially for factory based instantiation access).
Implements EMAN::FactoryBase.
Definition at line 868 of file reconstructor_tools.h.
| static InterpolatedFRC* EMAN::InterpolatedFRCMode4::NEW | ( | ) | [inline, static] |
Definition at line 873 of file reconstructor_tools.h.
References InterpolatedFRCMode4().
00874 { 00875 return new InterpolatedFRCMode4(); 00876 }
| virtual string EMAN::InterpolatedFRCMode4::get_desc | ( | ) | const [inline, virtual] |
Get a clear, concise description of this class.
Implements EMAN::FactoryBase.
Definition at line 878 of file reconstructor_tools.h.
| bool InterpolatedFRCMode4::continue_frc_calc | ( | const float & | xx, | |
| const float & | yy, | |||
| const float & | zz, | |||
| const float | dt[], | |||
| const float & | weight = 1.0 | |||
| ) | [virtual] |
continue_frc_calc1 - function for including an additional pixel in the calculation of the FRC FRC calculated using nearest neighbor.
Meant for use in conjunction with FourierInserter3DMode1
| xx | the floating point x location of the incoming pixel | |
| yy | the floating point y location of the incoming pixel | |
| zz | the floating point z location of the incoming pixel | |
| dt | the complex pixel value stored in a float array of length 2 | |
| weight | the weight that this pixel has - corresponds to the weight with which the pixel was original inserted into the 3D volume |
Implements EMAN::InterpolatedFRC.
Definition at line 417 of file reconstructor_tools.cpp.
References EMAN::InterpolatedFRC::continue_frc_calc_functoid().
00418 { 00419 return continue_frc_calc_functoid(xx,yy,zz,dt,InterpolationFunctoidMode4(),weight); 00420 }
| InterpolatedFRCMode4& EMAN::InterpolatedFRCMode4::operator= | ( | const InterpolatedFRCMode4 & | that | ) | [private] |
1.5.6