/*****************************************************************************
* Project: RooFit *
* Package: RooFitCore *
* File: $Id: RooComplex.rdl,v 1.12 2005/06/22 18:02:31 wverkerke Exp $
* Authors: *
* WV, Wouter Verkerke, UC Santa Barbara, verkerke@slac.stanford.edu *
* DK, David Kirkby, UC Irvine, dkirkby@uci.edu *
* *
* Copyright (c) 2000-2005, Regents of the University of California *
* and Stanford University. All rights reserved. *
* *
* Redistribution and use in source and binary forms, *
* with or without modification, are permitted according to the terms *
* listed in LICENSE (http://roofit.sourceforge.net/license.txt) *
*****************************************************************************/
#ifndef ROO_COMPLEX
#define ROO_COMPLEX
#include <math.h>
#include "Rtypes.h"
#include "Riostream.h"
// This is a bare-bones complex class adapted from the CINT complex.h header,
// and introduced to support the complex error function in RooMath. The main
// changes with respect to the CINT header are to avoid defining global
// functions (at the cost of not supporting implicit casts on the first
// argument) and adding const declarations where appropriate.
class RooComplex {
public:
inline RooComplex(Double_t a=0, Double_t b=0) : _re(a), _im(b) { }
virtual ~RooComplex() {} ;
inline RooComplex& operator=(const RooComplex& other) {
if (&other==this) return *this ;
this->_re= other._re;
this->_im= other._im;
return(*this);
}
// unary operators
inline RooComplex operator-() const {
return RooComplex(-_re,-_im);
}
// binary operators
inline RooComplex operator+(const RooComplex& other) const {
return RooComplex(this->_re + other._re, this->_im + other._im);
}
inline RooComplex operator-(const RooComplex& other) const {
return RooComplex(this->_re - other._re, this->_im - other._im);
}
inline RooComplex operator*(const RooComplex& other) const {
return RooComplex(this->_re*other._re - this->_im*other._im,
this->_re*other._im + this->_im*other._re);
}
inline RooComplex operator/(const RooComplex& other) const {
Double_t x(other.abs2());
return RooComplex((this->_re*other._re + this->_im*other._im)/x,
(this->_im*other._re - this->_re*other._im)/x);
}
inline RooComplex operator*(const Double_t& other) const {
return RooComplex(this->_re*other,this->_im*other);
}
inline Bool_t operator==(const RooComplex& other) const {
return (_re==other._re && _im==other._im) ;
}
// unary functions
inline Double_t re() const {
return _re;
}
inline Double_t im() const {
return _im;
}
inline Double_t abs() const {
return ::sqrt(_re*_re + _im*_im);
}
inline Double_t abs2() const {
return _re*_re + _im*_im;
}
inline RooComplex exp() const {
Double_t mag(::exp(_re));
return RooComplex(mag*cos(_im),mag*sin(_im));
}
inline RooComplex conj() const {
return RooComplex(_re,-_im);
}
inline RooComplex sqrt() const {
Double_t arg=atan2(_im,_re)*0.5;
Double_t mag=::sqrt(::sqrt(_re*_re + _im*_im));
return RooComplex(mag*cos(arg),mag*sin(arg));
}
// ouptput formatting
void Print() const;
private:
Double_t _re,_im;
ClassDef(RooComplex,0) // a non-persistent bare-bones complex class
};
// output formatting
ostream& operator<<(ostream& os, const RooComplex& z);
#endif
syntax highlighted by Code2HTML, v. 0.9.1