]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TEvtGen/EvtGenModels/EvtPVVCPLH.hh
Updates EvtGen Code
[u/mrichter/AliRoot.git] / TEvtGen / EvtGenModels / EvtPVVCPLH.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
0ca57c2f 9// Copyright (C) 1999 Caltech, UCSB
da0e9ce3 10//
0ca57c2f 11// Module: EvtGen/EvtPVVCPLH.hh
da0e9ce3 12//
13// Description:
14//
15// Modification history:
16//
0ca57c2f 17// RYD November 5, 1999 Module created
18//
19// TDP October 10, 2006 Modified
da0e9ce3 20//
21//------------------------------------------------------------------------
22
0ca57c2f 23#ifndef EVTPVVCPLH_HH
24#define EVTPVVCPLH_HH
da0e9ce3 25
0ca57c2f 26#include "EvtGenBase/EvtDecayAmp.hh"
da0e9ce3 27
28class EvtParticle;
29
0ca57c2f 30class EvtPVVCPLH:public EvtDecayAmp {
da0e9ce3 31
32public:
33
0ca57c2f 34 EvtPVVCPLH() {}
35 virtual ~EvtPVVCPLH();
da0e9ce3 36
0ca57c2f 37 virtual std::string getName();
da0e9ce3 38 EvtDecayBase* clone();
39
da0e9ce3 40 void initProbMax();
0ca57c2f 41 void init();
da0e9ce3 42
43 void decay(EvtParticle *p);
0ca57c2f 44
45private:
46 bool isBsMixed ( EvtParticle * p ) ;
47
da0e9ce3 48
49};
50
51#endif