#include <ErfFitObject.h>
Inheritance diagram for SctData::ErfFitObject:
Public Member Functions | |
ErfFitObject () | |
Default Constructor. | |
ErfFitObject (const TF1 &rootfunc) | |
Constructor from ROOT TF1. | |
virtual shared_ptr< FitObject > | clone () const throw () |
Allows any sub-class of FitObject to be used as a prototype. | |
virtual string | getClassName () const throw () |
Get the class name for this object. | |
virtual | ~ErfFitObject () throw () |
Destructor does nothing. | |
ErfFitObject & | operator= (const TF1 &rootfunc) throw (LogicError) |
Equality with a ROOT TF1. | |
Protected Member Functions | |
virtual auto_ptr< TF1 > | makeBasicRootTF1 () const throw (LogicError) |
call the correct constructor for making a ROOT TF1 | |
Static Private Member Functions | |
vector< string > | createParNames () |
file static method to create vector of parameter names | |
Static Private Attributes | |
vector< string > | parNames |
Parameters: Prefactor, Mean, Sigma
The evaluation of the function is done here through the root TMath class function Erf(x) = (2/sqrt(pi)) Integral(exp(-t^2))dt between 0 and x
Definition at line 19 of file ErfFitObject.h.
|
Default Constructor.
Definition at line 25 of file ErfFitObject.cpp. |
|
Constructor from ROOT TF1.
Definition at line 28 of file ErfFitObject.cpp. |
|
Destructor does nothing.
Definition at line 33 of file ErfFitObject.h. |
|
Allows any sub-class of FitObject to be used as a prototype.
Implements SctData::FitObject. Definition at line 31 of file ErfFitObject.cpp. |
|
file static method to create vector of parameter names
Definition at line 15 of file ErfFitObject.cpp. |
|
Get the class name for this object. This is used to identify the precise type.
Implements Sct::Streamable. Definition at line 30 of file ErfFitObject.h. |
|
call the correct constructor for making a ROOT TF1
Implements SctData::FitObject. Definition at line 41 of file ErfFitObject.cpp. |
|
Equality with a ROOT TF1.
Reimplemented from SctData::FitObject. Definition at line 35 of file ErfFitObject.cpp. |