cepgen is hosted by Hepforge, IPPP Durham
CepGen 1.2.5
Central exclusive processes event generator
Loading...
Searching...
No Matches
ktProcess_cfi.py
Go to the documentation of this file.
7
8from math import pi
9from .containers_cff import Module, Parameters
10from .ktFluxes_cff import *
11
12
13process = Module('ktProcess',
14 ktFactorised = True,
15 outKinematics = Parameters(
16 #--- cuts on initial-state partons
17 qt = (0., 50.),
18 phiqt = (0., 2.*pi),
19 #--- cuts on individual particles defining the central system
20 rapidity = (-6., 6.),
21 #--- cuts on the pt(outgoing system) (hyper-)plane
22 ptdiff = (0., 500.),
23 phidiff = (0., 2.*pi),
24 ),
25)
A named parameters set to steer a generic module.
A raw list of steering parameters.