]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TEvtGen/EvtGen/EvtGenBase/EvtMHelAmp.hh
Fix for definitions for CINT
[u/mrichter/AliRoot.git] / TEvtGen / EvtGen / EvtGenBase / EvtMHelAmp.hh
1 #ifndef __EVTMHELAMP_HH__
2 #define __EVTMHELAMP_HH__
3
4 #include "EvtGenBase/EvtMRes.hh"
5
6 class EvtMHelAmp : public EvtMRes {
7
8     public:
9
10         EvtMHelAmp( const EvtId& id, EvtMLineShape *, const
11                 vector<EvtMNode * >&, const vector<EvtComplex>& );
12         virtual ~EvtMHelAmp() {};
13         
14         EvtSpinAmp amplitude( const vector<EvtVector4R>& product )
15             const;
16
17         EvtMNode * duplicate() const;
18
19     private:
20
21         vector<EvtComplex> _elem;
22 };
23
24 #endif