]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TEvtGen/EvtGenModels/EvtPhiDalitz.hh
AliDecayer realisation for the EvtGen code and EvtGen itself.
[u/mrichter/AliRoot.git] / TEvtGen / EvtGenModels / EvtPhiDalitz.hh
1
2 #ifndef EVTPHIDALITZ_HH
3 #define EVTPHIDALITZ_HH
4
5 #include "EvtGenBase/EvtDecayAmp.hh"
6
7 class EvtParticle;
8
9 class EvtPhiDalitz:public  EvtDecayAmp  {
10
11 public:
12
13   EvtPhiDalitz() {}
14   virtual ~EvtPhiDalitz();
15
16   std::string getName();
17   EvtDecayBase* clone();
18
19   void init();
20
21   void decay(EvtParticle *p); 
22
23 private:
24   double _mRho;
25   double _gRho;
26   double _aD;
27   double _phiD;
28   double _aOmega;
29   double _phiOmega;
30   int _locPip;
31   int _locPim;
32   int _locPi0;
33
34 };
35
36 #endif