]> Creatis software - gdcm.git/blobdiff - Testing/TestSerieHelper.cxx
Two ;; at end of line can cause troubles
[gdcm.git] / Testing / TestSerieHelper.cxx
index 02f06f8e9e8e789bc11e6e939f95e0992f4c00a6..f3a101a0916034f47bde5d91f35aa2254b0d5644 100644 (file)
@@ -3,8 +3,8 @@
   Program:   gdcm
   Module:    $RCSfile: TestSerieHelper.cxx,v $
   Language:  C++
-  Date:      $Date: 2005/05/26 18:50:45 $
-  Version:   $Revision: 1.4 $
+  Date:      $Date: 2005/08/30 15:13:07 $
+  Version:   $Revision: 1.8 $
                                                                                 
   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
   l'Image). All rights reserved. See Doc/License.txt or
@@ -35,15 +35,19 @@ int TestSerieHelper(int argc, char *argv[])
    //if (argc > 2)
    //   gdcm::Debug::DebugOn();
 
+  
    std::cout << "Dir Name :[" << dirName << "]" << std::endl;
 
    s = new gdcm::SerieHelper();
-   s->SetDirectory(dirName, true); // true : recursive exploration 
-   std::cout << " -------------------------------------------Finish parsing :["
+   s->SetLoadMode(gdcm::LD_ALL);     // Load everything for each File
+   //s->AddRestriction(tagKey, valueToCheck); // Keep only files where
+                                              // restriction is true
+   s->SetDirectory(dirName, true); // true : recursive exploration
+   std::cout << " ---------------------------------------- Finish parsing :["
              << dirName << "]" << std::endl;
 
    s->Print();
-   std::cout << " -----------------------------------------Finish printing (1)"
+   std::cout << " ---------------------------------------- Finish printing (1)"
              << std::endl;
 
    int nbFiles;
@@ -59,12 +63,30 @@ int TestSerieHelper(int argc, char *argv[])
       }
       l = s->GetNextCoherentFileList();
    } 
-   std::cout << " ----------------------------------------------Finish sorting"
+   std::cout << " -------------------------------------------- Finish sorting"
              << std::endl;
    s->Print(); // Prints all the Coherent Files lists (sorted or not)
-   std::cout << " ---------------------------------------------Finish printing"
+   std::cout << " -------------------------------------------- Finish printing"
              << std::endl;
 
+
+   // Only for the first Coherent File List 
+   // ( Why not ? Just an example, for testing )
+   // Display all the file names
+
+   std::string fileName; 
+   l = s->GetFirstCoherentFileList();
+   for (std::vector<gdcm::File* >::iterator it =  l->begin();
+                                            it != l->end();
+                                          ++it)
+   {
+      fileName = (*it)->GetFileName();
+      std::cout << fileName << std::endl;
+      // Remark : vtkGdcmReader users can use this loop to AddFileName(fileName)
+      //          in the right order 
+   } 
+     
+
    delete s;
 
    return 0;