COHXSecAR.h
Go to the documentation of this file.
1 //____________________________________________________________________________
2 /*!
3 
4 \class genie::COHXSecAR
5 
6 \brief Computes the cross section for COH neutrino-nucleus pi production.\n
7  Is a concrete implementation of the XSecIntegratorI interface.
8 
9 \author Costas Andreopoulos <constantinos.andreopoulos \at cern.ch>
10  STFC, Rutherford Appleton Laboratory
11 
12 \created May 04, 2004
13 
14 \cpright Copyright (c) 2003-2020, The GENIE Collaboration
15  For the full text of the license visit http://copyright.genie-mc.org
16 */
17 //____________________________________________________________________________
18 
19 #ifndef _COH_XSEC_AR_H_
20 #define _COH_XSEC_AR_H_
21 
23 
24 namespace genie {
25 
26 class COHXSecAR : public XSecIntegratorI {
27 public:
28  COHXSecAR();
29  COHXSecAR(string config);
30  virtual ~COHXSecAR();
31 
32  // XSecIntegratorI interface implementation
33  double Integrate(const XSecAlgorithmI * model, const Interaction * i) const;
34 
35  // overload the Algorithm::Configure() methods to load private data
36  // members from configuration options
37  void Configure(const Registry & config);
38  void Configure(string config);
39 
40 protected:
42 
43 private:
44  void LoadConfig (void);
45 };
46 
47 } // genie namespace
48 #endif // _COH_XSEC_H_
Cross Section Calculation Interface.
THE MAIN GENIE PROJECT NAMESPACE
Definition: AlgCmp.h:25
Cross Section Integrator Interface.
double Integrate(const XSecAlgorithmI *model, const Interaction *i) const
Definition: COHXSecAR.cxx:52
Definition: model.py:1
void Configure(const Registry &config)
Definition: COHXSecAR.cxx:126
Summary information for an interaction.
Definition: Interaction.h:56
static Config * config
Definition: config.cpp:1054
bool fSplitIntegral
Definition: COHXSecAR.h:41
Computes the cross section for COH neutrino-nucleus pi production. Is a concrete implementation of t...
Definition: COHXSecAR.h:26
A registry. Provides the container for algorithm configuration parameters.
Definition: Registry.h:65
void LoadConfig(void)
Definition: COHXSecAR.cxx:138
virtual ~COHXSecAR()
Definition: COHXSecAR.cxx:47