StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
EvtB2MuMuMuNu.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: EvtB2MuMuMuNu.hh
12 //
13 // Description:
14 //
15 // Modification history:
16 //
17 // Nikolai Nikitin (Lomonosov Moscow State Univ.) August 04, 2015 Module created
18 // Email: Nikolai.Nikitine@cern.ch
19 //
20 //------------------------------------------------------------------------
21 
22 #ifndef EVTBUTOLLLN_HH
23 #define EVTBUTOLLLN_HH
24 
25 #include "EvtGenBase/EvtDecayAmp.hh"
26 
27 class EvtParticle;
28 class EvtbTosllMSFF; // my class with ff for the rare semileptonic B-decays
29 class EvtB2MuMuMuNuAmp; // my class with amplitudes for four-leptonic B^{pm}-decays
30 
31 
33 
34 public:
35 
36  EvtB2MuMuMuNu() {} ;
37  virtual ~EvtB2MuMuMuNu();
38 
39  virtual std::string getName() ;
40  virtual EvtDecayBase* clone();
41 
42  virtual void init();
43  virtual void initProbMax();
44  virtual void decay(EvtParticle *p);
45 
46 private:
47  EvtbTosllMSFF *_msffmodel;
48  EvtB2MuMuMuNuAmp *_calcamp;
49 };
50 
51 #endif