/******************************************************************************* * Project: BaBar detector at the SLAC PEP-II B-factory * Package: EvtGenBase * File: $Id: EvtPropBreitWignerRel.hh,v 1.2 2009-03-16 16:42:03 robbep Exp $ * Author: Alexei Dvoretskii, dvoretsk@slac.stanford.edu, 2001-2002 * * Copyright (C) 2002 Caltech *******************************************************************************/ // Relativistic Breit-Wigner Propagator #ifndef EVT_PROP_BREIT_WIGNER_REL_HH #define EVT_PROP_BREIT_WIGNER_REL_HH #include "EvtGenBase/EvtComplex.hh" #include "EvtGenBase/EvtPropagator.hh" class EvtPropBreitWignerRel : public EvtPropagator { public: EvtPropBreitWignerRel(double m0, double g0); EvtPropBreitWignerRel(const EvtPropBreitWignerRel& other); ~EvtPropBreitWignerRel(); EvtAmplitude* clone() const; protected: EvtComplex amplitude(const EvtPoint1D& x) const; }; #endif