From 04b83b845fb791147e998d35232f7bb01bf4daf3 Mon Sep 17 00:00:00 2001 From: jpr Date: Tue, 30 Oct 2007 11:56:52 +0000 Subject: [PATCH] Show better the troubles --- Example/exSerieHelper.cxx | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/Example/exSerieHelper.cxx b/Example/exSerieHelper.cxx index 22296f67..195b9e1a 100644 --- a/Example/exSerieHelper.cxx +++ b/Example/exSerieHelper.cxx @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: exSerieHelper.cxx,v $ Language: C++ - Date: $Date: 2007/10/30 11:45:01 $ - Version: $Revision: 1.15 $ + Date: $Date: 2007/10/30 11:56:52 $ + Version: $Revision: 1.16 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -81,22 +81,24 @@ int main(int argc, char *argv[]) while (l) { nbFiles = l->size() ; - if ( l->size() > 5 ) // Why not ? Just an example, for testing + if ( nbFiles > 5 ) // Why not ? Just an example, for testing { - std::cout << "Sort list : " << nbFiles << " long" << std::endl; - + std::cout << "List to sort : " << nbFiles << " long" << std::endl; //--------------------------------------------------------- s->OrderFileList(l); // sort the list (and compute ZSpacing !) //--------------------------------------------------------- - std::cout << "List after sorting : " << nbFiles << " long" << std::endl; + std::cout << "List after sorting : " << l->size() << " long" << std::endl; zspacing = s->GetZSpacing(); // Just to show : GetZSpacing from a GDCM_NAME_SPACE::SerieHelper is right std::cout << "GetZSpacing() of sorted SingleSerieUIDFileSet " << "from GDCM_NAME_SPACE::SerieHelper: " << zspacing << std::endl; std::cout << " ('-1' means all the files have the same position)" << std::endl; + + // Check the vector content int fileCount = 0; - for (std::vector::iterator it2 = l->begin(); + // for (std::vector::iterator it2 = l->begin(); + for (GDCM_NAME_SPACE::FileList::const_iterator it2 = l->begin(); it2 != l->end(); ++it2) { -- 2.45.1