SlowRsclCharmDISPXSecLO.h
Go to the documentation of this file.
1 //____________________________________________________________________________
2 /*!
3 
4 \class genie::SlowRsclCharmDISPXSecLO
5 
6 \brief Computes, at Leading Order (LO), the differential cross section for
7  neutrino charm production using a slow rescaling model.
8  Is a concrete implementation of the XSecAlgorithmI interface.
9 
10 \author Costas Andreopoulos <constantinos.andreopoulos \at cern.ch>
11  University of Liverpool & STFC Rutherford Appleton Laboratory
12 
13 \created March 17, 2005
14 
15 \cpright Copyright (c) 2003-2020, The GENIE Collaboration
16  For the full text of the license visit http://copyright.genie-mc.org
17 */
18 //____________________________________________________________________________
19 
20 #ifndef _SLOW_RESCALING_CHARM_DIS_PARTIAL_XSEC_LO_H_
21 #define _SLOW_RESCALING_CHARM_DIS_PARTIAL_XSEC_LO_H_
22 
24 
25 namespace genie {
26 
27 class PDFModelI;
28 class XSecIntegratorI;
29 
31 
32 public:
35  virtual ~SlowRsclCharmDISPXSecLO();
36 
37  //-- XSecAlgorithmI interface implementation
38  double XSec (const Interaction * i, KinePhaseSpace_t k) const;
39  double Integral (const Interaction * i) const;
40  bool ValidProcess (const Interaction * i) const;
41 
42  //-- override the Algorithm::Configure methods to load configuration
43  // data to private data members
44  void Configure (const Registry & config);
45  void Configure (string param_set);
46 
47 private:
48 
49  void LoadConfig (void);
50 
53 
54 //bool fDContributes;
55 //bool fSContributes;
56  double fMc;
57  double fVcd;
58  double fVcs;
59  double fMc2;
60  double fVcd2;
61  double fVcs2;
62 };
63 
64 } // genie namespace
65 #endif // _SLOW_RESCALING_CHARM_DIS_PARTIAL_XSEC_LO_H_
Cross Section Calculation Interface.
double XSec(const Interaction *i, KinePhaseSpace_t k) const
Compute the cross section for the input interaction.
THE MAIN GENIE PROJECT NAMESPACE
Definition: AlgCmp.h:25
Cross Section Integrator Interface.
enum genie::EKinePhaseSpace KinePhaseSpace_t
Pure abstract base class. Defines the PDFModelI interface to be implemented by wrapper classes to exi...
Definition: PDFModelI.h:28
Computes, at Leading Order (LO), the differential cross section for neutrino charm production using a...
Summary information for an interaction.
Definition: Interaction.h:56
bool ValidProcess(const Interaction *i) const
Can this cross section algorithm handle the input process?
static Config * config
Definition: config.cpp:1054
A registry. Provides the container for algorithm configuration parameters.
Definition: Registry.h:65
void Configure(const Registry &config)
double Integral(const Interaction *i) const
const XSecIntegratorI * fXSecIntegrator