X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmDocument.cxx;h=115f3054c4c75eb777f0bfa71dbbe045cef8c534;hb=5a7f506da1ee16d6e742c4e95f7f1b09826d8980;hp=1370bae853b61823178b764425204f9327246b0b;hpb=28a450b5f6613151f43feee037af9a4ceb00b231;p=gdcm.git diff --git a/src/gdcmDocument.cxx b/src/gdcmDocument.cxx index 1370bae8..115f3054 100644 --- a/src/gdcmDocument.cxx +++ b/src/gdcmDocument.cxx @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmDocument.cxx,v $ Language: C++ - Date: $Date: 2007/07/26 08:36:49 $ - Version: $Revision: 1.364 $ + Date: $Date: 2007/07/27 09:49:31 $ + Version: $Revision: 1.365 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -1349,7 +1349,6 @@ bool Document::ParseSQ( SeqEntry *seqEntry, gdcmWarningMacro("in ParseSQ : should never get here!"); UnexpectedEOF = true; return false; - //break; } if ( delim_mode ) { @@ -2248,12 +2247,14 @@ DocEntry *Document::ReadNextDocEntry() // Data Elements are Explicit VR and some other ones Implicit VR // -> Better we fix the problem at Write time - else if (CurrentGroup%2 == 1 && - (CurrentElem >= 0x0010 && CurrentElem <=0x00ff )) - { - // DICOM PS 3-5 7.8.1 a) states that those - // (gggg-0010->00FF where gggg is odd) attributes have to be LO - realVR = "LO"; + else if (CurrentGroup%2 == 1 ) + { + if (CurrentElem >= 0x0010 && CurrentElem <=0x00ff ) + // DICOM PS 3-5 7.8.1 a) states that those + // (gggg-0010->00FF where gggg is odd) attributes have to be LO + realVR = "LO"; + else if ( CurrentElem == 0x0001) + realVR = "UL"; // Private Group Length To End } else