00001 //--------------------------------------------------------------- 00002 // Go4 Release Package v2.10-5 (build 21005) 00003 // 03-Nov-2005 00004 //--------------------------------------------------------------- 00005 // The GSI Online Offline Object Oriented (Go4) Project 00006 // Experiment Data Processing at DVEE department, GSI 00007 //--------------------------------------------------------------- 00008 // 00009 //Copyright (C) 2000- Gesellschaft f. Schwerionenforschung, GSI 00010 // Planckstr. 1, 64291 Darmstadt, Germany 00011 //Contact: http://go4.gsi.de 00012 //---------------------------------------------------------------- 00013 //This software can be used under the license agreements as stated 00014 //in Go4License.txt file which is part of the distribution. 00015 //---------------------------------------------------------------- 00016 #include "typedefs.h" 00017 struct cv_string 00018 { 00019 INTS2 string_l; 00020 CHARS string[78]; 00021 } ; 00022 00023 00024 00025 typedef struct 00026 { 00027 INTS4 filhe_dlen; /* length of data in words */ 00028 INTS2 filhe_subtype; /* = 1 */ 00029 INTS2 filhe_type; /* = 2000 */ 00030 INTS2 filhe_frag; 00031 INTS2 filhe_used; 00032 INTS4 filhe_buf; 00033 INTS4 filhe_evt; 00034 INTS4 filhe_current_i; 00035 INTS4 filhe_stime[2]; 00036 INTS4 filhe_free[4]; /* free[0] = 1 -> swap */ 00037 INTS2 filhe_label_l; /* length of tape label string */ 00038 CHARS filhe_label[30]; /* tape label */ 00039 INTS2 filhe_file_l; /* length of file name */ 00040 CHARS filhe_file[86]; /* file name */ 00041 INTS2 filhe_user_l; /* length of user name */ 00042 CHARS filhe_user[30]; /* user name */ 00043 CHARS filhe_time[24]; /* date and time string */ 00044 INTS2 filhe_run_l; /* length of run id */ 00045 CHARS filhe_run[66]; /* run id */ 00046 INTS2 filhe_exp_l; /* length of explanation */ 00047 CHARS filhe_exp[66]; /* explanation */ 00048 INTS4 filhe_lines; /* # of comment lines */ 00049 struct cv_string s_strings[30]; /* max 30 comment lines */ 00050 } s_filhe; 00051 00052 00053 //----------------------------END OF GO4 SOURCE FILE ---------------------