view Core/DicomFormat/DicomTag.h @ 77:b8dfde8d64e8

new dicom tags
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 20 Sep 2012 13:41:18 +0200
parents c996319e90bc
children 6212bf978584
line wrap: on
line source

/**
 * Orthanc - A Lightweight, RESTful DICOM Store
 * Copyright (C) 2012 Medical Physics Department, CHU of Liege,
 * Belgium
 *
 * This program is free software: you can redistribute it and/or
 * modify it under the terms of the GNU General Public License as
 * published by the Free Software Foundation, either version 3 of the
 * License, or (at your option) any later version.
 * 
 * This program is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
 * General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
 **/


#pragma once

#include <string>
#include <stdint.h>


namespace Orthanc
{
  class DicomTag
  {
    // This must stay a POD (plain old data structure) 

  private:
    uint16_t group_;
    uint16_t element_;

  public:
    DicomTag(uint16_t group,
             uint16_t element) :
      group_(group),
      element_(element)
    {
    }

    uint16_t GetGroup() const
    {
      return group_;
    }

    uint16_t GetElement() const
    {
      return element_;
    }

    bool operator< (const DicomTag& other) const;

    std::string Format() const;

    friend std::ostream& operator<< (std::ostream& o, const DicomTag& tag);

    // Aliases for the most useful tags
    static const DicomTag ACCESSION_NUMBER;
    static const DicomTag SOP_INSTANCE_UID;
    static const DicomTag PATIENT_ID;
    static const DicomTag SERIES_INSTANCE_UID;
    static const DicomTag STUDY_INSTANCE_UID;
    static const DicomTag PIXEL_DATA;

    static const DicomTag INSTANCE_NUMBER;
    static const DicomTag IMAGE_INDEX;

    static const DicomTag NUMBER_OF_SLICES;
    static const DicomTag NUMBER_OF_FRAMES;
    static const DicomTag CARDIAC_NUMBER_OF_IMAGES;
    static const DicomTag IMAGES_IN_ACQUISITION;
  };
}