GENIEGenerator
Loading...
Searching...
No Matches
PhotonCOHPXSec.h
Go to the documentation of this file.
1//____________________________________________________________________________
2/*!
3
4\class genie::PhotonCOHPXSec
5
6\brief Differential cross section for W boson production
7
8\author Alfonso Garcia <aagarciasoto \at km3net.de>
9 IFIC & Harvard University
10
11\ref Phys. Rev. D 100, 091301 (2019)
12
13\created Dec 8, 2021
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 or see $GENIE/LICENSE
18*/
19//____________________________________________________________________________
20
21#ifndef _PHOTON_COH_PXSEC_H_
22#define _PHOTON_COH_PXSEC_H_
23
26
27namespace genie {
28
29class XSecIntegratorI;
30
32
33public:
35 PhotonCOHPXSec (string config);
36 virtual ~PhotonCOHPXSec ();
37
38 // XSecAlgorithmI interface implementation
39 double XSec (const Interaction * i, KinePhaseSpace_t k) const;
40 double Integral (const Interaction * i) const;
41 bool ValidProcess (const Interaction * i) const;
42
43 // overload the Algorithm::Configure() methods to load private data
44 // members from configuration options
45 void Configure(const Registry & config);
46 void Configure(string config);
47
48private:
49 void LoadConfig (void);
50 double F2_Q (double Q, double r0) const; //EM Nuclear Form-factor
51
52
53 const XSecIntegratorI * fXSecIntegrator; ///< diff. xsec integrator
54
56
57};
58
59} // genie namespace
60
61#endif // _PHOTON_COH_PXSEC_H_
const double r0
Born level nu-electron cross section.
Definition Born.h:26
Summary information for an interaction.
Definition Interaction.h:56
const XSecIntegratorI * fXSecIntegrator
diff. xsec integrator
double F2_Q(double Q, double r0) const
double Integral(const Interaction *i) const
bool ValidProcess(const Interaction *i) const
Can this cross section algorithm handle the input process?
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