00001 //------------------------------------------------------------- 00002 // Go4 Release Package v3.04-01 (build 30401) 00003 // 28-November-2008 00004 //--------------------------------------------------------------- 00005 // The GSI Online Offline Object Oriented (Go4) Project 00006 // Experiment Data Processing at EE 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 #ifndef S_CINT_FILTER 00019 #define S_CINT_FILTER 00020 00021 struct s_clnt_filter 00022 { 00023 /* --- control byte ordering and machine type (2LW) ---- */ 00024 unsigned int l_testbit; /* bit pattern */ 00025 unsigned int l_endian; /* endian of sender */ 00026 /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */ 00027 int l_numb_of_evt; /* numb of events to send */ 00028 int l_sample_rate; /* flt match sample rate */ 00029 int l_flush_rate; /* buffer flushing rate [sec]*/ 00030 struct s_filter filter[GPS__MAXFLT];/* 32 filter express (à 3LW) */ 00031 struct s_flt_descr flt_descr[GPS__MAXFLTDESCR]; /* Filter descriptor*/ 00032 short unsigned if_fltevt; /* filter on event */ 00033 short unsigned if_fltsev; /* filter on subevent */ 00034 short unsigned if_wrtevt; /* write whole event */ 00035 short unsigned if_wrtsev; /* write subevts (numb of sev)*/ 00036 }; 00037 00038 #endif 00039 00040 //----------------------------END OF GO4 SOURCE FILE ---------------------