GENIEGenerator
Loading...
Searching...
No Matches
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 <c.andreopoulos \at cern.ch>
11 University of Liverpool
12
13\created March 17, 2005
14
15\cpright Copyright (c) 2003-2025, 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
25namespace genie {
26
27class PDFModelI;
28class XSecIntegratorI;
29
31
32public:
34 SlowRsclCharmDISPXSecLO(string config);
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
47private:
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_
Summary information for an interaction.
Definition Interaction.h:56
Pure abstract base class. Defines the PDFModelI interface to be implemented by wrapper classes to exi...
Definition PDFModelI.h:28
A registry. Provides the container for algorithm configuration parameters.
Definition Registry.h:65
void Configure(const Registry &config)
double XSec(const Interaction *i, KinePhaseSpace_t k) const
Compute the cross section for the input interaction.
bool ValidProcess(const Interaction *i) const
Can this cross section algorithm handle the input process?
const XSecIntegratorI * fXSecIntegrator
double Integral(const Interaction *i) const
Cross Section Integrator Interface.
THE MAIN GENIE PROJECT NAMESPACE
Definition AlgCmp.h:25
enum genie::EKinePhaseSpace KinePhaseSpace_t