COSMOS v7.655  COSMOSv7655
(AirShowerMC)
Z90hist1.h
Go to the documentation of this file.
1 #ifndef Z90hist1_
2 #define Z90hist1_
3 /*
4 c fortran 90 version 1D histogram
5  type histogram1
6  type(histoc) c
7  type(histogram) x
8  real, allocatable :: xw(:)
9  real, allocatable :: dnw(:)
10  real, allocatable :: dndx(:)
11  real, allocatable :: mean(:)
12  end type
13 */
14 struct histogram1 {
15  struct histoc c;
16  struct histogram x;
17  float *xw;
18  float *dnw;
19  float *dndx;
20  float *mean;
21  float *xforI;
22  float *integ;
23 };
24 
25 #endif
float * dnw
Definition: Z90hist1.h:18
float * mean
Definition: Z90hist1.h:20
struct histoc c
Definition: Z90hist1.h:15
float * xw
Definition: Z90hist1.h:17
struct histogram x
Definition: Z90hist1.h:16
float * integ
Definition: Z90hist1.h:22
float * xforI
Definition: Z90hist1.h:21
float * dndx
Definition: Z90hist1.h:19