BOSS 7.0.9
BESIII Offline Software System
Loading...
Searching...
No Matches
bak-BesEvtGen-00-04-08/src/EvtGen/EvtGenModels/EvtEtap2gpipi.hh
Go to the documentation of this file.
1//--------------------------------------------------------------------------
2//
3// Environment:
4// This software is part of models developed at BES collaboration
5// based on the EvtGen framework. If you use all or part
6// of it, please give an appropriate acknowledgement.
7//
8// Copyright Information: See EvtGen/BesCopyright
9// Copyright (A) 2006 Ping Rong-Gang @IHEP
10//
11// Module: EvtEtap2gpipi.cc
12//
13// for etaprime -> gamma pipi without box contributions
14// see PHYSICAL REVIEW LETTERS 120, 242003 (2018) and refs. therein
15//
16// Description: Model provided by user, see the mannual
17//
18// Modification history:
19//
20// Ping R.-G. December, 2006 Module created
21//
22//------------------------------------------------------------------------
23
24#ifndef EvtETAP2GPIPI_HH
25#define EvtETAP2GPIPI_HH
26
27#include "EvtGenBase/EvtDecayIncoherent.hh"
28#include "EvtGenBase/EvtVector4R.hh"
29
30class EvtParticle;
31
33
34public:
35
37 virtual ~EvtEtap2gpipi();
38
39 void getName(std::string& name);
40
42
43 void initProbMax();
44
45 void init();
46
47 void decay(EvtParticle *p);
48
49 double AmplitudeSquare();
50 double AmplitudeSquare_p();
51
52 EvtVector4R GetDaugMomLab(int i){return _p4Lab[i];}
53 EvtVector4R GetDaugMomCM(int i){return _p4CM[i];}
54 EvtVector4R GetDaugMomHel(int i){return _p4Hel[i];}
55
56
57 int GetNdaug(){return _nd;}
58
59private:
60
61 static int nrun;
62 static double max_amps;
63
64 EvtVector4R _p4Lab[10],_p4CM[10],_p4Hel[10];
65 int _nd;
66
67};
68
69
70#endif
71