//:Description: measurements of the FEE electronics 
//:Synonyms::::
//:Source:
//:Update:
//:Update frequncy:
//:Reminder:
//:Recall frequency:
//:Size of Data:
//:Pointer to data:

#ifndef SVTELECTRONICS_H
#define SVTELECTRONICS_H

struct svtElectronics {

  //  type varnam;               //Units : Comments
  float temperature[12];         //      : 4 per half-ladder
  float voltageV1[3];            //
  float voltageV2[3];            //
  float voltageV3[3];            //
  float voltageVminus[3];        //
  float voltagePlus6[3];         //
  float voltageMinus6[3];        //
  float voltagePlus8;            //       : 1 per hyper sector
  float voltageMinus8;           //
  float voltageCalibration[18];  //       : 6 per half-ladder
  float currentV1[3];            //
  float currentV2[3];            //
  float currentV3[3];            //
  float currentVminus[3];        //
  float currentPlus6[3];         //
};

#endif