StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
Evtbs2llGammaFF.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) 2000 Caltech
10 //
11 // Module: Evtbs2llGammaFF.hh
12 //
13 // Description: This is the NEW base class for form factors in b->sll transitions.
14 //
15 // Modification history:
16 //
17 // N.Nikitin (nnikit@mail.cern.ch) October 13, 2008 Module created
18 // A.Popov October 30, 2008 Add function "getPhotonFF"
19 //
20 //--------------------------------------------------------------------------------
21 
22 #ifndef EVTBS2LLGAMMAFF_HH
23 #define EVTBS2LLGAMMAFF_HH
24 
25 class EvtId; // see H.Schildt, p.297 (in russian)
26 class EvtComplex;
27 
29  public:
30  virtual ~Evtbs2llGammaFF( ) { } ;
31 
32  virtual void getPhotonFF(int /*decay_id*/, double /*fb*/, EvtId /*parent*/,
33  double /*q2*/, double /*M1*/, double /*mb*/,
34  double /*mq*/, EvtComplex /*c7gam*/, EvtComplex /*a1*/,
35  EvtComplex /*lambda_qu */, EvtComplex /*lambda_qc*/,
36  EvtComplex& /*Fv*/, EvtComplex& /*Fa*/,
37  EvtComplex& /*Ftv*/, EvtComplex& /*Fta*/) {return;};
38 
39  virtual double getQuarkMass(int /*i*/) {return 0.0;};
40 
41 };
42 
43 #endif
Definition: EvtId.hh:27