RSHelicityAmplModelNCn.h
Go to the documentation of this file.
1 //____________________________________________________________________________
2 /*!
3 
4 \class genie::RSHelicityAmplModelNCn
5 
6 \brief The Helicity Amplitudes, for all baryon resonances, for NC neutrino
7  interactions on free neutrons, as computed in the Rein-Sehgal's paper.
8 
9  Concrete implementation of the RSHelicityAmplModelI interface.
10 
11 \author Costas Andreopoulos <constantinos.andreopoulos \at cern.ch>
12  University of Liverpool & STFC Rutherford Appleton Laboratory
13 
14 \created May 03, 2004
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 _HELICITY_AMPL_MODEL_NC_N_H_
22 #define _HELICITY_AMPL_MODEL_NC_N_H_
23 
25 
26 namespace genie {
27 
29 
30 public:
33  virtual ~RSHelicityAmplModelNCn();
34 
35  // RSHelicityAmplModelI interface implementation
36  const RSHelicityAmpl & Compute(Resonance_t res, const FKR & fkr) const;
37 
38  // overload the Algorithm::Configure() methods to load private data
39  // members from configuration options
40  void Configure(const Registry & config);
41  void Configure(string config);
42 
43 private:
44  void LoadConfig(void);
45 
47  double fSin28w;
48 };
49 
50 } // genie namespace
51 #endif // _HELICITY_AMPL_MODEL_NC_N_H_
THE MAIN GENIE PROJECT NAMESPACE
Definition: AlgCmp.h:25
The Helicity Amplitudes, for all baryon resonances, for NC neutrino interactions on free neutrons...
Simple struct-like class holding the Feynmann-Kislinger-Ravndall (FKR) baryon excitation model parame...
Definition: FKR.h:31
const RSHelicityAmpl & Compute(Resonance_t res, const FKR &fkr) const
enum genie::EResonance Resonance_t
A class holding the Rein-Sehgal&#39;s helicity amplitudes.
static Config * config
Definition: config.cpp:1054
Pure abstract base class. Defines the RSHelicityAmplModelI interface.
void Configure(const Registry &config)
A registry. Provides the container for algorithm configuration parameters.
Definition: Registry.h:65