Go to the source code of this file.
|
counted_ptr< FitComplex > | MINT::FitComplexMaker (const std::string &name, const char *fname=0, MinuitParameterSet *pset=0, MINT::IFitParRegister *daddy=0, FitParameter::FIX_OR_WHAT fow=FitParameter::FIX, NamedParameterBase::VERBOSITY vb=NamedParameterBase::VERBOSE) |
|
std::complex< double > | operator * (const std::complex< double > &cplx, const MINT::FitComplex &fc) |
|
std::complex< double > | operator * (const MINT::FitComplex &fc, const std::complex< double > &cplx) |
|
std::complex< double > | operator+ (const std::complex< double > &cplx, const MINT::FitComplex &fc) |
|
std::complex< double > | operator+ (const MINT::FitComplex &fc, const std::complex< double > &cplx) |
|
std::complex< double > | operator- (const std::complex< double > &cplx, const MINT::FitComplex &fc) |
|
std::complex< double > | operator- (const MINT::FitComplex &fc, const std::complex< double > &cplx) |
|
std::complex< double > | operator/ (const std::complex< double > &cplx, const MINT::FitComplex &fc) |
|
std::complex< double > | operator/ (const MINT::FitComplex &fc, const std::complex< double > &cplx) |
|
std::ostream & | operator<< (std::ostream &os, const MINT::FitComplex &fc) |
|
◆ operator *() [1/2]
std::complex<double> operator * |
( |
const std::complex< double > & |
cplx, |
|
|
const MINT::FitComplex & |
fc |
|
) |
| |
Definition at line 86 of file FitComplex.cpp.
virtual std::complex< double > getVal() const =0
◆ operator *() [2/2]
std::complex<double> operator * |
( |
const MINT::FitComplex & |
fc, |
|
|
const std::complex< double > & |
cplx |
|
) |
| |
Definition at line 90 of file FitComplex.cpp.
virtual std::complex< double > getVal() const =0
◆ operator+() [1/2]
std::complex<double> operator+ |
( |
const std::complex< double > & |
cplx, |
|
|
const MINT::FitComplex & |
fc |
|
) |
| |
Definition at line 95 of file FitComplex.cpp.
virtual std::complex< double > getVal() const =0
◆ operator+() [2/2]
std::complex<double> operator+ |
( |
const MINT::FitComplex & |
fc, |
|
|
const std::complex< double > & |
cplx |
|
) |
| |
Definition at line 99 of file FitComplex.cpp.
101 return fc.
getVal() + cplx;
virtual std::complex< double > getVal() const =0
◆ operator-() [1/2]
std::complex<double> operator- |
( |
const std::complex< double > & |
cplx, |
|
|
const MINT::FitComplex & |
fc |
|
) |
| |
Definition at line 104 of file FitComplex.cpp.
106 return cplx - fc.
getVal();
virtual std::complex< double > getVal() const =0
◆ operator-() [2/2]
std::complex<double> operator- |
( |
const MINT::FitComplex & |
fc, |
|
|
const std::complex< double > & |
cplx |
|
) |
| |
Definition at line 108 of file FitComplex.cpp.
110 return fc.
getVal() - cplx;
virtual std::complex< double > getVal() const =0
◆ operator/() [1/2]
std::complex<double> operator/ |
( |
const std::complex< double > & |
cplx, |
|
|
const MINT::FitComplex & |
fc |
|
) |
| |
Definition at line 113 of file FitComplex.cpp.
115 return cplx / fc.
getVal();
virtual std::complex< double > getVal() const =0
◆ operator/() [2/2]
std::complex<double> operator/ |
( |
const MINT::FitComplex & |
fc, |
|
|
const std::complex< double > & |
cplx |
|
) |
| |
Definition at line 117 of file FitComplex.cpp.
virtual std::complex< double > getVal() const =0
◆ operator<<()
Definition at line 122 of file FitComplex.cpp.
virtual void print(std::ostream &os=std::cout) const