]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TEvtGen/EvtGen/EvtGenModels/EvtBcBsNPi.hh
Converting TEvtGen to native cmake
[u/mrichter/AliRoot.git] / TEvtGen / EvtGen / EvtGenModels / EvtBcBsNPi.hh
CommitLineData
0ca57c2f 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 -> Bs + npi
12//
13// Modification history:
14//
15// A.Berezhnoy, A.Likhoded, A.Luchinsky July 2011 Module created
16//
17//------------------------------------------------------------------------
18
19#ifndef EvtBcBsNpi_HH
20#define EvtBcBsNpi_HH
21
22#include "EvtGenModels/EvtBcToNPi.hh"
23#include "EvtGenBase/EvtDecayBase.hh"
24#include <string>
25
26class EvtBcBsNPi : public EvtBcToNPi {
27public:
28
29 EvtBcBsNPi();
30 virtual ~EvtBcBsNPi();
31
32 virtual void init();
33 virtual void initProbMax();
34
35 virtual std::string getName();
36 virtual EvtDecayBase* clone();
37
38};
39
40#endif