The ThreeBodyAllOnCalculator class is designed to integrate a three-body matrix element in which all the outgoing particles are on-shell to give the partial width. More...
#include <ThreeBodyAllOnCalculator.h>
Classes | |
struct | Outer |
The class for the outer integrand of the integral of a three body decay matrix element. More... | |
Public Types | |
typedef Energy2 | ArgType |
Argument type for the GSLIntegrator. | |
typedef Energy2 | ValType |
Return type for the GSLIntegrator. | |
![]() | |
typedef unsigned int | CounterType |
Public Member Functions | |
ThreeBodyAllOnCalculator (vector< double > inweights, vector< int > intype, vector< Energy > inmass, vector< Energy > inwidth, vector< double > inpow, T inme, int mode, Energy m1, Energy m2, Energy m3, double relerr=1e-3) | |
Constructor with all the parameters. | |
Energy | partialWidth (Energy2 q2) const |
calculate the width for a given mass | |
void | resetMass (int imass, Energy mass) |
Get the mass of one of the decay products. | |
Energy | getMass (const int imass) const |
Get the mass of one of the decay products. | |
Energy | otherMass (const int imass) const |
Get the masses of all bar the one specified. | |
Energy2 | operator() (Energy2 argument) const |
The integrand for the inner integrand. | |
![]() | |
virtual | ~WidthCalculatorBase () |
Destructor. | |
virtual Energy | partialWidth (Energy2 scale) const =0 |
Calculate the partial width. | |
virtual void | resetMass (int imass, Energy mass)=0 |
Reset the mass of a particle (used to integrate over the mass.) This must be implemented in classes inheriting from this one. | |
virtual Energy | getMass (const int imass) const =0 |
Get the mass of one of the decay products. | |
virtual Energy | otherMass (const int imass) const =0 |
Get the masses of all bar the one specified. | |
![]() | |
CounterType | referenceCount () const |
Protected Member Functions | |
void | outerVariables (double x, Energy2 &low, Energy2 &upp) const |
shift the variables for the outer integrand and give limits for the inner one. | |
![]() | |
ReferenceCounted (const ReferenceCounted &) | |
ReferenceCounted & | operator= (const ReferenceCounted &) |
Private Member Functions | |
ThreeBodyAllOnCalculator & | operator= (const ThreeBodyAllOnCalculator &)=delete |
Private and non-existent assignment operator. | |
Private Attributes | |
vector< double > | _channelweights |
weights for the different channels | |
vector< int > | _channeltype |
the types for the different channels | |
vector< Energy > | _channelmass |
the mass of the resonance for a given channel | |
vector< Energy > | _channelwidth |
the width of the resonance for a given channel | |
vector< double > | _channelpower |
the power for power-law smoothing for a given channel | |
T | _theME |
Function giving the matrix element as a function of s12,s13,s23. | |
int | _mode |
The mode. | |
int | _thechannel |
the channel currently being integrated | |
vector< int > | _mapping |
The mapping currently in used. | |
Energy2 | _souter |
the value of s for the outer integral | |
vector< Energy > | _m |
masses of the external particles | |
vector< Energy2 > | _m2 |
mass squareds of the external particles | |
GSLIntegrator | _integrator |
member to do the integration | |
double | _relerr |
Relative error for the integration. | |
Friends | |
struct | ThreeBodyAllOnOuter |
The ThreeBodyAllOnOuter class is a friend so it can access the private members and perform the integral. | |
Additional Inherited Members | |
![]() | |
const unsigned long | uniqueId |
The ThreeBodyAllOnCalculator class is designed to integrate a three-body matrix element in which all the outgoing particles are on-shell to give the partial width.
A multi-channel type approach is used together with a GSL integration subroutine.
Definition at line 36 of file ThreeBodyAllOnCalculator.h.
typedef Energy2 Herwig::ThreeBodyAllOnCalculator< T >::ArgType |
Argument type for the GSLIntegrator.
Definition at line 174 of file ThreeBodyAllOnCalculator.h.
typedef Energy2 Herwig::ThreeBodyAllOnCalculator< T >::ValType |
Return type for the GSLIntegrator.
Definition at line 176 of file ThreeBodyAllOnCalculator.h.
|
inline |
Constructor with all the parameters.
inweights | The weights for the different integration channels |
intype | The types of the different integration channels. |
inmass | The mass for the Jacobian for the different channels. |
inwidth | The width for the Jacobian for the different channels. |
inpow | the power for power-law smoothing for a given channel |
inme | The pointer to the function which gives the matrix element. |
mode | The mode to be integrated |
m1 | The mass of the first particle. |
m2 | The mass of the second particle. |
m3 | The mass of the third particle. |
Definition at line 103 of file ThreeBodyAllOnCalculator.h.
References Herwig::ThreeBodyAllOnCalculator< T >::_m, Herwig::ThreeBodyAllOnCalculator< T >::_m2, and ThePEG::sqr().
|
inlinevirtual |
Get the mass of one of the decay products.
This must be implemented in classes inheriting from this one.
imass | The mass required. |
Implements Herwig::WidthCalculatorBase.
Definition at line 149 of file ThreeBodyAllOnCalculator.h.
References Herwig::ThreeBodyAllOnCalculator< T >::_m.
Energy2 Herwig::ThreeBodyAllOnCalculator< T >::operator() | ( | Energy2 | argument | ) | const |
The integrand for the inner integrand.
argument | The mass squared for the inner integral |
|
inlinevirtual |
Get the masses of all bar the one specified.
Used to get the limits for integration.
imass | The particle not needed |
Implements Herwig::WidthCalculatorBase.
Definition at line 160 of file ThreeBodyAllOnCalculator.h.
References Herwig::ThreeBodyAllOnCalculator< T >::_m.
|
protected |
shift the variables for the outer integrand and give limits for the inner one.
This member sets the value of the _souter member for the mass squared of the outer integral and calculates the limits on the mass squared of the inner integral.
x | The integration variable |
low | The lower limit for the inner integral. |
upp | The upper limit for the inner integral. |
|
virtual |
calculate the width for a given mass
q2 | The mass squared of the decaying particle. |
Implements Herwig::WidthCalculatorBase.
|
inlinevirtual |
Get the mass of one of the decay products.
This must be implemented in classes inheriting from this one.
imass | The mass required. |
mass | The new value. |
Implements Herwig::WidthCalculatorBase.
Definition at line 137 of file ThreeBodyAllOnCalculator.h.
References Herwig::ThreeBodyAllOnCalculator< T >::_m, and Herwig::ThreeBodyAllOnCalculator< T >::_m2.
|
friend |
The ThreeBodyAllOnOuter class is a friend so it can access the private members and perform the integral.
Definition at line 86 of file ThreeBodyAllOnCalculator.h.
|
private |
the mass of the resonance for a given channel
Definition at line 214 of file ThreeBodyAllOnCalculator.h.
|
private |
the power for power-law smoothing for a given channel
Definition at line 224 of file ThreeBodyAllOnCalculator.h.
|
private |
the types for the different channels
Definition at line 209 of file ThreeBodyAllOnCalculator.h.
|
private |
weights for the different channels
Definition at line 204 of file ThreeBodyAllOnCalculator.h.
|
private |
the width of the resonance for a given channel
Definition at line 219 of file ThreeBodyAllOnCalculator.h.
|
private |
member to do the integration
Definition at line 264 of file ThreeBodyAllOnCalculator.h.
|
mutableprivate |
masses of the external particles
Definition at line 254 of file ThreeBodyAllOnCalculator.h.
Referenced by Herwig::ThreeBodyAllOnCalculator< T >::getMass(), Herwig::ThreeBodyAllOnCalculator< T >::otherMass(), Herwig::ThreeBodyAllOnCalculator< T >::resetMass(), and Herwig::ThreeBodyAllOnCalculator< T >::ThreeBodyAllOnCalculator().
|
mutableprivate |
mass squareds of the external particles
Definition at line 259 of file ThreeBodyAllOnCalculator.h.
Referenced by Herwig::ThreeBodyAllOnCalculator< T >::resetMass(), and Herwig::ThreeBodyAllOnCalculator< T >::ThreeBodyAllOnCalculator().
|
mutableprivate |
The mapping currently in used.
Definition at line 244 of file ThreeBodyAllOnCalculator.h.
|
private |
The mode.
Definition at line 234 of file ThreeBodyAllOnCalculator.h.
|
private |
Relative error for the integration.
Definition at line 269 of file ThreeBodyAllOnCalculator.h.
|
mutableprivate |
the value of s for the outer integral
Definition at line 249 of file ThreeBodyAllOnCalculator.h.
|
mutableprivate |
the channel currently being integrated
Definition at line 239 of file ThreeBodyAllOnCalculator.h.
|
private |
Function giving the matrix element as a function of s12,s13,s23.
Definition at line 229 of file ThreeBodyAllOnCalculator.h.