DiffractionExperiment: Rename GetFPGAOutputDepth -> GetPixelDepth and GetFPGASummation -> GetSummation

This commit is contained in:
2023-11-06 18:01:53 +01:00
parent dec3eb15de
commit 591e724cf6
13 changed files with 173 additions and 202 deletions

View File

@@ -31,10 +31,6 @@ std::string DetectorSetup::GetDescription() const {
return description;
}
JFJochProtoBuf::DetectorType DetectorSetup::GetDetectorType() const {
return JFJochProtoBuf::DetectorType::JUNGFRAU;
}
float DetectorSetup::GetPixelSize_mm() const {
return PIXEL_SIZE_IN_MM;
}
@@ -69,6 +65,5 @@ DetectorSetup::operator JFJochProtoBuf::Detector() const {
ret.add_module_hostname(iter);
*ret.mutable_geometry() = geometry;
ret.set_type(JFJochProtoBuf::DetectorType::JUNGFRAU);
return ret;
}