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 /* filter structure for CLIENT */ 00017 00018 struct s_clnt_filter 00019 { 00020 /* --- control byte ordering and machine type (2LW) ---- */ 00021 unsigned int l_testbit; /* bit pattern */ 00022 unsigned int l_endian; /* endian of sender */ 00023 /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */ 00024 int l_numb_of_evt; /* numb of events to send */ 00025 int l_sample_rate; /* flt match sample rate */ 00026 int l_flush_rate; /* buffer flushing rate [sec]*/ 00027 struct s_filter filter[GPS__MAXFLT];/* 32 filter express (à 3LW) */ 00028 struct s_flt_descr flt_descr[GPS__MAXFLTDESCR]; /* Filter descriptor*/ 00029 short unsigned if_fltevt; /* filter on event */ 00030 short unsigned if_fltsev; /* filter on subevent */ 00031 short unsigned if_wrtevt; /* write whole event */ 00032 short unsigned if_wrtsev; /* write subevts (numb of sev)*/ 00033 }; 00034 00035 //----------------------------END OF GO4 SOURCE FILE ---------------------