📄 dcvrfd.h
字号:
/* * * Copyright (C) 1994-2005, OFFIS * * This software and supporting documentation were developed by * * Kuratorium OFFIS e.V. * Healthcare Information and Communication Systems * Escherweg 2 * D-26121 Oldenburg, Germany * * THIS SOFTWARE IS MADE AVAILABLE, AS IS, AND OFFIS MAKES NO WARRANTY * REGARDING THE SOFTWARE, ITS PERFORMANCE, ITS MERCHANTABILITY OR * FITNESS FOR ANY PARTICULAR USE, FREEDOM FROM ANY COMPUTER DISEASES OR * ITS CONFORMITY TO ANY SPECIFICATION. THE ENTIRE RISK AS TO QUALITY AND * PERFORMANCE OF THE SOFTWARE IS WITH THE USER. * * Module: dcmdata * * Author: Gerd Ehlers, Andreas Barth * * Purpose: Interface of class DcmFloatingPointDouble * * Last Update: $Author: meichel $ * Update Date: $Date: 2005/12/08 16:28:58 $ * Source File: $Source: /share/dicom/cvs-depot/dcmtk/dcmdata/include/dcmtk/dcmdata/dcvrfd.h,v $ * CVS/RCS Revision: $Revision: 1.19 $ * Status: $State: Exp $ * * CVS/RCS Log at end of file * */#ifndef DCVRFD_H#define DCVRFD_H#include "dcmtk/config/osconfig.h" /* make sure OS specific configuration is included first */#include "dcmtk/dcmdata/dcelem.h"/** a class representing the DICOM value representation 'Floating Point Double' (FD) */class DcmFloatingPointDouble : public DcmElement{ public: /** constructor. * Create new element from given tag and length. * @param tag DICOM tag for the new element * @param len value length for the new element */ DcmFloatingPointDouble(const DcmTag &tag, const Uint32 len = 0); /** copy constructor * @param old element to be copied */ DcmFloatingPointDouble( const DcmFloatingPointDouble &old); /** destructor */ virtual ~DcmFloatingPointDouble(); /** assignment operator * @param obj element to be assigned/copied * @return reference to this object */ DcmFloatingPointDouble &operator=(const DcmFloatingPointDouble &obj); /** clone method * @return deep copy of this object */ virtual DcmObject *clone() const { return new DcmFloatingPointDouble(*this); } /** get element type identifier * @return type identifier of this class (EVR_FD) */ virtual DcmEVR ident() const; /** get value multiplicity * @return number of currently stored values */ virtual unsigned long getVM(); /** print element to a stream. * The output format of the value is a backslash separated sequence of numbers. * This function uses a variable number of digits for the floating point values * as created by the OFStandard::ftoa() function by default. * @param out output stream * @param flags optional flag used to customize the output (see DCMTypes::PF_xxx) * @param level current level of nested items. Used for indentation. * @param pixelFileName not used * @param pixelCounter not used */ virtual void print(ostream &out, const size_t flags = 0, const int level = 0, const char *pixelFileName = NULL, size_t *pixelCounter = NULL); /** get particular double value * @param doubleVal reference to result variable (cleared in case of error) * @param pos index of the value to be retrieved (0..vm-1) * @return status, EC_Normal if successful, an error code otherwise */ virtual OFCondition getFloat64(Float64 &doubleVal, const unsigned long pos = 0); /** get reference to stored double data * @param doubleVals reference to result variable * @return status, EC_Normal if successful, an error code otherwise */ virtual OFCondition getFloat64Array(Float64 *&doubleVals); /** get a particular value as a character string. * The resulting string contains a variable number of digits as created by * the OFStandard::ftoa() function by default. * @param stringVal variable in which the result value is stored * @param pos index of the value in case of multi-valued elements (0..vm-1) * @param normalize not used * @return status, EC_Normal if successful, an error code otherwise */ virtual OFCondition getOFString(OFString &stringVal, const unsigned long pos, OFBool normalize = OFTrue); /** set particular element value to given double * @param doubleval double precision floating point value to be set * @param pos index of the value to be set (0 = first position) * @return status, EC_Normal if successful, an error code otherwise */ virtual OFCondition putFloat64(const Float64 doubleval, const unsigned long pos = 0); /** set element value to given double array data * @param doubleVals double precision floating point data to be set * @param numDoubles number of double values to be set * @return status, EC_Normal if successful, an error code otherwise */ virtual OFCondition putFloat64Array(const Float64 *doubleVals, const unsigned long numDoubles); /** set element value from the given character string. * The input string is expected to be a backslash separated sequence of * numeric characters, e.g. "12.3456\1\-123.456\1234.0". * @param stringVal input character string * @return status, EC_Normal if successful, an error code otherwise */ virtual OFCondition putString(const char *stringVal); /** check the currently stored element value * @param autocorrect correct value length if OFTrue * @return status, EC_Normal if value length is correct, an error code otherwise */ virtual OFCondition verify(const OFBool autocorrect = OFFalse);};#endif // DCVRFD_H/*** CVS/RCS Log:** $Log: dcvrfd.h,v $** Revision 1.19 2005/12/08 16:28:58 meichel** Changed include path schema for all DCMTK header files**** Revision 1.18 2004/07/01 12:28:25 meichel** Introduced virtual clone method for DcmObject and derived classes.**** Revision 1.17 2002/12/06 12:49:15 joergr** Enhanced "print()" function by re-working the implementation and replacing** the boolean "showFullData" parameter by a more general integer flag.** Added doc++ documentation.** Made source code formatting more consistent with other modules/files.**** Revision 1.16 2002/04/25 09:51:42 joergr** Added getOFString() implementation.**** Revision 1.15 2001/09/25 17:19:31 meichel** Adapted dcmdata to class OFCondition**** Revision 1.14 2001/06/01 15:48:49 meichel** Updated copyright header**** Revision 1.13 2000/04/14 15:31:34 meichel** Removed default value from output stream passed to print() method.** Required for use in multi-thread environments.**** Revision 1.12 2000/03/08 16:26:23 meichel** Updated copyright header.**** Revision 1.11 2000/03/03 14:05:26 meichel** Implemented library support for redirecting error messages into memory** instead of printing them to stdout/stderr for GUI applications.**** Revision 1.10 2000/02/10 10:50:54 joergr** Added new feature to dcmdump (enhanced print method of dcmdata): write** pixel data/item value fields to raw files.**** Revision 1.9 1999/03/31 09:25:00 meichel** Updated copyright header in module dcmdata**** Revision 1.8 1998/11/12 16:47:48 meichel** Implemented operator= for all classes derived from DcmObject.**** Revision 1.7 1997/07/21 08:25:14 andreas** - Replace all boolean types (BOOLEAN, CTNBOOLEAN, DICOM_BOOL, BOOL)** with one unique boolean type OFBool.**** Revision 1.6 1997/04/18 08:13:29 andreas** - The put/get-methods for all VRs did not conform to the C++-Standard** draft. Some Compilers (e.g. SUN-C++ Compiler, Metroworks** CodeWarrier, etc.) create many warnings concerning the hiding of** overloaded get methods in all derived classes of DcmElement.** So the interface of all value representation classes in the** library are changed rapidly, e.g.** OFCondition get(Uint16 & value, const unsigned long pos);** becomes** OFCondition getUint16(Uint16 & value, const unsigned long pos);** All (retired) "returntype get(...)" methods are deleted.** For more information see dcmdata/include/dcelem.h**** Revision 1.5 1996/08/05 08:45:31 andreas** new print routine with additional parameters:** - print into files** - fix output length for elements** corrected error in search routine with parameter ESM_fromStackTop**** Revision 1.4 1996/01/29 13:38:16 andreas** - new put method for every VR to put value as a string** - better and unique print methods**** Revision 1.3 1996/01/05 13:23:05 andreas** - changed to support new streaming facilities** - more cleanups** - merged read / write methods for block and file transfer***/
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -