#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 | |
Processor * | NEW () |
Static Public Attributes | |
const string | NAME = "math.addsignoise" |
Protected Member Functions | |
float | get_sigma (EMData *image) |
Definition at line 4511 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 4524 of file processor.h. 04525 { 04526 return "add sigma noise."; 04527 }
|
|
Get the processor's name. Each processor is identified by a unique name.
Reimplemented from EMAN::AddNoiseProcessor. Definition at line 4514 of file processor.h. 04515 {
04516 return NAME;
04517 }
|
|
Reimplemented from EMAN::AddNoiseProcessor. Definition at line 4395 of file processor.cpp. References EMAN::EMData::get_attr(), and LOGWARN. 04396 { 04397 if (!image) { 04398 LOGWARN("NULL Image"); 04399 return 0; 04400 } 04401 return image->get_attr("sigma"); 04402 }
|
|
Reimplemented from EMAN::AddNoiseProcessor. Definition at line 4519 of file processor.h. 04520 { 04521 return new AddSigmaNoiseProcessor(); 04522 }
|
|
Reimplemented from EMAN::AddNoiseProcessor. Definition at line 157 of file processor.cpp. |