StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
EvtbsToLLLLHyperCP.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/EvtbsToLLLLHyperCP.hh
12 //
13 // Description:
14 //
15 // Modification history:
16 //
17 // N.Nikitin (nnikit@mail.cern.ch) May 30, 2012 Module created
18 //
19 //------------------------------------------------------------------------
20 
21 #ifndef EVTBSTOLLLL_HYPERCP_HH
22 #define EVTBSTOLLLL_HYPERCP_HH
23 
24 #include "EvtGenBase/EvtDecayAmp.hh"
25 
26 class EvtParticle;
27 class EvtbsToLLLLHyperCPAmp; // my class with amplitudes for rare four-leptonic B-decays
28 
30 
31 public:
32 
33  EvtbsToLLLLHyperCP() {} ;
34  virtual ~EvtbsToLLLLHyperCP();
35 
36  virtual std::string getName() ;
37  virtual EvtDecayBase* clone();
38 
39  virtual void init();
40  virtual void initProbMax();
41  virtual void decay(EvtParticle *p);
42 
43 private:
44  EvtbsToLLLLHyperCPAmp *_calcamp;
45 };
46 
47 #endif