COSMOS v7.655  COSMOSv7655
(AirShowerMC)
Zpos.h
Go to the documentation of this file.
1 /*
2 c location of a ptcl
3 c Zcoord.h must be preceeded
4 c
5  structure /position/
6  record /coord/ xyz ! in xyz
7  real*8 radiallen ! in m . radial length
8  real*8 depth ! in kg/m2 depth.
9  real*8 height ! in m. vertical height(from sea level
10  real*8 colheight ! in m. // where the
11 c latest nuclear collision took place.
12 c (iniitial value is very large value).
13  end structure
14 */
15 
16 struct position {
17  struct coord xyz;
18  double radiallen;
19  double depth;
20  double height;
21  double colheight;
22 };
23 
struct coord xyz
Definition: Zpos.h:17
double radiallen
Definition: Zpos.h:18
double colheight
Definition: Zpos.h:21
double depth
Definition: Zpos.h:19
double height
Definition: Zpos.h:20
Definition: Zpos.h:16
Definition: Zcoord.h:43