mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2025-04-24 07:20:01 +02:00
12 lines
333 B
C++
12 lines
333 B
C++
#pragma once
|
|
#include "sls_detector_defs.h"
|
|
#include <string>
|
|
|
|
struct SingleDetectorConfig {
|
|
slsDetectorDefs::detectorType type_enum =
|
|
slsDetectorDefs::detectorType::EIGER;
|
|
const std::string hostname = "beb031+beb032+";
|
|
const std::string type_string = "Eiger";
|
|
const std::string my_ip = "129.129.205.171";
|
|
};
|