StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
EvtbTosllFFNew.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: EvtbTosllFFNew.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) Avril 18, 2008 Module created
18 //
19 //------------------------------------------------------------------------
20 
21 #ifndef EVTBTOSLLFFNEW_HH
22 #define EVTBTOSLLFFNEW_HH
23 
24 class EvtId; // see H.Schildt, p.297 (in russian)
25 
27 
28  public:
29  virtual ~EvtbTosllFFNew( ) { } ;
30 
31  virtual void getScalarFF(EvtId /*parent*/, EvtId /*daught*/,double /*t*/,
32  double& /*fp*/,double& /*f0*/,
33  double& /*ft*/) {return;}
34 
35  virtual void getVectorFF(EvtId /*parent*/, EvtId /*daught*/,double /*t*/,
36  double& /*a1*/, double& /*a2*/,
37  double& /*a0*/, double& /*v*/, double& /*t1*/,
38  double& /*t2*/, double& /*t3*/ ) {return;}
39 
40  virtual double getQuarkMass(int /*i*/) {return 0.0;}
41 
42 };
43 
44 #endif
Definition: EvtId.hh:27