COSMOS v7.655  COSMOSv7655
(AirShowerMC)
Z90histc.h
Go to the documentation of this file.
1 #ifndef Z90histc_
2 #define Z90histc_
3 /*
4  type histoc
5  real norm
6  real pw
7  integer*2 eventno
8  logical*1 logv
9  character*8 init
10  character*128 title
11  character*8 categ
12  character*96 id
13  character*32 dNunit
14  character*128 dir
15  end type
16 */
17 struct histoc {
18  float norm;
19  float pw;
20  short int eventno;
21  // unsigned char logv;
22  int logv;
23  char init[8];
24  char title[128];
25  char categ[8];
26  char id[96];
27  char dNunit[32];
28  char dir[128];
29  char dummy;
30 };
31 
32 #endif
char title[128]
Definition: Z90histc.h:24
short int eventno
Definition: Z90histc.h:20
float pw
Definition: Z90histc.h:19
float norm
Definition: Z90histc.h:18
char dNunit[32]
Definition: Z90histc.h:27
char init[8]
Definition: Z90histc.h:23
char dummy
Definition: Z90histc.h:29
char dir[128]
Definition: Z90histc.h:28
char categ[8]
Definition: Z90histc.h:25
int logv
Definition: Z90histc.h:22