]> Creatis software - gdcm.git/blobdiff - src/gdcmOrientation.h
ENH: sagital -> sagittal
[gdcm.git] / src / gdcmOrientation.h
index 1ff2432599c99b14c793bb4a3d6619e05624ec8e..407f69a4ae8be59b562c1e3b0159af2fa1548fe0 100644 (file)
@@ -3,8 +3,8 @@
   Program:   gdcm
   Module:    $RCSfile: gdcmOrientation.h,v $
   Language:  C++
-  Date:      $Date: 2005/11/28 16:31:23 $
-  Version:   $Revision: 1.17 $
+  Date:      $Date: 2008/08/18 12:27:10 $
+  Version:   $Revision: 1.21 $
                                                                                 
   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
   l'Image). All rights reserved. See Doc/License.txt or
                                                                                 
 =========================================================================*/
 
-#ifndef GDCMORIENTATION_H
-#define GDCMORIENTATION_H
+#ifndef _GDCMORIENTATION_H_
+#define _GDCMORIENTATION_H_
 
 #include "gdcmRefCounter.h"
-
 #include <map>
 
-namespace gdcm 
+namespace GDCM_NAME_SPACE 
 {
 typedef struct
 {
@@ -41,14 +40,14 @@ typedef enum {
    AxialInvert = -1,
    Coronal = 2,
    CoronalInvert = -2,
-   Sagital = 3,
-   SagitalInvert = -3,
+   Sagittal = 3,
+   SagittalInvert = -3,
    HeartAxial = 4,
    HeartAxialInvert = -4,
    HeartCoronal = 5,
    HeartCoronalInvert = -5,
-   HeartSagital = 6,
-   HeartSagitalInvert = -6
+   HeartSagittal = 6,
+   HeartSagittalInvert = -6
 } OrientationType;
 
 //-----------------------------------------------------------------------------
@@ -76,7 +75,7 @@ typedef enum {
  *
  * Example #1:
  * Imagine the patient, in "HFS" position.
- * Full body sagital images are requested.
+ * Full body sagittal images are requested.
  * All the cosines will be -1, 0, or +1;
  * "Patient Orientation" (deduced) will be "A/F".
  * Positive X axis is oriented 'towards patient's nose
@@ -84,15 +83,15 @@ typedef enum {
  *
  * Example #2:
  * Imagine now that patient has a stiffneck and his head is *turned* 30 degrees towards the left.
- * Head sagital images are requested.
+ * Head sagittal images are requested.
  * One of the cosines will be almost 0.5
  * Deduced "Patient Orientation" will be "AL\F"
  * (main X axis orientation is towards patient's nose, and a little bit towards the left)
- * but the image looks *perfectly* sagital (for the head, not for the patient) !
+ * but the image looks *perfectly* sagittal (for the head, not for the patient) !
  *
  * Imagine the patient's stiffneck causes head to be *bended* 30 degrees towards the left AND *turned* left.
- * Sagital images are requested...
- * You'll probabely have 3 letters for X axis and  Y axis, and the image remains *perfectly* sagital !
+ * Sagittal images are requested...
+ * You'll probabely have 3 letters for X axis and  Y axis, and the image remains *perfectly* sagittal !
  * The values are given within the 'Patient referential', *not* within the 'Organ referential' ...
  */
 
@@ -107,7 +106,7 @@ public:
   std::string GetOrientation ( File *file );  
   
   static const char* GetOrientationTypeString(OrientationType const o);
-  
+
 protected:
 /// \brief Constructor
   Orientation() {}