RTK  2.6.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  itkOverrideGetNameOfClassMacro(ThreeDCircularProjectionGeometryXMLFileWriter);
57 
59  int
60  CanWriteFile(const char * name) override;
61 
63  int
64  WriteFile() override;
65 
66 protected:
69 
74  bool
75  WriteGlobalParameter(std::ofstream & output,
76  const std::string & indent,
77  const std::vector<double> & v,
78  const std::string & s,
79  bool convertToDegrees = false,
80  double defval = 0.);
81 
83  void
84  WriteLocalParameter(std::ofstream & output, const std::string & indent, const double & v, const std::string & s);
85 };
86 
91 template <typename TGeometryPointer>
92 ITK_TEMPLATE_EXPORT void
93 WriteGeometry(TGeometryPointer && geometry, const std::string & filename)
94 {
95  using NonReferenceImagePointer = std::remove_reference_t<TGeometryPointer>;
96  static_assert(std::is_pointer<NonReferenceImagePointer>::value ||
97  itk::mpl::IsSmartPointer<NonReferenceImagePointer>::Value,
98  "WriteGeometry requires a raw pointer or SmartPointer.");
100 
102  writer->SetObject(geometry);
103  writer->SetFilename(filename);
104  writer->WriteFile();
105 }
106 
107 } // namespace rtk
108 
109 #endif
ITK_TEMPLATE_EXPORT void WriteGeometry(TGeometryPointer &&geometry, const std::string &filename)