diff Core/DicomFormat/DicomTag.cpp @ 80:6212bf978584

status of series
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 20 Sep 2012 15:18:12 +0200
parents b8dfde8d64e8
children fe180eae201d
line wrap: on
line diff
--- a/Core/DicomFormat/DicomTag.cpp	Thu Sep 20 13:47:54 2012 +0200
+++ b/Core/DicomFormat/DicomTag.cpp	Thu Sep 20 15:18:12 2012 +0200
@@ -58,21 +58,4 @@
     sprintf(b, "%04x,%04x", group_, element_);
     return std::string(b);
   }
-
-
-  const DicomTag DicomTag::ACCESSION_NUMBER = DicomTag(0x0008, 0x0050);
-  const DicomTag DicomTag::SOP_INSTANCE_UID = DicomTag(0x0008, 0x0018);
-  const DicomTag DicomTag::PATIENT_ID = DicomTag(0x0010, 0x0020);
-  const DicomTag DicomTag::SERIES_INSTANCE_UID = DicomTag(0x0020, 0x000e);
-  const DicomTag DicomTag::STUDY_INSTANCE_UID = DicomTag(0x0020, 0x000d);
-  const DicomTag DicomTag::PIXEL_DATA = DicomTag(0x7fe0, 0x0010);
-
-  const DicomTag DicomTag::INSTANCE_NUMBER = DicomTag(0x0020, 0x0013);
-  const DicomTag DicomTag::IMAGE_INDEX = DicomTag(0x0054, 0x1330);
-
-  const DicomTag DicomTag::NUMBER_OF_SLICES = DicomTag(0x0054, 0x0081);
-  const DicomTag DicomTag::NUMBER_OF_FRAMES = DicomTag(0x0028, 0x0008);
-  const DicomTag DicomTag::CARDIAC_NUMBER_OF_IMAGES = DicomTag(0x0018, 0x1090);
-  const DicomTag DicomTag::IMAGES_IN_ACQUISITION = DicomTag(0x0020, 0x1002);
-
 }