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 #ifndef S_FILHE_SWAP 00017 #define S_FILHE_SWAP 00018 00019 #include "typedefs.h" 00020 struct cv_string 00021 { 00022 INTS2 string_l; 00023 CHARS string[78]; 00024 } ; 00025 00026 00027 00028 typedef struct 00029 { 00030 INTS4 filhe_dlen; /* length of data in words */ 00031 INTS2 filhe_type; /* = 2000 */ 00032 INTS2 filhe_subtype; /* = 1 */ 00033 INTS2 filhe_used; 00034 INTS2 filhe_frag; 00035 INTS4 filhe_buf; 00036 INTS4 filhe_evt; 00037 INTS4 filhe_current_i; 00038 INTS4 filhe_stime[2]; 00039 INTS4 filhe_free[4]; /* free[0] = 1 -> swap */ 00040 INTS2 filhe_label_l; /* length of tape label string */ 00041 CHARS filhe_label[30]; /* tape label */ 00042 INTS2 filhe_file_l; /* length of file name */ 00043 CHARS filhe_file[86]; /* file name */ 00044 INTS2 filhe_user_l; /* length of user name */ 00045 CHARS filhe_user[30]; /* user name */ 00046 CHARS filhe_time[24]; /* date and time string */ 00047 INTS2 filhe_run_l; /* length of run id */ 00048 CHARS filhe_run[66]; /* run id */ 00049 INTS2 filhe_exp_l; /* length of explanation */ 00050 CHARS filhe_exp[66]; /* explanation */ 00051 INTS4 filhe_lines; /* # of comment lines */ 00052 struct cv_string s_strings[30]; /* max 30 comment lines */ 00053 } s_filhe; 00054 00055 00056 #endif 00057 00058 //----------------------------END OF GO4 SOURCE FILE ---------------------