/usr/include/ThePEG/PDF/PartonBinInstance.h is in libthepeg-dev 1.8.0-3build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 | // -*- C++ -*-
//
// PartonBinInstance.h 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.
//
#ifndef THEPEG_PartonBinInstance_H
#define THEPEG_PartonBinInstance_H
// This is the declaration of the PartonBinInstance class.
#include "ThePEG/Config/ThePEG.h"
#include "ThePEG/PDF/PartonBin.h"
namespace ThePEG {
ThePEG_DECLARE_CLASS_POINTERS(PartonBinInstance,PBIPtr);
/** A pair of pointers to PartonBinInstance objects. */
typedef pair<PBIPtr,PBIPtr> PBIPair;
ThePEG_DECLARE_CLASS_POINTERS(RemInfoBase,RemIPtr);
/**
* PartonBinInstance is used to store information about the generation
* of a given parton extraction for a corresponding PartonBin object.
*/
class PartonBinInstance: public PersistentBase {
public:
/** @name Standard constructors and destructors. */
//@{
/**
* Default constructor.
*/
PartonBinInstance();
/**
* Copy-constructor.
*/
PartonBinInstance(const PartonBinInstance &);
/**
* Destructor.
*/
virtual ~PartonBinInstance();
/**
* Constructor taking a PartonBin as argument. The second argument
* should be used if the incoming bin is already known and exists.
*/
PartonBinInstance(tcPBPtr, tPBIPtr = tPBIPtr());
/**
* Constructor using an already prepared extracted parton. This will
* also initialize the x, and scale values. To calculate the
* momentum fractions, a Direction<0> object must have been properly
* initialized.
*
* @param parton the extracted parton which must have its first
* parent set to define the particle extracted from.
*
* @param pb the PartonBin object corresponding to the extracted \a
* parton. If the particle extracted from in turn has been
* extracted, the incoming() member of the PartonBin must point to
* the corresponding PartonBin.
*
* @param scale the resolution scale at which the \a parton was
* extracted.
*/
PartonBinInstance(tPPtr parton, tcPBPtr pb, Energy2 scale = ZERO);
/**
* Constructor using a parton which is to be extracted from the
* given particle, but no mother-child relations exist, yet. This
* will also initialize the x, and scale values. To calculate the
* momentum fractions, a Direction<0> object must have been properly
* initialized.
*/
PartonBinInstance(tPPtr particle, tPPtr parton, tcPBPtr pb,
Energy2 scale = ZERO);
//@}
public:
/** @name Access information about the corresponding PartonBin object. */
//@{
/**
* Return a pointer to the PartonBin this instance refer to.
*/
tcPBPtr bin() const { return theBin; }
/**
* Return pointers to the bins this instance refer to in case more
* than one parton has been extracted.
*/
const PartonVector & bins() const { return theBins; }
/**
* Return a pointer to the data object of the incoming particle.
*/
tcPDPtr particleData() const { return bin()->particle(); }
/**
* Return a pointer to the data object of the extracted parton.
*/
tcPDPtr partonData() const { return bin()->parton(); }
/**
* In the case the incoming particle in turn is extracted from
* another particle, return the PartonBinInstance for that
* extraction.
*/
tPBIPtr incoming() const { return theIncoming; }
/**
* Return the parton bin instance corresponding to the first
* incoming particle for this bin.
*/
tPBIPtr getFirst();
/**
* The PDFBase object describing the momentum distribution of the
* parton within the particle in this PartonBin.
*/
tcPDFPtr pdf() const { return bin()->pdf(); }
/**
* The remnant handler associated with the pdf().
*/
tcRemHPtr remnantHandler() const { return bin()->remnantHandler(); }
/**
* Return true if the corresponding PDFs has a pole at $x=1$ for the
* current particle/parton combination.
*/
bool hasPoleIn1() const;
//@}
/** @name Functions used for the generation. */
//@{
/**
* Reset the current PartonBin, making room for a new event.
*/
void reset(double lx = 0, Energy2 Q2 = ZERO);
/**
* Reset last generated l and Q2 values of this and parent bins.
*/
void prepare();
/**
* Generate l and Q2 of this and parent bins.
*/
void generate(const double * r);
/**
* Get the jacobian associated with the phase space point generated.
*/
double jacobian() const { return theJacobian; }
/**
* Set the jacobian associated with the phase space point generated.
*/
void jacobian(double j) { theJacobian = j; }
//@}
/** @name Access information about the generated extraction. */
//@{
/**
* Get the current particle instance.
*/
tPPtr particle() const { return theParticle; }
/**
* Set the current particle instance.
*/
void particle(tPPtr p) { theParticle = p; }
/**
* Get the current parton instance.
*/
tPPtr parton() const { return theParton; }
/**
* Set the current parton instance.
*/
void parton(tPPtr p) { theParton = p; }
/**
* The currently extracted partons (in case of multiple
* interactions.
*/
const PVector & partons() const { return thePartons; }
/**
* Get the momentum fraction of this parton w.r.t. the incoming
* particle in this bin.
*/
double xi() const {
if ( theXi < 0.0 ) theXi = exp(-li());
return theXi;
}
/**
* Get one minus the momentum fraction of this parton w.r.t. the
* incoming particle in this bin.
*/
double eps() const {
if ( theEps < 0.0 ) theEps = Math::exp1m(-li());
return theEps;
}
/**
* Get the logarithmic momentum fraction of this parton w.r.t. the
* incoming particle in this bin.
*/
double li() const { return theLi; }
/**
* Set the logarithmic momentum fraction of this parton w.r.t. the
* incoming particle in this bin.
*/
void li(double lx) {
theLi = lx;
theXi = theEps = -1.0;
}
/**
* Get the momentum fraction of this parton w.r.t. the collidig
* particles.
*/
double x() const {
if ( theX < 0.0 ) theX = exp(-l());
return theX;
}
/**
* Get the logarithmic momentum fraction of this parton w.r.t. the
* collidig particles.
*/
double l() const { return theL; }
/**
* Set the logarithmic momentum fraction of this parton w.r.t. the
* collidig particles.
*/
void l(double lx) {
theL = lx;
theX = -1.0;
}
/**
* Get the scale at which the current parton was extracted.
*/
Energy2 scale() const { return theScale; }
/**
* Set the scale at which the current parton was extracted.
*/
void scale(Energy2 s) { theScale = s; }
/**
* Return the transverse momentum of the extracted parton.
*/
const TransverseMomentum & kT() const { return theKT; }
/**
* Get the weight associated with the remnant generation.
*/
double remnantWeight() const { return theRemnantWeight; }
/**
* Set the weight associated with the remnant generation.
*/
void remnantWeight(double w) { theRemnantWeight = w; }
/**
* Get the current remnants.
*/
const PVector & remnants() const { return theRemnants; }
/**
* Set the current remnants.
*/
void remnants(const PVector & rems) { theRemnants = rems; }
/**
* Get information saved by the remnant handler from the generation,
* to be used in the construction of the remnants. (In addition the
* remnantWeight and remnants() may be used for this purpose.)
*/
tRemIPtr remnantInfo() const { return theRemInfo; }
/**
* Set information saved by the remnant handler from the generation,
* to be used in the construction of the remnants. (In addition the
* remnantWeight and remnants() may be used for this purpose.)
*/
void remnantInfo(tRemIPtr ri) { theRemInfo = ri; }
//@}
public:
/** @name Functions used by the persistent I/O system. */
//@{
/**
* Function used to write out object persistently.
* @param os the persistent output stream written to.
*/
void persistentOutput(PersistentOStream & os) const;
/**
* Function used to read in object persistently.
* @param is the persistent input stream read from.
* @param version the version number of the object when written.
*/
void persistentInput(PersistentIStream & is, int version);
//@}
/**
* Standard Init function used to initialize the interfaces.
*/
static void Init();
private:
/**
* Pointer to the main bin this instance refer to.
*/
cPBPtr theBin;
/**
* Pointer to the main bin (and secondary in case several partons
* have been extracted this instance refer to.
*/
PartonVector theBins;
/**
* In the case the incoming particle in turn is extracted from
* another particle, this is the PartonBinInstance for that
* extraction.
*/
PBIPtr theIncoming;
/**
* The jacobian associated with the phase space point generated.
*/
double theJacobian;
/**
* The current particle instance.
*/
PPtr theParticle;
/**
* The current parton instance.
*/
PPtr theParton;
/**
* The currently extracted partons (in case of multiple
* interactions.
*/
PVector thePartons;
/**
* The momentum fraction (xi, li=log(xi), eps=1-xi), of this
* parton w.r.t. the incoming particle in this
* bin.
*/
mutable double theXi;
/**
* The momentum fraction (xi, li=log(xi), eps=1-xi), of this
* parton w.r.t. the incoming particle in this
* bin.
*/
mutable double theEps;
/**
* The momentum fraction (xi, li=log(xi), eps=1-xi), of this
* parton w.r.t. the incoming particle in this
* bin.
*/
double theLi;
/**
* The momentum fraction (x, l=log(x)) of this parton
* w.r.t. the collidig particles.
*/
mutable double theX;
/**
* The momentum fraction (x, l=log(x)) of this parton
* w.r.t. the collidig particles.
*/
double theL;
/**
* The scale at which the current parton was extracted.
*/
Energy2 theScale;
/**
* The transverse momentum of the extracted parton.
*/
TransverseMomentum theKT;
/**
* The weight associated with the remnant generation.
*/
double theRemnantWeight;
/**
* The current remnants.
*/
PVector theRemnants;
/**
* The information saved by the remnant handler from the generation,
* to be used in the construction of the remnants. (In addition the
* remnantWeight and lastRemnants() may be used for this purpose.)
*/
RemIPtr theRemInfo;
private:
/**
* Describe a concrete class with persistent data.
*/
static ClassDescription<PartonBinInstance> initPartonBinInstance;
/**
* Private and non-existent assignment operator.
*/
PartonBinInstance & operator=(const PartonBinInstance &);
};
/** Empty base class. A RemnantHandler may use sub-classes to store
information about the generation of remnants. */
class RemInfoBase: public Base {
public:
/** The descructor. */
virtual ~RemInfoBase() {}
};
}
namespace ThePEG {
/** @cond TRAITSPECIALIZATIONS */
/** This template specialization informs ThePEG about the base classes
* of PartonBinInstance. */
template <>
struct BaseClassTrait<PartonBinInstance,1>: public ClassTraitsType {
/** Typedef of the first base class of PartonBinInstance. */
typedef Base NthBase;
};
/** This template specialization informs ThePEG about the name of the
* PartonBinInstance class. */
template <>
struct ClassTraits<PartonBinInstance>:
public ClassTraitsBase<PartonBinInstance> {
/** Return a platform-independent class name */
static string className() { return "ThePEG::PartonBinInstance"; }
};
/** @endcond */
}
#endif /* THEPEG_PartonBinInstance_H */
|