herwig
is hosted by
Hepforge
,
IPPP Durham
Herwig
7.3.0
Decay
General
SSVDecayer.h
1
// -*- C++ -*-
2
//
3
// SSVDecayer.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_SSVDecayer_H
10
#define HERWIG_SSVDecayer_H
11
//
12
// This is the declaration of the SSVDecayer class.
13
//
14
15
#include "GeneralTwoBodyDecayer.h"
16
#include "ThePEG/Helicity/Vertex/Scalar/VSSVertex.h"
17
#include "ThePEG/Helicity/Vertex/Vector/VVVVertex.h"
18
#include "ThePEG/Helicity/Vertex/Scalar/VVSSVertex.h"
19
#include "ThePEG/Repository/EventGenerator.h"
20
21
namespace
Herwig
{
22
using namespace
ThePEG
;
23
using
Helicity::VSSVertexPtr;
24
34
class
SSVDecayer
:
public
GeneralTwoBodyDecayer
{
35
36
public
:
37
41
SSVDecayer
() {}
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,
94
MEOption
meopt);
95
99
virtual
void
setDecayInfo
(
PDPtr
incoming
,
PDPair
outgoing
,
100
vector<VertexBasePtr>,
101
map<ShowerInteraction,VertexBasePtr> &,
102
const
vector<map<ShowerInteraction,VertexBasePtr> > &,
103
map<ShowerInteraction,VertexBasePtr>);
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
;
141
146
virtual
IBPtr
fullclone
()
const
;
148
149
private
:
150
155
SSVDecayer
&
operator=
(
const
SSVDecayer
&) =
delete
;
156
157
private
:
158
162
vector<AbstractVSSVertexPtr>
vertex_
;
163
167
map<ShowerInteraction,AbstractVSSVertexPtr>
incomingVertex_
;
168
172
map<ShowerInteraction,AbstractVSSVertexPtr>
outgoingVertexS_
;
173
177
map<ShowerInteraction,AbstractVVVVertexPtr>
outgoingVertexV_
;
178
182
map<ShowerInteraction,AbstractVVSSVertexPtr>
fourPointVertex_
;
183
187
mutable
RhoDMatrix
rho_
;
188
192
mutable
Helicity::ScalarWaveFunction
swave_
;
193
197
mutable
vector<Helicity::VectorWaveFunction>
vector_
;
198
202
mutable
RhoDMatrix
rho3_
;
203
207
mutable
Helicity::ScalarWaveFunction
swave3_
;
208
212
mutable
Helicity::ScalarWaveFunction
scal_
;
213
217
mutable
vector<Helicity::VectorWaveFunction>
vector3_
;
218
222
mutable
vector<Helicity::VectorWaveFunction>
gluon_
;
223
224
};
225
226
}
227
228
#endif
/* HERWIG_SSVDecayer_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::SSVDecayer
The SSVDecayer class implements the decay of a scalar to a vector and a scalar in a general model.
Definition:
SSVDecayer.h:34
Herwig::SSVDecayer::rho_
RhoDMatrix rho_
Spinor density matrix.
Definition:
SSVDecayer.h:187
Herwig::SSVDecayer::persistentOutput
void persistentOutput(PersistentOStream &os) const
Function used to write out object persistently.
Herwig::SSVDecayer::hasPOWHEGCorrection
virtual POWHEGType hasPOWHEGCorrection()
Has a POWHEG style correction.
Definition:
SSVDecayer.h:77
Herwig::SSVDecayer::fourPointVertex_
map< ShowerInteraction, AbstractVVSSVertexPtr > fourPointVertex_
Abstract pointer to AbstractVVSSVertex for QCD radiation from 4 point vertex.
Definition:
SSVDecayer.h:182
Herwig::SSVDecayer::constructSpinInfo
virtual void constructSpinInfo(const Particle &part, ParticleVector outgoing) const
Construct the SpinInfos for the particles produced in the decay.
Herwig::SSVDecayer::vertex_
vector< AbstractVSSVertexPtr > vertex_
Abstract pointer to AbstractFFVVertex.
Definition:
SSVDecayer.h:162
Herwig::SSVDecayer::swave3_
Helicity::ScalarWaveFunction swave3_
Scalar wavefunction for 3 body decay.
Definition:
SSVDecayer.h:207
Herwig::SSVDecayer::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::SSVDecayer::partialWidth
virtual Energy partialWidth(PMPair inpart, PMPair outa, PMPair outb) const
Function to return partial Width.
Herwig::SSVDecayer::scal_
Helicity::ScalarWaveFunction scal_
Scalar wavefunction for 3 body decay.
Definition:
SSVDecayer.h:212
Herwig::SSVDecayer::Init
static void Init()
The standard Init function used to initialize the interfaces.
Herwig::SSVDecayer::gluon_
vector< Helicity::VectorWaveFunction > gluon_
Vector wavefunction for 3 body decay.
Definition:
SSVDecayer.h:222
Herwig::SSVDecayer::swave_
Helicity::ScalarWaveFunction swave_
Scalar wavefunction.
Definition:
SSVDecayer.h:192
Herwig::SSVDecayer::rho3_
RhoDMatrix rho3_
Spin density matrix for 3 body decay.
Definition:
SSVDecayer.h:202
Herwig::SSVDecayer::vector3_
vector< Helicity::VectorWaveFunction > vector3_
Vector wavefunction for 3 body decay.
Definition:
SSVDecayer.h:217
Herwig::SSVDecayer::outgoingVertexS_
map< ShowerInteraction, AbstractVSSVertexPtr > outgoingVertexS_
Abstract pointer to AbstractVSSVertex for QCD radiation from outgoing scalar.
Definition:
SSVDecayer.h:172
Herwig::SSVDecayer::clone
virtual IBPtr clone() const
Make a simple clone of this object.
Herwig::SSVDecayer::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::SSVDecayer::outgoingVertexV_
map< ShowerInteraction, AbstractVVVVertexPtr > outgoingVertexV_
Abstract pointer to AbstractVVVVertex for QCD radiation from outgoing vector.
Definition:
SSVDecayer.h:177
Herwig::SSVDecayer::fullclone
virtual IBPtr fullclone() const
Make a clone of this object, possibly modifying the cloned object to make it sane.
Herwig::SSVDecayer::vector_
vector< Helicity::VectorWaveFunction > vector_
Vector wavefunction.
Definition:
SSVDecayer.h:197
Herwig::SSVDecayer::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::SSVDecayer::persistentInput
void persistentInput(PersistentIStream &is, int version)
Function used to read in object persistently.
Herwig::SSVDecayer::incomingVertex_
map< ShowerInteraction, AbstractVSSVertexPtr > incomingVertex_
Abstract pointer to AbstractVSSVertex for QCD radiation from incoming scalar.
Definition:
SSVDecayer.h:167
Herwig::SSVDecayer::SSVDecayer
SSVDecayer()
The default constructor.
Definition:
SSVDecayer.h:41
Herwig::SSVDecayer::operator=
SSVDecayer & operator=(const SSVDecayer &)=delete
The assignment operator is private and must never be called.
ThePEG::Helicity::ScalarWaveFunction
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