1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247
|
// -*- C++ -*-
//
// MEBase.cc is a part of ThePEG - Toolkit for HEP Event Generation
// Copyright (C) 1999-2011 Leif Lonnblad
//
// ThePEG is licenced under version 2 of the GPL, see COPYING for details.
// Please respect the MCnet academic guidelines, see GUIDELINES for details.
//
//
// This is the implementation of the non-inlined, non-templated member
// functions of the MEBase class.
//
#include "MEBase.h"
#include "ThePEG/Interface/ClassDocumentation.h"
#include "ThePEG/Interface/Reference.h"
#include "ThePEG/Interface/RefVector.h"
#include "ThePEG/Interface/Parameter.h"
#include "ThePEG/Utilities/Rebinder.h"
#include "ThePEG/MatrixElement/ReweightBase.h"
#include "ThePEG/Repository/EventGenerator.h"
#include "ThePEG/Handlers/XComb.h"
#include "ThePEG/Handlers/StandardXComb.h"
#include "ThePEG/StandardModel/StandardModelBase.h"
#include "ThePEG/Persistency/PersistentOStream.h"
#include "ThePEG/Persistency/PersistentIStream.h"
using namespace ThePEG;
MEBase::MEBase()
: theLastSHat(-1.0*GeV2), lastPreweight(1.0),
theMaxMultCKKW(0), theMinMultCKKW(0) {}
MEBase::~MEBase() {}
void MEBase::use(tcMEPtr other) {
if (other == this)
return;
theDiagrams = other->theDiagrams;
theLastSHat = other->theLastSHat;
reweights = other->reweights;
preweights = other->preweights;
lastPreweight = other->lastPreweight;
theAmplitude = other->theAmplitude;
theMaxMultCKKW = other->theMaxMultCKKW;
theMinMultCKKW = other->theMinMultCKKW;
}
void MEBase::useDiagrams(tcMEPtr other) const {
if (other == this)
return;
theDiagrams = other->theDiagrams;
}
void MEBase::addReweighter(tReweightPtr rw) {
if ( rw && find(reweights.begin(), reweights.end(), rw) == reweights.end() )
reweights.push_back(rw);
}
void MEBase::addPreweighter(tReweightPtr rw) {
if ( rw &&
find(preweights.begin(), preweights.end(), rw) == preweights.end())
preweights.push_back(rw);
}
void MEBase::setKinematics(tPPair in, const PVector & out) {
theLastSHat = -1.0*GeV2;
theLastXComb = tStdXCombPtr();
for ( int i = 0, N = diagrams().size(); i < N; ++i ) {
tPVector parts;
const DiagramBase & diag = *(diagrams()[i]);
if (diag.partons().size() != out.size() + 2 ) continue;
if ( in.first->dataPtr() == diag.partons()[0] ) {
parts.push_back(in.first);
if ( in.second->dataPtr() != diag.partons()[1] ) continue;
parts.push_back(in.second);
}
else if ( in.second->dataPtr() == diag.partons()[0] ) {
parts.push_back(in.second);
if ( in.first->dataPtr() != diag.partons()[1] ) continue;
parts.push_back(in.first);
}
else
continue;
multimap<tcPDPtr,tPPtr> omap;
for ( int j = 0, M = out.size(); j < M; ++j )
omap.insert(make_pair(out[j]->dataPtr(), out[j]));
for ( int j = 2, M = diag.partons().size(); j < M; ++j ) {
multimap<tcPDPtr,tPPtr>::iterator it = omap.find(diag.partons()[j]);
if ( it == omap.end() ) break;
parts.push_back(it->second);
omap.erase(it);
}
if ( !omap.empty() ) continue;
theLastXComb = new_ptr(StandardXComb(this, parts, i));
setKinematics();
return;
}
throw Exception()
<< "In 'MEBase::setKinematics(...)' for the object '" << name()
<< "': Could not set the kinematics according to the specified partons "
<< "since no matching diagram was found." << Exception::abortnow;
}
void MEBase::constructVertex(tSubProPtr) {}
void MEBase::setKinematics() {
theLastSHat = lastSHat();
}
void MEBase::clearKinematics() {
theLastSHat = -1.0*GeV2;
theLastXComb = tStdXCombPtr();
}
MEBase::DiagramIndex MEBase::diagram(const DiagramVector & dv) const {
Selector<DiagramIndex> sel = diagrams(dv);
return sel.empty()? DiagramIndex(rnd(dv.size())): sel.select(rnd());
}
const ColourLines & MEBase::
selectColourGeometry(tcDiagPtr diag) const {
Selector<const ColourLines *> sel = colourGeometries(diag);
return *sel.select(rnd());
}
int MEBase::nDim() const {
return 0;
}
void MEBase::setXComb(tStdXCombPtr xc) {
theLastXComb = xc;
theLastSHat = lastSHat();
}
vector<Lorentz5Momentum> & MEBase::meMomenta() {
return lastXCombPtr()->meMomenta();
}
void MEBase::lastME2(double v) const { lastXCombPtr()->lastME2(v); }
void MEBase::lastMECrossSection(CrossSection v) const { lastXCombPtr()->lastMECrossSection(v); }
void MEBase::lastMEPDFWeight(double v) const { lastXCombPtr()->lastMEPDFWeight(v); }
void MEBase::jacobian(double j) { lastXCombPtr()->jacobian(j); }
double MEBase::reWeight() const {
double w = 1.0;
for ( int i = 0, N = reweights.size(); i < N; ++i ) {
reweights[i]->setXComb(lastXCombPtr());
w *= reweights[i]->weight();
}
return w;
}
double MEBase::preWeight() const {
lastPreweight = 1.0;
for ( int i = 0, N = preweights.size(); i < N; ++i ) {
preweights[i]->setXComb(lastXCombPtr());
lastPreweight *= preweights[i]->weight();
}
return lastPreweight;
}
void MEBase::generateSubCollision(SubProcess &) {}
const DVector & MEBase::meInfo() const {
return lastXCombPtr()->meInfo();
}
void MEBase::meInfo(const DVector & info) const {
lastXCombPtr()->meInfo(info);
}
double MEBase::alphaS() const {
return SM().alphaS(scale());
}
double MEBase::alphaEM() const {
return SM().alphaEM(scale());
}
void MEBase::persistentOutput(PersistentOStream & os) const {
os << theDiagrams << ounit(theLastSHat, GeV2) << reweights << preweights
<< lastPreweight << theAmplitude << theLastXComb
<< theMaxMultCKKW << theMinMultCKKW;
}
void MEBase::persistentInput(PersistentIStream & is, int) {
is >> theDiagrams >> iunit(theLastSHat, GeV2) >> reweights >> preweights
>> lastPreweight >> theAmplitude >> theLastXComb
>> theMaxMultCKKW >> theMinMultCKKW;
}
AbstractClassDescription<MEBase> MEBase::initMEBase;
// Definition of the static class description member.
void MEBase::Init() {
static ClassDocumentation<MEBase> documentation
("The ThePEG::MEBase class is the base class for all matrix elements "
"to be used for generating sub processes in ThePEG");
static RefVector<MEBase,ReweightBase> interfaceReweights
("Reweights",
"A list of ThePEG::ReweightBase objects to modify this matrix elements.",
&MEBase::reweights, 0, false, false, true, false);
static RefVector<MEBase,ReweightBase> interfacePreweights
("Preweights",
"A list of ThePEG::ReweightBase objects to bias the phase space for this "
"matrix elements without influencing the actual cross section.",
&MEBase::preweights, 0, false, false, true, false);
static Reference<MEBase,Amplitude> interfaceAmplitude
("Amplitude",
"The eventual amplitude associated to this matrix element.",
&MEBase::theAmplitude, false, false, true, true);
static Parameter<MEBase,int> interfaceMaxMultCKKW
("MaxMultCKKW",
"If this matrix element is to be used together with others for CKKW-"
"reweighting and veto, this should give the multiplicity of outgoing "
"particles in the highest multiplicity matrix element in the group. "
"If set to zero, no CKKW procedure should be applied.",
&MEBase::theMaxMultCKKW, 0, 0, 0,
true, false, Interface::lowerlim);
static Parameter<MEBase,int> interfaceMinMultCKKW
("MinMultCKKW",
"If this matrix element is to be used together with others for CKKW-"
"reweighting and veto, this should give the multiplicity of outgoing "
"particles in the lowest multiplicity matrix element in the group. If "
"larger or equal to <interface>MaxMultCKKW</interface>, no CKKW "
"procedure should be applied.",
&MEBase::theMinMultCKKW, 0, 0, 0,
true, false, Interface::lowerlim);
interfaceMaxMultCKKW.rank(2.0);
interfaceMinMultCKKW.rank(1.0);
}
|