]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TEvtGen/EvtGenModels/EvtBToPlnuBK.hh
AliDecayer realisation for the EvtGen code and EvtGen itself.
[u/mrichter/AliRoot.git] / TEvtGen / EvtGenModels / EvtBToPlnuBK.hh
1 //--------------------------------------------------------------------------
2 //
3 // Environment:
4 //      This software is part of the EvtGen package developed jointly
5 //      for the BaBar and CLEO collaborations.  If you use all or part
6 //      of it, please give an appropriate acknowledgement.
7 //
8 // Copyright Information: See EvtGen/COPYRIGHT
9 //      Copyright (C) 1998      Caltech, UCSB
10 //
11 // Module: EvtGenModels/EvtBToPlnuBK.hh
12 //
13 // Description:   B->Xu l nu with BK (Becirevic-Kaidalov) parametrization
14 //                Xu is a pseudoscalar (pi_plus,pi0,eta or eta_prime)
15 //
16 // Modification history:
17 //
18 //    Martin Simard, U. de Montreal, 08/01/2007    Module created
19 //
20 //------------------------------------------------------------------------
21
22 #ifndef EVTBTOPLNUBK_HH
23 #define EVTBTOPLNUBK_HH
24
25 #include "EvtGenBase/EvtDecayAmp.hh"
26 #include "EvtGenBase/EvtSemiLeptonicFF.hh"
27 #include "EvtGenBase/EvtSemiLeptonicAmp.hh"
28
29 class EvtParticle;
30
31 class EvtBToPlnuBK: public  EvtDecayAmp  {
32
33 public:
34
35   EvtBToPlnuBK();
36   virtual ~EvtBToPlnuBK();
37
38   std::string getName();
39   EvtDecayBase* clone();
40   
41   void init();
42   void initProbMax();
43
44   void decay(EvtParticle *p);
45
46 private:
47
48   EvtSemiLeptonicFF *BKmodel;
49   EvtSemiLeptonicAmp *calcamp;
50   
51 };
52
53 #endif
54