GENIEGenerator
Loading...
Searching...
No Matches
NuElectronPXSec.h
Go to the documentation of this file.
1//____________________________________________________________________________
2/*!
3
4\class genie::NuElectronPXSec
5
6\brief nu/nubar + e- scattering differential cross section \n
7 The cross section algorithm handles:
8 - nue/nuebar + e- -> nue/nuebar + e- [CC + NC + interference]
9 - numu/nutau + e- -> numu/nutau + e- [NC]
10 - numubar/nutaubar + e- -> numubar/nutaubar + e- [NC]
11 - numu/nutau + e- -> l- + nu_e [CC]
12
13 Is a concrete implementation of the XSecAlgorithmI interface. \n
14
15\ref W.J.Marciano and Z.Parsa, Neutrino-electron scattering theory,
16 J.Phys.G: Nucl.Part.Phys. 29 (2003) 2629-2645
17
18\author Costas Andreopoulos <c.andreopoulos \at cern.ch>
19 University of Liverpool
20
21\created February 10, 2006
22
23\cpright Copyright (c) 2003-2025, The GENIE Collaboration
24 For the full text of the license visit http://copyright.genie-mc.org
25*/
26//____________________________________________________________________________
27
28#ifndef _NU_ELECTRON_PARTIAL_XSEC_H_
29#define _NU_ELECTRON_PARTIAL_XSEC_H_
30
32
33namespace genie {
34
35class IntegratorI;
36class XSecIntegratorI;
37
39
40public:
42 NuElectronPXSec(string config);
43 virtual ~NuElectronPXSec();
44
45 //-- XSecAlgorithmI interface implementation
46 double XSec (const Interaction * i, KinePhaseSpace_t k) const;
47 double Integral (const Interaction * i) const;
48 bool ValidProcess (const Interaction * i) const;
49 bool ValidKinematics (const Interaction * i) const;
50
51 //-- overload the Algorithm::Configure() methods to load private data
52 // members from configuration options
53 void Configure(const Registry & config);
54 void Configure(string config);
55
56private:
57 void LoadConfig (void);
58
60
61 double fSin28w; // sin^2(theta-weinberg)
62 double fSin48w;
63};
64
65} // genie namespace
66#endif // _NU_ELECTRON_PARTIAL_XSEC_H_
Summary information for an interaction.
Definition Interaction.h:56
double Integral(const Interaction *i) const
bool ValidKinematics(const Interaction *i) const
Is the input kinematical point a physically allowed one?
bool ValidProcess(const Interaction *i) const
Can this cross section algorithm handle the input process?
const XSecIntegratorI * fXSecIntegrator
double XSec(const Interaction *i, KinePhaseSpace_t k) const
Compute the cross section for the input interaction.
void Configure(const Registry &config)
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