mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2025-06-06 01:50:40 +02:00
13 lines
344 B
C++
13 lines
344 B
C++
#pragma once
|
|
#include <string>
|
|
#include "sls_detector_defs.h"
|
|
|
|
|
|
struct SingleDetectorConfig {
|
|
slsDetectorDefs::detectorType type_enum =
|
|
slsDetectorDefs::detectorType::CHIPTESTBOARD;
|
|
const std::string hostname = "bchip173";
|
|
const std::string type_string = "Chiptestboard";
|
|
const std::string my_ip = "129.129.205.171";
|
|
};
|