RTK  2.5.0
Reconstruction Toolkit
rtkThreeDCircularProjectionGeometryXMLFileWriter.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 rtkThreeDCircularProjectionGeometryXMLFileWriter_h
20 #define rtkThreeDCircularProjectionGeometryXMLFileWriter_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 
42  : public itk::XMLWriterBase<ThreeDCircularProjectionGeometry>
43 {
44 public:
45  ITK_DISALLOW_COPY_AND_MOVE(ThreeDCircularProjectionGeometryXMLFileWriter);
46 
51 
53  itkNewMacro(Self);
54 
56 #ifdef itkOverrideGetNameOfClassMacro
57  itkOverrideGetNameOfClassMacro(ThreeDCircularProjectionGeometryXMLFileWriter);
58 #else
60 #endif
61 
62 
64  int
65  CanWriteFile(const char * name) override;
66 
68  int
69  WriteFile() override;
70 
71 protected:
74 
79  bool
80  WriteGlobalParameter(std::ofstream & output,
81  const std::string & indent,
82  const std::vector<double> & v,
83  const std::string & s,
84  bool convertToDegrees = false,
85  double defval = 0.);
86 
88  void
89  WriteLocalParameter(std::ofstream & output, const std::string & indent, const double & v, const std::string & s);
90 };
91 
96 template <typename TGeometryPointer>
97 ITK_TEMPLATE_EXPORT void
98 WriteGeometry(TGeometryPointer && geometry, const std::string & filename)
99 {
100  using NonReferenceImagePointer = std::remove_reference_t<TGeometryPointer>;
101  static_assert(std::is_pointer<NonReferenceImagePointer>::value ||
102  itk::mpl::IsSmartPointer<NonReferenceImagePointer>::Value,
103  "WriteGeometry requires a raw pointer or SmartPointer.");
105 
107  writer->SetObject(geometry);
108  writer->SetFilename(filename);
109  writer->WriteFile();
110 }
111 
112 } // namespace rtk
113 
114 #endif
ITK_TEMPLATE_EXPORT void WriteGeometry(TGeometryPointer &&geometry, const std::string &filename)