GENIEGenerator
Loading...
Searching...
No Matches
ReinSehgalRESXSec.h
Go to the documentation of this file.
1//____________________________________________________________________________
2/*!
3
4\class genie::ReinSehgalRESXSec
5
6\brief Computes the cross section for an exclusive 1pi reaction through
7 resonance neutrinoproduction according to the Rein-Sehgal model.
8
9 This algorithm produces in principle what you could also get from
10 the genie::RESXSec algorithm (RES cross section integrator) by
11 specifying the genie::ReinSehgalRESPXSec as the differential
12 cross section model. However, ReinSehgalRESXSec offers a faster
13 alternative. Before computing any RES cross section this algorithm
14 computes and caches splines for resonance neutrino-production cross
15 sections. This improves the speed of the GENIE spline construction
16 phase if splines for multiple nuclear targets are to be computed.
17
18 Is a concrete implementation of the XSecAlgorithmI interface.\n
19
20\ref D.Rein and L.M.Sehgal, Neutrino Excitation of Baryon Resonances
21 and Single Pion Production, Ann.Phys.133, 79 (1981)
22
23\author Costas Andreopoulos <c.andreopoulos \at cern.ch>
24 University of Liverpool
25
26\created March 09, 2006
27
28\cpright Copyright (c) 2003-2025, The GENIE Collaboration
29 For the full text of the license visit http://copyright.genie-mc.org
30*/
31//____________________________________________________________________________
32
33#ifndef _REIN_SEHGAL_RES_XSEC_H_
34#define _REIN_SEHGAL_RES_XSEC_H_
35
37
38namespace genie {
39
41
42public:
44 ReinSehgalRESXSec(string param_set);
45 virtual ~ReinSehgalRESXSec();
46
47 // XSecIntegratorI interface implementation
48 double Integrate(const XSecAlgorithmI * model, const Interaction * i) const;
49
50 // Overload the Algorithm::Configure() methods to load private data
51 // members from configuration options
52 void Configure(const Registry & config);
53 void Configure(string config);
54
55private:
56 void LoadConfig(void);
57
58 bool fUsePauliBlocking; ///< account for Pauli blocking?
59};
60
61} // genie namespace
62#endif // _REIN_SEHGAL_RES_XSEC_H_
Summary information for an interaction.
Definition Interaction.h:56
A registry. Provides the container for algorithm configuration parameters.
Definition Registry.h:65
void Configure(const Registry &config)
double Integrate(const XSecAlgorithmI *model, const Interaction *i) const
bool fUsePauliBlocking
account for Pauli blocking?
Cross Section Calculation Interface.
THE MAIN GENIE PROJECT NAMESPACE
Definition AlgCmp.h:25