#include <processor.h>
Inheritance diagram for EMAN::AddSigmaNoiseProcessor:
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 = "math.addsignoise" |
Protected Member Functions | |
float | get_sigma (EMData *image) |
Definition at line 4642 of file processor.h.
|
Get the descrition of this specific processor. This function must be overwritten by a subclass.
Reimplemented from EMAN::AddNoiseProcessor. Definition at line 4655 of file processor.h.
|
|
Get the processor's name. Each processor is identified by a unique name.
Reimplemented from EMAN::AddNoiseProcessor. Definition at line 4645 of file processor.h. References NAME. 04646 { 04647 return NAME; 04648 }
|
|
Reimplemented from EMAN::AddNoiseProcessor. Definition at line 4471 of file processor.cpp. References EMAN::EMData::get_attr(), and LOGWARN. 04472 { 04473 if (!image) { 04474 LOGWARN("NULL Image"); 04475 return 0; 04476 } 04477 return image->get_attr("sigma"); 04478 }
|
|
Reimplemented from EMAN::AddNoiseProcessor. Definition at line 4650 of file processor.h. 04651 { 04652 return new AddSigmaNoiseProcessor(); 04653 }
|
|
Reimplemented from EMAN::AddNoiseProcessor. Definition at line 4660 of file processor.h. Referenced by get_name(). |