]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TEvtGen/EvtGenModels/EvtBcBsStarNPi.hh
ATO-78 - Technical changes to compare different calibrations
[u/mrichter/AliRoot.git] / TEvtGen / EvtGenModels / EvtBcBsStarNPi.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/EvtBcBsStarNPi.hh
10 //
11 // Description: Decay model for Bc -> Bs* + npi
12 //
13 // Modification history:
14 //
15 //    A.Berezhnoy, A.Likhoded, A.Luchinsky  April 2011   Module created
16 //
17 //------------------------------------------------------------------------
18
19 #ifndef EvtBcBsStarNpi_HH
20 #define EvtBcBsStarNpi_HH
21
22 #include "EvtGenModels/EvtBcToNPi.hh"
23 #include "EvtGenBase/EvtDecayBase.hh"
24
25 #include <string>
26
27 class EvtBcBsStarNPi : public EvtBcToNPi {
28 public:
29
30   EvtBcBsStarNPi();
31
32   virtual ~EvtBcBsStarNPi();
33
34   virtual void init();
35   
36   virtual void initProbMax();
37         
38   virtual std::string getName();
39   virtual EvtDecayBase* clone();
40
41 };
42
43 #endif