CGEM BOSS 6.6.5.f
BESIII Offline Software System
Loading...
Searching...
No Matches
EvtMelikhov.hh
Go to the documentation of this file.
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/EvtMelikhov.hh
12//
13// Description:Implementation of the Melikhov semileptonic model
14//
15// Modification history:
16//
17// DJL April 20, 1998 Module created
18//
19//------------------------------------------------------------------------
20
21#ifndef EVTMELIKHOV_HH
22#define EVTMELIKHOV_HH
23
24#include <fstream>
25#include <stdio.h>
26
27
31
32class EvtParticle;
33
35
36public:
37
39 virtual ~EvtMelikhov();
40
41 void getName(std::string& name);
43
44 void decay(EvtParticle *p);
45 void init();
46
47private:
48 EvtSemiLeptonicFF *Melikhovffmodel;
49 EvtSemiLeptonicAmp *calcamp;
50};
51
52#endif
53
virtual ~EvtMelikhov()
Definition: EvtMelikhov.cc:33
void init()
Definition: EvtMelikhov.cc:54
EvtDecayBase * clone()
Definition: EvtMelikhov.cc:41
void decay(EvtParticle *p)
Definition: EvtMelikhov.cc:47
void getName(std::string &name)
Definition: EvtMelikhov.cc:35