FKR.h
Go to the documentation of this file.
1 //____________________________________________________________________________
2 /*!
3 
4 \class genie::FKR
5 
6 \brief Simple struct-like class holding the Feynmann-Kislinger-Ravndall
7  (FKR) baryon excitation model parameters.
8 
9 \author Costas Andreopoulos <constantinos.andreopoulos \at cern.ch>
10  University of Liverpool & STFC Rutherford Appleton Laboratory
11 
12 \created May 03, 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 _FKR_H_
20 #define _FKR_H_
21 
22 #include <iostream>
23 
24 using std::ostream;
25 
26 namespace genie {
27 
28 class FKR;
29 ostream & operator<< (ostream & stream, const FKR & parameters);
30 
31 class FKR {
32 
33 public:
34 
35  friend ostream & operator<< (ostream & stream, const FKR & parameters);
36 
37  double Lamda;
38  double Tv;
39  double Rv;
40  double S;
41  double Ta;
42  double Ra;
43  double B;
44  double C;
45  double R;
46  double T;
47  double Tplus;
48  double Tminus;
49  double Rplus;
50  double Rminus;
51 
52  void Reset (void);
53  void Print (ostream & stream) const;
54 
55  FKR();
56  ~FKR();
57 };
58 
59 } // genie namespace
60 
61 #endif // _FKR_H_
void Print(ostream &stream) const
Definition: FKR.cxx:43
THE MAIN GENIE PROJECT NAMESPACE
Definition: AlgCmp.h:25
double Rminus
Definition: FKR.h:50
FKR()
Definition: FKR.cxx:33
double Ra
Definition: FKR.h:42
Simple struct-like class holding the Feynmann-Kislinger-Ravndall (FKR) baryon excitation model parame...
Definition: FKR.h:31
double Lamda
Definition: FKR.h:37
double R
Definition: FKR.h:45
~FKR()
Definition: FKR.cxx:38
double Tv
Definition: FKR.h:38
double T
Definition: FKR.h:46
double Rv
Definition: FKR.h:39
void Reset(void)
Definition: FKR.cxx:62
double C
Definition: FKR.h:44
double Tplus
Definition: FKR.h:47
double B
Definition: FKR.h:43
ostream & operator<<(ostream &stream, const AlgConfigPool &config_pool)
double Rplus
Definition: FKR.h:49
double Tminus
Definition: FKR.h:48
friend ostream & operator<<(ostream &stream, const FKR &parameters)
Definition: FKR.cxx:26
double S
Definition: FKR.h:40
double Ta
Definition: FKR.h:41