/* ************************************************************** */ /* * XMAGPARAM.H * This file contains parameters required by the measurement * program. * * Zachary Wolf * 4/13/01 */ /* Protection from multiple definitions */ #ifndef __XMAGPARAM_HEADER #define __XMAGPARAM_HEADER /* GPIB addresses */ #define GPIB_BOARD_ADDR 0 #define GPIB_VRZ404a_ADDR 29 #define GPIB_VRZ404b_ADDR 30 /* Xmag measurements */ #define XMAG_BOARD_ADDR GPIB_BOARD_ADDR #define XMAG_VRZ404a_ADDR GPIB_VRZ404a_ADDR #define XMAG_VRZ404b_ADDR GPIB_VRZ404b_ADDR #define XMAG_DEVICE_TYPE XMAG_VRZ404a_VRZ404b #define XMAG_NUM_DEV 2 char XMAG_DEV_NAME[][40] = {"Heidenhain #0 position (m)", "Heidenhain #1 position (m)"}; /* End protection */ #endif