PDFt.h
Go to the documentation of this file.
1 //____________________________________________________________________________
2 /*!
3 
4 \struct genie::PDF_t
5 
6 \brief A struct to hold PDF set data
7 
8 \author Costas Andreopoulos <constantinos.andreopoulos \at cern.ch>
9  University of Liverpool & STFC Rutherford Appleton Laboratory
10 
11 \created May 04, 2004
12 
13 \cpright Copyright (c) 2003-2020, The GENIE Collaboration
14  For the full text of the license visit http://copyright.genie-mc.org
15 */
16 //____________________________________________________________________________
17 
18 #ifndef _PDF_T_H_
19 #define _PDF_T_H_
20 
21 namespace genie {
22 
23 typedef struct EPDF {
24 
25  double uval;
26  double dval;
27  double usea;
28  double dsea;
29  double str;
30  double chm;
31  double bot;
32  double top;
33  double gl;
34 
35 } PDF_t;
36 
37 } // genie namespace
38 
39 #endif // _PDF_T_H_
double bot
Definition: PDFt.h:31
THE MAIN GENIE PROJECT NAMESPACE
Definition: AlgCmp.h:25
double str
Definition: PDFt.h:29
double dsea
Definition: PDFt.h:28
double chm
Definition: PDFt.h:30
double top
Definition: PDFt.h:32
double dval
Definition: PDFt.h:26
struct genie::EPDF PDF_t
double gl
Definition: PDFt.h:33
double usea
Definition: PDFt.h:27
double uval
Definition: PDFt.h:25