GENIEGenerator
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
GLRESPXSec.h
Go to the documentation of this file.
1 //____________________________________________________________________________
2 /*!
3 
4 \class genie::GLRESPXSec
5 
6 \brief Differential cross section for glashow resonance
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-2024, 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 _GLASHOW_RESONANCE_PXSEC_H_
22 #define _GLASHOW_RESONANCE_PXSEC_H_
23 
26 
27 namespace genie {
28 
29 class XSecIntegratorI;
30 
31 class GLRESPXSec : public XSecAlgorithmI {
32 
33 public:
34  GLRESPXSec ();
35  GLRESPXSec (string config);
36  virtual ~GLRESPXSec ();
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 
48 private:
49  void LoadConfig (void);
50 
51  const XSecIntegratorI * fXSecIntegrator; ///< diff. xsec integrator
52 
53  double fWmin; ///< Minimum value of W
54 
56 
57 };
58 
59 } // genie namespace
60 
61 #endif // _GLASHOW_RESONANCE_XSEC_H_
Cross Section Calculation Interface.
Cross Section Integrator Interface.
double fWmin
Minimum value of W.
Definition: GLRESPXSec.h:53
enum genie::EKinePhaseSpace KinePhaseSpace_t
virtual ~GLRESPXSec()
Definition: GLRESPXSec.cxx:40
Summary information for an interaction.
Definition: Interaction.h:56
bool ValidProcess(const Interaction *i) const
Can this cross section algorithm handle the input process?
Definition: GLRESPXSec.cxx:121
double XSec(const Interaction *i, KinePhaseSpace_t k) const
Compute the cross section for the input interaction.
Definition: GLRESPXSec.cxx:45
void Configure(const Registry &config)
Definition: GLRESPXSec.cxx:137
Differential cross section for glashow resonance.
Definition: GLRESPXSec.h:31
Born level nu-electron cross section.
Definition: Born.h:26
const XSecIntegratorI * fXSecIntegrator
diff. xsec integrator
Definition: GLRESPXSec.h:51
A registry. Provides the container for algorithm configuration parameters.
Definition: Registry.h:65
double Integral(const Interaction *i) const
Definition: GLRESPXSec.cxx:114
void LoadConfig(void)
Definition: GLRESPXSec.cxx:150