RTK  2.5.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 #ifdef itkOverrideGetNameOfClassMacro
65  itkOverrideGetNameOfClassMacro(ElektaXVI5GeometryXMLFileReader);
66 #else
67  itkTypeMacro(ElektaXVI5GeometryXMLFileReader, itk::XMLFileReader);
68 #endif
69 
70 
72  itkNewMacro(Self);
73 
75  int
76  CanReadFile(const char * name) override;
77 
79  itkGetMacro(Geometry, GeometryPointer);
80 
81 protected:
83  ~ElektaXVI5GeometryXMLFileReader() override = default;
84 
88  void
89  StartElement(const char * name, const char ** atts) override;
90 
91  void
92  StartElement(const char * name);
93 
94  void
95  EndElement(const char * name) override;
96 
97  void
98  CharacterDataHandler(const char * inData, int inLength) override;
99 
100 private:
101  GeometryPointer m_Geometry{ GeometryType::New() };
102 
103  std::string m_CurCharacterData;
104 
106  double m_InPlaneAngle{ 0. };
107  double m_OutOfPlaneAngle{ 0. };
108  double m_GantryAngle{ 0. };
109  double m_SourceToIsocenterDistance{ 1000. };
110  double m_SourceOffsetX{ 0. };
111  double m_SourceOffsetY{ 0. };
112  double m_SourceToDetectorDistance{ 1536. };
113  double m_ProjectionOffsetX{ 0. };
114  double m_ProjectionOffsetY{ 0. };
115 
118 };
119 } // namespace rtk
120 
121 #endif
ThreeDCircularProjectionGeometry::MatrixType m_Matrix
typename itk::Matrix< double, TDimension, TDimension+1 > MatrixType
Projection geometry for a source and a 2-D flat panel.