MeVisLab Toolbox Reference
mlDcmDRTFixationDeviceSequenceInterface.h
Go to the documentation of this file.
1// Copyright (c) Fraunhofer MEVIS, Germany. All rights reserved.
2// **InsertLicense** code
3//----------------------------------------------------------------------------------
4//
5// NOTE:
6// This file has been generated automatically by
7// FMEwork/ReleaseMeVis/Configuration/CodeGenerators/dcmtkToMLConverter/convertDcmtkToML.py
8// using the template file
9// FMEwork/ReleaseMeVis/Configuration/CodeGenerators/dcmtkToMLConverter/MLDcmtkAccessoriesNew/templates/DcmSequenceInterface.h
10//
11// Destination project:
12// FMEwork/ReleaseMeVis/Sources/Shared/MLDcmtkAccessoriesNew/DcmSequenceInterfaces
13//
14//----------------------------------------------------------------------------------
16
21//----------------------------------------------------------------------------------
22
23#ifndef __mlDcmDRTFixationDeviceSequenceInterface_H
24#define __mlDcmDRTFixationDeviceSequenceInterface_H
25
26// Local includes
27#include "mlDcmtkAccessories.h"
28
29// Dcmtk includes
30//#include "mlDcmDRTFixationDeviceSequenceInterface.h" //DRTFixationDeviceSequence
31
32
33// ML includes
34#ifndef __mlModuleIncludes_H
35#include "mlModuleIncludes.h"
36#endif
37
39
40// ------------------------------------------------------------------
42// ------------------------------------------------------------------
44{
45 public:
46
48 {
49 public:
50
51 Item() { _dcmItem = DcmtkAccessories::createNewDicomTree(); }
52
54
55 Item(const Item &copyDcmItem) : _dcmItem(copyDcmItem.getTreePtr()) {}
56
57 Item &operator=(const Item &copyDcmItem){ _dcmItem = copyDcmItem.getTreePtr(); return *this; }
58
59 virtual ~Item() {}
60
61 DCMTree::TreePtr getTreePtr() const { return _dcmItem; }
62
63 bool isValid() const { return _dcmItem.get() != nullptr; }
64
65
66 // AccessoryCode (300a,00f9) vr=LO, vm=1, type=3
67 bool getAccessoryCode(std::string& parameter) const;
68 std::string getAccessoryCodeTag() const { return "(300a,00f9)"; }
69 bool setAccessoryCode(std::string parameter);
70
71 // FixationDeviceDescription (300a,0196) vr=ST, vm=1, type=3
72 bool getFixationDeviceDescription(std::string& parameter) const;
73 std::string getFixationDeviceDescriptionTag() const { return "(300a,0196)"; }
74 bool setFixationDeviceDescription(std::string parameter);
75
76 // FixationDeviceLabel (300a,0194) vr=SH, vm=1, type=2C
77 bool getFixationDeviceLabel(std::string& parameter) const;
78 std::string getFixationDeviceLabelTag() const { return "(300a,0194)"; }
79 bool setFixationDeviceLabel(std::string parameter);
80
81 // FixationDevicePitchAngle (300a,0199) vr=FL, vm=1, type=3
82 bool getFixationDevicePitchAngle(float& parameter) const;
83 std::string getFixationDevicePitchAngleTag() const { return "(300a,0199)"; }
84 bool setFixationDevicePitchAngle(float parameter);
85
86 // FixationDevicePosition (300a,0198) vr=SH, vm=1, type=3
87 bool getFixationDevicePosition(std::string& parameter) const;
88 std::string getFixationDevicePositionTag() const { return "(300a,0198)"; }
89 bool setFixationDevicePosition(std::string parameter);
90
91 // FixationDeviceRollAngle (300a,019a) vr=FL, vm=1, type=3
92 bool getFixationDeviceRollAngle(float& parameter) const;
93 std::string getFixationDeviceRollAngleTag() const { return "(300a,019a)"; }
94 bool setFixationDeviceRollAngle(float parameter);
95
96 // FixationDeviceType (300a,0192) vr=CS, vm=1, type=1C
97 bool getFixationDeviceType(std::string& parameter) const;
98 std::string getFixationDeviceTypeTag() const { return "(300a,0192)"; }
99 bool setFixationDeviceType(std::string parameter);
100
101
102 private:
103
104 DCMTree::TreePtr _dcmItem;
105
106 };
107
109
111 DcmDRTFixationDeviceSequenceInterface(std::vector<DcmDRTFixationDeviceSequenceInterface::Item> dcmSequence) : _itemVec(dcmSequence) {}
112
119
122 // AccessoryCode (300a,00f9) vr=LO, vm=1, type=3
123 bool getAccessoryCode(unsigned long idx, std::string& parameter) const;
124 bool getAccessoryCode(DCMTree::TreePtr item, std::string& parameter) const;
125 std::string getAccessoryCodeTag() const { return "(300a,00f9)"; }
126 bool setAccessoryCode(unsigned long idx, std::string parameter);
127
128 // FixationDeviceDescription (300a,0196) vr=ST, vm=1, type=3
129 bool getFixationDeviceDescription(unsigned long idx, std::string& parameter) const;
130 bool getFixationDeviceDescription(DCMTree::TreePtr item, std::string& parameter) const;
131 std::string getFixationDeviceDescriptionTag() const { return "(300a,0196)"; }
132 bool setFixationDeviceDescription(unsigned long idx, std::string parameter);
133
134 // FixationDeviceLabel (300a,0194) vr=SH, vm=1, type=2C
135 bool getFixationDeviceLabel(unsigned long idx, std::string& parameter) const;
136 bool getFixationDeviceLabel(DCMTree::TreePtr item, std::string& parameter) const;
137 std::string getFixationDeviceLabelTag() const { return "(300a,0194)"; }
138 bool setFixationDeviceLabel(unsigned long idx, std::string parameter);
139
140 // FixationDevicePitchAngle (300a,0199) vr=FL, vm=1, type=3
141 bool getFixationDevicePitchAngle(unsigned long idx, float& parameter) const;
142 bool getFixationDevicePitchAngle(DCMTree::TreePtr item, float& parameter) const;
143 std::string getFixationDevicePitchAngleTag() const { return "(300a,0199)"; }
144 bool setFixationDevicePitchAngle(unsigned long idx, float parameter);
145
146 // FixationDevicePosition (300a,0198) vr=SH, vm=1, type=3
147 bool getFixationDevicePosition(unsigned long idx, std::string& parameter) const;
148 bool getFixationDevicePosition(DCMTree::TreePtr item, std::string& parameter) const;
149 std::string getFixationDevicePositionTag() const { return "(300a,0198)"; }
150 bool setFixationDevicePosition(unsigned long idx, std::string parameter);
151
152 // FixationDeviceRollAngle (300a,019a) vr=FL, vm=1, type=3
153 bool getFixationDeviceRollAngle(unsigned long idx, float& parameter) const;
154 bool getFixationDeviceRollAngle(DCMTree::TreePtr item, float& parameter) const;
155 std::string getFixationDeviceRollAngleTag() const { return "(300a,019a)"; }
156 bool setFixationDeviceRollAngle(unsigned long idx, float parameter);
157
158 // FixationDeviceType (300a,0192) vr=CS, vm=1, type=1C
159 bool getFixationDeviceType(unsigned long idx, std::string& parameter) const;
160 bool getFixationDeviceType(DCMTree::TreePtr item, std::string& parameter) const;
161 std::string getFixationDeviceTypeTag() const { return "(300a,0192)"; }
162 bool setFixationDeviceType(unsigned long idx, std::string parameter);
163
164
167 void setSequence(std::vector<DcmDRTFixationDeviceSequenceInterface::Item> dcmSequence) {
168 _itemVec = dcmSequence;
169 }
170
173 std::vector<DcmDRTFixationDeviceSequenceInterface::Item> getSequence() const {
174 return _itemVec;
175 }
176
179 bool hasSequence() const {
180 return (_itemVec.size() != 0);
181 }
182
186 return static_cast<MLint>(_itemVec.size());
187 }
188
192 if (_itemVec.size() > idx) {
193 return _itemVec[idx];
194 }
196 }
197
202 return _itemVec[_itemVec.size()-1];
203 }
204
208
211 bool insertItem(const size_t idx) {
212 if (_itemVec.size() > idx) {
213 std::vector<DcmDRTFixationDeviceSequenceInterface::Item>::iterator it = _itemVec.begin();
214 std::advance(it, idx);
216 return true;
217 }
218 return false;
219 }
220
223 bool removeItem(const size_t idx) {
224 if ( _itemVec.size() > idx ) {
225 std::vector<DcmDRTFixationDeviceSequenceInterface::Item>::iterator it = _itemVec.begin();
226 std::advance(it, idx);
227 _itemVec.erase(it);
228 return true;
229 }
230 return false;
231 }
232
233 protected:
235 std::vector<DcmDRTFixationDeviceSequenceInterface::Item> _itemVec;
236};
237
239
240#endif // __mlDcmDRTFixationDeviceSequenceInterface_H
241
242/* MeVis-Hidden-Components-Start */
243/* MeVis-Hidden-Components-End */
#define MLDCMTKACCESSORIES_EXPORT
bool getFixationDeviceRollAngle(float &parameter) const
bool setFixationDeviceDescription(std::string parameter)
bool getFixationDevicePitchAngle(float &parameter) const
bool getFixationDeviceDescription(std::string &parameter) const
bool getAccessoryCode(std::string &parameter) const
bool getFixationDeviceType(std::string &parameter) const
bool setAccessoryCode(std::string parameter)
bool setFixationDeviceType(std::string parameter)
bool setFixationDeviceLabel(std::string parameter)
bool setFixationDevicePosition(std::string parameter)
bool getFixationDevicePosition(std::string &parameter) const
bool getFixationDeviceLabel(std::string &parameter) const
Class to provide access to DRTFixationDeviceSequence.
bool setFixationDeviceRollAngle(unsigned long idx, float parameter)
bool getAccessoryCode(unsigned long idx, std::string &parameter) const
void setSequence(std::vector< DcmDRTFixationDeviceSequenceInterface::Item > dcmSequence)
Set the DRTFixationDeviceSequence this interface class provides access to.
bool setFixationDeviceDescription(unsigned long idx, std::string parameter)
DcmDRTFixationDeviceSequenceInterface::Item getItem(const size_t idx) const
Gets the item at the indicated position.
bool getFixationDeviceRollAngle(DCMTree::TreePtr item, float &parameter) const
std::vector< DcmDRTFixationDeviceSequenceInterface::Item > getSequence() const
Return the DRTFixationDeviceSequence this interface class provides access to.
bool getFixationDeviceDescription(DCMTree::TreePtr item, std::string &parameter) const
bool getFixationDeviceDescription(unsigned long idx, std::string &parameter) const
bool getFixationDeviceType(DCMTree::TreePtr item, std::string &parameter) const
bool setFixationDeviceType(unsigned long idx, std::string parameter)
std::vector< DcmDRTFixationDeviceSequenceInterface::Item > _itemVec
Reference to the wrapped DICOM tree pointer vector.
bool setAccessoryCode(unsigned long idx, std::string parameter)
bool removeItem(const size_t idx)
Removes the indicated item from the sequence.
void addItem(DcmDRTFixationDeviceSequenceInterface::Item newItem)
DcmDRTFixationDeviceSequenceInterface(std::vector< DcmDRTFixationDeviceSequenceInterface::Item > dcmSequence)
Default Constructor.
bool getFixationDevicePitchAngle(unsigned long idx, float &parameter) const
bool getFixationDeviceRollAngle(unsigned long idx, float &parameter) const
DcmDRTFixationDeviceSequenceInterface::Item & addItem()
Adds a new item to the sequence.
bool getFixationDeviceType(unsigned long idx, std::string &parameter) const
bool getFixationDevicePosition(DCMTree::TreePtr item, std::string &parameter) const
bool setFixationDevicePosition(unsigned long idx, std::string parameter)
bool setFixationDevicePitchAngle(unsigned long idx, float parameter)
bool getAccessoryCode(DCMTree::TreePtr item, std::string &parameter) const
bool setFixationDeviceLabel(unsigned long idx, std::string parameter)
bool insertItem(const size_t idx)
Insert an item at the indicated position.
bool getFixationDeviceLabel(unsigned long idx, std::string &parameter) const
bool getFixationDevicePitchAngle(DCMTree::TreePtr item, float &parameter) const
bool hasSequence() const
Check if the DRTFixationDeviceSequence is set.
virtual ~DcmDRTFixationDeviceSequenceInterface()
Default virtual Destructor.
bool getFixationDeviceLabel(DCMTree::TreePtr item, std::string &parameter) const
bool getFixationDevicePosition(unsigned long idx, std::string &parameter) const
MLint getNumberOfItems() const
Return number of items the internal sequence consists of.
Class collecting some DICOM helper functionality explicitly for dcmtk.
Target mlrange_cast(Source arg)
Generic version of checked ML casts.
MLint64 MLint
A signed ML integer type with at least 64 bits used for index calculations on very large images even ...
Definition mlTypeDefs.h:490
std::vector< TreePtr > TreePtrVector
a vector of TreePtr - used for sequences
Definition DCMTree_Lib.h:85
boost::shared_ptr< Tree > TreePtr
shared pointer to a DCMTree::Tree
Definition DCMTree_Lib.h:72