1 /*=========================================================================
4 Module: $RCSfile: gdcmTS.cxx,v $
6 Date: $Date: 2005/01/06 15:41:28 $
7 Version: $Revision: 1.29 $
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 =========================================================================*/
20 #include "gdcmDebug.h"
22 #include "gdcmDictSet.h"
29 // a lot of troubles expected with TS : 1.2.840.113619.5.2
30 // Implicit VR - Big Endian
31 // see : http://www.gemedicalsystemseurope.com/euen/it_solutions/pdf/lsqxi_rev2.pdf
36 void FillDefaultTSDict(TSHT & ts);
37 //-----------------------------------------------------------------------------
38 // Constructor / Destructor
41 std::string filename = DictSet::BuildDictPath() + DICT_TS;
42 std::ifstream from(filename.c_str());
45 dbg.Verbose(2, "TS::TS: can't open dictionary", filename.c_str());
46 FillDefaultTSDict( TsMap );
57 std::getline(from, name);
68 //-----------------------------------------------------------------------------
74 //-----------------------------------------------------------------------------
79 * @param os The output stream to be written to.
81 void TS::Print(std::ostream &os)
85 for (TSHT::const_iterator it = TsMap.begin(); it != TsMap.end(); ++it)
87 s << "TS : " << it->first << " = " << it->second << std::endl;
92 //-----------------------------------------------------------------------------
94 int TS::Count(TSKey const & key)
96 return TsMap.count(key);
99 TSAtr const & TS::GetValue(TSKey const & key)
101 TSHT::const_iterator it = TsMap.find(key);
102 if (it == TsMap.end())
109 //-----------------------------------------------------------------------------
112 //-----------------------------------------------------------------------------
115 //-----------------------------------------------------------------------------
117 } // end namespace gdcm