1 /*=========================================================================
4 Module: $RCSfile: gdcmDictEntry.cxx,v $
6 Date: $Date: 2005/11/30 08:48:17 $
7 Version: $Revision: 1.59 $
9 Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
10 l'Image). All rights reserved. See Doc/License.txt or
11 http://www.creatis.insa-lyon.fr/Public/Gdcm/License.html for details.
13 This software is distributed WITHOUT ANY WARRANTY; without even
14 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15 PURPOSE. See the above copyright notices for more information.
17 =========================================================================*/
19 #include "gdcmDictEntry.h"
20 #include "gdcmDebug.h"
23 #include <iomanip> // for std::ios::left, ...
25 #include <stdio.h> // for sprintf
29 //-----------------------------------------------------------------------------
30 // Constructor / Destructor
33 * @param group DICOM-Group Number
34 * @param elem DICOM-Element Number
35 * @param vr Value Representation
36 * @param vm Value Multiplicity
37 * @param name description of the element
39 DictEntry::DictEntry(uint16_t group, uint16_t elem,
55 DictEntry::~DictEntry()
58 //-----------------------------------------------------------------------------
61 * \brief Class allocator
62 * @param group DICOM-Group Number
63 * @param elem DICOM-Element Number
64 * @param vr Value Representation
65 * @param vm Value Multiplicity
66 * @param name description of the element
68 DictEntry *DictEntry::New(uint16_t group, uint16_t elem,
73 return new DictEntry(group,elem,vr,vm,name);
77 * \brief concatenates 2 uint16_t (supposed to be a Dicom group number
78 * and a Dicom element number)
79 * @param group the Dicom group number used to build the tag
80 * @param elem the Dicom element number used to build the tag
81 * @return the built tag
83 TagKey DictEntry::TranslateToKey(uint16_t group, uint16_t elem)
85 // according to 'Purify', TranslateToKey is one of the most
86 // time consuming methods.
87 // Let's try to shorten it !
88 return TagKey(group,elem);
91 //-----------------------------------------------------------------------------
94 //-----------------------------------------------------------------------------
97 //-----------------------------------------------------------------------------
100 * \brief Prints an entry of the Dicom DictionaryEntry
101 * @param os ostream we want to print in
102 * @param indent Indentation string to be prepended during printing
104 void DictEntry::Print(std::ostream &os, std::string const & )
107 os << " [" << VR << "] ";
109 std::ostringstream s;
111 if ( PrintLevel >= 1 )
113 s.setf(std::ios::left);
114 s << std::setw(66-GetName().length()) << " ";
117 s << "[" << GetName()<< "]";
118 os << s.str() << std::endl;
121 //-----------------------------------------------------------------------------
122 } // end namespace gdcm