mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2025-04-19 18:40:01 +02:00
* merge fix from 7.0.2: new jungfrau fw versions, incremented binary, hdf5 and json versions * moench: changed dac names and default values to old moench values * moench: remove interface clk polarity at start up * moench: default speed is half speed, default values for adc offset and adc phase for different speeds (only half speed confirmed), adc vref voltage to 2.0 like G1 * moench: connected adc pipeline to client * moench: receiver- default frames per file is 100k and discard partial frames as default * moench binary in * using tostring in gui for dacs * moved frame discard policy as a parameter to be configured with a default depending on detector * moench: 300 degrees for adc phase in full speed
37 lines
816 B
C++
37 lines
816 B
C++
// SPDX-License-Identifier: LGPL-3.0-or-other
|
|
// Copyright (C) 2021 Contributors to the SLS Detector Package
|
|
#pragma once
|
|
#include "sls/Detector.h"
|
|
#include "sls/sls_detector_defs.h"
|
|
#include "ui_form_dac.h"
|
|
#include <string>
|
|
|
|
namespace sls {
|
|
|
|
class qDacWidget : public QWidget, private Ui::WidgetDacObject {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
qDacWidget(QWidget *parent, Detector *detector, bool d, std::string n,
|
|
slsDetectorDefs::dacIndex i);
|
|
~qDacWidget();
|
|
void SetDetectorIndex(int id);
|
|
void Refresh();
|
|
|
|
private slots:
|
|
void SetDac();
|
|
|
|
private:
|
|
void SetupWidgetWindow(std::string name);
|
|
void Initialization();
|
|
void GetDac();
|
|
void GetAdc();
|
|
|
|
Detector *det;
|
|
bool isDac{true};
|
|
slsDetectorDefs::dacIndex index;
|
|
int detectorIndex{-1};
|
|
};
|
|
|
|
} // namespace sls
|