Line data Source code
1 : //--------------------------------------------------------------------------
2 : //
3 : //
4 : // Copyright Information: See EvtGen/COPYRIGHT
5 : // Environment:
6 : // This software is part of the EvtGen package developed jointly
7 : // for the BaBar and CLEO collaborations. If you use all or part
8 : // of it, please give an appropriate acknowledgement.
9 : //
10 : //
11 : // Module: EvtGen/EvtBtoXsgammaAliGreubFcn.hh
12 : //
13 : // Description:
14 : // Class to generate non-resonant two-body b->s,gamma decays.
15 : //
16 : // Modification history:
17 : //
18 : // Mark Ian Williams July 20, 2000 Module created
19 : // Jane Tinslay March 21, 2000 Separated from EvtBtoXsgamma
20 : // class to allow choice of input models.
21 : //
22 : //------------------------------------------------------------------------
23 :
24 : #ifndef EVTBTOXSGAMMAALIGREUB_HH
25 : #define EVTBTOXSGAMMAALIGREUB_HH
26 : #include "EvtGenModels/EvtBtoXsgammaAbsModel.hh"
27 :
28 : class EvtBtoXsgammaAliGreub : public EvtBtoXsgammaAbsModel {
29 :
30 : public:
31 :
32 0 : EvtBtoXsgammaAliGreub() {}
33 :
34 : virtual ~EvtBtoXsgammaAliGreub();
35 :
36 : void init(int, double*);
37 :
38 : double GetMass(int code);
39 :
40 : private:
41 :
42 : };
43 :
44 : #endif
45 :
|