herwig
is hosted by
Hepforge
,
IPPP Durham
Herwig
7.3.0
Decay
General
TFFDecayer.h
1
// -*- C++ -*-
2
//
3
// TFFDecayer.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_TFFDecayer_H
10
#define HERWIG_TFFDecayer_H
11
//
12
// This is the declaration of the TFFDecayer class.
13
//
14
15
#include "GeneralTwoBodyDecayer.h"
16
#include "ThePEG/Repository/EventGenerator.h"
17
#include "ThePEG/Helicity/Vertex/Tensor/FFTVertex.h"
18
#include "ThePEG/Helicity/Vertex/Vector/FFVVertex.h"
19
#include "ThePEG/Helicity/Vertex/Tensor/FFVTVertex.h"
20
21
namespace
Herwig
{
22
using namespace
ThePEG
;
23
using
Helicity::FFTVertexPtr;
24
34
class
TFFDecayer
:
public
GeneralTwoBodyDecayer
{
35
36
public
:
37
41
TFFDecayer
() {}
42
54
double
me2
(
const
int
ichan,
const
Particle
& part,
55
const
tPDVector
&
outgoing
,
56
const
vector<Lorentz5Momentum> & momenta,
57
MEOption
meopt)
const
;
58
62
virtual
void
constructSpinInfo
(
const
Particle
& part,
63
ParticleVector
outgoing
)
const
;
64
71
virtual
Energy
partialWidth
(
PMPair
inpart,
PMPair
outa,
72
PMPair
outb)
const
;
73
77
virtual
POWHEGType
hasPOWHEGCorrection
() {
78
POWHEGType
output = FSR;
79
for
(
auto
vertex :
vertex_
) {
80
if
(vertex->orderInAllCouplings()!=1) {
81
output = No;
82
break
;
83
}
84
}
85
return
output;
86
}
87
91
virtual
double
threeBodyME
(
const
int
,
const
Particle
& inpart,
92
const
ParticleVector
&
decay
,
93
ShowerInteraction
inter,
MEOption
meopt);
94
98
virtual
void
setDecayInfo
(
PDPtr
incoming
,
PDPair
outgoing
,
99
vector<VertexBasePtr>,
100
map<ShowerInteraction,VertexBasePtr> &,
101
const
vector<map<ShowerInteraction,VertexBasePtr> > &,
102
map<ShowerInteraction,VertexBasePtr>);
104
105
public
:
106
113
void
persistentOutput
(
PersistentOStream
& os)
const
;
114
120
void
persistentInput
(
PersistentIStream
& is,
int
version);
122
129
static
void
Init
();
130
131
protected
:
132
139
virtual
IBPtr
clone
()
const
;
140
145
virtual
IBPtr
fullclone
()
const
;
147
148
private
:
149
154
TFFDecayer
&
operator=
(
const
TFFDecayer
&) =
delete
;
155
156
private
:
157
161
vector<AbstractFFTVertexPtr>
vertex_
;
162
166
vector<FFTVertexPtr>
perturbativeVertex_
;
167
171
map<ShowerInteraction,AbstractFFVVertexPtr>
outgoingVertex1_
;
172
176
map<ShowerInteraction,AbstractFFVVertexPtr>
outgoingVertex2_
;
177
181
map<ShowerInteraction,AbstractFFVTVertexPtr>
fourPointVertex_
;
182
186
mutable
RhoDMatrix
rho_
;
187
191
mutable
vector<TensorWaveFunction>
tensors_
;
192
196
mutable
vector<SpinorWaveFunction>
wave_
;
197
201
mutable
vector<SpinorBarWaveFunction>
wavebar_
;
202
206
mutable
RhoDMatrix
rho3_
;
207
211
mutable
vector<TensorWaveFunction>
tensors3_
;
212
216
mutable
vector<SpinorWaveFunction>
wave3_
;
217
221
mutable
vector<SpinorBarWaveFunction>
wavebar3_
;
222
226
mutable
vector<VectorWaveFunction>
gluon_
;
227
228
};
229
230
}
231
232
#endif
/* HERWIG_TFFDecayer_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::TFFDecayer
The TFFDecayer class implements the decay of a tensor to 2 fermions in a general model.
Definition:
TFFDecayer.h:34
Herwig::TFFDecayer::wavebar_
vector< SpinorBarWaveFunction > wavebar_
Barred spinors for the decay products.
Definition:
TFFDecayer.h:201
Herwig::TFFDecayer::Init
static void Init()
The standard Init function used to initialize the interfaces.
Herwig::TFFDecayer::tensors3_
vector< TensorWaveFunction > tensors3_
Tensor wavefunction for 3 body decay.
Definition:
TFFDecayer.h:211
Herwig::TFFDecayer::persistentOutput
void persistentOutput(PersistentOStream &os) const
Function used to write out object persistently.
Herwig::TFFDecayer::rho_
RhoDMatrix rho_
Spin density matrix.
Definition:
TFFDecayer.h:186
Herwig::TFFDecayer::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::TFFDecayer::hasPOWHEGCorrection
virtual POWHEGType hasPOWHEGCorrection()
Has a POWHEG style correction.
Definition:
TFFDecayer.h:77
Herwig::TFFDecayer::operator=
TFFDecayer & operator=(const TFFDecayer &)=delete
The assignment operator is private and must never be called.
Herwig::TFFDecayer::vertex_
vector< AbstractFFTVertexPtr > vertex_
Abstract pointer to AbstractFFTVertex.
Definition:
TFFDecayer.h:161
Herwig::TFFDecayer::gluon_
vector< VectorWaveFunction > gluon_
Vector wavefunction for 3 body decay.
Definition:
TFFDecayer.h:226
Herwig::TFFDecayer::fullclone
virtual IBPtr fullclone() const
Make a clone of this object, possibly modifying the cloned object to make it sane.
Herwig::TFFDecayer::outgoingVertex1_
map< ShowerInteraction, AbstractFFVVertexPtr > outgoingVertex1_
Abstract pointer to AbstractFFVVertex for QCD radiation from outgoing (anti)fermion.
Definition:
TFFDecayer.h:171
Herwig::TFFDecayer::constructSpinInfo
virtual void constructSpinInfo(const Particle &part, ParticleVector outgoing) const
Construct the SpinInfos for the particles produced in the decay.
Herwig::TFFDecayer::tensors_
vector< TensorWaveFunction > tensors_
Polarization tensors for the decaying particle.
Definition:
TFFDecayer.h:191
Herwig::TFFDecayer::wave_
vector< SpinorWaveFunction > wave_
Spinors for the decay products.
Definition:
TFFDecayer.h:196
Herwig::TFFDecayer::wave3_
vector< SpinorWaveFunction > wave3_
Spinor wavefunction for 3 body decay.
Definition:
TFFDecayer.h:216
Herwig::TFFDecayer::wavebar3_
vector< SpinorBarWaveFunction > wavebar3_
Barred spinor wavefunction for 3 body decay.
Definition:
TFFDecayer.h:221
Herwig::TFFDecayer::clone
virtual IBPtr clone() const
Make a simple clone of this object.
Herwig::TFFDecayer::TFFDecayer
TFFDecayer()
The default constructor.
Definition:
TFFDecayer.h:41
Herwig::TFFDecayer::fourPointVertex_
map< ShowerInteraction, AbstractFFVTVertexPtr > fourPointVertex_
Abstract pointer to AbstractFFVTVertex for QCD radiation from 4 point vertex.
Definition:
TFFDecayer.h:181
Herwig::TFFDecayer::perturbativeVertex_
vector< FFTVertexPtr > perturbativeVertex_
Pointer to the perturbative vertex.
Definition:
TFFDecayer.h:166
Herwig::TFFDecayer::partialWidth
virtual Energy partialWidth(PMPair inpart, PMPair outa, PMPair outb) const
Function to return partial Width.
Herwig::TFFDecayer::persistentInput
void persistentInput(PersistentIStream &is, int version)
Function used to read in object persistently.
Herwig::TFFDecayer::rho3_
RhoDMatrix rho3_
Spin density matrix for 3 body decay.
Definition:
TFFDecayer.h:206
Herwig::TFFDecayer::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::TFFDecayer::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::TFFDecayer::outgoingVertex2_
map< ShowerInteraction, AbstractFFVVertexPtr > outgoingVertex2_
Abstract pointer to AbstractFFVVertex for QCD radiation from outgoing (anti)fermion.
Definition:
TFFDecayer.h:176
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