RTK  2.5.0
Reconstruction Toolkit
rtkElektaSynergyGeometryReader.h
Go to the documentation of this file.
1 /*=========================================================================
2  *
3  * Copyright RTK Consortium
4  *
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  * https://www.apache.org/licenses/LICENSE-2.0.txt
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  *
17  *=========================================================================*/
18 
19 #ifndef rtkElektaSynergyGeometryReader_h
20 #define rtkElektaSynergyGeometryReader_h
21 
22 #include "RTKExport.h"
23 #include <itkLightProcessObject.h>
25 
26 namespace rtk
27 {
28 
40 {
41 public:
42  ITK_DISALLOW_COPY_AND_MOVE(ElektaSynergyGeometryReader);
43 
48 
51 
53 #ifdef itkOverrideGetNameOfClassMacro
54  itkOverrideGetNameOfClassMacro(ElektaSynergyGeometryReader);
55 #else
57 #endif
58 
59 
61  itkNewMacro(Self);
62 
64  itkGetMacro(Geometry, GeometryType::Pointer);
65 
69  itkGetMacro(DicomUID, std::string);
70  itkSetMacro(DicomUID, std::string);
72 
74  itkGetMacro(ImageDbfFileName, std::string);
75  itkSetMacro(ImageDbfFileName, std::string);
77 
79  itkGetMacro(FrameDbfFileName, std::string);
80  itkSetMacro(FrameDbfFileName, std::string);
82 
83 protected:
85 
86 
87 private:
88  std::string
89  GetImageIDFromDicomUID();
90  void
91  GetProjInfoFromDB(const std::string & imageID,
92  std::vector<float> & projAngle,
93  std::vector<float> & projFlexX,
94  std::vector<float> & projFlexY);
95 
96  void
97  GenerateData() override;
98 
100  std::string m_DicomUID;
101  std::string m_ImageDbfFileName;
102  std::string m_FrameDbfFileName;
103 };
104 
105 } // namespace rtk
106 #endif
Projection geometry for a source and a 2-D flat panel.
#define itkSetMacro(name, type)