#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 4636 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 4649 of file processor.h. 04650 { 04651 return "add sigma noise."; 04652 }
|
|
Get the processor's name. Each processor is identified by a unique name.
Reimplemented from EMAN::AddNoiseProcessor. Definition at line 4639 of file processor.h. 04640 {
04641 return NAME;
04642 }
|
|
Reimplemented from EMAN::AddNoiseProcessor. Definition at line 4436 of file processor.cpp. References EMAN::EMData::get_attr(), and LOGWARN. 04437 { 04438 if (!image) { 04439 LOGWARN("NULL Image"); 04440 return 0; 04441 } 04442 return image->get_attr("sigma"); 04443 }
|
|
Reimplemented from EMAN::AddNoiseProcessor. Definition at line 4644 of file processor.h. 04645 { 04646 return new AddSigmaNoiseProcessor(); 04647 }
|
|
Reimplemented from EMAN::AddNoiseProcessor. Definition at line 160 of file processor.cpp. |