DCMTK
Version 3.6.1 20170228
OFFIS DICOM Toolkit
|
Class that holds actual measurement values. More...
Public Member Functions | |
virtual OFCondition | get (const Float32 *&dataValues, unsigned long &numValues, const Uint32 *&trackPointIndices) |
Get measurement values and the point indices (if applicable) More... | |
virtual | ~Values () |
Destructor, frees memory. | |
virtual void | resetRules () |
Resets rules to their original values. | |
virtual OFString | getName () const |
Get name of component. More... | |
![]() | |
IODComponent (OFshared_ptr< DcmItem > item, OFshared_ptr< IODRules > rules, IODComponent *parent=NULL) | |
Constructor. More... | |
IODComponent (IODComponent *parent=NULL) | |
Constructor, creates rules and item from scratch. More... | |
IODComponent & | operator= (const IODComponent &rhs) |
Assignment operator, copies contained item and rule set from rhs to "this" attribute set. More... | |
IODComponent (const IODComponent &rhs) | |
Copy constructor, copies reference to contained item and rule set to "this" attribute set. More... | |
virtual | ~IODComponent () |
Virtual Destructor. | |
void | clearData () |
Clear all attributes from the data that are handled by this module. More... | |
virtual void | inventMissing () |
Set missing values by inventing "default values". More... | |
OFshared_ptr< IODRules > | getRules () |
Get rules handled by this module. More... | |
virtual void | makeOptional () |
Make component optional by turning all attributes requirement types of it to type 3. More... | |
DcmItem & | getData () |
Get the data handled by this module. More... | |
virtual OFCondition | read (DcmItem &source, const OFBool clearOldData=OFTrue) |
Read attributes from given item into this class. More... | |
virtual OFCondition | write (DcmItem &destination) |
Write attributes from this class into given item. More... | |
virtual OFCondition | check (const OFBool quiet=OFFalse) |
Check whether this component's data satisfies the underlying rules. More... | |
virtual int | compare (const IODComponent &rhs) const |
Comparison operator for IOD Components. More... | |
Static Public Member Functions | |
static OFCondition | create (const Float32 *dataValues, const unsigned long numValues, TrcMeasurement::Values *&values) |
Create TrcMeasurement::Values from minimal data. More... | |
static OFCondition | createWithIndices (const Float32 *dataValues, const unsigned long numValues, const Uint32 *trackPointIndices, TrcMeasurement::Values *&values) |
Create TrcMeasurement::Values from minimal data by providing measurement values as well as indices of those points those measurement values apply to. More... | |
![]() | |
static OFCondition | read (DcmItem &source, IODRules &rules, DcmItem &destination, const OFString &componentName) |
Static helper function that reads attributes from given item into destination item, as determined by the provided rules and component name. More... | |
static OFCondition | write (DcmItem &source, IODRules &rules, DcmItem &destination, const OFString &componentName) |
Static helper function that writes attributes from given item into destination item, as determined by the provided rules and component name. More... | |
Protected Member Functions | |
Values () | |
Protected constructor, use create() method to create a new track set. | |
Friends | |
class | DcmIODUtil |
Additional Inherited Members | |
![]() | |
OFshared_ptr< DcmItem > | m_Item |
Shared pointer to the data handled by this class. More... | |
OFshared_ptr< IODRules > | m_Rules |
Rules describing the attributes governed by this class. | |
IODComponent * | m_Parent |
The parent component (may be NULL) of this class. | |
Class that holds actual measurement values.
|
static |
Create TrcMeasurement::Values from minimal data.
dataValues | The measurement values |
numValues | The number of measurement values. Must be equal to the numbers of data points in the related track. |
values | The measurement values |
|
static |
Create TrcMeasurement::Values from minimal data by providing measurement values as well as indices of those points those measurement values apply to.
dataValues | The measurement values |
numValues | The number of measurement values, must be equal or less to number of data points in the related track. |
trackPointIndices | The indices of the points the measurement values apply to |
values | The measurement values |
|
virtual |
Get measurement values and the point indices (if applicable)
dataValues | Pointer to memory buffer with returned values |
numValues | The number of measurement values returned in dataValues |
trackPointIndices | The indices of the points the measurement values apply to. If there is a measurement value for each points in the track, NULL will be returned here. |
|
virtual |
Get name of component.
Implements IODComponent.