H3AMNuGammaPXSec.h
Go to the documentation of this file.
1 //____________________________________________________________________________
2 /*!
3 
4 \class genie::H3AMNuGammaPXSec
5 
6 \brief An anomaly-mediated neutrino-photon interaction cross section model
7  Is a concrete implementation of the XSecAlgorithmI interface.
8 
9 \ref J.A.Harvey, C.T.Hill and R.J.Hill, PRL99, 261601 (2007)
10 
11 \author Costas Andreopoulos <constantinos.andreopoulos \at cern.ch>
12  University of Liverpool & STFC Rutherford Appleton Laboratory
13 
14 \created February 15, 2008
15 
16 \cpright Copyright (c) 2003-2020, The GENIE Collaboration
17  For the full text of the license visit http://copyright.genie-mc.org
18 */
19 //____________________________________________________________________________
20 
21 #ifndef _H3_ANOMALY_MEDIATED_NUGAMMA_PXSEC_H_
22 #define _H3_ANOMALY_MEDIATED_NUGAMMA_PXSEC_H_
23 
25 
26 namespace genie {
27 
29 
30 public:
32  H3AMNuGammaPXSec(string config);
33  virtual ~H3AMNuGammaPXSec();
34 
35  //-- XSecAlgorithmI interface implementation
36  double XSec (const Interaction * i, KinePhaseSpace_t k) const;
37  double Integral (const Interaction * i) const;
38  bool ValidProcess (const Interaction * i) const;
39  bool ValidKinematics (const Interaction * i) const;
40 
41  //-- overload the Algorithm::Configure() methods to load private data
42  // members from configuration options
43  void Configure(const Registry & config);
44  void Configure(string config);
45 
46 private:
47  void LoadConfig (void);
48 
49  double fGw;
50 };
51 
52 } // genie namespace
53 #endif // _H3_ANOMALY_MEDIATED_NUGAMMA_PXSEC_H_
Cross Section Calculation Interface.
THE MAIN GENIE PROJECT NAMESPACE
Definition: AlgCmp.h:25
An anomaly-mediated neutrino-photon interaction cross section model Is a concrete implementation of t...
enum genie::EKinePhaseSpace KinePhaseSpace_t
Summary information for an interaction.
Definition: Interaction.h:56
bool ValidKinematics(const Interaction *i) const
Is the input kinematical point a physically allowed one?
static Config * config
Definition: config.cpp:1054
void Configure(const Registry &config)
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.
A registry. Provides the container for algorithm configuration parameters.
Definition: Registry.h:65
double Integral(const Interaction *i) const