StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
EvtXPsiGamma.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: See EvtGen/COPYRIGHT
9 // Copyright (C) 1998 Caltech, UCSB
10 //
11 // Module: EvtGen/EvtXPsiGamma.hh
12 //
13 // Description:Implementation of the X3872(2-+) -> J/psi gamma decay
14 //
15 // Modification history:
16 //
17 // 7 May 2012: Module created
18 //
19 //------------------------------------------------------------------------
20 
21 #ifndef EVTXPSIGAMMA_HH
22 #define EVTXPSIGAMMA_HH
23 
24 #include <fstream>
25 #include <stdio.h>
26 
27 
28 #include "EvtGenBase/EvtDecayAmp.hh"
29 
30 class EvtParticle;
31 
32 class EvtXPsiGamma: public EvtDecayAmp {
33 
34 public:
35 
36  EvtXPsiGamma() {}
37  virtual ~EvtXPsiGamma();
38 
39  std::string getName();
40  EvtDecayBase* clone();
41 
42  void decay(EvtParticle *p);
43  void init();
44 
45  virtual void initProbMax();
46 
47 
48 private:
49 // int whichfit;
50  EvtComplex fT2(EvtVector4R p, EvtVector4R q , EvtTensor4C epsPI, EvtVector4C epsEps, EvtVector4C epsEta);
51  EvtComplex fT3(EvtVector4R p, EvtVector4R q , EvtTensor4C epsPI, EvtVector4C epsEps, EvtVector4C epsEta);
52  EvtId _ID0;
53  int ncall;
54 };
55 
56 #endif
57 
Definition: EvtId.hh:27