cepgen is hosted by Hepforge, IPPP Durham
CepGen 1.2.5
Central exclusive processes event generator
Loading...
Searching...
No Matches
PartonFluxFactory.h File Reference
+ Include dependency graph for PartonFluxFactory.h:
+ This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

struct  PartonFluxFactory
 A generic parton fluxes objects factory. More...
 

Namespaces

namespace  cepgen
 Common namespace for this Monte Carlo generator.
 

Macros

#define REGISTER_COLLINEAR_FLUX(name, obj)
 Add a generic collinear parton flux evaluator builder definition.
 
#define REGISTER_KT_FLUX(name, id, obj)
 Add a generic KT-factorised flux evaluator builder definition.
 

Functions

 DEFINE_FACTORY (CollinearFluxFactory, CollinearFlux, "Collinear parton flux estimators factory")
 A collinear parton fluxes objects factory.
 
 DEFINE_FACTORY (KTFluxFactory, KTFlux, "KT-factorised flux estimators factory")
 A KT-factorised parton fluxes objects factory.
 

Macro Definition Documentation

◆ REGISTER_COLLINEAR_FLUX

#define REGISTER_COLLINEAR_FLUX (   name,
  obj 
)
Value:
namespace cepgen { \
struct BUILDERNM(obj) { \
BUILDERNM(obj)() { CollinearFluxFactory::get().registerModule<obj>(name); } \
}; \
static const BUILDERNM(obj) gCollinearFlux##obj; \
} \
static_assert(true, "")
#define BUILDERNM(obj)
Name of the object builder.
Common namespace for this Monte Carlo generator.

Definition at line 25 of file PartonFluxFactory.h.

◆ REGISTER_KT_FLUX

#define REGISTER_KT_FLUX (   name,
  id,
  obj 
)
Value:
namespace cepgen { \
struct BUILDERNM(obj) { \
BUILDERNM(obj)() { KTFluxFactory::get().addIndex(id, name).registerModule<obj>(name); } \
}; \
static const BUILDERNM(obj) gKTFlux##obj; \
} \
static_assert(true, "")

Definition at line 34 of file PartonFluxFactory.h.