]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TEvtGen/EvtGenModels/EvtBaryonPCR.hh
Updates EvtGen Code
[u/mrichter/AliRoot.git] / TEvtGen / EvtGenModels / EvtBaryonPCR.hh
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:
9 //      Copyright (C) 1998      Caltech, UCSB
10 //
11 // Module: EvtGen/EvtBaryonPCR.hh
12 //
13 // Description:Implementation of the BaryonPCR model
14 // Class to handle semileptonic decays using the BaryonVminusA
15 // model.
16 //
17 // Modification history:
18 //
19 //    R.J. Tesarek     May 28, 2004     Module created
20 //    Karen Gibson     1/20/2006        Module updated for 1/2+->1/2+,
21 //                                      1/2+->1/2-, 1/2+->3/2- Lambda decays
22 //
23 //------------------------------------------------------------------------
24
25 #ifndef EVTBARYONPCR_HH
26 #define EVTBARYONPCR_HH
27
28 #include "EvtGenBase/EvtDecayAmp.hh"
29 #include "EvtGenBase/EvtSemiLeptonicFF.hh"
30 #include "EvtGenBase/EvtSemiLeptonicBaryonAmp.hh"
31
32 class EvtParticle;
33
34 class EvtBaryonPCR:public  EvtDecayAmp  {
35
36 public:
37
38   EvtBaryonPCR();
39   virtual ~EvtBaryonPCR();
40
41   std::string getName();
42   EvtDecayBase* clone();
43
44   void decay(EvtParticle *p);
45   void initProbMax();
46   void init();
47
48 private:
49   EvtSemiLeptonicFF *baryonpcrffmodel;
50   EvtSemiLeptonicBaryonAmp *calcamp;
51 };
52
53 #endif
54