StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
EvtBCVFF.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) 1998 Caltech, UCSB
10 //
11 // Module: EvtGen/EvtBCVFF.hh
12 //
13 // Description: Form factors for EvtBCVFF model
14 //
15 // Modification history:
16 //
17 // DJL April 20, 1998 Module created
18 //
19 //------------------------------------------------------------------------
20 
21 #ifndef EVTBCVFF_HH
22 #define EVTBCVFF_HH
23 
24 #include "EvtGenBase/EvtSemiLeptonicFF.hh"
25 
26 class EvtId;
27 
28 class EvtBCVFF : public EvtSemiLeptonicFF {
29 
30 public:
31 
32  EvtBCVFF(int idV, int fit);
33  void getvectorff( EvtId parent, EvtId daught,
34  double t, double mass, double *a1f,
35  double *a2f, double *vf, double *a0f );
36 
37  void getscalarff(EvtId, EvtId, double, double, double*,
38  double*);
39 
40  void gettensorff(EvtId, EvtId, double, double, double*,
41  double*, double*, double*);
42 
43  void getbaryonff(EvtId, EvtId, double, double, double*,
44  double*, double*, double*);
45 
46  void getdiracff(EvtId, EvtId, double, double, double*, double*,
47  double*, double*, double*, double*);
48 
49  void getraritaff(EvtId, EvtId, double, double, double*, double*,
50  double*, double*, double*, double*, double*, double*);
51 
52 private:
53 
54  int idVector, whichfit;
55 
56 };
57 
58 #endif
59 
Definition: EvtId.hh:27