GENIEGenerator
Loading...
Searching...
No Matches
KNOTunedQPMDISPXSec.h
Go to the documentation of this file.
1//____________________________________________________________________________
2/*!
3
4\class genie::KNOTunedQPMDISPXSec
5
6\brief Computes DIS differential cross sections.
7 Is a concrete implementation of the XSecAlgorithmI interface.
8
9\ref E.A.Paschos and J.Y.Yu, Phys.Rev.D 65.03300
10
11\author Costas Andreopoulos <c.andreopoulos \at cern.ch>
12 University of Liverpool
13
14\created May 05, 2004
15
16\cpright Copyright (c) 2003-2025, The GENIE Collaboration
17 For the full text of the license visit http://copyright.genie-mc.org
18*/
19//____________________________________________________________________________
20
21#ifndef _KNO_DIS_PARTON_MODEL_PARTIAL_XSEC_H_
22#define _KNO_DIS_PARTON_MODEL_PARTIAL_XSEC_H_
23
27
28namespace genie {
29
30class HadronizationModelI;
31
33
34public:
36 KNOTunedQPMDISPXSec(string config);
37 virtual ~KNOTunedQPMDISPXSec();
38
39 // XSecAlgorithmI interface implementation
40 double XSec (const Interaction * i, KinePhaseSpace_t k) const;
41 double Integral (const Interaction * i) const;
42 bool ValidProcess (const Interaction * i) const;
43
44 // overload the Algorithm::Configure() methods to load private data
45 // members from configuration options
46 void Configure(const Registry & config);
47 void Configure(string config);
48
49private:
50 void LoadConfig (void);
51 double DISRESJoinSuppressionFactor (const Interaction * in) const;
52
53 const AGKYLowW2019 * fHadronizationModel; ///< hadronic multip. model
55 const XSecIntegratorI * fXSecIntegrator; ///< diff. xsec integrator
56
57 bool fUseCache; ///< cache reduction factors used in joining scheme
58 double fWcut; ///< apply DIS/RES joining scheme < Wcut
59 double fNRBEMScale; ///< apply NRB EM Scale factor
60};
61
62} // genie namespace
63#endif // _KNO_DIS_PARTON_MODEL_PARTIAL_XSEC_H_
A KNO-based hadronization model.
Summary information for an interaction.
Definition Interaction.h:56
double XSec(const Interaction *i, KinePhaseSpace_t k) const
Compute the cross section for the input interaction.
void Configure(const Registry &config)
bool fUseCache
cache reduction factors used in joining scheme
double DISRESJoinSuppressionFactor(const Interaction *in) const
double Integral(const Interaction *i) const
bool ValidProcess(const Interaction *i) const
Can this cross section algorithm handle the input process?
double fWcut
apply DIS/RES joining scheme < Wcut
const XSecIntegratorI * fXSecIntegrator
diff. xsec integrator
const AGKYLowW2019 * fHadronizationModel
hadronic multip. model
double fNRBEMScale
apply NRB EM Scale factor
Computes DIS differential cross sections. Is a concrete implementation of the XSecAlgorithmI interfac...
Definition QPMDISPXSec.h:33
A registry. Provides the container for algorithm configuration parameters.
Definition Registry.h:65
Cross Section Integrator Interface.
THE MAIN GENIE PROJECT NAMESPACE
Definition AlgCmp.h:25
enum genie::EKinePhaseSpace KinePhaseSpace_t