//*************************************************************// // ----------- List of the Themometers ----------------------- //*************************************************************// // File : Thermometers.h // // // 10/03/06 Seva Original Version // 06-Oct-2006 AWW 30 regular +5 small probes(for calibration magnet) // #ifndef __THERMOMETERS_HEADER #define __THERMOMETERS_HEADER #define THERMOMETERS_MAX_NUM_CHAR 64 typedef struct tagTHERMOMETER_INFO { char serial_number[THERMOMETERS_MAX_NUM_CHAR];// undulator serial number char manufacturer[THERMOMETERS_MAX_NUM_CHAR]; // made by //panel id to send result }THERMOMETER_INFO_STRUCT; typedef THERMOMETER_INFO_STRUCT *PTHERMOMETER_INFO_STRUCT, *LPTHERMOMETER_INFO_STRUCT; #define THERMOMETERS_NUMBER 3 THERMOMETER_INFO_STRUCT themometers_info[THERMOMETERS_NUMBER] = { { "001", "YSI" }, { "002", "YSI" }, { "003", "YSI" }, { "004", "YSI" }, { "005", "YSI" }, { "006", "YSI" }, { "007", "YSI" }, { "008", "YSI" }, { "009", "YSI" }, { "010", "YSI" }, { "011", "YSI" }, { "012", "YSI" }, { "013", "YSI" }, { "014", "YSI" }, { "015", "YSI" }, { "016", "YSI" }, { "017", "YSI" }, { "018", "YSI" }, { "019", "YSI" }, { "020", "YSI" }, { "021", "YSI" }, { "022", "YSI" }, { "023", "YSI" }, { "024", "YSI" }, { "025", "YSI" }, { "026", "YSI" }, { "027", "YSI" }, { "028", "YSI" }, { "029", "YSI" }, { "030", "YSI" }, { "031", "YSI-small" }, { "032", "YSI-small" }, { "033", "YSI-small" }, { "034", "YSI-small" }, { "035", "YSI-small" } }; #endif