BOSS 8.0.0
BESIII Offline Software System
Loading...
Searching...
No Matches
EvtISGW2.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/EvtISGW2.hh
12//
13// Description:Implementation of the ISGW2 model
14// Class to handle semileptonic decays using the ISGW2
15// model, as described in PRD 52 5 (1995) by
16// Isgur and Scora. Electron, muon, and tau models
17// are available. Form factors, q2 and lepton energy
18// spectra checked against code from Scora.
19//
20// Modification history:
21//
22// DJL/RYD September 25, 1996 Module created
23//
24//------------------------------------------------------------------------
25
26#ifndef EVTISGW2_HH
27#define EVTISGW2_HH
28
32
33class EvtParticle;
34
35class EvtISGW2 : public EvtDecayAmp {
36
37public:
38 EvtISGW2();
39 virtual ~EvtISGW2();
40
41 void getName( std::string& name );
43
44 void decay( EvtParticle* p );
45 void initProbMax();
46 void init();
47
48private:
49 EvtSemiLeptonicFF* isgw2ffmodel;
50 EvtSemiLeptonicAmp* calcamp;
51};
52
53#endif
virtual ~EvtISGW2()
Definition EvtISGW2.cc:39
void decay(EvtParticle *p)
Definition EvtISGW2.cc:50
void initProbMax()
Definition EvtISGW2.cc:57
EvtDecayBase * clone()
Definition EvtISGW2.cc:48
void getName(std::string &name)
Definition EvtISGW2.cc:46
void init()
Definition EvtISGW2.cc:886