thepeg is hosted by Hepforge, IPPP Durham
ThePEG 2.3.0
RFVVertex.h
1// -*- C++ -*-
2//
3// RFVVertex.h is a part of ThePEG - Toolkit for HEP Event Generation
4// Copyright (C) 2003-2019 Peter Richardson, Leif Lonnblad
5//
6// ThePEG is licenced under version 3 of the GPL, see COPYING for details.
7// Please respect the MCnet academic guidelines, see GUIDELINES for details.
8//
9#ifndef ThePEG_RFVVertex_H
10#define ThePEG_RFVVertex_H
11//
12// This is the declaration of the RFVVertex class.
13
14#include <ThePEG/Helicity/Vertex/AbstractRFVVertex.h>
15#include <ThePEG/Helicity/WaveFunction/VectorWaveFunction.h>
16#include <ThePEG/Helicity/WaveFunction/SpinorWaveFunction.h>
17#include <ThePEG/Helicity/WaveFunction/SpinorBarWaveFunction.h>
18#include "RFVVertex.fh"
19
20namespace ThePEG {
21
22namespace Helicity{
23
43
44public:
45
49 static void Init();
50
51public:
52
66 const SpinorBarWaveFunction & sbar2,
67 const VectorWaveFunction & vec3);
68
77 const RSSpinorBarWaveFunction & sbar2,
78 const VectorWaveFunction & vec3);
79
93 const RSSpinorBarWaveFunction & sbar2,
94 const VectorWaveFunction & vec3,
95 complex<Energy> mass=-GeV, complex<Energy> width=-GeV);
96
110 const SpinorBarWaveFunction & sbar2,
111 const VectorWaveFunction & vec3,
112 complex<Energy> mass=-GeV, complex<Energy> width=-GeV);
113
127 const RSSpinorWaveFunction & sp1,
128 const SpinorBarWaveFunction & sbar2,
129 complex<Energy> mass=-GeV, complex<Energy> width=-GeV);
130
144 const SpinorWaveFunction & sp1,
145 const RSSpinorBarWaveFunction & sbar2,
146 complex<Energy> mass=-GeV, complex<Energy> width=-GeV);
147
161 const SpinorWaveFunction & sp1,
162 const VectorWaveFunction & vec3,
163 complex<Energy> mass=-GeV, complex<Energy> width=-GeV);
164
178 const RSSpinorWaveFunction & sp1,
179 const VectorWaveFunction & vec3,
180 complex<Energy> mass=-GeV, complex<Energy> width=-GeV);
182
196 virtual void setCoupling(Energy2 q2,tcPDPtr part1,
197 tcPDPtr part2,tcPDPtr part3)=0;
198
205 assert(false);
206 }
208
216 const vector<Complex> & left() const { return _left; }
217
221 const vector<Complex> & right() const { return _right; }
223
224protected:
225
233 void left(const vector<Complex> & in) { _left = in; }
234
238 void right(const vector<Complex> & in) { _right = in; }
240
241private:
242
246 RFVVertex & operator=(const RFVVertex &) = delete;
247
248private:
249
253 vector<Complex> _left;
254
258 vector<Complex> _right;
259
260};
261}
262
263}
264#endif /* ThePEG_RFVVertex_H */
The AbstractRFVVertex class provides a base class for all spin-3/2 fermion-fermion-vector vertices in...
The RFVVertex class is the base class for all helicity amplitude vertices which use the renormalisabl...
Definition: RFVVertex.h:42
RSSpinorWaveFunction evaluate(Energy2 q2, int iopt, tcPDPtr out, const SpinorWaveFunction &sp1, const VectorWaveFunction &vec3, complex< Energy > mass=-GeV, complex< Energy > width=-GeV)
Evaluate the off-shell spinor coming from the vertex.
Complex evaluate(Energy2 q2, const RSSpinorWaveFunction &sp1, const SpinorBarWaveFunction &sbar2, const VectorWaveFunction &vec3)
Members to calculate the helicity amplitude expressions for vertices and off-shell particles.
SpinorBarWaveFunction evaluate(Energy2 q2, int iopt, tcPDPtr out, const RSSpinorBarWaveFunction &sbar2, const VectorWaveFunction &vec3, complex< Energy > mass=-GeV, complex< Energy > width=-GeV)
Evaluate the off-shell barred spinor coming from the vertex.
const vector< Complex > & left() const
Get the Couplings.
Definition: RFVVertex.h:216
vector< Complex > _left
Left coupling.
Definition: RFVVertex.h:253
VectorWaveFunction evaluate(Energy2 q2, int iopt, tcPDPtr out, const SpinorWaveFunction &sp1, const RSSpinorBarWaveFunction &sbar2, complex< Energy > mass=-GeV, complex< Energy > width=-GeV)
Evaluate the off-shell vector coming from the vertex.
RFVVertex & operator=(const RFVVertex &)=delete
Private and non-existent assignment operator.
virtual void setCoupling(Energy2, tcPDPtr, tcPDPtr, tcPDPtr, tcPDPtr)
Dummy setCouplings for a four point interaction This method is virtual and must be implemented in cla...
Definition: RFVVertex.h:204
RSSpinorBarWaveFunction evaluate(Energy2 q2, int iopt, tcPDPtr out, const SpinorBarWaveFunction &sbar2, const VectorWaveFunction &vec3, complex< Energy > mass=-GeV, complex< Energy > width=-GeV)
Evaluate the off-shell barred spinor coming from the vertex.
vector< Complex > _right
Right coupling.
Definition: RFVVertex.h:258
Complex evaluate(Energy2 q2, const SpinorWaveFunction &sp1, const RSSpinorBarWaveFunction &sbar2, const VectorWaveFunction &vec3)
Evalulate the vertex.
static void Init()
Standard Init function used to initialize the interfaces.
void left(const vector< Complex > &in)
Set the couplings.
Definition: RFVVertex.h:233
const vector< Complex > & right() const
Get the right coupling.
Definition: RFVVertex.h:221
SpinorWaveFunction evaluate(Energy2 q2, int iopt, tcPDPtr out, const RSSpinorWaveFunction &sp1, const VectorWaveFunction &vec3, complex< Energy > mass=-GeV, complex< Energy > width=-GeV)
Evaluate the off-shell spinor coming from the vertex.
virtual void setCoupling(Energy2 q2, tcPDPtr part1, tcPDPtr part2, tcPDPtr part3)=0
Set coupling methods.
void right(const vector< Complex > &in)
Set the right coupling.
Definition: RFVVertex.h:238
VectorWaveFunction evaluate(Energy2 q2, int iopt, tcPDPtr out, const RSSpinorWaveFunction &sp1, const SpinorBarWaveFunction &sbar2, complex< Energy > mass=-GeV, complex< Energy > width=-GeV)
Evaluate the off-shell vector coming from the vertex.
The RSSpinorBarWaveFunction class is designed to store the wavefunction of a spin- particle in a for...
The RSSpinorWaveFunction class is designed to store the wavefunction of a spin-3/2 particle in a form...
TransientConstRCPtr is a simple wrapper around a bare const pointer which can be assigned to and from...
Definition: RCPtr.h:696
This is the main namespace within which all identifiers in ThePEG are declared.
Definition: FactoryBase.h:28
std::complex< double > Complex
ThePEG code should use Complex for all complex scalars.
Definition: Complex.h:23