removed ndac from sls_detector_module and from the servers (not used), fixed setting module by eiger bug in sending number of channels

This commit is contained in:
2018-11-02 17:08:25 +01:00
parent d1c8d0b01c
commit a99584a0da
18 changed files with 113 additions and 535 deletions

View File

@ -33,7 +33,6 @@ typedef struct detParameterList {
int nChipX;
int nChipY;
int nDacs;
int nAdcs;
int dynamicRange;
int nGappixelsX;
int nGappixelsY;
@ -109,9 +108,6 @@ private:
/** number of dacs per module*/
int nDacs;
/** number of adcs per module */
int nAdcs;
/** dynamic range of the detector data */
int dynamicRange;
@ -149,9 +145,6 @@ private:
/** memory offsets for the dac arrays */
int dacoff;
/** memory offsets for the adc arrays */
int adcoff;
/** memory offsets for the channel register arrays -trimbits*/
int chanoff;
@ -1833,9 +1826,6 @@ private:
/** pointer to dac valuse in shared memory */
int *dacs;
/** pointer to adc valuse in shared memory */
int *adcs;
/** pointer to channal registers in shared memory */
int *chanregs;
};