StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
EvtSVPHelAmp.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/EvtSVPHelAmp.hh
12 //
13 // Description: Routine to decay scalar -> vector + photon
14 // by specifying the helicity amplitudes
15 //
16 // Modification history:
17 //
18 // DJL/RYD August 11, 1998 Module created
19 // Clara Remon (Clara.Remon@ific.uv.es) September 24, 2015 Function SVPHel created
20 //
21 //------------------------------------------------------------------------
22 
23 #ifndef EVTSVPHELAMP_HH
24 #define EVTSVPHELAMP_HH
25 
26 #include "EvtGenBase/EvtDecayAmp.hh"
27 
28 //Class to handle decays of the form SCALAR -> VECTOR PHOTON
29 //where the helicity amplitudes must be specified. The
30 //first and third arguments are the magnitudes of the H+
31 //and H- helicity amplitudes respectively. The second and
32 //fourth arguements are the phases.
33 //Calls EvtSVPHel.
34 
35 class EvtParticle;
36 class EvtAmp;
37 class EvtId;
38 
39 class EvtSVPHelAmp:public EvtDecayAmp {
40 
41 public:
42 
43  EvtSVPHelAmp() {}
44  virtual ~EvtSVPHelAmp();
45 
46  std::string getName();
47  EvtDecayBase* clone();
48 
49  void init();
50  void initProbMax();
51 
52  void decay(EvtParticle *p);
53 
54  static void SVPHel(EvtParticle *parent, EvtAmp& amp, EvtId n_v1, EvtId n_ph,
55  const EvtComplex& hp, const EvtComplex& hm);
56 
57 
58 };
59 
60 #endif
Definition: EvtId.hh:27
Definition: EvtAmp.hh:30