herwig
is hosted by
Hepforge
,
IPPP Durham
Herwig
7.3.0
Decay
General
VFFDecayer.h
1
// -*- C++ -*-
2
//
3
// VFFDecayer.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_VFFDecayer_H
10
#define HERWIG_VFFDecayer_H
11
//
12
// This is the declaration of the VFFDecayer class.
13
//
14
15
#include "GeneralTwoBodyDecayer.h"
16
#include "ThePEG/Repository/EventGenerator.h"
17
#include "ThePEG/Helicity/Vertex/Vector/FFVVertex.h"
18
#include "ThePEG/Helicity/Vertex/Vector/VVVVertex.h"
19
20
namespace
Herwig
{
21
using namespace
ThePEG
;
22
using
Helicity::FFVVertexPtr;
23
33
class
VFFDecayer
:
public
GeneralTwoBodyDecayer
{
34
35
public
:
36
40
VFFDecayer
() {}
41
42
public
:
43
55
double
me2
(
const
int
ichan,
const
Particle
& part,
56
const
tPDVector
&
outgoing
,
57
const
vector<Lorentz5Momentum> & momenta,
58
MEOption
meopt)
const
;
59
63
virtual
void
constructSpinInfo
(
const
Particle
& part,
64
ParticleVector
outgoing
)
const
;
65
72
virtual
Energy
partialWidth
(
PMPair
inpart,
PMPair
outa,
73
PMPair
outb)
const
;
74
78
virtual
POWHEGType
hasPOWHEGCorrection
() {
79
POWHEGType
output = FSR;
80
for
(
auto
vertex :
vertex_
) {
81
if
(vertex->orderInAllCouplings()!=1) {
82
output = No;
83
break
;
84
}
85
}
86
return
output;
87
}
88
92
virtual
double
threeBodyME
(
const
int
,
const
Particle
& inpart,
93
const
ParticleVector
&
decay
,
94
ShowerInteraction
inter,
MEOption
meopt);
95
99
void
identifyVertices
(
const
int
iferm,
const
int
ianti,
100
const
Particle
& inpart,
const
ParticleVector
&
decay
,
101
AbstractFFVVertexPtr & abstractOutgoingVertexF,
102
AbstractFFVVertexPtr & abstractOutgoingVertexA,
103
ShowerInteraction
inter);
104
108
virtual
void
setDecayInfo
(
PDPtr
incoming
,
PDPair
outgoing
,
109
vector<VertexBasePtr>,
110
map<ShowerInteraction,VertexBasePtr> &,
111
const
vector<map<ShowerInteraction,VertexBasePtr> > &,
112
map<ShowerInteraction,VertexBasePtr>);
114
115
public
:
116
123
void
persistentOutput
(
PersistentOStream
& os)
const
;
124
130
void
persistentInput
(
PersistentIStream
& is,
int
version);
132
139
static
void
Init
();
140
141
protected
:
142
149
virtual
IBPtr
clone
()
const
;
150
155
virtual
IBPtr
fullclone
()
const
;
157
158
private
:
159
164
VFFDecayer
&
operator=
(
const
VFFDecayer
&) =
delete
;
165
166
private
:
167
171
vector<AbstractFFVVertexPtr>
vertex_
;
172
176
vector<FFVVertexPtr>
perturbativeVertex_
;
177
181
map<ShowerInteraction,AbstractVVVVertexPtr>
incomingVertex_
;
182
186
map<ShowerInteraction,AbstractFFVVertexPtr>
outgoingVertex1_
;
187
191
map<ShowerInteraction,AbstractFFVVertexPtr>
outgoingVertex2_
;
192
196
mutable
RhoDMatrix
rho_
;
197
201
mutable
vector<VectorWaveFunction>
vectors_
;
202
206
mutable
vector<SpinorWaveFunction>
wave_
;
207
211
mutable
vector<SpinorBarWaveFunction>
wavebar_
;
215
mutable
RhoDMatrix
rho3_
;
216
220
mutable
vector<VectorWaveFunction>
vector3_
;
221
225
mutable
vector<SpinorWaveFunction>
wave3_
;
226
230
mutable
vector<SpinorBarWaveFunction>
wavebar3_
;
231
235
mutable
vector<VectorWaveFunction>
gluon_
;
236
237
};
238
239
}
240
241
#endif
/* HERWIG_VFFDecayer_H */
Herwig::DecayIntegrator::MEOption
MEOption
Enum for the matrix element option.
Definition:
DecayIntegrator.h:72
Herwig::GeneralTwoBodyDecayer
The GeneralTwoBodyDecayer class is designed to be the base class for 2 body decays for some general m...
Definition:
GeneralTwoBodyDecayer.h:38
Herwig::GeneralTwoBodyDecayer::decay
virtual ParticleVector decay(const Particle &parent, const tPDVector &children) const
For a given decay mode and a given particle instance, perform the decay and return the decay products...
Herwig::GeneralTwoBodyDecayer::PMPair
pair< tcPDPtr, Energy > PMPair
A ParticleData ptr and (possible) mass pair.
Definition:
GeneralTwoBodyDecayer.h:43
Herwig::HwDecayerBase::POWHEGType
POWHEGType
Virtual members to be overridden by inheriting classes which implement hard corrections.
Definition:
HwDecayerBase.h:76
Herwig::VFFDecayer
The VFFDecayer class implements the decay of a vector to 2 fermions in a general model.
Definition:
VFFDecayer.h:33
Herwig::VFFDecayer::operator=
VFFDecayer & operator=(const VFFDecayer &)=delete
The assignment operator is private and must never be called.
Herwig::VFFDecayer::vector3_
vector< VectorWaveFunction > vector3_
Scalar wavefunction for 3 body decay.
Definition:
VFFDecayer.h:220
Herwig::VFFDecayer::wave3_
vector< SpinorWaveFunction > wave3_
Spinor wavefunction for 3 body decay.
Definition:
VFFDecayer.h:225
Herwig::VFFDecayer::identifyVertices
void identifyVertices(const int iferm, const int ianti, const Particle &inpart, const ParticleVector &decay, AbstractFFVVertexPtr &abstractOutgoingVertexF, AbstractFFVVertexPtr &abstractOutgoingVertexA, ShowerInteraction inter)
Indentify outgoing vertices for the fermion and antifermion.
Herwig::VFFDecayer::persistentOutput
void persistentOutput(PersistentOStream &os) const
Function used to write out object persistently.
Herwig::VFFDecayer::constructSpinInfo
virtual void constructSpinInfo(const Particle &part, ParticleVector outgoing) const
Construct the SpinInfos for the particles produced in the decay.
Herwig::VFFDecayer::perturbativeVertex_
vector< FFVVertexPtr > perturbativeVertex_
Pointer to the perturbative vertex.
Definition:
VFFDecayer.h:176
Herwig::VFFDecayer::vectors_
vector< VectorWaveFunction > vectors_
Polarization vectors for the decaying particle.
Definition:
VFFDecayer.h:201
Herwig::VFFDecayer::vertex_
vector< AbstractFFVVertexPtr > vertex_
Abstract pointer to AbstractFFVVertex.
Definition:
VFFDecayer.h:171
Herwig::VFFDecayer::rho3_
RhoDMatrix rho3_
Spin density matrix for 3 body decay.
Definition:
VFFDecayer.h:215
Herwig::VFFDecayer::wavebar3_
vector< SpinorBarWaveFunction > wavebar3_
Barred spinor wavefunction for 3 body decay.
Definition:
VFFDecayer.h:230
Herwig::VFFDecayer::gluon_
vector< VectorWaveFunction > gluon_
Vector wavefunction for 3 body decay.
Definition:
VFFDecayer.h:235
Herwig::VFFDecayer::setDecayInfo
virtual void setDecayInfo(PDPtr incoming, PDPair outgoing, vector< VertexBasePtr >, map< ShowerInteraction, VertexBasePtr > &, const vector< map< ShowerInteraction, VertexBasePtr > > &, map< ShowerInteraction, VertexBasePtr >)
Set the information on the decay.
Herwig::VFFDecayer::wave_
vector< SpinorWaveFunction > wave_
Spinors for the decay products.
Definition:
VFFDecayer.h:206
Herwig::VFFDecayer::hasPOWHEGCorrection
virtual POWHEGType hasPOWHEGCorrection()
Has a POWHEG style correction.
Definition:
VFFDecayer.h:78
Herwig::VFFDecayer::incomingVertex_
map< ShowerInteraction, AbstractVVVVertexPtr > incomingVertex_
Abstract pointer to AbstractVVVVertex for QCD radiation from incoming vector.
Definition:
VFFDecayer.h:181
Herwig::VFFDecayer::fullclone
virtual IBPtr fullclone() const
Make a clone of this object, possibly modifying the cloned object to make it sane.
Herwig::VFFDecayer::VFFDecayer
VFFDecayer()
The default constructor.
Definition:
VFFDecayer.h:40
Herwig::VFFDecayer::me2
double me2(const int ichan, const Particle &part, const tPDVector &outgoing, const vector< Lorentz5Momentum > &momenta, MEOption meopt) const
Return the matrix element squared for a given mode and phase-space channel.
Herwig::VFFDecayer::partialWidth
virtual Energy partialWidth(PMPair inpart, PMPair outa, PMPair outb) const
Function to return partial Width.
Herwig::VFFDecayer::clone
virtual IBPtr clone() const
Make a simple clone of this object.
Herwig::VFFDecayer::wavebar_
vector< SpinorBarWaveFunction > wavebar_
Barred spinors for the decay products.
Definition:
VFFDecayer.h:211
Herwig::VFFDecayer::threeBodyME
virtual double threeBodyME(const int, const Particle &inpart, const ParticleVector &decay, ShowerInteraction inter, MEOption meopt)
Three-body matrix element including additional QCD radiation.
Herwig::VFFDecayer::outgoingVertex1_
map< ShowerInteraction, AbstractFFVVertexPtr > outgoingVertex1_
Abstract pointer to AbstractFFVVertex for QCD radiation from outgoing (anti)fermion.
Definition:
VFFDecayer.h:186
Herwig::VFFDecayer::persistentInput
void persistentInput(PersistentIStream &is, int version)
Function used to read in object persistently.
Herwig::VFFDecayer::Init
static void Init()
The standard Init function used to initialize the interfaces.
Herwig::VFFDecayer::outgoingVertex2_
map< ShowerInteraction, AbstractFFVVertexPtr > outgoingVertex2_
Abstract pointer to AbstractFFVVertex for QCD radiation from outgoing (anti)fermion.
Definition:
VFFDecayer.h:191
Herwig::VFFDecayer::rho_
RhoDMatrix rho_
Spin density matrix.
Definition:
VFFDecayer.h:196
ThePEG::Particle
ThePEG::PersistentIStream
ThePEG::PersistentOStream
ThePEG::RhoDMatrix
Herwig::ShowerInteraction
ShowerInteraction
Handy header file to be included in all Shower classes.
Definition:
ShowerInteraction.h:23
Herwig
-*- C++ -*-
Definition:
BasicConsistency.h:17
ThePEG::Helicity::outgoing
outgoing
ThePEG::Helicity::incoming
incoming
ThePEG
ThePEG::IBPtr
ThePEG::Ptr< InterfacedBase >::pointer IBPtr
ThePEG::tPDVector
vector< tPDPtr > tPDVector
ThePEG::ParticleVector
vector< PPtr > ParticleVector
ThePEG::PDPtr
ThePEG::Ptr< ParticleData >::pointer PDPtr
ThePEG::PDPair
pair< PDPtr, PDPtr > PDPair
Generated on Thu Jun 20 2024 17:50:52 for Herwig by
1.9.6