thepeg
is hosted by
Hepforge
,
IPPP Durham
ThePEG
2.3.0
Helicity
Vertex
AbstractRFVVertex.h
1
// -*- C++ -*-
2
#ifndef HELICITY_AbstractRFVVertex_H
3
#define HELICITY_AbstractRFVVertex_H
4
//
5
// This is the declaration of the AbstractRFVVertex class.
6
//
7
8
#include "VertexBase.h"
9
#include "ThePEG/Helicity/WaveFunction/SpinorWaveFunction.h"
10
#include "ThePEG/Helicity/WaveFunction/SpinorBarWaveFunction.h"
11
#include "ThePEG/Helicity/WaveFunction/RSSpinorWaveFunction.h"
12
#include "ThePEG/Helicity/WaveFunction/RSSpinorBarWaveFunction.h"
13
#include "ThePEG/Helicity/WaveFunction/VectorWaveFunction.h"
14
#include "AbstractRFVVertex.fh"
15
16
namespace
ThePEG
{
17
namespace
Helicity {
18
23
class
AbstractRFVVertex
:
public
VertexBase
{
24
25
public
:
26
30
AbstractRFVVertex
() :
VertexBase
(VertexType::RFV) {}
31
44
virtual
Complex
evaluate
(
Energy2
q2,
const
RSSpinorWaveFunction
& sp1,
45
const
SpinorBarWaveFunction
& sbar2,
46
const
VectorWaveFunction
& vec3) = 0;
47
55
virtual
Complex
evaluate
(
Energy2
q2,
const
SpinorWaveFunction
& sp1,
56
const
RSSpinorBarWaveFunction
& sbar2,
57
const
VectorWaveFunction
& vec3) = 0;
58
71
virtual
SpinorBarWaveFunction
evaluate
(
Energy2
q2,
int
iopt,
tcPDPtr
out,
72
const
RSSpinorBarWaveFunction
& sbar2,
73
const
VectorWaveFunction
& vec3,
74
complex<Energy> mass=-GeV, complex<Energy> width=-GeV) = 0;
75
88
virtual
RSSpinorBarWaveFunction
evaluate
(
Energy2
q2,
int
iopt,
tcPDPtr
out,
89
const
SpinorBarWaveFunction
& sbar2,
90
const
VectorWaveFunction
& vec3,
91
complex<Energy> mass=-GeV, complex<Energy> width=-GeV) = 0;
92
105
virtual
VectorWaveFunction
evaluate
(
Energy2
q2,
int
iopt,
tcPDPtr
out,
106
const
RSSpinorWaveFunction
& sp1,
107
const
SpinorBarWaveFunction
& sbar2,
108
complex<Energy> mass=-GeV, complex<Energy> width=-GeV) = 0;
109
122
virtual
VectorWaveFunction
evaluate
(
Energy2
q2,
int
iopt,
tcPDPtr
out,
123
const
SpinorWaveFunction
& sp1,
124
const
RSSpinorBarWaveFunction
& sbar2,
125
complex<Energy> mass=-GeV, complex<Energy> width=-GeV) = 0;
126
139
virtual
SpinorWaveFunction
evaluate
(
Energy2
q2,
int
iopt,
tcPDPtr
out,
140
const
RSSpinorWaveFunction
& sp1,
141
const
VectorWaveFunction
& vec3,
142
complex<Energy> mass=-GeV, complex<Energy> width=-GeV) = 0;
143
156
virtual
RSSpinorWaveFunction
evaluate
(
Energy2
q2,
int
iopt,
tcPDPtr
out,
157
const
SpinorWaveFunction
& sp1,
158
const
VectorWaveFunction
& vec3,
159
complex<Energy> mass=-GeV, complex<Energy> width=-GeV) = 0;
161
162
public
:
163
170
static
void
Init
();
171
172
private
:
173
178
AbstractRFVVertex
&
operator=
(
const
AbstractRFVVertex
&) =
delete
;
179
180
};
181
182
}
183
}
184
185
186
namespace
ThePEG
{
187
188
}
189
#endif
/* HELICITY_AbstractRFVVertex_H */
ThePEG::Helicity::AbstractRFVVertex
The AbstractRFVVertex class provides a base class for all spin-3/2 fermion-fermion-vector vertices in...
Definition:
AbstractRFVVertex.h:23
ThePEG::Helicity::AbstractRFVVertex::operator=
AbstractRFVVertex & operator=(const AbstractRFVVertex &)=delete
The assignment operator is private and must never be called.
ThePEG::Helicity::AbstractRFVVertex::evaluate
virtual VectorWaveFunction evaluate(Energy2 q2, int iopt, tcPDPtr out, const SpinorWaveFunction &sp1, const RSSpinorBarWaveFunction &sbar2, complex< Energy > mass=-GeV, complex< Energy > width=-GeV)=0
Evaluate the off-shell vector coming from the vertex.
ThePEG::Helicity::AbstractRFVVertex::evaluate
virtual RSSpinorBarWaveFunction evaluate(Energy2 q2, int iopt, tcPDPtr out, const SpinorBarWaveFunction &sbar2, const VectorWaveFunction &vec3, complex< Energy > mass=-GeV, complex< Energy > width=-GeV)=0
Evaluate the off-shell barred spinor coming from the vertex.
ThePEG::Helicity::AbstractRFVVertex::AbstractRFVVertex
AbstractRFVVertex()
Default constructor.
Definition:
AbstractRFVVertex.h:30
ThePEG::Helicity::AbstractRFVVertex::evaluate
virtual Complex evaluate(Energy2 q2, const RSSpinorWaveFunction &sp1, const SpinorBarWaveFunction &sbar2, const VectorWaveFunction &vec3)=0
Members to calculate the helicity amplitude expressions for vertices and off-shell particles.
ThePEG::Helicity::AbstractRFVVertex::evaluate
virtual SpinorWaveFunction evaluate(Energy2 q2, int iopt, tcPDPtr out, const RSSpinorWaveFunction &sp1, const VectorWaveFunction &vec3, complex< Energy > mass=-GeV, complex< Energy > width=-GeV)=0
Evaluate the off-shell spinor coming from the vertex.
ThePEG::Helicity::AbstractRFVVertex::evaluate
virtual RSSpinorWaveFunction evaluate(Energy2 q2, int iopt, tcPDPtr out, const SpinorWaveFunction &sp1, const VectorWaveFunction &vec3, complex< Energy > mass=-GeV, complex< Energy > width=-GeV)=0
Evaluate the off-shell spinor coming from the vertex.
ThePEG::Helicity::AbstractRFVVertex::evaluate
virtual SpinorBarWaveFunction evaluate(Energy2 q2, int iopt, tcPDPtr out, const RSSpinorBarWaveFunction &sbar2, const VectorWaveFunction &vec3, complex< Energy > mass=-GeV, complex< Energy > width=-GeV)=0
Evaluate the off-shell barred spinor coming from the vertex.
ThePEG::Helicity::AbstractRFVVertex::evaluate
virtual Complex evaluate(Energy2 q2, const SpinorWaveFunction &sp1, const RSSpinorBarWaveFunction &sbar2, const VectorWaveFunction &vec3)=0
Evalulate the vertex.
ThePEG::Helicity::AbstractRFVVertex::Init
static void Init()
The standard Init function used to initialize the interfaces.
ThePEG::Helicity::AbstractRFVVertex::evaluate
virtual VectorWaveFunction evaluate(Energy2 q2, int iopt, tcPDPtr out, const RSSpinorWaveFunction &sp1, const SpinorBarWaveFunction &sbar2, complex< Energy > mass=-GeV, complex< Energy > width=-GeV)=0
Evaluate the off-shell vector coming from the vertex.
ThePEG::Helicity::RSSpinorBarWaveFunction
The RSSpinorBarWaveFunction class is designed to store the wavefunction of a spin- particle in a for...
Definition:
RSSpinorBarWaveFunction.h:60
ThePEG::Helicity::RSSpinorWaveFunction
The RSSpinorWaveFunction class is designed to store the wavefunction of a spin-3/2 particle in a form...
Definition:
RSSpinorWaveFunction.h:58
ThePEG::Helicity::SpinorBarWaveFunction
Definition:
SpinorBarWaveFunction.h:57
ThePEG::Helicity::SpinorWaveFunction
Definition:
SpinorWaveFunction.h:56
ThePEG::Helicity::VectorWaveFunction
Definition:
VectorWaveFunction.h:50
ThePEG::Helicity::VertexBase
The VertexBase class is the base class for all helicity amplitude vertices.
Definition:
VertexBase.h:83
ThePEG::Pointer::TransientConstRCPtr
TransientConstRCPtr is a simple wrapper around a bare const pointer which can be assigned to and from...
Definition:
RCPtr.h:696
ThePEG::Qty< 0, 2, 0 >
ThePEG
This is the main namespace within which all identifiers in ThePEG are declared.
Definition:
FactoryBase.h:28
ThePEG::Complex
std::complex< double > Complex
ThePEG code should use Complex for all complex scalars.
Definition:
Complex.h:23
Generated on Thu Jun 20 2024 14:47:00 for ThePEG by
1.9.6