StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
EvtbsToLLLL.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) 2003 Caltech
10 //
11 // Module: EvtGen/EvtbsToLLLL.hh
12 //
13 // Description:
14 //
15 // Modification history:
16 //
17 // N.Nikitin (nnikit@mail.cern.ch) July 24, 2011 Module created
18 //
19 //------------------------------------------------------------------------
20 
21 #ifndef EVTBSTOLLLL_HH
22 #define EVTBSTOLLLL_HH
23 
24 #include "EvtGenBase/EvtDecayAmp.hh"
25 
26 class EvtParticle;
27 class Evtbs2llGammaFF; // my class with ff for rare semileptonic B-decays
28 class EvtbsToLLLLAmp; // my class with amplitudes for rare four-leptonic B-decays
29 class EvtbTosllWilsCoeffNLO; // my class with Wilson coefficients in NLO
30 
31 class EvtbsToLLLL:public EvtDecayAmp{
32 
33 public:
34 
35  EvtbsToLLLL() {} ;
36  virtual ~EvtbsToLLLL();
37 
38  virtual std::string getName() ;
39  virtual EvtDecayBase* clone();
40 
41  virtual void init();
42  virtual void initProbMax();
43  virtual void decay(EvtParticle *p);
44 
45 private:
46  Evtbs2llGammaFF *_mntffmodel;
47  EvtbsToLLLLAmp *_calcamp;
48  EvtbTosllWilsCoeffNLO *_wilscoeff;
49 };
50 
51 #endif