BOSS 7.0.2
BESIII Offline Software System
Loading...
Searching...
No Matches
EvtRexc.hh
Go to the documentation of this file.
1//--------------------------------------------------------------------------
2// pingrg-2014-10-16
3// Model REXC : used to decay vgam to the final state as in ConExc model
4// Name: REXC: R-scan exclusive decay model
5// Decay cards:
6// Decay vgam
7// 1 REXC;
8// Enddecay
9// particle vgam is mandatory
10//------------------------------------------------------------------------
11
12#ifndef EVTREXC_HH
13#define EVTREXC_HH
14
17class EvtParticle;
18
20
21public:
22
24 virtual ~EvtRexc();
25
26 void getName(std::string& name);
27
29
30 void initProbMax();
31
32 void init();
33
34 void decay(EvtParticle *p);
35
36 double baryonAng(double mx);
38private:
39 EvtConExc *myconexc;
40 double cosp,cosk;
41};
42
43#endif
44
virtual ~EvtRexc()
Definition: EvtRexc.cc:21
void init()
Definition: EvtRexc.cc:36
void decay(EvtParticle *p)
Definition: EvtRexc.cc:49
EvtDecayBase * clone()
Definition: EvtRexc.cc:29
bool angularSampling(EvtParticle *par)
Definition: EvtRexc.cc:80
void initProbMax()
Definition: EvtRexc.cc:43
EvtRexc()
Definition: EvtRexc.hh:23
double baryonAng(double mx)
Definition: EvtRexc.cc:102
void getName(std::string &name)
Definition: EvtRexc.cc:23