BOSS 7.0.9
BESIII Offline Software System
Loading...
Searching...
No Matches
bak-BesEvtGen-00-04-08/src/EvtGen/EvtGenModels/EvtEDM.hh
Go to the documentation of this file.
1//--------------------------------------------------------------------------
2//
3// Environment:
4//
5// Module: EvtEDM.cc
6//
7// Description: tau pair production with EDM, see PRD55, 1643
8// L = tau_bar sigma^{mu,nu} gamma_5 tau
9//
10// Modification history:
11//
12// Ping RG Dec 23, 2013 Module created
13//
14//------------------------------------------------------------------------
15#ifndef EVTEDM_HH
16#define EVTEDM_HH
17
18#include "EvtGenBase/EvtDecayAmp.hh"
19
20class EvtParticle;
21
22class EvtEDM:public EvtDecayAmp {
23
24public:
25
26 EvtEDM() {}
27 virtual ~EvtEDM();
28
29 void getName(std::string& name);
31
32 void initProbMax();
33 void init();
34 void decay(EvtParticle *p);
35
36};
37
38#endif