RTK  2.6.0
Reconstruction Toolkit
rtkElektaXVI5GeometryXMLFileReader.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 rtkElektaXVI5GeometryXMLFileReader_h
20 #define rtkElektaXVI5GeometryXMLFileReader_h
21 
22 #ifdef _MSC_VER
23 # pragma warning(disable : 4786)
24 #endif
25 
26 #include "RTKExport.h"
27 #include <itkXMLFile.h>
29 
30 namespace rtk
31 {
32 
46 class RTK_EXPORT ElektaXVI5GeometryXMLFileReader : public itk::XMLReader<ThreeDCircularProjectionGeometry>
47 {
48 public:
49  ITK_DISALLOW_COPY_AND_MOVE(ElektaXVI5GeometryXMLFileReader);
50 
55 
59 
61  static const unsigned int CurrentVersion = 2;
62 
64  itkOverrideGetNameOfClassMacro(ElektaXVI5GeometryXMLFileReader);
65 
67  itkNewMacro(Self);
68 
70  int
71  CanReadFile(const char * name) override;
72 
74  itkGetMacro(Geometry, GeometryPointer);
75 
76 protected:
78  ~ElektaXVI5GeometryXMLFileReader() override = default;
79 
83  void
84  StartElement(const char * name, const char ** atts) override;
85 
86  void
87  StartElement(const char * name);
88 
89  void
90  EndElement(const char * name) override;
91 
92  void
93  CharacterDataHandler(const char * inData, int inLength) override;
94 
95 private:
96  GeometryPointer m_Geometry{ GeometryType::New() };
97 
98  std::string m_CurCharacterData;
99 
101  double m_InPlaneAngle{ 0. };
102  double m_OutOfPlaneAngle{ 0. };
103  double m_GantryAngle{ 0. };
104  double m_SourceToIsocenterDistance{ 1000. };
105  double m_SourceOffsetX{ 0. };
106  double m_SourceOffsetY{ 0. };
107  double m_SourceToDetectorDistance{ 1536. };
108  double m_ProjectionOffsetX{ 0. };
109  double m_ProjectionOffsetY{ 0. };
110 
113 };
114 } // namespace rtk
115 
116 #endif
ThreeDCircularProjectionGeometry::MatrixType m_Matrix
typename itk::Matrix< double, TDimension, TDimension+1 > MatrixType
Projection geometry for a source and a 2-D flat panel.