GENIEGenerator
Loading...
Searching...
No Matches
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 <c.andreopoulos \at cern.ch>
10 University of Liverpool
11
12\created May 03, 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 _FKR_H_
20#define _FKR_H_
21
22#include <iostream>
23
24using std::ostream;
25
26namespace genie {
27
28class FKR;
29ostream & operator<< (ostream & stream, const FKR & parameters);
30
31class FKR {
32
33public:
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_
Simple struct-like class holding the Feynmann-Kislinger-Ravndall (FKR) baryon excitation model parame...
Definition FKR.h:31
double C
Definition FKR.h:44
double T
Definition FKR.h:46
friend ostream & operator<<(ostream &stream, const FKR &parameters)
Definition FKR.cxx:26
double Tv
Definition FKR.h:38
double Rv
Definition FKR.h:39
double Ta
Definition FKR.h:41
void Reset(void)
Definition FKR.cxx:62
double Tplus
Definition FKR.h:47
double S
Definition FKR.h:40
double Ra
Definition FKR.h:42
double Tminus
Definition FKR.h:48
double Rminus
Definition FKR.h:50
double Rplus
Definition FKR.h:49
double R
Definition FKR.h:45
double Lamda
Definition FKR.h:37
void Print(ostream &stream) const
Definition FKR.cxx:43
double B
Definition FKR.h:43
THE MAIN GENIE PROJECT NAMESPACE
Definition AlgCmp.h:25
ostream & operator<<(ostream &stream, const AlgConfigPool &config_pool)