]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TEvtGen/EvtGenBase/EvtSemiLeptonicAmp.hh
Merge branch 'master' of https://git.cern.ch/reps/AliRoot
[u/mrichter/AliRoot.git] / TEvtGen / EvtGenBase / EvtSemiLeptonicAmp.hh
CommitLineData
da0e9ce3 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/EvtSemiLeptonicAmp.hh
12//
13// Description:Store decay parameters for one decay.
14//
15// Modification history:
16//
17// RYD September 30 1997 Module created
18//
19//------------------------------------------------------------------------
20
21#ifndef EVTSEMILEPTONICAMP_HH
22#define EVTSEMILEPTONICAMP_HH
23
24class EvtAmp;
25class EvtParticle;
26class EvtSemiLeptonicFF;
27class EvtId;
28
29class EvtSemiLeptonicAmp{
30
31 public:
0ca57c2f 32 virtual ~EvtSemiLeptonicAmp( ) { } ;
33
da0e9ce3 34 //Daughters are initialized and have been added to the parent.
35 //No need to carry around the daughters seperately!
36
37 virtual void CalcAmp( EvtParticle *parent, EvtAmp& amp,
38 EvtSemiLeptonicFF *FormFactors ) = 0;
39
40 double CalcMaxProb( EvtId parent, EvtId meson, EvtId lepton,
41 EvtId nudaug, EvtSemiLeptonicFF *FormFactors );
42
43
44};
45
46#endif