GENIEGenerator
Loading...
Searching...
No Matches
ReinDFRPXSec.h
Go to the documentation of this file.
1//____________________________________________________________________________
2/*!
3
4\class genie::ReinDFRPXSec
5
6\brief Neutrino diffractive pion production cross section.
7
8\ref D.Rein, Nucl.Phys.B278(1986) 61-77
9
10\author Costas Andreopoulos <c.andreopoulos \at cern.ch>
11 University of Liverpool
12
13\created Feb 17th, 2009
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
18*/
19//____________________________________________________________________________
20
21#ifndef _REIN_DFRC_PXSEC_H_
22#define _REIN_DFRC_PXSEC_H_
23
24#include <string>
25
27
28namespace genie {
29
30class XSecIntegratorI;
31
33
34public:
36 ReinDFRPXSec(const std::string & config);
37 virtual ~ReinDFRPXSec();
38
39 // XSecAlgorithmI interface implementation
40 double XSec (const Interaction * i, KinePhaseSpace_t k) const;
41 double Integral (const Interaction * i) const;
42 bool ValidProcess (const Interaction * i) const;
43
44 // overload the Algorithm::Configure() methods to load private data
45 // members from configuration options
46 void Configure(const Registry & config);
47 void Configure(string config);
48
49private:
50
51 void LoadConfig (void);
52
53 double fMa; ///< axial mass
54 double fBeta; ///< b in dsig{piN}/dt = dsig0{piN}/dt * exp(-b(t-tmin)), b ~ 0.333 (nucleon_size)^2
55
57};
58
59} // genie namespace
60#endif // _REIN_DFRC_PXSEC_H_
Summary information for an interaction.
Definition Interaction.h:56
A registry. Provides the container for algorithm configuration parameters.
Definition Registry.h:65
double XSec(const Interaction *i, KinePhaseSpace_t k) const
Compute the cross section for the input interaction.
double fBeta
b in dsig{piN}/dt = dsig0{piN}/dt * exp(-b(t-tmin)), b ~ 0.333 (nucleon_size)^2
const XSecIntegratorI * fXSecIntegrator
void Configure(const Registry &config)
double fMa
axial mass
bool ValidProcess(const Interaction *i) const
Can this cross section algorithm handle the input process?
double Integral(const Interaction *i) const
Cross Section Integrator Interface.
THE MAIN GENIE PROJECT NAMESPACE
Definition AlgCmp.h:25
enum genie::EKinePhaseSpace KinePhaseSpace_t