/******************************************************************************* * Project: BaBar detector at the SLAC PEP-II B-factory * Package: EvtGenBase * File: $Id: EvtPropBreitWigner.hh,v 1.3 2003/06/20 17:20:11 dvoretsk Exp $ * Author: Alexei Dvoretskii, dvoretsk@slac.stanford.edu, 2001-2002 * * Copyright (C) 2002 Caltech *******************************************************************************/ // Non-relativistic Breit-Wigner propagator #ifndef EVT_PROP_BREIT_WIGNER_HH #define EVT_PROP_BREIT_WIGNER_HH #include "EvtGenBase/EvtComplex.hh" #include "EvtGenBase/EvtPropagator.hh" class EvtPropBreitWigner : public EvtPropagator { public: EvtPropBreitWigner(double m0, double g0); EvtPropBreitWigner(const EvtPropBreitWigner& other); ~EvtPropBreitWigner(); EvtAmplitude* clone() const; protected: EvtComplex amplitude(const EvtPoint1D& m) const; }; #endif