GENIEGenerator
Loading...
Searching...
No Matches
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 <c.andreopoulos \at cern.ch>
12 University of Liverpool
13
14\created February 15, 2008
15
16\cpright Copyright (c) 2003-2025, 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
26namespace genie {
27
29
30public:
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
46private:
47 void LoadConfig (void);
48
49 double fGw;
50};
51
52} // genie namespace
53#endif // _H3_ANOMALY_MEDIATED_NUGAMMA_PXSEC_H_
void Configure(const Registry &config)
double Integral(const Interaction *i) const
double XSec(const Interaction *i, KinePhaseSpace_t k) const
Compute the cross section for the input interaction.
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?
Summary information for an interaction.
Definition Interaction.h:56
A registry. Provides the container for algorithm configuration parameters.
Definition Registry.h:65
THE MAIN GENIE PROJECT NAMESPACE
Definition AlgCmp.h:25
enum genie::EKinePhaseSpace KinePhaseSpace_t