]> Creatis software - gdcm.git/blob - src/gdcmSerieHelper.cxx
Doxgenation :
[gdcm.git] / src / gdcmSerieHelper.cxx
1 /*=========================================================================
2                                                                                 
3   Program:   gdcm
4   Module:    $RCSfile: gdcmSerieHelper.cxx,v $
5   Language:  C++
6   Date:      $Date: 2005/10/23 15:04:26 $
7   Version:   $Revision: 1.28 $
8                                                                                 
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.
12                                                                                 
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.
16                                                                                 
17 =========================================================================*/
18
19 #include "gdcmSerieHelper.h"
20 #include "gdcmDirList.h"
21 #include "gdcmFile.h"
22 #include "gdcmDictEntry.h" // for TranslateToKey
23 #include "gdcmDebug.h"
24 #include "gdcmUtil.h"
25
26 #include <math.h>
27 #include <vector>
28 #include <map>
29 #include <algorithm>
30 #include <stdio.h>  //for sscanf
31
32 namespace gdcm 
33 {
34 //-----------------------------------------------------------------------------
35
36 //-----------------------------------------------------------------------------
37 // Constructor / Destructor
38 /**
39  * \brief   Constructor from a given SerieHelper
40  */
41 SerieHelper::SerieHelper()
42 {
43    ClearAll();
44    UserLessThanFunction = 0;
45    DirectOrder = true;
46 }
47
48 /**
49  * \brief   Canonical destructor.
50  */
51 SerieHelper::~SerieHelper()
52 {
53    ClearAll();
54 }
55
56 /**
57  * \brief  Preventively, clear everything at constructor time.
58  *         ( use it at destructor time.)
59  */
60 void SerieHelper::ClearAll()
61 {
62    // For all the 'Single SerieUID' Filesets that may already exist 
63    FileList *l = GetFirstSingleSerieUIDFileSet();
64    while (l)
65    { 
66       // For all the gdcm::File of a File set
67       for (gdcm::FileList::iterator it  = l->begin();
68                                     it != l->end(); 
69                                   ++it)
70       {
71          delete *it; // remove each entry
72       }
73       l->clear();
74       delete l;     // remove the container
75       l = GetNextSingleSerieUIDFileSet();
76    }
77 }
78
79 //-----------------------------------------------------------------------------
80
81 //-----------------------------------------------------------------------------
82
83 // Public
84 /**
85  * \brief add a gdcm::File to the Fileset corresponding to its Serie UID
86  * @param   filename Name of the file to deal with
87  */
88 void SerieHelper::AddFileName(std::string const &filename)
89 {
90    // Create a DICOM file
91    File *header = new File ();
92    header->SetLoadMode(LoadMode);
93    header->SetFileName( filename ); 
94    header->Load();
95
96    if ( header->IsReadable() )
97    {
98       int allrules = 1;
99       // First step : the user defined a set of rules for the DICOM file
100       // he is looking for.
101       // Make sure the file corresponds to his set of rules:
102
103       std::string s;
104       for(SerieExRestrictions::iterator it2 = ExRestrictions.begin();
105           it2 != ExRestrictions.end();
106           ++it2)
107       {
108          const ExRule &r = *it2;
109          s = header->GetEntryString( r.group, r.elem );
110          if ( !Util::CompareDicomString(s, r.value.c_str(), r.op) )
111          {
112            // Argh ! This rule is unmatched; let's just quit
113
114            allrules = 0;
115            break;
116          }
117       }
118
119       if ( allrules ) // all rules are respected:
120       {
121          // Allright! we have a found a DICOM that matches the user expectation. 
122          // Let's add it!
123
124          // 0020 000e UI REL Series Instance UID
125          const std::string &uid = header->GetEntryString(0x0020, 0x000e);
126          // if uid == GDCM_UNFOUND then consistently we should find GDCM_UNFOUND
127          // no need here to do anything special
128
129
130          if ( SingleSerieUIDFileSetHT.count(uid) == 0 )
131          {
132             gdcmDebugMacro(" New Serie UID :[" << uid << "]");
133             // create a std::list in 'uid' position
134             SingleSerieUIDFileSetHT[uid] = new FileList;
135          }
136          // Current Serie UID and DICOM header seems to match; add the file:
137          SingleSerieUIDFileSetHT[uid]->push_back( header );
138       }
139       else
140       {
141          // at least one rule was unmatched we need to deallocate the file:
142          delete header;
143       }
144    }
145    else
146    {
147       gdcmWarningMacro("Could not read file: " << filename );
148       delete header;
149    }
150 }
151
152 /**
153  * \brief add a gdcm::File to the first (and supposed to be unique) file set
154  *        of the gdcm::SerieHelper.
155  * \warning : this method should be used by aware users only!
156  *           Passing a gdcm::File* has the same effect than passing a file name!
157  * \todo : decide which one is wrong (the method, or the commentary)!
158  *           the following comment doesn't match the method :-(
159  *            User is supposed to know the files he want to deal with
160  *           and consider them they belong to the same Serie
161  *           (even if their Serie UID is different)
162  *           user will probabely OrderFileList() this list (actually, ordering
163  *           user choosen gdm::File is the sole interest of this method)
164  *           Moreover, using vtkGdcmReader::SetCoherentFileList() will avoid
165  *           vtkGdcmReader parsing twice the same files. 
166  *           *no* coherence check is performed, but those specified
167  *           by SerieHelper::AddRestriction()
168  * @param   header gdcm::File* of the file to deal with
169  */
170 void SerieHelper::AddGdcmFile(File *header)
171 {
172       int allrules = 1;
173       // First step the user has defined a set of rules for the DICOM 
174       // he is looking for.
175       // make sure the file correspond to his set of rules:
176       for(SerieRestrictions::iterator it =  Restrictions.begin();
177                                       it != Restrictions.end();
178                                     ++it)
179       {
180          const Rule &r = *it;
181          const std::string s;// = header->GetEntryValue( r.first );
182          if ( !Util::DicomStringEqual(s, r.second.c_str()) )
183          {
184            // Argh ! This rule is unmatch let's just quit
185            allrules = 0;
186            break;
187          }
188       }
189       if ( allrules ) // all rules are respected:
190       {
191          // Allright ! we have a found a DICOM that match the user expectation. 
192          // Let's add it !
193
194          const std::string &uid = "0";
195          // Serie UID of the gdcm::File* may be different.
196          // User is supposed to know what he wants
197
198          if ( SingleSerieUIDFileSetHT.count(uid) == 0 )
199          {
200             gdcmDebugMacro(" New Serie UID :[" << uid << "]");
201             // create a std::list in 'uid' position
202             SingleSerieUIDFileSetHT[uid] = new FileList;
203          }
204          // Current Serie UID and DICOM header seems to match; add the file:
205          SingleSerieUIDFileSetHT[uid]->push_back( header );
206       }
207          // Even if a rule was unmatch we don't deallocate the gdcm::File:
208 }
209
210 /**
211  * \brief add a rules for restricting a DICOM file to be in the serie we are
212  * trying to find. For example you can select only the DICOM file from a
213  * directory which would have a particular EchoTime==4.0.
214  * This method is a user level, value is not required to be formatted as a DICOM
215  * string
216  * @param   group  Group number of the target tag.
217  * @param   elem Element number of the target tag.
218  * @param value value to be checked to exclude File
219  * @param op  operator we want to use to check
220  */
221 void SerieHelper::AddRestriction(uint16_t group, uint16_t elem, 
222                                  std::string const &value, int op)
223 {
224    ExRule r;
225    r.group = group;
226    r.elem  = elem;
227    r.value = value;
228    r.op    = op;
229    ExRestrictions.push_back( r ); 
230 }
231
232 #ifndef GDCM_LEGACY_REMOVE
233 void SerieHelper::AddRestriction(TagKey const &key, std::string const &value)
234 {
235    Rule r;
236    r.first = key;
237    r.second = value;
238    Restrictions.push_back( r ); 
239 }
240 #endif
241
242 /**
243  * \brief Sets the root Directory
244  * @param   dir Name of the directory to deal with
245  * @param recursive whether we want explore recursively the root Directory
246  */
247 void SerieHelper::SetDirectory(std::string const &dir, bool recursive)
248 {
249    DirList dirList(dir, recursive); // OS specific
250   
251    DirListType filenames_list = dirList.GetFilenames();
252    for( DirListType::const_iterator it = filenames_list.begin(); 
253         it != filenames_list.end(); ++it)
254    {
255       AddFileName( *it );
256    }
257 }
258
259 /**
260  * \brief Sorts the given Fileset
261  * \warning This could be implemented in a 'Strategy Pattern' approach
262  *          But as I don't know how to do it, I leave it this way
263  *          BTW, this is also a Strategy, I don't know this is 
264  *          the best approach :)
265  */
266 void SerieHelper::OrderFileList(FileList *fileSet)
267 {
268
269    if ( SerieHelper::UserLessThanFunction )
270    {
271       UserOrdering( fileSet );
272       return; 
273    }
274    else if ( ImagePositionPatientOrdering( fileSet ) )
275    {
276       return ;
277    }
278    else if ( ImageNumberOrdering(fileSet ) )
279    {
280       return ;
281    }
282    else  
283    {
284       FileNameOrdering(fileSet );
285    }
286 }
287
288 /**
289  * \brief Elementary coherence checking of the files with the same Serie UID
290  * Only sizes and pixel type are checked right now ...
291  */ 
292 bool SerieHelper::IsCoherent(FileList *fileSet)
293 {
294    if(fileSet->size() == 1)
295    return true;
296
297    FileList::const_iterator it = fileSet->begin();
298
299    int nX = (*it)->GetXSize();
300    int nY = (*it)->GetYSize();
301    int pixelSize = (*it)->GetPixelSize();
302
303    it ++;
304    for ( ;
305          it != fileSet->end();
306        ++it)
307    {
308       if ( (*it)->GetXSize() != nX )
309          return false;
310       if ( (*it)->GetYSize() != nY )
311          return false;
312       if ( (*it)->GetPixelSize() != pixelSize )
313          return false;
314       // probabely more is to be checked (?)
315    }
316    return true;
317 }
318
319 #ifndef GDCM_LEGACY_REMOVE
320
321 FileList *SerieHelper::GetFirstCoherentFileList()
322 {
323    ItFileSetHt = SingleSerieUIDFileSetHT.begin();
324    if ( ItFileSetHt != SingleSerieUIDFileSetHT.end() )
325       return ItFileSetHt->second;
326    return NULL;
327 }
328
329
330 FileList *SerieHelper::GetNextCoherentFileList()
331 {
332    gdcmAssertMacro (ItFileSetHt != SingleSerieUIDFileSetHT.end());
333   
334    ++ItFileSetHt;
335    if ( ItFileSetHt != SingleSerieUIDFileSetHT.end() )
336       return ItFileSetHt->second;
337    return NULL;
338 }
339
340
341 FileList *SerieHelper::GetCoherentFileList(std::string SerieUID)
342 {
343    if ( SingleSerieUIDFileSetHT.count(SerieUID) == 0 )
344       return 0;     
345    return SingleSerieUIDFileSetHT[SerieUID];
346 }
347 #endif
348
349
350 /**
351  * \brief   Get the first Fileset while visiting the SingleSerieUIDFileSetmap
352  * @return  The first FileList (SingleSerieUIDFileSet) if found, otherwhise 0
353  */
354 FileList *SerieHelper::GetFirstSingleSerieUIDFileSet()
355 {
356    ItFileSetHt = SingleSerieUIDFileSetHT.begin();
357    if ( ItFileSetHt != SingleSerieUIDFileSetHT.end() )
358       return ItFileSetHt->second;
359    return NULL;
360 }
361
362 /**
363  * \brief   Get the next Fileset while visiting the SingleSerieUIDFileSetmap
364  * \note : meaningfull only if GetNextSingleSerieUIDFileSet() already called 
365  * @return  The next FileList (SingleSerieUIDFileSet) if found, otherwhise 0
366  */
367 FileList *SerieHelper::GetNextSingleSerieUIDFileSet()
368 {
369    gdcmAssertMacro (ItFileSetHt != SingleSerieUIDFileSetHT.end());
370   
371    ++ItFileSetHt;
372    if ( ItFileSetHt != SingleSerieUIDFileSetHT.end() )
373       return ItFileSetHt->second;
374    return NULL;
375 }
376
377 /**
378  * \brief   Get the SingleSerieUIDFileSet according to its Serie UID
379  * @param SerieUID SerieUID to retrieve
380  * \return pointer to the FileList (SingleSerieUIDFileSet) if found, otherwhise 0
381  */
382 FileList *SerieHelper::GetSingleSerieUIDFileSet(std::string SerieUID)
383 {
384    if ( SingleSerieUIDFileSetHT.count(SerieUID) == 0 )
385       return 0;     
386    return SingleSerieUIDFileSetHT[SerieUID];
387 }
388
389 /**
390  * \brief   Splits a Single SerieUID Fileset according to the Orientations
391  * @param fileSet File Set to be splitted
392  * \return  std::map of 'Xcoherent' File sets
393  */
394
395 XCoherentFileSetmap SerieHelper::SplitOnOrientation(FileList *fileSet)
396 {
397    XCoherentFileSetmap CoherentFileSet;
398
399    int nb = fileSet->size();
400    if (nb == 0 )
401       return CoherentFileSet;
402    float iop[6];
403    std::ostringstream ossOrient;
404    std::string strOrient;
405    
406    FileList::const_iterator it = fileSet->begin();
407    it ++;
408    for ( ;
409          it != fileSet->end();
410        ++it)
411    {     
412       // Information is in :      
413       // 0020 0037 : Image Orientation (Patient) or
414       // 0020 0035 : Image Orientation (RET)
415
416       // Let's build again the 'cosines' string, to be sure of it's format      
417       (*it)->GetImageOrientationPatient(iop);
418       ossOrient << iop[0];      
419       for (int i = 1; i < 6; i++)
420       {
421         ossOrient << "\\";
422         ossOrient << iop[i]; 
423       }      
424       strOrient = ossOrient.str();
425       
426       if ( CoherentFileSet.count(strOrient) == 0 )
427       {
428          gdcmDebugMacro(" New Orientation :[" << strOrient << "]");
429          // create a File set in 'orientation' position
430          CoherentFileSet[strOrient] = new FileList;
431       }
432       // Current Orientation and DICOM header match; add the file:
433       CoherentFileSet[strOrient]->push_back( (*it) );
434    }   
435    return CoherentFileSet;
436 }
437
438 /**
439  * \brief   Splits a Single SerieUID Fileset according to the Positions
440  * @param fileSet File Set to be splitted
441  * \return  std::map of 'Xcoherent' File sets
442  */
443
444 XCoherentFileSetmap SerieHelper::SplitOnPosition(FileList *fileSet)
445 {
446    XCoherentFileSetmap CoherentFileSet;
447
448    int nb = fileSet->size();
449    if (nb == 0 )
450       return CoherentFileSet;
451    float pos[3];
452    std::string strImPos;  // read on disc
453    std::ostringstream ossPosition;
454    std::string strPosition; // re computed
455    FileList::const_iterator it = fileSet->begin();
456    it ++;
457    for ( ;
458          it != fileSet->end();
459        ++it)
460    {     
461       // Information is in :      
462       // 0020,0032 : Image Position Patient
463       // 0020,0030 : Image Position (RET)
464
465       strImPos = (*it)->GetEntryString(0x0020,0x0032);
466       if ( strImPos == GDCM_UNFOUND)
467       {
468          gdcmWarningMacro( "Unfound Image Position Patient (0020,0032)");
469          strImPos = (*it)->GetEntryString(0x0020,0x0030); // For ACR-NEMA images
470          if ( strImPos == GDCM_UNFOUND )
471          {
472             gdcmWarningMacro( "Unfound Image Position (RET) (0020,0030)");
473             // User wants to split on the 'Position'
474             // No 'Position' info found.
475             // We return an empty Htable !
476             return CoherentFileSet;
477          }  
478       }
479
480       if ( sscanf( strImPos.c_str(), "%f \\%f \\%f ", 
481                                               &pos[0], &pos[1], &pos[2]) != 3 )
482       {
483             gdcmWarningMacro( "Wrong number for Position : ["
484                        << strImPos << "]" );
485              return CoherentFileSet;
486       }
487
488       // Let's build again the 'position' string, to be sure of it's format      
489
490       ossPosition << pos[0];      
491       for (int i = 1; i < 3; i++)
492       {
493         ossPosition << "\\";
494         ossPosition << pos[i]; 
495       }      
496       strPosition = ossPosition.str();
497       
498       if ( CoherentFileSet.count(strPosition) == 0 )
499       {
500          gdcmDebugMacro(" New Position :[" << strPosition << "]");
501          // create a File set in 'position' position
502          CoherentFileSet[strPosition] = new FileList;
503       }
504       // Current Position and DICOM header match; add the file:
505       CoherentFileSet[strPosition]->push_back( (*it) );
506    }   
507    return CoherentFileSet;
508 }
509
510 /**
511  * \brief   Splits a SingleSerieUID File set Coherent according to the
512  *          value of a given Tag
513  * @param fileSet File Set to be splitted
514  * @param   group  group number of the target Element
515  * @param   elem element number of the target Element
516  * \return  std::map of 'Xcoherent' File sets
517  */
518
519 XCoherentFileSetmap SerieHelper::SplitOnTagValue(FileList *fileSet, 
520                                                uint16_t group, uint16_t elem)
521 {
522    XCoherentFileSetmap CoherentFileSet;
523
524    int nb = fileSet->size();
525    if (nb == 0 )
526       return CoherentFileSet;
527
528    std::string strTagValue;  // read on disc
529
530    FileList::const_iterator it = fileSet->begin();
531    it ++;
532    for ( ;
533          it != fileSet->end();
534        ++it)
535    {     
536       // Information is in :      
537       // 0020,0032 : Image Position Patient
538       // 0020,0030 : Image Position (RET)
539
540       strTagValue = (*it)->GetEntryString(group,elem);
541       
542       if ( CoherentFileSet.count(strTagValue) == 0 )
543       {
544          gdcmDebugMacro(" New Tag Value :[" << strTagValue << "]");
545          // create a File set in 'position' position
546          CoherentFileSet[strTagValue] = new FileList;
547       }
548       // Current Tag value and DICOM header match; add the file:
549       CoherentFileSet[strTagValue]->push_back( (*it) );
550    }
551    return CoherentFileSet;
552 }
553
554 //-----------------------------------------------------------------------------
555 // Protected
556
557 //-----------------------------------------------------------------------------
558 // Private
559 /**
560  * \brief sorts the images, according to their Patient Position
561  *  We may order, considering :
562  *   -# Image Position Patient
563  *   -# Image Number
564  *   -# File Name
565  *   -# More to come :-)
566  * \note : FileList = std::vector<File* >
567  * @param fileList Coherent File list (same Serie UID) to sort
568  * @return false only if the header is bugged !
569  */
570 bool SerieHelper::ImagePositionPatientOrdering( FileList *fileList )
571 //based on Jolinda Smith's algorithm
572 {
573    //iop is calculated based on the file file
574    float cosines[6];
575    float normal[3];
576    float ipp[3];
577    float dist;
578    float min = 0, max = 0;
579    bool first = true;
580    int n=0;
581    std::vector<float> distlist;
582
583    //!\todo rewrite this for loop.
584    for ( FileList::const_iterator 
585          it = fileList->begin();
586          it != fileList->end(); ++it )
587    {
588       if ( first ) 
589       {
590          (*it)->GetImageOrientationPatient( cosines );
591       
592          // You only have to do this once for all slices in the volume. Next, 
593          // for each slice, calculate the distance along the slice normal 
594          // using the IPP ("Image Position Patient") tag.
595          // ("dist" is initialized to zero before reading the first slice) :
596          normal[0] = cosines[1]*cosines[5] - cosines[2]*cosines[4];
597          normal[1] = cosines[2]*cosines[3] - cosines[0]*cosines[5];
598          normal[2] = cosines[0]*cosines[4] - cosines[1]*cosines[3];
599   
600          ipp[0] = (*it)->GetXOrigin();
601          ipp[1] = (*it)->GetYOrigin();
602          ipp[2] = (*it)->GetZOrigin();
603
604          dist = 0;
605          for ( int i = 0; i < 3; ++i )
606          {
607             dist += normal[i]*ipp[i];
608          }
609     
610          distlist.push_back( dist );
611
612          max = min = dist;
613          first = false;
614       }
615       else 
616       {
617          ipp[0] = (*it)->GetXOrigin();
618          ipp[1] = (*it)->GetYOrigin();
619          ipp[2] = (*it)->GetZOrigin();
620   
621          dist = 0;
622          for ( int i = 0; i < 3; ++i )
623          {
624             dist += normal[i]*ipp[i];
625          }
626
627          distlist.push_back( dist );
628
629          min = (min < dist) ? min : dist;
630          max = (max > dist) ? max : dist;
631       }
632       ++n;
633    }
634
635    // Then I order the slices according to the value "dist". Finally, once
636    // I've read in all the slices, I calculate the z-spacing as the difference
637    // between the "dist" values for the first two slices.
638    FileVector CoherentFileVector(n);
639    // CoherentFileVector.reserve( n );
640    CoherentFileVector.resize( n );
641    // gdcmAssertMacro( CoherentFileVector.capacity() >= n );
642
643    // Find out if min/max are coherent
644    if ( min == max )
645    {
646      gdcmWarningMacro("Looks like all images have the exact same image position"
647                       << ". No PositionPatientOrdering sort performed" );
648      return false;
649    }
650
651    float step = (max - min)/(n - 1);
652    int pos;
653    n = 0;
654     
655    //VC++ don't understand what scope is !! it -> it2
656    for (FileList::const_iterator it2  = fileList->begin();
657         it2 != fileList->end(); ++it2, ++n)
658    {
659       //2*n sort algo !!
660       //Assumption: all files are present (no one missing)
661       pos = (int)( fabs( (distlist[n]-min)/step) + .5 );
662
663       // a Dicom 'Serie' may contain scout views
664       // and images may have differents directions
665       // -> More than one may have the same 'pos'
666       // Sorting has then NO meaning !
667       if (CoherentFileVector[pos]==NULL)
668          CoherentFileVector[pos] = *it2;
669       else
670       {
671          gdcmWarningMacro( "At least 2 files with same position."
672                         << " No PositionPatientOrdering sort performed");
673          return false;
674       }
675    }
676
677    fileList->clear();  // doesn't delete list elements, only nodes
678
679    if (DirectOrder)
680    {  
681       //VC++ don't understand what scope is !! it -> it3
682       for (FileVector::const_iterator it3  = CoherentFileVector.begin();
683            it3 != CoherentFileVector.end(); ++it3)
684       {
685          fileList->push_back( *it3 );
686       }
687    }
688    else // user asked for reverse order
689    {
690       FileVector::const_iterator it4;
691       it4 = CoherentFileVector.end();
692       do
693       {
694          it4--;
695          fileList->push_back( *it4 );
696       } while (it4 != CoherentFileVector.begin() );
697    } 
698
699    distlist.clear();
700    CoherentFileVector.clear();
701
702    return true;
703 }
704
705 bool SerieHelper::ImageNumberLessThan(File *file1, File *file2)
706 {
707   return file1->GetImageNumber() < file2->GetImageNumber();
708 }
709
710 bool SerieHelper::ImageNumberGreaterThan(File *file1, File *file2)
711 {
712   return file1->GetImageNumber() > file2->GetImageNumber();
713 }
714
715 /**
716  * \brief sorts the images, according to their Image Number
717  * \note Works only on bona fide files  (i.e image number is a character string
718  *                                      corresponding to an integer)
719  *             within a bona fide serie (i.e image numbers are consecutive)
720  * @param fileList Coherent File list (same Serie UID) to sort 
721  * @return false if non bona fide stuff encountered
722  */
723 bool SerieHelper::ImageNumberOrdering(FileList *fileList) 
724 {
725    int min, max, pos;
726    int n = fileList->size();
727
728    FileList::const_iterator it = fileList->begin();
729    min = max = (*it)->GetImageNumber();
730
731    for (; it != fileList->end(); ++it, ++n)
732    {
733       pos = (*it)->GetImageNumber();
734       min = (min < pos) ? min : pos;
735       max = (max > pos) ? max : pos;
736    }
737
738    // Find out if image numbers are coherent (consecutive)
739    if ( min == max || max == 0 || max >= (n+min) )
740    {
741       gdcmWarningMacro( " 'Image numbers' not coherent. "
742                         << " No ImageNumberOrdering sort performed.");
743       return false;
744    }
745    if (DirectOrder) 
746       std::sort(fileList->begin(), fileList->end(), 
747                                           SerieHelper::ImageNumberLessThan );
748    else
749       std::sort(fileList->begin(), fileList->end(),
750                                           SerieHelper::ImageNumberGreaterThan );
751
752    return true;
753 }
754
755 bool SerieHelper::FileNameLessThan(File *file1, File *file2)
756 {
757    return file1->GetFileName() < file2->GetFileName();
758 }
759
760 bool SerieHelper::FileNameGreaterThan(File *file1, File *file2)
761 {
762    return file1->GetFileName() > file2->GetFileName();
763 }
764 /**
765  * \brief sorts the images, according to their File Name
766  * @param fileList Coherent File list (same Serie UID) to sort
767  * @return false only if the header is bugged !
768  */
769 bool SerieHelper::FileNameOrdering(FileList *fileList)
770 {
771    if (DirectOrder) 
772       std::sort(fileList->begin(), fileList->end(), 
773                                        SerieHelper::FileNameLessThan);
774    else
775       std::sort(fileList->begin(), fileList->end(), 
776                                        SerieHelper::FileNameGreaterThan);
777
778    return true;
779 }
780
781 /**
782  * \brief sorts the images, according to user supplied function
783  * @param fileList Coherent File list (same Serie UID) to sort
784  * @return false only if the header is bugged !
785  */
786 bool SerieHelper::UserOrdering(FileList *fileList)
787 {
788    std::sort(fileList->begin(), fileList->end(), 
789                                     SerieHelper::UserLessThanFunction);
790    if (!DirectOrder) 
791    {
792       std::reverse(fileList->begin(), fileList->end());
793    }
794    return true;
795 }
796
797 //-----------------------------------------------------------------------------
798 // Print
799 /**
800  * \brief   Canonical printer.
801  */
802 void SerieHelper::Print(std::ostream &os, std::string const &indent)
803 {
804    // For all the Coherent File lists of the gdcm::Serie
805    SingleSerieUIDFileSetmap::iterator itl = SingleSerieUIDFileSetHT.begin();
806    if ( itl == SingleSerieUIDFileSetHT.end() )
807    {
808       gdcmWarningMacro( "No SingleSerieUID File set found" );
809       return;
810    }
811    while (itl != SingleSerieUIDFileSetHT.end())
812    { 
813       os << "Serie UID :[" << itl->first << "]" << std::endl;
814
815       // For all the files of a SingleSerieUID File set
816       for (FileList::iterator it =  (itl->second)->begin();
817                                   it != (itl->second)->end(); 
818                                 ++it)
819       {
820          os << indent << " --- " << (*it)->GetFileName() << std::endl;
821       }
822       ++itl;
823    }
824 }
825
826 //-----------------------------------------------------------------------------
827 } // end namespace gdcm