]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TEvtGen/EvtGenModels/EvtSVP.hh
ATO-78 - Technical changes to compare different calibrations
[u/mrichter/AliRoot.git] / TEvtGen / EvtGenModels / EvtSVP.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//
0ca57c2f 11// Module: EvtGen/EvtSVP.hh
da0e9ce3 12//
0ca57c2f 13// Description:Implementation of the Melikhov semileptonic model
da0e9ce3 14//
15// Modification history:
16//
0ca57c2f 17// DJL April 20, 1998 Module created
da0e9ce3 18//
19//------------------------------------------------------------------------
20
0ca57c2f 21#ifndef EvtSVP_HH
22#define EvtSVP_HH
da0e9ce3 23
0ca57c2f 24#include <fstream>
25#include <stdio.h>
26
27
28#include "EvtGenBase/EvtDecayAmp.hh"
29#include "EvtGenBase/EvtSemiLeptonicFF.hh"
30#include "EvtGenBase/EvtSemiLeptonicAmp.hh"
da0e9ce3 31
32class EvtParticle;
33
0ca57c2f 34class EvtSVP:public EvtDecayAmp {
da0e9ce3 35
36public:
37
0ca57c2f 38 EvtSVP() {}
39 virtual ~EvtSVP();
da0e9ce3 40
41 std::string getName();
42 EvtDecayBase* clone();
43
0ca57c2f 44 void decay(EvtParticle *p);
da0e9ce3 45 void init();
da0e9ce3 46
0ca57c2f 47 virtual void initProbMax();
da0e9ce3 48
0ca57c2f 49
50private:
51 int ncall;
da0e9ce3 52};
53
54#endif
0ca57c2f 55