BOSS 7.0.9
BESIII Offline Software System
Loading...
Searching...
No Matches
bak-BesEvtGen-00-04-08/src/EvtGen/EvtGenModels/EvtHQET2.hh
Go to the documentation of this file.
1//--------------------------------------------------------------------------
2//
3// Module: EvtGen/EvtHQET2.hh
4//
5// Description:Implementation of the HQET model with dispersive FF due to
6// Caprini et al.
7//
8// Modification history:
9//
10// Marco Bomben March 11, 2003 Module created
11//
12//------------------------------------------------------------------------
13
14#ifndef EVTHQET2_HH
15#define EVTHQET2_HH
16
17#include "EvtGenBase/EvtDecayAmp.hh"
18#include "EvtGenBase/EvtSemiLeptonicFF.hh"
19#include "EvtGenBase/EvtSemiLeptonicAmp.hh"
20
21class EvtParticle;
22
23class EvtHQET2:public EvtDecayAmp {
24
25public:
26
27 EvtHQET2();
28 virtual ~EvtHQET2();
29
30 void getName(std::string& name);
32
33 void decay(EvtParticle *p);
34 void initProbMax();
35 void init();
36
37private:
38 EvtSemiLeptonicFF *hqetffmodel;
39 EvtSemiLeptonicAmp *calcamp;
40};
41#endif
42
43
44