Low-Energy Muon (LEM) Experiment
0.5.2
|
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <math.h>
#include "midas.h"
#include "class/generic.h"
#include "pfeiffer_tpg252a.h"
#include "bus/tcpip.h"
Go to the source code of this file.
Functions | |
INT | poll_event (INT source, INT count, BOOL test) |
INT | interrupt_configure (INT cmd, INT source, POINTER_T adr) |
INT | frontend_init () |
INT | frontend_exit () |
INT | frontend_loop () |
INT | begin_of_run (INT run_number, char *error) |
INT | end_of_run (INT run_number, char *error) |
INT | pause_run (INT run_number, char *error) |
INT | resume_run (INT run_number, char *error) |
Variables | |
const char * | frontend_name = "TPG262_SC" |
The frontend name (client name) as seen by other MIDAS clients. More... | |
const char * | frontend_file_name = __FILE__ |
The frontend file name, don't change it. More... | |
BOOL | frontend_call_loop = TRUE |
frontend_loop is called periodically if this variable is TRUE More... | |
INT | display_period = 1000 |
a frontend status page is displayed with this frequency in ms More... | |
INT | max_event_size = 10000 |
maximum event size produced by this frontend More... | |
INT | max_event_size_frag = 5*1024*1024 |
maximum event size for fragmented events (EQ_FRAGMENTED) More... | |
INT | event_buffer_size = 10*10000 |
buffer size to hold events More... | |
DEVICE_DRIVER | pfeiffer_tpg262_driver [] |
BOOL | equipment_common_overwrite = FALSE |
EQUIPMENT | equipment [] |
equipment structure for the mfe.c More... | |
INT begin_of_run | ( | INT | run_number, |
char * | error | ||
) |
Called by the mfe at the begin of the run. Here it is only a dummy.
Definition at line 141 of file tpg262_scfe.cxx.
INT end_of_run | ( | INT | run_number, |
char * | error | ||
) |
Called by the mfe at the end of the run. Here it is only a dummy.
Definition at line 151 of file tpg262_scfe.cxx.
INT frontend_exit | ( | ) |
Called by the mfe at exiting stage. Here it is only a dummy.
Definition at line 120 of file tpg262_scfe.cxx.
INT frontend_init | ( | ) |
Called by the master frontend (mfe) at initializing stage. Here it is only a dummy.
Definition at line 104 of file tpg262_scfe.cxx.
INT frontend_loop | ( | ) |
Called by the mfe in the main loop. Here it is only a dummy.
Definition at line 130 of file tpg262_scfe.cxx.
INT interrupt_configure | ( | INT | cmd, |
INT | source, | ||
POINTER_T | adr | ||
) |
Definition at line 97 of file tpg262_scfe.cxx.
INT pause_run | ( | INT | run_number, |
char * | error | ||
) |
Called by the mfe when the run is paused. Here it is only a dummy.
Definition at line 161 of file tpg262_scfe.cxx.
INT poll_event | ( | INT | source, |
INT | count, | ||
BOOL | test | ||
) |
Definition at line 96 of file tpg262_scfe.cxx.
INT resume_run | ( | INT | run_number, |
char * | error | ||
) |
Called by the mfe when the run is resumed. Here it is only a dummy.
Definition at line 171 of file tpg262_scfe.cxx.
INT display_period = 1000 |
a frontend status page is displayed with this frequency in ms
Definition at line 32 of file tpg262_scfe.cxx.
EQUIPMENT equipment[] |
equipment structure for the mfe.c
Definition at line 67 of file tpg262_scfe.cxx.
BOOL equipment_common_overwrite = FALSE |
equipment_common_overwrite:
Definition at line 64 of file tpg262_scfe.cxx.
INT event_buffer_size = 10*10000 |
buffer size to hold events
Definition at line 41 of file tpg262_scfe.cxx.
BOOL frontend_call_loop = TRUE |
frontend_loop is called periodically if this variable is TRUE
Definition at line 29 of file tpg262_scfe.cxx.
const char* frontend_file_name = __FILE__ |
The frontend file name, don't change it.
Definition at line 26 of file tpg262_scfe.cxx.
const char* frontend_name = "TPG262_SC" |
The frontend name (client name) as seen by other MIDAS clients.
Definition at line 24 of file tpg262_scfe.cxx.
INT max_event_size = 10000 |
maximum event size produced by this frontend
Definition at line 35 of file tpg262_scfe.cxx.
INT max_event_size_frag = 5*1024*1024 |
maximum event size for fragmented events (EQ_FRAGMENTED)
Definition at line 38 of file tpg262_scfe.cxx.
DEVICE_DRIVER pfeiffer_tpg262_driver[] |
device driver list for the TPG262
Definition at line 50 of file tpg262_scfe.cxx.