herwig
is hosted by
Hepforge
,
IPPP Durham
Herwig
7.3.0
MatrixElement
General
MEff2vv.h
1
// -*- C++ -*-
2
//
3
// MEff2vv.h is a part of Herwig - A multi-purpose Monte Carlo event generator
4
// Copyright (C) 2002-2019 The Herwig Collaboration
5
//
6
// Herwig 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 HERWIG_MEff2vv_H
10
#define HERWIG_MEff2vv_H
11
//
12
// This is the declaration of the MEff2vv class.
13
//
14
15
#include "GeneralHardME.h"
16
#include "ThePEG/Helicity/Vertex/AbstractFFVVertex.h"
17
#include "ThePEG/Helicity/Vertex/AbstractFFTVertex.h"
18
#include "ThePEG/Helicity/Vertex/AbstractFFSVertex.h"
19
#include "ThePEG/Helicity/Vertex/AbstractVVSVertex.h"
20
#include "ThePEG/Helicity/Vertex/AbstractVVTVertex.h"
21
#include "ThePEG/Helicity/Vertex/AbstractVVVVertex.h"
22
#include "ThePEG/Helicity/WaveFunction/SpinorWaveFunction.h"
23
#include "ThePEG/Helicity/WaveFunction/SpinorBarWaveFunction.h"
24
#include "ThePEG/Helicity/WaveFunction/VectorWaveFunction.h"
25
#include "Herwig/MatrixElement/ProductionMatrixElement.h"
26
27
namespace
Herwig
{
28
using namespace
ThePEG
;
29
using
ThePEG::Helicity::SpinorWaveFunction
;
30
using
ThePEG::Helicity::SpinorBarWaveFunction
;
31
using
ThePEG::Helicity::VectorWaveFunction
;
32
40
class
MEff2vv
:
public
GeneralHardME
{
41
public
:
42
44
typedef
vector<SpinorWaveFunction>
SpinorVector
;
45
47
typedef
vector<SpinorBarWaveFunction>
SpinorBarVector
;
48
50
typedef
vector<VectorWaveFunction>
VBVector
;
51
52
public
:
53
57
MEff2vv
() :
vector_
(0),
tensor_
(0),
scalar_
(0) {}
58
68
virtual
double
me2
()
const
;
70
75
virtual
void
constructVertex
(
tSubProPtr
sub);
76
77
78
protected
:
79
85
virtual
void
debug
(
double
me2
)
const
;
86
87
private
:
88
101
ProductionMatrixElement
102
ff2vvME
(
const
SpinorVector
& sp,
const
SpinorBarVector
sbar,
103
const
VBVector
& v1,
bool
m1,
const
VBVector
& v2,
bool
m2,
104
double
&
me2
,
bool
first)
const
;
105
106
public
:
107
114
void
persistentOutput
(
PersistentOStream
& os)
const
;
115
121
void
persistentInput
(
PersistentIStream
& is,
int
version);
123
130
static
void
Init
();
131
132
protected
:
133
140
virtual
IBPtr
clone
()
const
{
return
new_ptr(*
this
);}
141
146
virtual
IBPtr
fullclone
()
const
{
return
new_ptr(*
this
);}
148
149
protected
:
150
158
virtual
void
doinit
();
160
161
private
:
162
167
MEff2vv
&
operator=
(
const
MEff2vv
&) =
delete
;
168
169
private
:
170
175
vector<pair<AbstractFFVVertexPtr, AbstractFFVVertexPtr> >
fermion_
;
176
181
vector<pair<AbstractFFVVertexPtr, AbstractVVVVertexPtr> >
vector_
;
182
187
vector<pair<AbstractFFTVertexPtr, AbstractVVTVertexPtr> >
tensor_
;
188
193
vector<pair<AbstractFFSVertexPtr, AbstractVVSVertexPtr> >
scalar_
;
194
};
195
196
}
197
198
#endif
/* HERWIG_MEff2vv_H */
Herwig::GeneralHardME
This defines the GeneralHardME class that is designed to serve as a base class for matrix elements of...
Definition:
GeneralHardME.h:40
Herwig::MEff2vv
This class implements the matrix element calculation for a generic process.
Definition:
MEff2vv.h:40
Herwig::MEff2vv::vector_
vector< pair< AbstractFFVVertexPtr, AbstractVVVVertexPtr > > vector_
Storage for a dynamically cast vertices for a schannel vector intermediate.
Definition:
MEff2vv.h:181
Herwig::MEff2vv::debug
virtual void debug(double me2) const
A debugging function to test the value of me2 against an analytic function.
Herwig::MEff2vv::persistentInput
void persistentInput(PersistentIStream &is, int version)
Function used to read in object persistently.
Herwig::MEff2vv::SpinorVector
vector< SpinorWaveFunction > SpinorVector
Vector of SpinorWaveFunctions objects.
Definition:
MEff2vv.h:44
Herwig::MEff2vv::MEff2vv
MEff2vv()
The default constructor.
Definition:
MEff2vv.h:57
Herwig::MEff2vv::me2
virtual double me2() const
The matrix element for the kinematical configuration previously provided by the last call to setKinem...
Herwig::MEff2vv::constructVertex
virtual void constructVertex(tSubProPtr sub)
Construct the vertex information for the spin correlations.
Herwig::MEff2vv::persistentOutput
void persistentOutput(PersistentOStream &os) const
Function used to write out object persistently.
Herwig::MEff2vv::tensor_
vector< pair< AbstractFFTVertexPtr, AbstractVVTVertexPtr > > tensor_
Storage for a dynamically cast vertices for a schannel scalar intermediate.
Definition:
MEff2vv.h:187
Herwig::MEff2vv::ff2vvME
ProductionMatrixElement ff2vvME(const SpinorVector &sp, const SpinorBarVector sbar, const VBVector &v1, bool m1, const VBVector &v2, bool m2, double &me2, bool first) const
Compute the production matrix element.
Herwig::MEff2vv::clone
virtual IBPtr clone() const
Make a simple clone of this object.
Definition:
MEff2vv.h:140
Herwig::MEff2vv::operator=
MEff2vv & operator=(const MEff2vv &)=delete
The assignment operator is private and must never be called.
Herwig::MEff2vv::scalar_
vector< pair< AbstractFFSVertexPtr, AbstractVVSVertexPtr > > scalar_
Storage for a dynamically cast vertices for a schannel scalar intermediate for massless external vect...
Definition:
MEff2vv.h:193
Herwig::MEff2vv::fermion_
vector< pair< AbstractFFVVertexPtr, AbstractFFVVertexPtr > > fermion_
Storage for a dynamically cast vertices for a tchannel vector intermediate.
Definition:
MEff2vv.h:175
Herwig::MEff2vv::fullclone
virtual IBPtr fullclone() const
Make a clone of this object, possibly modifying the cloned object to make it sane.
Definition:
MEff2vv.h:146
Herwig::MEff2vv::Init
static void Init()
The standard Init function used to initialize the interfaces.
Herwig::MEff2vv::VBVector
vector< VectorWaveFunction > VBVector
Vector of VectorWaveFunction objects.
Definition:
MEff2vv.h:50
Herwig::MEff2vv::SpinorBarVector
vector< SpinorBarWaveFunction > SpinorBarVector
Vector of SpinorBarWaveFunction objects.
Definition:
MEff2vv.h:47
Herwig::MEff2vv::doinit
virtual void doinit()
Initialize this object after the setup phase before saving an EventGenerator to disk.
Herwig::ProductionMatrixElement
The storage of the helicity amplitude expression for the matrix element of a hard process.
Definition:
ProductionMatrixElement.h:34
ThePEG::Helicity::SpinorBarWaveFunction
ThePEG::Helicity::SpinorWaveFunction
ThePEG::Helicity::VectorWaveFunction
ThePEG::PersistentIStream
ThePEG::PersistentOStream
Herwig
-*- C++ -*-
Definition:
BasicConsistency.h:17
ThePEG
ThePEG::IBPtr
ThePEG::Ptr< InterfacedBase >::pointer IBPtr
ThePEG::tSubProPtr
ThePEG::Ptr< SubProcess >::transient_pointer tSubProPtr
Generated on Thu Jun 20 2024 17:50:52 for Herwig by
1.9.6