GSI Object Oriented Online Offline (Go4)  GO4-5.3.2
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
s_his_head.h
Go to the documentation of this file.
1 // $Id: s_his_head.h 478 2009-10-29 12:26:09Z linev $
2 //-----------------------------------------------------------------------
3 // The GSI Online Offline Object Oriented (Go4) Project
4 // Experiment Data Processing at EE department, GSI
5 //-----------------------------------------------------------------------
6 // Copyright (C) 2000- GSI Helmholtzzentrum für Schwerionenforschung GmbH
7 // Planckstr. 1, 64291 Darmstadt, Germany
8 // Contact: http://go4.gsi.de
9 //-----------------------------------------------------------------------
10 // This software can be used under the license agreements as stated
11 // in Go4License.txt file which is part of the distribution.
12 //-----------------------------------------------------------------------
13 
14 #ifndef S_HIS_HEAD
15 #define S_HIS_HEAD
16 
17 #include "typedefs.h"
18 
19 /* histogram header sent by histogram server */
20 typedef struct
21 {
22  INTS4 l_bins_1; /* number of bins in dim=1 */
23  INTS4 l_bins_2; /* number of bins in dim=2 (>=1) */
24  /* + + + dim = 1 + + + */
25  INTS4 l_outlim_up_counts; /* no of counts that are */
26  INTS4 l_outlim_low_counts; /* out of range */
27  REAL4 r_limits_low; /* upper limit */
28  REAL4 r_limits_up; /* lower limit */
29  REAL4 r_binsize; /* bin size */
30  REAL4 r_factor; /* linear trans. */
31  REAL4 r_offset; /* offset */
32  /* + + + dim = 2 + + + */
33  INTS4 l_outlim_up_counts_2; /* no of counts that are */
34  INTS4 l_outlim_low_counts_2; /* out of range */
35  REAL4 r_limits_low_2; /* energy limits dim = 2 */
36  REAL4 r_limits_up_2; /* energy limits dim = 2 */
37  REAL4 r_binsize_2; /* bin size */
38  REAL4 r_factor_2; /* linear trans. */
40  /* +++ character strings +++ */
41  CHARS c_name[64]; /* histogram name */
42  CHARS c_dtype[4]; /* data flag */
43  CHARS c_data_time_cre[28]; /* creation time */
44  CHARS c_clear_date[28]; /* clearing time */
45  CHARS c_lettering_res[64]; /* lettering data content */
46  CHARS c_lettering_1[64]; /* lettering 1st axis */
47  CHARS c_lettering_2[64]; /* lettering 2nd axis */
48 } s_his_head ;
49 
50 #endif
INTS4 l_outlim_up_counts_2
Definition: s_his_head.h:33
REAL4 r_binsize_2
Definition: s_his_head.h:37
REAL4 r_limits_up
Definition: s_his_head.h:28
REAL4 r_binsize
Definition: s_his_head.h:29
float REAL4
Definition: typedefs.h:30
INTS4 l_outlim_up_counts
Definition: s_his_head.h:25
REAL4 r_offset
Definition: s_his_head.h:31
REAL4 r_factor_2
Definition: s_his_head.h:38
INTS4 l_bins_2
Definition: s_his_head.h:23
REAL4 r_limits_low
Definition: s_his_head.h:27
REAL4 r_limits_up_2
Definition: s_his_head.h:36
int INTS4
Definition: typedefs.h:28
REAL4 r_factor
Definition: s_his_head.h:30
INTS4 l_outlim_low_counts
Definition: s_his_head.h:26
REAL4 r_limits_low_2
Definition: s_his_head.h:35
REAL4 r_offset_2
Definition: s_his_head.h:39
INTS4 l_bins_1
Definition: s_his_head.h:22
INTS4 l_outlim_low_counts_2
Definition: s_his_head.h:34
char CHARS
Definition: typedefs.h:21