Line data Source code
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/EvtBcVMuNu.hh
12 : //
13 : // Description:Implementation of the model for semileptonic Bc decays
14 : //
15 : // Modification history:
16 : //
17 : // DJL April 20, 1998 Module created
18 : //
19 : //------------------------------------------------------------------------
20 :
21 : #ifndef EVTBcVMuNu_HH
22 : #define EVTBcVMuNu_HH
23 :
24 : #include <fstream>
25 : #include <stdio.h>
26 :
27 : #include "EvtGenBase/EvtDecayAmp.hh"
28 : #include "EvtGenBase/EvtSemiLeptonicFF.hh"
29 : #include "EvtGenBase/EvtSemiLeptonicAmp.hh"
30 :
31 : class EvtParticle;
32 :
33 : class EvtBcVMuNu: public EvtDecayAmp {
34 :
35 : public:
36 :
37 0 : EvtBcVMuNu() {}
38 : virtual ~EvtBcVMuNu();
39 :
40 : std::string getName();
41 : EvtDecayBase* clone();
42 :
43 : void decay(EvtParticle *p);
44 : void init();
45 :
46 : virtual void initProbMax();
47 :
48 :
49 : private:
50 : EvtSemiLeptonicFF *ffmodel;
51 : EvtSemiLeptonicAmp *calcamp;
52 : int whichfit;
53 : int idVector;
54 : };
55 :
56 : #endif
57 :
|