comparison OrthancStone/Sources/Toolbox/DicomInstanceParameters.h @ 1646:4e14735e98f8

preparing to remove FrameExtent
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 12 Nov 2020 15:16:21 +0100
parents 5cc589bfb385
children 51bab5188a13
comparison
equal deleted inserted replaced
1645:bc7bd8ee13f8 1646:4e14735e98f8
60 float defaultWindowingWidth_; 60 float defaultWindowingWidth_;
61 bool hasIndexInSeries_; 61 bool hasIndexInSeries_;
62 unsigned int indexInSeries_; 62 unsigned int indexInSeries_;
63 std::string doseUnits_; 63 std::string doseUnits_;
64 double doseGridScaling_; 64 double doseGridScaling_;
65 std::string frameOfReferenceUid_;
65 66
66 explicit Data(const Orthanc::DicomMap& dicom); 67 explicit Data(const Orthanc::DicomMap& dicom);
67 }; 68 };
68 69
69 70
222 223
223 double ApplyRescale(double value) const; 224 double ApplyRescale(double value) const;
224 225
225 // Required for RT-DOSE 226 // Required for RT-DOSE
226 bool ComputeRegularSpacing(double& target) const; 227 bool ComputeRegularSpacing(double& target) const;
228
229 const std::string& GetFrameOfReferenceUid() const
230 {
231 return data_.frameOfReferenceUid_;
232 }
227 }; 233 };
228 } 234 }