//------------- GOOFIE borad register values -----------// ZSCTL = 0 // zero suppression control [val range = ()] ZSTHD = 0 // zero supresion threshold [val range = (0-1024)] ZSPED = 0 // fix pedestal substraction value [val range = (0-1024)] ACTCH = 0 // chanel number 1=A, 2=B, 3=C [not in use, 0 def.] NSEVT = 490 // numbers of sampels per event [val range = (0-490), def::490] PRTRG = 9 // pre/post triger (bit mask) [9 def.] BSLCT = 0 // operation mode (0=ADC-FPD, 3=MEM-FPD, 5=ACD-MEM) [0 def.] TMASK = 3 // TRIGER -- (bit mask) 1-chA Only, 2-chB Only, 3-both TATHD = 120 // treshold for chA TBTHD = 100 // treshold for chB TAISN = 1 // 1-true connected to "Near" trigger, 0-false connected to "Far" trigger. Channel A is one of the trigger channels located at the edge of the goofie board. // //-------------- NI channels configuration -----------// // CardPortUsedForNI = Dev1/ // set at which port NI card is installed. Run 'lsdaq' command to select correct one. TotalChannelsPerCard = 16 // define maximum number of channels for a given card. //--------- configure individual channels ---------------// // order of parameters is important and empty characters // // are not allow in the channel_name, i.e. // // AI# = channel_name; minRange; maxRange; read_mode; // //-------------------------------------------------------// // AI0 = TemperatureSensorNear; 2.5; 7.5; DAQmx_Val_RSE; // configuration parameters for channel AI0 AI1 = TemperatureSensorFar; 2.5; 7.5; DAQmx_Val_RSE; // configuration parameters for channel AI1 AI2 = PressureSensor; 2.0; 6.0; DAQmx_Val_RSE; // configuration parameters for channel AI2 AI3 = FieldHV; -2.0; 0.01; DAQmx_Val_RSE; // configuration parameters for channel AI3 AI4 = PickupVoltage; -10.0; 10.0; DAQmx_Val_RSE; // configuration parameters for channel AI4 // //-------------- NI channels calibration -----------// // name of calibration parameter must be the same as AI# // // channel_name with prefix P0 for offset and P1 for // // slope etc .... // // ----------------------------------------------------- // // TemperatureSensorNearP0 = 273.15 // calibration parameter P0 for goofie temperature sensors near TemperatureSensorNearP1 = 4.0 // calibration parameter P1 for goofie temperature sensors near TemperatureSensorFarP0 = 273.15 // calibration parameter P0 for goofie temperature sensors far TemperatureSensorFarP1 = 4.0 // calibration parameter P1 for goofie temperature sensors far PressureSensorP0 = 825.0 // calibration parameter P0 for goofie pressure sensors PressureSensorP1 = 37.5 // calibration parameter P1 for goofie pressure sensors FieldHVP0 = 465.47 // calibration parameter P0 for goofie field cage voltage (last resistor) FieldHVP1 = 9848.48 // calibration parameter P1 for goofie field cage voltage (last resistor) PickupVoltageP0 = 0.0 // not used PickupVoltageP1 = 1.0 // not used //-------------- END ------------//