GENIEGenerator
Loading...
Searching...
No Matches
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 <c.andreopoulos \at cern.ch>
10 University of Liverpool
11
12\created May 04, 2004
13
14\cpright Copyright (c) 2003-2025, 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
24namespace genie {
25
26class COHXSecAR : public XSecIntegratorI {
27public:
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
40protected:
42
43private:
44 void LoadConfig (void);
45};
46
47} // genie namespace
48#endif // _COH_XSEC_H_
void Configure(const Registry &config)
virtual ~COHXSecAR()
Definition COHXSecAR.cxx:47
void LoadConfig(void)
double Integrate(const XSecAlgorithmI *model, const Interaction *i) const
Definition COHXSecAR.cxx:52
Summary information for an interaction.
Definition Interaction.h:56
A registry. Provides the container for algorithm configuration parameters.
Definition Registry.h:65
Cross Section Calculation Interface.
THE MAIN GENIE PROJECT NAMESPACE
Definition AlgCmp.h:25