/usr/include/dcmtk/dcmiod/modusfor.h is in libdcmtk-dev 3.6.2-3build3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 | /*
*
* Copyright (C) 2015, Open Connections GmbH
* All rights reserved. See COPYRIGHT file for details.
*
* This software and supporting documentation are maintained by
*
* OFFIS e.V.
* R&D Division Health
* Escherweg 2
* D-26121 Oldenburg, Germany
*
*
* Module: dcmiod
*
* Author: Michael Onken
*
* Purpose: Class managing the Ultrasound Frame of Reference Module
*
*/
#ifndef MODUSFOR_H
#define MODUSFOR_H
#include "dcmtk/config/osconfig.h"
#include "dcmtk/ofstd/ofoption.h"
#include "dcmtk/dcmiod/modbase.h"
/** Class representing the Frame of Reference Module:
*
* Volume Frame of Reference UID: (UI, 1, 1)
* Ultrasound Acquisition Geometry: (CS, 1, 1)
* Apex Position: (FD, 3, 1C)
* Volume to Transducer Relationship: (CS, 1, 1C)
* Volume to Transducer Mapping Matrix: (FD, 16, 1)
* Patient Frame of Reference Source: (CS, 1, 1C)
* Table Frame of Reference UID: (UI, 1, 1C)
* Volume to Table Mapping Matrix: (FD, 16, 1C)
*
*/
class DCMTK_DCMIOD_EXPORT IODUSFoRModule : public IODModule
{
public:
/** Constructor
* @param item The item to be used for data storage. If NULL, the
* class creates an empty data container.
* @param rules The rule set for this class. If NULL, the class creates
* one from scratch and adds its values.
*/
IODUSFoRModule(OFshared_ptr<DcmItem> item,
OFshared_ptr<IODRules> rules);
/** Constructor
*/
IODUSFoRModule();
/** Destructor
*/
virtual ~IODUSFoRModule();
/** Resets rules to their original values
*/
virtual void resetRules();
/** Get name of module
* @return Name of the module ("UltrasoundFrameOfReferenceModule")
*/
virtual OFString getName() const;
/** Get Volume Frame of Reference UID
* @param value Reference to variable in which the value should be stored
* @param pos Index of the value to get (0..vm-1), -1 for all components
* @return EC_Normal if successful, an error code otherwise
*/
virtual OFCondition getVolumeFrameOfReferenceUID(OFString& value,
const signed long pos = 0) const;
/** Get Position Reference Indicator
* @param value Reference to variable in which the value should be stored
* @param pos Index of the value to get (0..vm-1), -1 for all components
* @return EC_Normal if successful, an error code otherwise
*/
virtual OFCondition getUltrasoundAcquisitionGeometry(OFString& value,
const signed long pos = 0) const;
/** Get Apex Position
* @param value Reference to variable in which the value should be stored
* @param pos Index of the value to get (0..vm-1)
* @return EC_Normal if successful, an error code otherwise
*/
virtual OFCondition getApexPosition(Float64& value,
const unsigned long pos = 0) const;
/** Get Apex Position
* @param value Reference to variable in which the value should be stored
* @return EC_Normal if successful, an error code otherwise
*/
virtual OFCondition getApexPosition(OFVector<Float64>& value);
/** Get Volume to Transducer Relationship
* @param value Reference to variable in which the value should be stored
* @param pos Index of the value to get (0..vm-1), -1 for all components
* @return EC_Normal if successful, an error code otherwise
*/
virtual OFCondition getVolumetoTransducerRelationship(OFString& value,
const signed long pos = 0);
/** Get Volume to Table Mapping Matrix
* @param value Reference to variable in which the value should be stored
* @param pos Index of the value to get (0..vm-1)
* @return EC_Normal if successful, an error code otherwise
*/
virtual OFCondition getVolumetoTransducerMappingMatrix(Float64& value,
const signed long pos = 0) const;
/** Get Volume to Table Mapping Matrix
* @param value Reference to variable in which the value should be stored
* @return EC_Normal if successful, an error code otherwise
*/
virtual OFCondition getVolumetoTransducerMappingMatrix(OFVector<Float64>& value);
/** Get Patient Frame of Reference Source
* @param value Reference to variable in which the value should be stored
* @param pos Index of the value to get (0..vm-1), -1 for all components
* @return EC_Normal if successful, an error code otherwise
*/
virtual OFCondition getPatientFrameofReferenceSource(OFString& value,
const signed long pos = 0);
/** Get Table Frame of Reference UID
* @param value Reference to variable in which the value should be stored
* @param pos Index of the value to get (0..vm-1), -1 for all components
* @return EC_Normal if successful, an error code otherwise
*/
virtual OFCondition getTableFrameofReferenceUID(OFString& value,
const signed long pos = 0);
/** Get Volume to Table Mapping Matrix
* @param value Reference to variable in which the value should be stored
* @param pos Index of the value to get (0..vm-1)
* @return EC_Normal if successful, an error code otherwise
*/
virtual OFCondition getVolumetoTableMappingMatrix(Float64& value,
const signed long pos = 0) const;
/** Get Volume to Table Mapping Matrix
* @param value Reference to variable in which the value should be stored
* @return EC_Normal if successful, an error code otherwise
*/
virtual OFCondition getVolumetoTableMappingMatrix(OFVector<Float64>& value);
/** Set Volume Frame Of Reference UID
* @param value Value to be set
* @param checkValue Check 'value' for conformance with VR (UI) and VM (1) if enabled
* @return EC_Normal if successful, an error code otherwise
*/
virtual OFCondition setVolumeFrameOfReferenceUID(const OFString &value,
const OFBool checkValue = OFTrue);
/** Set Ultrasound Acquisition Geometry
* @param value Value to be set
* @param checkValue Check 'value' for conformance with VR (CS) and VM (1) if enabled
* @return EC_Normal if successful, an error code otherwise
*/
virtual OFCondition setUltrasoundAcquisitionGeometry(const OFString &value,
const OFBool checkValue = OFTrue);
/** Set Apex Position
* @param xValue xValue to be set
* @param yValue yValue to be set
* @param zValue zValue to be set
* @param checkValue Does nothing at the moment
* @return EC_Normal if successful, an error code otherwise
*/
virtual OFCondition setApexPosition(const Float64& xValue,
const Float64& yValue,
const Float64& zValue,
const OFBool checkValue = OFTrue);
/** Set Volume to Transducer Relationship
* @param value Value to be set
* @param checkValue Check 'value' for conformance with VR (CS) and VM (1) if enabled
* @return EC_Normal if successful, an error code otherwise
*/
virtual OFCondition setVolumetoTransducerRelationship(const OFString &value,
const OFBool checkValue = OFTrue);
/** Set Volume to Transducer Mapping Matrix
* @param value Value to be set
* @param checkValue Check 'value' for conformance with VR (FD) and VM (16) if enabled
* @return EC_Normal if successful, an error code otherwise
*/
virtual OFCondition setVolumetoTransducerMappingMatrix(const OFVector<Float64>& value,
const OFBool checkValue = OFTrue);
/** Set Patient Frame of Reference Source
* @param value Value to be set
* @param checkValue Check 'value' for conformance with VR (CS) and VM (1) if enabled
* @return EC_Normal if successful, an error code otherwise
*/
virtual OFCondition setPatientFrameOfReferenceSource(const OFString &value,
const OFBool checkValue = OFTrue);
/** Set Table Frame of Reference UID
* @param value Value to be set
* @param checkValue Check 'value' for conformance with VR (UI) and VM (1) if enabled
* @return EC_Normal if successful, an error code otherwise
*/
virtual OFCondition setTableFrameofReferenceUID(const OFString &value,
const OFBool checkValue = OFTrue);
/** Set Volume to Table Mapping Matrix
* @param value Value to be set
* @param checkValue Check 'value' for conformance with VR (FD) and VM (16) if enabled
* @return EC_Normal if successful, an error code otherwise
*/
virtual OFCondition setVolumeToTableMappingMatrix(const OFVector<Float64>& value,
const OFBool checkValue = OFTrue);
private:
/// Module name "UltrasoundFrameOfReferenceModule"
static const OFString m_ModuleName;
};
#endif // MODUSFOR_H
|