GENIEGenerator
Loading...
Searching...
No Matches
RosenbluthPXSec.h
Go to the documentation of this file.
1//____________________________________________________________________________
2/*!
3
4\class genie::RosenbluthPXSec
5
6\brief Differential cross section for charged lepton elastic scattering. \n
7 Is a concrete implementation of the XSecAlgorithmI interface. \n
8
9\ref See for example:
10 R.Bradford, A.Bodek, H.Budd, J.Arrington, Nucl.Phys.B159 (2006) 127
11
12\author Costas Andreopoulos <c.andreopoulos \at cern.ch>
13 University of Liverpool
14
15\created Sep 15, 2009
16
17\cpright Copyright (c) 2003-2025, The GENIE Collaboration
18 For the full text of the license visit http://copyright.genie-mc.org
19*/
20//____________________________________________________________________________
21
22#ifndef _ROSENBLUTH_CROSS_SECTION_H_
23#define _ROSENBLUTH_CROSS_SECTION_H_
24
27
28namespace genie {
29
30class XSecIntegratorI;
31
33
34public:
36 RosenbluthPXSec(string config);
37 virtual ~RosenbluthPXSec();
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 // override the Algorithm::Configure methods to load configuration
45 // data to private data members
46 void Configure (const Registry & config);
47 void Configure (string param_set);
48
49private:
50
51 void LoadConfig(void);
52
58
59};
60
61} // genie namespace
62
63#endif
Pure abstract base class. Defines the ELFormFactorsModelI interface to be implemented by any algorith...
A class holding the Elastic Form Factors Ge,Gm.
Summary information for an interaction.
Definition Interaction.h:56
A registry. Provides the container for algorithm configuration parameters.
Definition Registry.h:65
double XSec(const Interaction *i, KinePhaseSpace_t k) const
Compute the cross section for the input interaction.
const XSecIntegratorI * fXSecIntegrator
double Integral(const Interaction *i) const
bool ValidProcess(const Interaction *i) const
Can this cross section algorithm handle the input process?
void Configure(const Registry &config)
const ELFormFactorsModelI * fElFFModel
Cross Section Integrator Interface.
THE MAIN GENIE PROJECT NAMESPACE
Definition AlgCmp.h:25
enum genie::EKinePhaseSpace KinePhaseSpace_t