]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TEvtGen/EvtGenModels/EvtBcPsiNPi.hh
Updates EvtGen Code
[u/mrichter/AliRoot.git] / TEvtGen / EvtGenModels / EvtBcPsiNPi.hh
1 //--------------------------------------------------------------------------
2 //
3 // Environment:
4 //      This software is part of the EvtGen package. If you use all or part
5 //      of it, please give an appropriate acknowledgement.
6 //
7 // Copyright Information: See EvtGen/COPYRIGHT
8 //
9 // Module: EvtGenModels/EvtBcBsNPi.hh
10 //
11 // Description: Decay model for Bc -> J/psi + npi
12 //
13 // Modification history:
14 //
15 //    A.Berezhnoy, A.Likhoded, A.Luchinsky  April 2011   Module created
16 //
17 //------------------------------------------------------------------------
18
19 #ifndef EvtBcPsiNpi_HH
20 #define EvtBcPsiNpi_HH
21
22 #include "EvtGenModels/EvtBcToNPi.hh"
23 #include "EvtGenBase/EvtDecayBase.hh"
24
25 #include <string>
26
27 class EvtBcPsiNPi : public EvtBcToNPi {
28
29 public:
30
31   EvtBcPsiNPi();
32
33   virtual ~EvtBcPsiNPi();
34
35   virtual void init();
36   virtual void initProbMax();
37         
38   virtual std::string getName();
39   virtual EvtDecayBase* clone();
40
41 };
42
43 #endif