thepeg is hosted by Hepforge, IPPP Durham
ThePEG  2.2.1
MEqq2qq1.h
1 // -*- C++ -*-
2 //
3 // MEqq2qq1.h is a part of ThePEG - Toolkit for HEP Event Generation
4 // Copyright (C) 1999-2019 Leif Lonnblad
5 //
6 // ThePEG 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 ThePEG_MEqq2qq_H
10 #define ThePEG_MEqq2qq_H
11 // This is the declaration of the MEqq2qq class.
12 
13 #include "ThePEG/MatrixElement/ME2to2QCD.h"
14 
15 namespace ThePEG {
16 
25 class MEqq2qq: public ME2to2QCD {
26 
27 public:
28 
38  virtual double me2() const;
39 
43  virtual void getDiagrams() const;
44 
53  colourGeometries(tcDiagPtr diag) const;
54 
63  virtual Selector<DiagramIndex> diagrams(const DiagramVector & dv) const;
65 
66 protected:
67 
75  double colA() const
76  {
77  return (sqr(tHat()) + sqr(uHat()))/sqr(sHat()) +
78  (interference()? -double(sqr(uHat())/(3.0*sHat()*tHat())): 0.0);
79  }
80 
85  double colB() const
86  {
87  return (sqr(uHat()) + sqr(sHat()))/sqr(tHat()) +
88  (interference()? -double(sqr(uHat())/(3.0*sHat()*tHat())): 0.0);
89  }
91 
92 public:
93 
97  static void Init();
98 
99 protected:
100 
107  virtual IBPtr clone() const;
108 
113  virtual IBPtr fullclone() const;
115 
116 private:
117 
122 
126  MEqq2qq & operator=(const MEqq2qq &) = delete;
127 
128 };
129 
130 }
131 
132 
133 namespace ThePEG {
134 
139 template <>
140 struct BaseClassTrait<MEqq2qq,1>: public ClassTraitsType {
142  typedef ME2to2QCD NthBase;
143 };
144 
147 template <>
148 struct ClassTraits<MEqq2qq>: public ClassTraitsBase<MEqq2qq> {
150  static string className() { return "ThePEG::MEqq2qq"; }
154  static string library() { return "MEQCD.so"; }
155 };
156 
159 }
160 
161 #endif /* ThePEG_MEqq2qq_H */
const DiagramVector & diagrams() const
Return all possible diagrams.
Definition: MEBase.h:284
virtual IBPtr clone() const
Make a simple clone of this object.
Energy2 sHat() const
Return the last set invariant mass squared.
Definition: MEBase.h:375
ClassTraitsType is an empty, non-polymorphic, base class.
Definition: ClassTraits.h:30
virtual IBPtr fullclone() const
Make a clone of this object, possibly modifying the cloned object to make it sane.
constexpr auto sqr(const T &x) -> decltype(x *x)
The square function should really have been included in the standard C++ library. ...
Definition: ThePEG.h:117
static void Init()
Standard Init function used to initialize the interfaces.
MEqq2qq & operator=(const MEqq2qq &)=delete
Private and non-existent assignment operator.
This is the main namespace within which all identifiers in ThePEG are declared.
Definition: FactoryBase.h:28
A concreate implementation of ClassDescriptionBase describing a concrete class without persistent dat...
Energy2 uHat() const
Return the of the last set phase space point.
Definition: ME2to2Base.h:114
double colA() const
Return the matrix element squared (without common pre-factors) for the specific colour configuration...
Definition: MEqq2qq1.h:75
static NoPIOClassDescription< MEqq2qq > initMEqq2qq
Describe a concrete class without persistent data.
Definition: MEqq2qq1.h:121
virtual double me2() const
The matrix element for the kinematical configuration previously provided by the last call to setKinem...
The ME2to2QCD class inherits from the ME2to2Base class and can be used as a sub class for all QCD 2 ...
Definition: ME2to2QCD.h:28
Energy2 tHat() const
Return the of the last set phase space point.
Definition: ME2to2Base.h:109
virtual void getDiagrams() const
Add all possible diagrams with the add() function.
RCPtr is a reference counted (smart) pointer.
Definition: RCPtr.h:60
MEqq2qq inherits from the ME2to2QCD and implements the standard matrix element.
Definition: MEqq2qq1.h:25
virtual Selector< const ColourLines * > colourGeometries(tcDiagPtr diag) const
Return a Selector with possible colour geometries for the selected diagram weighted by their relative...
double colB() const
Return the matrix element squared (without common pre-factors) for the specific colour configuration...
Definition: MEqq2qq1.h:85
Selector is a templated class for storing objects associated with probabilities in a way such that...
Definition: Selector.h:46
vector< DiagPtr > DiagramVector
A vector of pointers to DiagramBase objects.
Definition: MEBase.h:77
The default concrete implementation of ClassTraitsBase.
Definition: ClassTraits.h:134
BaseClassTraits describes the base classes of the templated class.
Definition: ClassTraits.h:156
The templated ClassTraitsBase class defines a set of default information about classes used by ThePEG...
Definition: ClassTraits.h:52
bool interference() const
Return true if interference terms should be used.
Definition: ME2to2QCD.h:86