2797 lines
329 KiB
Plaintext
2797 lines
329 KiB
Plaintext
{------------------------------------------------------------------------------}
|
|
{ }
|
|
{ Helper functions for working with Dicom medical files in ImageEn }
|
|
{ }
|
|
{ Nigel Cross }
|
|
{ Xequte Software }
|
|
{ nigel@xequte.com }
|
|
{ http://www.xequte.com }
|
|
{ }
|
|
{ © Xequte Software 2009-2014 }
|
|
{ }
|
|
{------------------------------------------------------------------------------}
|
|
|
|
|
|
(*
|
|
Copyright (c) 1998-2014 by Carlotta Calandra. All rights reserved.
|
|
Copyright (c) 2011-2014 by Xequte software.
|
|
|
|
This software comes without express or implied warranty.
|
|
In no case shall the author be liable for any damage or unwanted behavior of any
|
|
computer hardware and/or software.
|
|
|
|
Author grants you the right to include the component
|
|
in your application, whether COMMERCIAL, SHAREWARE, or FREEWARE.
|
|
|
|
ImageEn, IEvolution and ImageEn ActiveX may not be included in any
|
|
commercial, shareware or freeware libraries or components.
|
|
*)
|
|
|
|
|
|
(*
|
|
File version 1002
|
|
*)
|
|
|
|
|
|
unit iexDicomRoutines;
|
|
|
|
{$I ie.inc}
|
|
|
|
|
|
interface
|
|
|
|
|
|
uses
|
|
ImageEnIO, dialogs, Sysutils, math, Graphics, Classes;
|
|
|
|
|
|
{$ifdef IEINCLUDEDICOM}
|
|
// returns true if the specified filename can support writing of Dicom Fields
|
|
function DicomCompatibleFile(const sFilename : string) : boolean;
|
|
{$endif}
|
|
|
|
|
|
type
|
|
|
|
TIEDicomType = (iedtAE, iedtAS, iedtAT, iedtCS, iedtDA, iedtDS, iedtDT, iedtFD, iedtFL, iedtIS, iedtLO, iedtLT, iedtOB, iedtOF, iedtOW, iedtPN, iedtSH, iedtSL, iedtSQ, iedtSS, iedtST, iedtTM, iedtUI, iedtUL, iedtUS, iedtUT, iedtxs, iedtOther);
|
|
|
|
TAltTagInfo = record
|
|
Group : Word;
|
|
Element : Word;
|
|
DataType : TIEDicomType;
|
|
Description : string;
|
|
IsDeprecated : Boolean;
|
|
end;
|
|
|
|
const
|
|
Alt_Tag_Count = 2692;
|
|
|
|
AltTagInfo : array [0..Alt_Tag_Count-1] of TAltTagInfo =
|
|
(
|
|
(Group: $0; Element: $0; DataType: iedtUL; Description: 'Group Length'; IsDeprecated: False),
|
|
(Group: $0; Element: $1; DataType: iedtUL; Description: 'Length to End'; IsDeprecated: True),
|
|
(Group: $0; Element: $2; DataType: iedtUI; Description: 'Affected SOP Class UID'; IsDeprecated: False),
|
|
(Group: $0; Element: $3; DataType: iedtUI; Description: 'Requested SOP Class UID'; IsDeprecated: False),
|
|
(Group: $0; Element: $10; DataType: iedtCS; Description: 'Recognition Code'; IsDeprecated: True),
|
|
(Group: $0; Element: $100; DataType: iedtUS; Description: 'Command Field'; IsDeprecated: False),
|
|
(Group: $0; Element: $110; DataType: iedtUS; Description: 'Message ID'; IsDeprecated: False),
|
|
(Group: $0; Element: $120; DataType: iedtUS; Description: 'Message ID Being Responded To'; IsDeprecated: False),
|
|
(Group: $0; Element: $200; DataType: iedtAE; Description: 'Initiator'; IsDeprecated: True),
|
|
(Group: $0; Element: $300; DataType: iedtAE; Description: 'Receiver'; IsDeprecated: True),
|
|
(Group: $0; Element: $400; DataType: iedtAE; Description: 'Find Location'; IsDeprecated: True),
|
|
(Group: $0; Element: $600; DataType: iedtAE; Description: 'Move Destination'; IsDeprecated: False),
|
|
(Group: $0; Element: $700; DataType: iedtUS; Description: 'Priority'; IsDeprecated: False),
|
|
(Group: $0; Element: $800; DataType: iedtUS; Description: 'Data Set Type'; IsDeprecated: False),
|
|
(Group: $0; Element: $850; DataType: iedtUS; Description: 'Number of Matches'; IsDeprecated: True),
|
|
(Group: $0; Element: $860; DataType: iedtUS; Description: 'Response Sequence Number'; IsDeprecated: True),
|
|
(Group: $0; Element: $900; DataType: iedtUS; Description: 'Status'; IsDeprecated: False),
|
|
(Group: $0; Element: $901; DataType: iedtAT; Description: 'Offending Element'; IsDeprecated: False),
|
|
(Group: $0; Element: $902; DataType: iedtLO; Description: 'Error Comment'; IsDeprecated: False),
|
|
(Group: $0; Element: $903; DataType: iedtUS; Description: 'Error ID'; IsDeprecated: False),
|
|
(Group: $0; Element: $1000; DataType: iedtUI; Description: 'Affected SOP Instance UID'; IsDeprecated: False),
|
|
(Group: $0; Element: $1001; DataType: iedtUI; Description: 'Requested SOP Instance UID'; IsDeprecated: False),
|
|
(Group: $0; Element: $1002; DataType: iedtUS; Description: 'Event Type ID'; IsDeprecated: False),
|
|
(Group: $0; Element: $1005; DataType: iedtAT; Description: 'Attribute Identifier List'; IsDeprecated: False),
|
|
(Group: $0; Element: $1008; DataType: iedtUS; Description: 'Action Type ID'; IsDeprecated: False),
|
|
(Group: $0; Element: $1020; DataType: iedtUS; Description: 'Number of Remaining Sub-operations'; IsDeprecated: False),
|
|
(Group: $0; Element: $1021; DataType: iedtUS; Description: 'Number of Completed Sub-operations'; IsDeprecated: False),
|
|
(Group: $0; Element: $1022; DataType: iedtUS; Description: 'Number of Failed Sub-operations'; IsDeprecated: False),
|
|
(Group: $0; Element: $1023; DataType: iedtUS; Description: 'Number of Warning Sub-operations'; IsDeprecated: False),
|
|
(Group: $0; Element: $1030; DataType: iedtAE; Description: 'Move Originator Application Entity Title'; IsDeprecated: False),
|
|
(Group: $0; Element: $1031; DataType: iedtUS; Description: 'Move Originator Message ID'; IsDeprecated: False),
|
|
(Group: $0; Element: $4000; DataType: iedtAT; Description: 'DIALOG Receiver'; IsDeprecated: True),
|
|
(Group: $0; Element: $4010; DataType: iedtAT; Description: 'Terminal Type'; IsDeprecated: True),
|
|
(Group: $0; Element: $5010; DataType: iedtSH; Description: 'Message Set ID'; IsDeprecated: True),
|
|
(Group: $0; Element: $5020; DataType: iedtSH; Description: 'End Message ID'; IsDeprecated: True),
|
|
(Group: $0; Element: $5110; DataType: iedtAT; Description: 'Display Format'; IsDeprecated: True),
|
|
(Group: $0; Element: $5120; DataType: iedtAT; Description: 'Page Position ID'; IsDeprecated: True),
|
|
(Group: $0; Element: $5130; DataType: iedtCS; Description: 'Text Format ID'; IsDeprecated: True),
|
|
(Group: $0; Element: $5140; DataType: iedtCS; Description: 'Nor/Rev'; IsDeprecated: True),
|
|
(Group: $0; Element: $5150; DataType: iedtCS; Description: 'Add Gray Scale'; IsDeprecated: True),
|
|
(Group: $0; Element: $5160; DataType: iedtCS; Description: 'Borders'; IsDeprecated: True),
|
|
(Group: $0; Element: $5170; DataType: iedtIS; Description: 'Copies'; IsDeprecated: True),
|
|
(Group: $0; Element: $5180; DataType: iedtCS; Description: 'Magnification Type'; IsDeprecated: True),
|
|
(Group: $0; Element: $5190; DataType: iedtCS; Description: 'Erase'; IsDeprecated: True),
|
|
(Group: $0; Element: $51a0; DataType: iedtCS; Description: 'Print'; IsDeprecated: True),
|
|
(Group: $0; Element: $51b0; DataType: iedtUS; Description: 'Overlays'; IsDeprecated: True),
|
|
(Group: $2; Element: $1; DataType: iedtOB; Description: 'File Meta Information Version'; IsDeprecated: False),
|
|
(Group: $2; Element: $2; DataType: iedtUI; Description: 'Media Storage SOP Class UID'; IsDeprecated: False),
|
|
(Group: $2; Element: $3; DataType: iedtUI; Description: 'Media Storage SOP Instance UID'; IsDeprecated: False),
|
|
(Group: $2; Element: $10; DataType: iedtUI; Description: 'Transfer Syntax UID'; IsDeprecated: False),
|
|
(Group: $2; Element: $12; DataType: iedtUI; Description: 'Implementation Class UID'; IsDeprecated: False),
|
|
(Group: $2; Element: $13; DataType: iedtSH; Description: 'Implementation Version Name'; IsDeprecated: False),
|
|
(Group: $2; Element: $16; DataType: iedtAE; Description: 'Source Application Entity Title'; IsDeprecated: False),
|
|
(Group: $2; Element: $100; DataType: iedtUI; Description: 'Private Information Creator UID'; IsDeprecated: False),
|
|
(Group: $2; Element: $102; DataType: iedtOB; Description: 'Private Information'; IsDeprecated: False),
|
|
(Group: $4; Element: $1130; DataType: iedtCS; Description: 'File-set ID'; IsDeprecated: False),
|
|
(Group: $4; Element: $1141; DataType: iedtCS; Description: 'File-set Descriptor File ID'; IsDeprecated: False),
|
|
(Group: $4; Element: $1142; DataType: iedtCS; Description: 'Specific Character Set of File-set Descriptor File'; IsDeprecated: False),
|
|
(Group: $4; Element: $1200; DataType: iedtUL; Description: 'Offset of the First Directory Record of the Root Directory Entity'; IsDeprecated: False),
|
|
(Group: $4; Element: $1202; DataType: iedtUL; Description: 'Offset of the Last Directory Record of the Root Directory Entity'; IsDeprecated: False),
|
|
(Group: $4; Element: $1212; DataType: iedtUS; Description: 'File-set Consistency Flag'; IsDeprecated: False),
|
|
(Group: $4; Element: $1220; DataType: iedtSQ; Description: 'Directory Record Sequence'; IsDeprecated: False),
|
|
(Group: $4; Element: $1400; DataType: iedtUL; Description: 'Offset of the Next Directory Record'; IsDeprecated: False),
|
|
(Group: $4; Element: $1410; DataType: iedtUS; Description: 'Record In-use Flag'; IsDeprecated: False),
|
|
(Group: $4; Element: $1420; DataType: iedtUL; Description: 'Offset of Referenced Lower-Level Directory Entity'; IsDeprecated: False),
|
|
(Group: $4; Element: $1430; DataType: iedtCS; Description: 'Directory Record Type'; IsDeprecated: False),
|
|
(Group: $4; Element: $1432; DataType: iedtUI; Description: 'Private Record UID'; IsDeprecated: False),
|
|
(Group: $4; Element: $1500; DataType: iedtCS; Description: 'Referenced File ID'; IsDeprecated: False),
|
|
(Group: $4; Element: $1504; DataType: iedtUL; Description: 'MRDR Directory Record Offset'; IsDeprecated: True),
|
|
(Group: $4; Element: $1510; DataType: iedtUI; Description: 'Referenced SOP Class UID in File'; IsDeprecated: False),
|
|
(Group: $4; Element: $1511; DataType: iedtUI; Description: 'Referenced SOP Instance UID in File'; IsDeprecated: False),
|
|
(Group: $4; Element: $1512; DataType: iedtUI; Description: 'Referenced Transfer Syntax UID in File'; IsDeprecated: False),
|
|
(Group: $4; Element: $151a; DataType: iedtUI; Description: 'Referenced Related General SOP Class UID in File'; IsDeprecated: False),
|
|
(Group: $4; Element: $1600; DataType: iedtUL; Description: 'Number of References'; IsDeprecated: True),
|
|
(Group: $8; Element: $1; DataType: iedtUL; Description: 'Length to End'; IsDeprecated: True),
|
|
(Group: $8; Element: $5; DataType: iedtCS; Description: 'Specific Character Set'; IsDeprecated: False),
|
|
(Group: $8; Element: $8; DataType: iedtCS; Description: 'Image Type'; IsDeprecated: False),
|
|
(Group: $8; Element: $10; DataType: iedtCS; Description: 'Recognition Code'; IsDeprecated: True),
|
|
(Group: $8; Element: $12; DataType: iedtDA; Description: 'Instance Creation Date'; IsDeprecated: False),
|
|
(Group: $8; Element: $13; DataType: iedtTM; Description: 'Instance Creation Time'; IsDeprecated: False),
|
|
(Group: $8; Element: $14; DataType: iedtUI; Description: 'Instance Creator UID'; IsDeprecated: False),
|
|
(Group: $8; Element: $16; DataType: iedtUI; Description: 'SOP Class UID'; IsDeprecated: False),
|
|
(Group: $8; Element: $18; DataType: iedtUI; Description: 'SOP Instance UID'; IsDeprecated: False),
|
|
(Group: $8; Element: $001a; DataType: iedtUI; Description: 'Related General SOP Class UID'; IsDeprecated: False),
|
|
(Group: $8; Element: $001b; DataType: iedtUI; Description: 'Original Specialized SOP Class UID'; IsDeprecated: False),
|
|
(Group: $8; Element: $20; DataType: iedtDA; Description: 'Study Date'; IsDeprecated: False),
|
|
(Group: $8; Element: $21; DataType: iedtDA; Description: 'Series Date'; IsDeprecated: False),
|
|
(Group: $8; Element: $22; DataType: iedtDA; Description: 'Acquisition Date'; IsDeprecated: False),
|
|
(Group: $8; Element: $23; DataType: iedtDA; Description: 'Content Date'; IsDeprecated: False),
|
|
(Group: $8; Element: $24; DataType: iedtDA; Description: 'Overlay Date'; IsDeprecated: True),
|
|
(Group: $8; Element: $25; DataType: iedtDA; Description: 'Curve Date'; IsDeprecated: True),
|
|
(Group: $8; Element: $002a; DataType: iedtDT; Description: 'Acquisition DateTime'; IsDeprecated: False),
|
|
(Group: $8; Element: $30; DataType: iedtTM; Description: 'Study Time'; IsDeprecated: False),
|
|
(Group: $8; Element: $31; DataType: iedtTM; Description: 'Series Time'; IsDeprecated: False),
|
|
(Group: $8; Element: $32; DataType: iedtTM; Description: 'Acquisition Time'; IsDeprecated: False),
|
|
(Group: $8; Element: $33; DataType: iedtTM; Description: 'Content Time'; IsDeprecated: False),
|
|
(Group: $8; Element: $34; DataType: iedtTM; Description: 'Overlay Time'; IsDeprecated: True),
|
|
(Group: $8; Element: $35; DataType: iedtTM; Description: 'Curve Time'; IsDeprecated: True),
|
|
(Group: $8; Element: $40; DataType: iedtUS; Description: 'Data Set Type'; IsDeprecated: True),
|
|
(Group: $8; Element: $41; DataType: iedtLO; Description: 'Data Set Subtype'; IsDeprecated: True),
|
|
(Group: $8; Element: $42; DataType: iedtCS; Description: 'Nuclear Medicine Series Type'; IsDeprecated: True),
|
|
(Group: $8; Element: $50; DataType: iedtSH; Description: 'Accession Number'; IsDeprecated: False),
|
|
(Group: $8; Element: $52; DataType: iedtCS; Description: 'Query/Retrieve Level'; IsDeprecated: False),
|
|
(Group: $8; Element: $54; DataType: iedtAE; Description: 'Retrieve AE Title'; IsDeprecated: False),
|
|
(Group: $8; Element: $56; DataType: iedtCS; Description: 'Instance Availability'; IsDeprecated: False),
|
|
(Group: $8; Element: $58; DataType: iedtUI; Description: 'Failed SOP Instance UID List'; IsDeprecated: False),
|
|
(Group: $8; Element: $60; DataType: iedtCS; Description: 'Modality'; IsDeprecated: False),
|
|
(Group: $8; Element: $61; DataType: iedtCS; Description: 'Modalities in Study'; IsDeprecated: False),
|
|
(Group: $8; Element: $62; DataType: iedtUI; Description: 'SOP Classes in Study'; IsDeprecated: False),
|
|
(Group: $8; Element: $64; DataType: iedtCS; Description: 'Conversion Type'; IsDeprecated: False),
|
|
(Group: $8; Element: $68; DataType: iedtCS; Description: 'Presentation Intent Type'; IsDeprecated: False),
|
|
(Group: $8; Element: $70; DataType: iedtLO; Description: 'Manufacturer'; IsDeprecated: False),
|
|
(Group: $8; Element: $80; DataType: iedtLO; Description: 'Institution Name'; IsDeprecated: False),
|
|
(Group: $8; Element: $81; DataType: iedtST; Description: 'Institution Address'; IsDeprecated: False),
|
|
(Group: $8; Element: $82; DataType: iedtSQ; Description: 'Institution Code Sequence'; IsDeprecated: False),
|
|
(Group: $8; Element: $90; DataType: iedtPN; Description: 'Referring Physician''s Name'; IsDeprecated: False),
|
|
(Group: $8; Element: $92; DataType: iedtST; Description: 'Referring Physician''s Address'; IsDeprecated: False),
|
|
(Group: $8; Element: $94; DataType: iedtSH; Description: 'Referring Physician''s Telephone Numbers'; IsDeprecated: False),
|
|
(Group: $8; Element: $96; DataType: iedtSQ; Description: 'Referring Physician Identification Sequence'; IsDeprecated: False),
|
|
(Group: $8; Element: $100; DataType: iedtSH; Description: 'Code Value'; IsDeprecated: False),
|
|
(Group: $8; Element: $102; DataType: iedtSH; Description: 'Coding Scheme Designator'; IsDeprecated: False),
|
|
(Group: $8; Element: $103; DataType: iedtSH; Description: 'Coding Scheme Version'; IsDeprecated: False),
|
|
(Group: $8; Element: $104; DataType: iedtLO; Description: 'Code Meaning'; IsDeprecated: False),
|
|
(Group: $8; Element: $105; DataType: iedtCS; Description: 'Mapping Resource'; IsDeprecated: False),
|
|
(Group: $8; Element: $106; DataType: iedtDT; Description: 'Context Group Version'; IsDeprecated: False),
|
|
(Group: $8; Element: $107; DataType: iedtDT; Description: 'Context Group Local Version'; IsDeprecated: False),
|
|
(Group: $8; Element: $010b; DataType: iedtCS; Description: 'Context Group Extension Flag'; IsDeprecated: False),
|
|
(Group: $8; Element: $010c; DataType: iedtUI; Description: 'Coding Scheme UID'; IsDeprecated: False),
|
|
(Group: $8; Element: $010d; DataType: iedtUI; Description: 'Context Group Extension Creator UID'; IsDeprecated: False),
|
|
(Group: $8; Element: $010f; DataType: iedtCS; Description: 'Context Identifier'; IsDeprecated: False),
|
|
(Group: $8; Element: $110; DataType: iedtSQ; Description: 'Coding Scheme Identification Sequence'; IsDeprecated: False),
|
|
(Group: $8; Element: $112; DataType: iedtLO; Description: 'Coding Scheme Registry'; IsDeprecated: False),
|
|
(Group: $8; Element: $114; DataType: iedtST; Description: 'Coding Scheme External ID'; IsDeprecated: False),
|
|
(Group: $8; Element: $115; DataType: iedtST; Description: 'Coding Scheme Name'; IsDeprecated: False),
|
|
(Group: $8; Element: $116; DataType: iedtST; Description: 'Coding Scheme Responsible Organization'; IsDeprecated: False),
|
|
(Group: $8; Element: $201; DataType: iedtSH; Description: 'Timezone Offset From UTC'; IsDeprecated: False),
|
|
(Group: $8; Element: $1000; DataType: iedtAE; Description: 'Network ID'; IsDeprecated: True),
|
|
(Group: $8; Element: $1010; DataType: iedtSH; Description: 'Station Name'; IsDeprecated: False),
|
|
(Group: $8; Element: $1030; DataType: iedtLO; Description: 'Study Description'; IsDeprecated: False),
|
|
(Group: $8; Element: $1032; DataType: iedtSQ; Description: 'Procedure Code Sequence'; IsDeprecated: False),
|
|
(Group: $8; Element: $103e; DataType: iedtLO; Description: 'Series Description'; IsDeprecated: False),
|
|
(Group: $8; Element: $1040; DataType: iedtLO; Description: 'Institutional Department Name'; IsDeprecated: False),
|
|
(Group: $8; Element: $1048; DataType: iedtPN; Description: 'Physician(s) of Record'; IsDeprecated: False),
|
|
(Group: $8; Element: $1049; DataType: iedtSQ; Description: 'Physician(s) of Record Identification Sequence'; IsDeprecated: False),
|
|
(Group: $8; Element: $1050; DataType: iedtPN; Description: 'Performing Physician''s Name'; IsDeprecated: False),
|
|
(Group: $8; Element: $1052; DataType: iedtSQ; Description: 'Performing Physician Identification Sequence'; IsDeprecated: False),
|
|
(Group: $8; Element: $1060; DataType: iedtPN; Description: 'Name of Physician(s) Reading Study'; IsDeprecated: False),
|
|
(Group: $8; Element: $1062; DataType: iedtSQ; Description: 'Physician(s) Reading Study Identification Sequence'; IsDeprecated: False),
|
|
(Group: $8; Element: $1070; DataType: iedtPN; Description: 'Operators'' Name'; IsDeprecated: False),
|
|
(Group: $8; Element: $1072; DataType: iedtSQ; Description: 'Operator Identification Sequence'; IsDeprecated: False),
|
|
(Group: $8; Element: $1080; DataType: iedtLO; Description: 'Admitting Diagnoses Description'; IsDeprecated: False),
|
|
(Group: $8; Element: $1084; DataType: iedtSQ; Description: 'Admitting Diagnoses Code Sequence'; IsDeprecated: False),
|
|
(Group: $8; Element: $1090; DataType: iedtLO; Description: 'Manufacturer''s Model Name'; IsDeprecated: False),
|
|
(Group: $8; Element: $1100; DataType: iedtSQ; Description: 'Referenced Results Sequence'; IsDeprecated: True),
|
|
(Group: $8; Element: $1110; DataType: iedtSQ; Description: 'Referenced Study Sequence'; IsDeprecated: False),
|
|
(Group: $8; Element: $1111; DataType: iedtSQ; Description: 'Referenced Performed Procedure Step Sequence'; IsDeprecated: False),
|
|
(Group: $8; Element: $1115; DataType: iedtSQ; Description: 'Referenced Series Sequence'; IsDeprecated: False),
|
|
(Group: $8; Element: $1120; DataType: iedtSQ; Description: 'Referenced Patient Sequence'; IsDeprecated: False),
|
|
(Group: $8; Element: $1125; DataType: iedtSQ; Description: 'Referenced Visit Sequence'; IsDeprecated: False),
|
|
(Group: $8; Element: $1130; DataType: iedtSQ; Description: 'Referenced Overlay Sequence'; IsDeprecated: True),
|
|
(Group: $8; Element: $113a; DataType: iedtSQ; Description: 'Referenced Waveform Sequence'; IsDeprecated: False),
|
|
(Group: $8; Element: $1140; DataType: iedtSQ; Description: 'Referenced Image Sequence'; IsDeprecated: False),
|
|
(Group: $8; Element: $1145; DataType: iedtSQ; Description: 'Referenced Curve Sequence'; IsDeprecated: True),
|
|
(Group: $8; Element: $114a; DataType: iedtSQ; Description: 'Referenced Instance Sequence'; IsDeprecated: False),
|
|
(Group: $8; Element: $114b; DataType: iedtSQ; Description: 'Referenced Real World Value Mapping Instance Sequence'; IsDeprecated: False),
|
|
(Group: $8; Element: $1150; DataType: iedtUI; Description: 'Referenced SOP Class UID'; IsDeprecated: False),
|
|
(Group: $8; Element: $1155; DataType: iedtUI; Description: 'Referenced SOP Instance UID'; IsDeprecated: False),
|
|
(Group: $8; Element: $115a; DataType: iedtUI; Description: 'SOP Classes Supported'; IsDeprecated: False),
|
|
(Group: $8; Element: $1160; DataType: iedtIS; Description: 'Referenced Frame Number'; IsDeprecated: False),
|
|
(Group: $8; Element: $1195; DataType: iedtUI; Description: 'Transaction UID'; IsDeprecated: False),
|
|
(Group: $8; Element: $1197; DataType: iedtUS; Description: 'Failure Reason'; IsDeprecated: False),
|
|
(Group: $8; Element: $1198; DataType: iedtSQ; Description: 'Failed SOP Sequence'; IsDeprecated: False),
|
|
(Group: $8; Element: $1199; DataType: iedtSQ; Description: 'Referenced SOP Sequence'; IsDeprecated: False),
|
|
(Group: $8; Element: $1200; DataType: iedtSQ; Description: 'Studies Containing Other Referenced Instances Sequence'; IsDeprecated: False),
|
|
(Group: $8; Element: $1250; DataType: iedtSQ; Description: 'Related Series Sequence'; IsDeprecated: False),
|
|
(Group: $8; Element: $2110; DataType: iedtCS; Description: 'Lossy Image Compression (Retired)'; IsDeprecated: True),
|
|
(Group: $8; Element: $2111; DataType: iedtST; Description: 'Derivation Description'; IsDeprecated: False),
|
|
(Group: $8; Element: $2112; DataType: iedtSQ; Description: 'Source Image Sequence'; IsDeprecated: False),
|
|
(Group: $8; Element: $2120; DataType: iedtSH; Description: 'Stage Name'; IsDeprecated: False),
|
|
(Group: $8; Element: $2122; DataType: iedtIS; Description: 'Stage Number'; IsDeprecated: False),
|
|
(Group: $8; Element: $2124; DataType: iedtIS; Description: 'Number of Stages'; IsDeprecated: False),
|
|
(Group: $8; Element: $2127; DataType: iedtSH; Description: 'View Name'; IsDeprecated: False),
|
|
(Group: $8; Element: $2128; DataType: iedtIS; Description: 'View Number'; IsDeprecated: False),
|
|
(Group: $8; Element: $2129; DataType: iedtIS; Description: 'Number of Event Timers'; IsDeprecated: False),
|
|
(Group: $8; Element: $212a; DataType: iedtIS; Description: 'Number of Views in Stage'; IsDeprecated: False),
|
|
(Group: $8; Element: $2130; DataType: iedtDS; Description: 'Event Elapsed Time(s)'; IsDeprecated: False),
|
|
(Group: $8; Element: $2132; DataType: iedtLO; Description: 'Event Timer Name(s)'; IsDeprecated: False),
|
|
(Group: $8; Element: $2142; DataType: iedtIS; Description: 'Start Trim'; IsDeprecated: False),
|
|
(Group: $8; Element: $2143; DataType: iedtIS; Description: 'Stop Trim'; IsDeprecated: False),
|
|
(Group: $8; Element: $2144; DataType: iedtIS; Description: 'Recommended Display Frame Rate'; IsDeprecated: False),
|
|
(Group: $8; Element: $2200; DataType: iedtCS; Description: 'Transducer Position'; IsDeprecated: True),
|
|
(Group: $8; Element: $2204; DataType: iedtCS; Description: 'Transducer Orientation'; IsDeprecated: True),
|
|
(Group: $8; Element: $2208; DataType: iedtCS; Description: 'Anatomic Structure'; IsDeprecated: True),
|
|
(Group: $8; Element: $2218; DataType: iedtSQ; Description: 'Anatomic Region Sequence'; IsDeprecated: False),
|
|
(Group: $8; Element: $2220; DataType: iedtSQ; Description: 'Anatomic Region Modifier Sequence'; IsDeprecated: False),
|
|
(Group: $8; Element: $2228; DataType: iedtSQ; Description: 'Primary Anatomic Structure Sequence'; IsDeprecated: False),
|
|
(Group: $8; Element: $2229; DataType: iedtSQ; Description: 'Anatomic Structure, Space or Region Sequence'; IsDeprecated: False),
|
|
(Group: $8; Element: $2230; DataType: iedtSQ; Description: 'Primary Anatomic Structure Modifier Sequence'; IsDeprecated: False),
|
|
(Group: $8; Element: $2240; DataType: iedtSQ; Description: 'Transducer Position Sequence'; IsDeprecated: True),
|
|
(Group: $8; Element: $2242; DataType: iedtSQ; Description: 'Transducer Position Modifier Sequence'; IsDeprecated: True),
|
|
(Group: $8; Element: $2244; DataType: iedtSQ; Description: 'Transducer Orientation Sequence'; IsDeprecated: True),
|
|
(Group: $8; Element: $2246; DataType: iedtSQ; Description: 'Transducer Orientation Modifier Sequence'; IsDeprecated: True),
|
|
(Group: $8; Element: $2251; DataType: iedtSQ; Description: 'Anatomic Structure Space Or Region Code Sequence (Trial)'; IsDeprecated: True),
|
|
(Group: $8; Element: $2253; DataType: iedtSQ; Description: 'Anatomic Portal Of Entrance Code Sequence (Trial)'; IsDeprecated: True),
|
|
(Group: $8; Element: $2255; DataType: iedtSQ; Description: 'Anatomic Approach Direction Code Sequence (Trial)'; IsDeprecated: True),
|
|
(Group: $8; Element: $2256; DataType: iedtST; Description: 'Anatomic Perspective Description (Trial)'; IsDeprecated: True),
|
|
(Group: $8; Element: $2257; DataType: iedtSQ; Description: 'Anatomic Perspective Code Sequence (Trial)'; IsDeprecated: True),
|
|
(Group: $8; Element: $2258; DataType: iedtST; Description: 'Anatomic Location Of Examining Instrument Description (Trial)'; IsDeprecated: True),
|
|
(Group: $8; Element: $2259; DataType: iedtSQ; Description: 'Anatomic Location Of Examining Instrument Code Sequence (Trial)'; IsDeprecated: True),
|
|
(Group: $8; Element: $225a; DataType: iedtSQ; Description: 'Anatomic Structure Space Or Region Modifier Code Sequence (Trial)'; IsDeprecated: True),
|
|
(Group: $8; Element: $225c; DataType: iedtSQ; Description: 'OnAxis Background Anatomic Structure Code Sequence (Trial)'; IsDeprecated: True),
|
|
(Group: $8; Element: $3001; DataType: iedtSQ; Description: 'Alternate Representation Sequence'; IsDeprecated: False),
|
|
(Group: $8; Element: $3010; DataType: iedtUI; Description: 'Irradiation Event UID'; IsDeprecated: False),
|
|
(Group: $8; Element: $4000; DataType: iedtLT; Description: 'Identifying Comments'; IsDeprecated: True),
|
|
(Group: $8; Element: $9007; DataType: iedtCS; Description: 'Frame Type'; IsDeprecated: False),
|
|
(Group: $8; Element: $9092; DataType: iedtSQ; Description: 'Referenced Image Evidence Sequence'; IsDeprecated: False),
|
|
(Group: $8; Element: $9121; DataType: iedtSQ; Description: 'Referenced Raw Data Sequence'; IsDeprecated: False),
|
|
(Group: $8; Element: $9123; DataType: iedtUI; Description: 'Creator-Version UID'; IsDeprecated: False),
|
|
(Group: $8; Element: $9124; DataType: iedtSQ; Description: 'Derivation Image Sequence'; IsDeprecated: False),
|
|
(Group: $8; Element: $9154; DataType: iedtSQ; Description: 'Source Image Evidence Sequence'; IsDeprecated: False),
|
|
(Group: $8; Element: $9205; DataType: iedtCS; Description: 'Pixel Presentation'; IsDeprecated: False),
|
|
(Group: $8; Element: $9206; DataType: iedtCS; Description: 'Volumetric Properties'; IsDeprecated: False),
|
|
(Group: $8; Element: $9207; DataType: iedtCS; Description: 'Volume Based Calculation Technique'; IsDeprecated: False),
|
|
(Group: $8; Element: $9208; DataType: iedtCS; Description: 'Complex Image Component'; IsDeprecated: False),
|
|
(Group: $8; Element: $9209; DataType: iedtCS; Description: 'Acquisition Contrast'; IsDeprecated: False),
|
|
(Group: $8; Element: $9215; DataType: iedtSQ; Description: 'Derivation Code Sequence'; IsDeprecated: False),
|
|
(Group: $8; Element: $9237; DataType: iedtSQ; Description: 'Referenced Grayscale Presentation State Sequence'; IsDeprecated: False),
|
|
(Group: $8; Element: $9410; DataType: iedtSQ; Description: 'Referenced Other Plane Sequence'; IsDeprecated: False),
|
|
(Group: $8; Element: $9458; DataType: iedtSQ; Description: 'Frame Display Sequence'; IsDeprecated: False),
|
|
(Group: $8; Element: $9459; DataType: iedtFL; Description: 'Recommended Display Frame Rate in Float'; IsDeprecated: False),
|
|
(Group: $8; Element: $9460; DataType: iedtCS; Description: 'Skip Frame Range Flag'; IsDeprecated: False),
|
|
(Group: $10; Element: $10; DataType: iedtPN; Description: 'Patient''s Name'; IsDeprecated: False),
|
|
(Group: $10; Element: $20; DataType: iedtLO; Description: 'Patient ID'; IsDeprecated: False),
|
|
(Group: $10; Element: $21; DataType: iedtLO; Description: 'Issuer of Patient ID'; IsDeprecated: False),
|
|
(Group: $10; Element: $22; DataType: iedtCS; Description: 'Type of Patient ID'; IsDeprecated: False),
|
|
(Group: $10; Element: $30; DataType: iedtDA; Description: 'Patient''s Birth Date'; IsDeprecated: False),
|
|
(Group: $10; Element: $32; DataType: iedtTM; Description: 'Patient''s Birth Time'; IsDeprecated: False),
|
|
(Group: $10; Element: $40; DataType: iedtCS; Description: 'Patient''s Sex'; IsDeprecated: False),
|
|
(Group: $10; Element: $50; DataType: iedtSQ; Description: 'Patient''s Insurance Plan Code Sequence'; IsDeprecated: False),
|
|
(Group: $10; Element: $101; DataType: iedtSQ; Description: 'Patient''s Primary Language Code Sequence'; IsDeprecated: False),
|
|
(Group: $10; Element: $102; DataType: iedtSQ; Description: 'Patient''s Primary Language Code Modifier Sequence'; IsDeprecated: False),
|
|
(Group: $10; Element: $1000; DataType: iedtLO; Description: 'Other Patient IDs'; IsDeprecated: False),
|
|
(Group: $10; Element: $1001; DataType: iedtPN; Description: 'Other Patient Names'; IsDeprecated: False),
|
|
(Group: $10; Element: $1002; DataType: iedtSQ; Description: 'Other Patient IDs Sequence'; IsDeprecated: False),
|
|
(Group: $10; Element: $1005; DataType: iedtPN; Description: 'Patient''s Birth Name'; IsDeprecated: False),
|
|
(Group: $10; Element: $1010; DataType: iedtAS; Description: 'Patient''s Age'; IsDeprecated: False),
|
|
(Group: $10; Element: $1020; DataType: iedtDS; Description: 'Patient''s Size'; IsDeprecated: False),
|
|
(Group: $10; Element: $1030; DataType: iedtDS; Description: 'Patient''s Weight'; IsDeprecated: False),
|
|
(Group: $10; Element: $1040; DataType: iedtLO; Description: 'Patient''s Address'; IsDeprecated: False),
|
|
(Group: $10; Element: $1050; DataType: iedtLO; Description: 'Insurance Plan Identification'; IsDeprecated: True),
|
|
(Group: $10; Element: $1060; DataType: iedtPN; Description: 'Patient''s Mother''s Birth Name'; IsDeprecated: False),
|
|
(Group: $10; Element: $1080; DataType: iedtLO; Description: 'Military Rank'; IsDeprecated: False),
|
|
(Group: $10; Element: $1081; DataType: iedtLO; Description: 'Branch of Service'; IsDeprecated: False),
|
|
(Group: $10; Element: $1090; DataType: iedtLO; Description: 'Medical Record Locator'; IsDeprecated: False),
|
|
(Group: $10; Element: $2000; DataType: iedtLO; Description: 'Medical Alerts'; IsDeprecated: False),
|
|
(Group: $10; Element: $2110; DataType: iedtLO; Description: 'Allergies'; IsDeprecated: False),
|
|
(Group: $10; Element: $2150; DataType: iedtLO; Description: 'Country of Residence'; IsDeprecated: False),
|
|
(Group: $10; Element: $2152; DataType: iedtLO; Description: 'Region of Residence'; IsDeprecated: False),
|
|
(Group: $10; Element: $2154; DataType: iedtSH; Description: 'Patient''s Telephone Numbers'; IsDeprecated: False),
|
|
(Group: $10; Element: $2160; DataType: iedtSH; Description: 'Ethnic Group'; IsDeprecated: False),
|
|
(Group: $10; Element: $2180; DataType: iedtSH; Description: 'Occupation'; IsDeprecated: False),
|
|
(Group: $10; Element: $21a0; DataType: iedtCS; Description: 'Smoking Status'; IsDeprecated: False),
|
|
(Group: $10; Element: $21b0; DataType: iedtLT; Description: 'Additional Patient History'; IsDeprecated: False),
|
|
(Group: $10; Element: $21c0; DataType: iedtUS; Description: 'Pregnancy Status'; IsDeprecated: False),
|
|
(Group: $10; Element: $21d0; DataType: iedtDA; Description: 'Last Menstrual Date'; IsDeprecated: False),
|
|
(Group: $10; Element: $21f0; DataType: iedtLO; Description: 'Patient''s Religious Preference'; IsDeprecated: False),
|
|
(Group: $10; Element: $2201; DataType: iedtLO; Description: 'Patient Species Description'; IsDeprecated: False),
|
|
(Group: $10; Element: $2202; DataType: iedtSQ; Description: 'Patient Species Code Sequence'; IsDeprecated: False),
|
|
(Group: $10; Element: $2203; DataType: iedtCS; Description: 'Patient''s Sex Neutered'; IsDeprecated: False),
|
|
(Group: $10; Element: $2292; DataType: iedtLO; Description: 'Patient Breed Description'; IsDeprecated: False),
|
|
(Group: $10; Element: $2293; DataType: iedtSQ; Description: 'Patient Breed Code Sequence'; IsDeprecated: False),
|
|
(Group: $10; Element: $2294; DataType: iedtSQ; Description: 'Breed Registration Sequence'; IsDeprecated: False),
|
|
(Group: $10; Element: $2295; DataType: iedtLO; Description: 'Breed Registration Number'; IsDeprecated: False),
|
|
(Group: $10; Element: $2296; DataType: iedtSQ; Description: 'Breed Registry Code Sequence'; IsDeprecated: False),
|
|
(Group: $10; Element: $2297; DataType: iedtPN; Description: 'Responsible Person'; IsDeprecated: False),
|
|
(Group: $10; Element: $2298; DataType: iedtCS; Description: 'Responsible Person Role'; IsDeprecated: False),
|
|
(Group: $10; Element: $2299; DataType: iedtLO; Description: 'Responsible Organization'; IsDeprecated: False),
|
|
(Group: $10; Element: $4000; DataType: iedtLT; Description: 'Patient Comments'; IsDeprecated: False),
|
|
(Group: $10; Element: $9431; DataType: iedtFL; Description: 'Examined Body Thickness'; IsDeprecated: False),
|
|
(Group: $12; Element: $10; DataType: iedtLO; Description: 'Clinical Trial Sponsor Name'; IsDeprecated: False),
|
|
(Group: $12; Element: $20; DataType: iedtLO; Description: 'Clinical Trial Protocol ID'; IsDeprecated: False),
|
|
(Group: $12; Element: $21; DataType: iedtLO; Description: 'Clinical Trial Protocol Name'; IsDeprecated: False),
|
|
(Group: $12; Element: $30; DataType: iedtLO; Description: 'Clinical Trial Site ID'; IsDeprecated: False),
|
|
(Group: $12; Element: $31; DataType: iedtLO; Description: 'Clinical Trial Site Name'; IsDeprecated: False),
|
|
(Group: $12; Element: $40; DataType: iedtLO; Description: 'Clinical Trial Subject ID'; IsDeprecated: False),
|
|
(Group: $12; Element: $42; DataType: iedtLO; Description: 'Clinical Trial Subject Reading ID'; IsDeprecated: False),
|
|
(Group: $12; Element: $50; DataType: iedtLO; Description: 'Clinical Trial Time Point ID'; IsDeprecated: False),
|
|
(Group: $12; Element: $51; DataType: iedtST; Description: 'Clinical Trial Time Point Description'; IsDeprecated: False),
|
|
(Group: $12; Element: $60; DataType: iedtLO; Description: 'Clinical Trial Coordinating Center Name'; IsDeprecated: False),
|
|
(Group: $12; Element: $62; DataType: iedtCS; Description: 'Patient Identity Removed'; IsDeprecated: False),
|
|
(Group: $12; Element: $63; DataType: iedtLO; Description: 'De-identification Method'; IsDeprecated: False),
|
|
(Group: $12; Element: $64; DataType: iedtSQ; Description: 'De-identification Method Code Sequence'; IsDeprecated: False),
|
|
(Group: $12; Element: $71; DataType: iedtLO; Description: 'Clinical Trial Series ID'; IsDeprecated: False),
|
|
(Group: $12; Element: $72; DataType: iedtLO; Description: 'Clinical Trial Series Description'; IsDeprecated: False),
|
|
(Group: $18; Element: $10; DataType: iedtLO; Description: 'Contrast/Bolus Agent'; IsDeprecated: False),
|
|
(Group: $18; Element: $12; DataType: iedtSQ; Description: 'Contrast/Bolus Agent Sequence'; IsDeprecated: False),
|
|
(Group: $18; Element: $14; DataType: iedtSQ; Description: 'Contrast/Bolus Administration Route Sequence'; IsDeprecated: False),
|
|
(Group: $18; Element: $15; DataType: iedtCS; Description: 'Body Part Examined'; IsDeprecated: False),
|
|
(Group: $18; Element: $20; DataType: iedtCS; Description: 'Scanning Sequence'; IsDeprecated: False),
|
|
(Group: $18; Element: $21; DataType: iedtCS; Description: 'Sequence Variant'; IsDeprecated: False),
|
|
(Group: $18; Element: $22; DataType: iedtCS; Description: 'Scan Options'; IsDeprecated: False),
|
|
(Group: $18; Element: $23; DataType: iedtCS; Description: 'MR Acquisition Type'; IsDeprecated: False),
|
|
(Group: $18; Element: $24; DataType: iedtSH; Description: 'Sequence Name'; IsDeprecated: False),
|
|
(Group: $18; Element: $25; DataType: iedtCS; Description: 'Angio Flag'; IsDeprecated: False),
|
|
(Group: $18; Element: $26; DataType: iedtSQ; Description: 'Intervention Drug Information Sequence'; IsDeprecated: False),
|
|
(Group: $18; Element: $27; DataType: iedtTM; Description: 'Intervention Drug Stop Time'; IsDeprecated: False),
|
|
(Group: $18; Element: $28; DataType: iedtDS; Description: 'Intervention Drug Dose'; IsDeprecated: False),
|
|
(Group: $18; Element: $29; DataType: iedtSQ; Description: 'Intervention Drug Sequence'; IsDeprecated: False),
|
|
(Group: $18; Element: $002a; DataType: iedtSQ; Description: 'Additional Drug Sequence'; IsDeprecated: False),
|
|
(Group: $18; Element: $30; DataType: iedtLO; Description: 'Radionuclide'; IsDeprecated: True),
|
|
(Group: $18; Element: $31; DataType: iedtLO; Description: 'Radiopharmaceutical'; IsDeprecated: False),
|
|
(Group: $18; Element: $32; DataType: iedtDS; Description: 'Energy Window Centerline'; IsDeprecated: True),
|
|
(Group: $18; Element: $33; DataType: iedtDS; Description: 'Energy Window Total Width'; IsDeprecated: True),
|
|
(Group: $18; Element: $34; DataType: iedtLO; Description: 'Intervention Drug Name'; IsDeprecated: False),
|
|
(Group: $18; Element: $35; DataType: iedtTM; Description: 'Intervention Drug Start Time'; IsDeprecated: False),
|
|
(Group: $18; Element: $36; DataType: iedtSQ; Description: 'Intervention Sequence'; IsDeprecated: False),
|
|
(Group: $18; Element: $37; DataType: iedtCS; Description: 'Therapy Type'; IsDeprecated: True),
|
|
(Group: $18; Element: $38; DataType: iedtCS; Description: 'Intervention Status'; IsDeprecated: False),
|
|
(Group: $18; Element: $39; DataType: iedtCS; Description: 'Therapy Description'; IsDeprecated: True),
|
|
(Group: $18; Element: $003a; DataType: iedtST; Description: 'Intervention Description'; IsDeprecated: False),
|
|
(Group: $18; Element: $40; DataType: iedtIS; Description: 'Cine Rate'; IsDeprecated: False),
|
|
(Group: $18; Element: $50; DataType: iedtDS; Description: 'Slice Thickness'; IsDeprecated: False),
|
|
(Group: $18; Element: $60; DataType: iedtDS; Description: 'KVP'; IsDeprecated: False),
|
|
(Group: $18; Element: $70; DataType: iedtIS; Description: 'Counts Accumulated'; IsDeprecated: False),
|
|
(Group: $18; Element: $71; DataType: iedtCS; Description: 'Acquisition Termination Condition'; IsDeprecated: False),
|
|
(Group: $18; Element: $72; DataType: iedtDS; Description: 'Effective Duration'; IsDeprecated: False),
|
|
(Group: $18; Element: $73; DataType: iedtCS; Description: 'Acquisition Start Condition'; IsDeprecated: False),
|
|
(Group: $18; Element: $74; DataType: iedtIS; Description: 'Acquisition Start Condition Data'; IsDeprecated: False),
|
|
(Group: $18; Element: $75; DataType: iedtIS; Description: 'Acquisition Termination Condition Data'; IsDeprecated: False),
|
|
(Group: $18; Element: $80; DataType: iedtDS; Description: 'Repetition Time'; IsDeprecated: False),
|
|
(Group: $18; Element: $81; DataType: iedtDS; Description: 'Echo Time'; IsDeprecated: False),
|
|
(Group: $18; Element: $82; DataType: iedtDS; Description: 'Inversion Time'; IsDeprecated: False),
|
|
(Group: $18; Element: $83; DataType: iedtDS; Description: 'Number of Averages'; IsDeprecated: False),
|
|
(Group: $18; Element: $84; DataType: iedtDS; Description: 'Imaging Frequency'; IsDeprecated: False),
|
|
(Group: $18; Element: $85; DataType: iedtSH; Description: 'Imaged Nucleus'; IsDeprecated: False),
|
|
(Group: $18; Element: $86; DataType: iedtIS; Description: 'Echo Number(s)'; IsDeprecated: False),
|
|
(Group: $18; Element: $87; DataType: iedtDS; Description: 'Magnetic Field Strength'; IsDeprecated: False),
|
|
(Group: $18; Element: $88; DataType: iedtDS; Description: 'Spacing Between Slices'; IsDeprecated: False),
|
|
(Group: $18; Element: $89; DataType: iedtIS; Description: 'Number of Phase Encoding Steps'; IsDeprecated: False),
|
|
(Group: $18; Element: $90; DataType: iedtDS; Description: 'Data Collection Diameter'; IsDeprecated: False),
|
|
(Group: $18; Element: $91; DataType: iedtIS; Description: 'Echo Train Length'; IsDeprecated: False),
|
|
(Group: $18; Element: $93; DataType: iedtDS; Description: 'Percent Sampling'; IsDeprecated: False),
|
|
(Group: $18; Element: $94; DataType: iedtDS; Description: 'Percent Phase Field of View'; IsDeprecated: False),
|
|
(Group: $18; Element: $95; DataType: iedtDS; Description: 'Pixel Bandwidth'; IsDeprecated: False),
|
|
(Group: $18; Element: $1000; DataType: iedtLO; Description: 'Device Serial Number'; IsDeprecated: False),
|
|
(Group: $18; Element: $1002; DataType: iedtUI; Description: 'Device UID'; IsDeprecated: False),
|
|
(Group: $18; Element: $1003; DataType: iedtLO; Description: 'Device ID'; IsDeprecated: False),
|
|
(Group: $18; Element: $1004; DataType: iedtLO; Description: 'Plate ID'; IsDeprecated: False),
|
|
(Group: $18; Element: $1005; DataType: iedtLO; Description: 'Generator ID'; IsDeprecated: False),
|
|
(Group: $18; Element: $1006; DataType: iedtLO; Description: 'Grid ID'; IsDeprecated: False),
|
|
(Group: $18; Element: $1007; DataType: iedtLO; Description: 'Cassette ID'; IsDeprecated: False),
|
|
(Group: $18; Element: $1008; DataType: iedtLO; Description: 'Gantry ID'; IsDeprecated: False),
|
|
(Group: $18; Element: $1010; DataType: iedtLO; Description: 'Secondary Capture Device ID'; IsDeprecated: False),
|
|
(Group: $18; Element: $1011; DataType: iedtLO; Description: 'Hardcopy Creation Device ID'; IsDeprecated: True),
|
|
(Group: $18; Element: $1012; DataType: iedtDA; Description: 'Date of Secondary Capture'; IsDeprecated: False),
|
|
(Group: $18; Element: $1014; DataType: iedtTM; Description: 'Time of Secondary Capture'; IsDeprecated: False),
|
|
(Group: $18; Element: $1016; DataType: iedtLO; Description: 'Secondary Capture Device Manufacturers'; IsDeprecated: False),
|
|
(Group: $18; Element: $1017; DataType: iedtLO; Description: 'Hardcopy Device Manufacturer'; IsDeprecated: True),
|
|
(Group: $18; Element: $1018; DataType: iedtLO; Description: 'Secondary Capture Device Manufacturer''s Model Name'; IsDeprecated: False),
|
|
(Group: $18; Element: $1019; DataType: iedtLO; Description: 'Secondary Capture Device Software Version(s)'; IsDeprecated: False),
|
|
(Group: $18; Element: $101a; DataType: iedtLO; Description: 'Hardcopy Device Software Version'; IsDeprecated: True),
|
|
(Group: $18; Element: $101b; DataType: iedtLO; Description: 'Hardcopy Device Manufacturer''s Model Name'; IsDeprecated: True),
|
|
(Group: $18; Element: $1020; DataType: iedtLO; Description: 'Software Version(s)'; IsDeprecated: False),
|
|
(Group: $18; Element: $1022; DataType: iedtSH; Description: 'Video Image Format Acquired'; IsDeprecated: False),
|
|
(Group: $18; Element: $1023; DataType: iedtLO; Description: 'Digital Image Format Acquired'; IsDeprecated: False),
|
|
(Group: $18; Element: $1030; DataType: iedtLO; Description: 'Protocol Name'; IsDeprecated: False),
|
|
(Group: $18; Element: $1040; DataType: iedtLO; Description: 'Contrast/Bolus Route'; IsDeprecated: False),
|
|
(Group: $18; Element: $1041; DataType: iedtDS; Description: 'Contrast/Bolus Volume'; IsDeprecated: False),
|
|
(Group: $18; Element: $1042; DataType: iedtTM; Description: 'Contrast/Bolus Start Time'; IsDeprecated: False),
|
|
(Group: $18; Element: $1043; DataType: iedtTM; Description: 'Contrast/Bolus Stop Time'; IsDeprecated: False),
|
|
(Group: $18; Element: $1044; DataType: iedtDS; Description: 'Contrast/Bolus Total Dose'; IsDeprecated: False),
|
|
(Group: $18; Element: $1045; DataType: iedtIS; Description: 'Syringe Counts'; IsDeprecated: False),
|
|
(Group: $18; Element: $1046; DataType: iedtDS; Description: 'Contrast Flow Rate'; IsDeprecated: False),
|
|
(Group: $18; Element: $1047; DataType: iedtDS; Description: 'Contrast Flow Duration'; IsDeprecated: False),
|
|
(Group: $18; Element: $1048; DataType: iedtCS; Description: 'Contrast/Bolus Ingredient'; IsDeprecated: False),
|
|
(Group: $18; Element: $1049; DataType: iedtDS; Description: 'Contrast/Bolus Ingredient Concentration'; IsDeprecated: False),
|
|
(Group: $18; Element: $1050; DataType: iedtDS; Description: 'Spatial Resolution'; IsDeprecated: False),
|
|
(Group: $18; Element: $1060; DataType: iedtDS; Description: 'Trigger Time'; IsDeprecated: False),
|
|
(Group: $18; Element: $1061; DataType: iedtLO; Description: 'Trigger Source or Type'; IsDeprecated: False),
|
|
(Group: $18; Element: $1062; DataType: iedtIS; Description: 'Nominal Interval'; IsDeprecated: False),
|
|
(Group: $18; Element: $1063; DataType: iedtDS; Description: 'Frame Time'; IsDeprecated: False),
|
|
(Group: $18; Element: $1064; DataType: iedtLO; Description: 'Cardiac Framing Type'; IsDeprecated: False),
|
|
(Group: $18; Element: $1065; DataType: iedtDS; Description: 'Frame Time Vector'; IsDeprecated: False),
|
|
(Group: $18; Element: $1066; DataType: iedtDS; Description: 'Frame Delay'; IsDeprecated: False),
|
|
(Group: $18; Element: $1067; DataType: iedtDS; Description: 'Image Trigger Delay'; IsDeprecated: False),
|
|
(Group: $18; Element: $1068; DataType: iedtDS; Description: 'Multiplex Group Time Offset'; IsDeprecated: False),
|
|
(Group: $18; Element: $1069; DataType: iedtDS; Description: 'Trigger Time Offset'; IsDeprecated: False),
|
|
(Group: $18; Element: $106a; DataType: iedtCS; Description: 'Synchronization Trigger'; IsDeprecated: False),
|
|
(Group: $18; Element: $106c; DataType: iedtUS; Description: 'Synchronization Channel'; IsDeprecated: False),
|
|
(Group: $18; Element: $106e; DataType: iedtUL; Description: 'Trigger Sample Position'; IsDeprecated: False),
|
|
(Group: $18; Element: $1070; DataType: iedtLO; Description: 'Radiopharmaceutical Route'; IsDeprecated: False),
|
|
(Group: $18; Element: $1071; DataType: iedtDS; Description: 'Radiopharmaceutical Volume'; IsDeprecated: False),
|
|
(Group: $18; Element: $1072; DataType: iedtTM; Description: 'Radiopharmaceutical Start Time'; IsDeprecated: False),
|
|
(Group: $18; Element: $1073; DataType: iedtTM; Description: 'Radiopharmaceutical Stop Time'; IsDeprecated: False),
|
|
(Group: $18; Element: $1074; DataType: iedtDS; Description: 'Radionuclide Total Dose'; IsDeprecated: False),
|
|
(Group: $18; Element: $1075; DataType: iedtDS; Description: 'Radionuclide Half Life'; IsDeprecated: False),
|
|
(Group: $18; Element: $1076; DataType: iedtDS; Description: 'Radionuclide Positron Fraction'; IsDeprecated: False),
|
|
(Group: $18; Element: $1077; DataType: iedtDS; Description: 'Radiopharmaceutical Specific Activity'; IsDeprecated: False),
|
|
(Group: $18; Element: $1078; DataType: iedtDT; Description: 'Radiopharmaceutical Start DateTime'; IsDeprecated: False),
|
|
(Group: $18; Element: $1079; DataType: iedtDT; Description: 'Radiopharmaceutical Stop DateTime'; IsDeprecated: False),
|
|
(Group: $18; Element: $1080; DataType: iedtCS; Description: 'Beat Rejection Flag'; IsDeprecated: False),
|
|
(Group: $18; Element: $1081; DataType: iedtIS; Description: 'Low R-R Value'; IsDeprecated: False),
|
|
(Group: $18; Element: $1082; DataType: iedtIS; Description: 'High R-R Value'; IsDeprecated: False),
|
|
(Group: $18; Element: $1083; DataType: iedtIS; Description: 'Intervals Acquired'; IsDeprecated: False),
|
|
(Group: $18; Element: $1084; DataType: iedtIS; Description: 'Intervals Rejected'; IsDeprecated: False),
|
|
(Group: $18; Element: $1085; DataType: iedtLO; Description: 'PVC Rejection'; IsDeprecated: False),
|
|
(Group: $18; Element: $1086; DataType: iedtIS; Description: 'Skip Beats'; IsDeprecated: False),
|
|
(Group: $18; Element: $1088; DataType: iedtIS; Description: 'Heart Rate'; IsDeprecated: False),
|
|
(Group: $18; Element: $1090; DataType: iedtIS; Description: 'Cardiac Number of Images'; IsDeprecated: False),
|
|
(Group: $18; Element: $1094; DataType: iedtIS; Description: 'Trigger Window'; IsDeprecated: False),
|
|
(Group: $18; Element: $1100; DataType: iedtDS; Description: 'Reconstruction Diameter'; IsDeprecated: False),
|
|
(Group: $18; Element: $1110; DataType: iedtDS; Description: 'Distance Source to Detector'; IsDeprecated: False),
|
|
(Group: $18; Element: $1111; DataType: iedtDS; Description: 'Distance Source to Patient'; IsDeprecated: False),
|
|
(Group: $18; Element: $1114; DataType: iedtDS; Description: 'Estimated Radiographic Magnification Factor'; IsDeprecated: False),
|
|
(Group: $18; Element: $1120; DataType: iedtDS; Description: 'Gantry/Detector Tilt'; IsDeprecated: False),
|
|
(Group: $18; Element: $1121; DataType: iedtDS; Description: 'Gantry/Detector Slew'; IsDeprecated: False),
|
|
(Group: $18; Element: $1130; DataType: iedtDS; Description: 'Table Height'; IsDeprecated: False),
|
|
(Group: $18; Element: $1131; DataType: iedtDS; Description: 'Table Traverse'; IsDeprecated: False),
|
|
(Group: $18; Element: $1134; DataType: iedtCS; Description: 'Table Motion'; IsDeprecated: False),
|
|
(Group: $18; Element: $1135; DataType: iedtDS; Description: 'Table Vertical Increment'; IsDeprecated: False),
|
|
(Group: $18; Element: $1136; DataType: iedtDS; Description: 'Table Lateral Increment'; IsDeprecated: False),
|
|
(Group: $18; Element: $1137; DataType: iedtDS; Description: 'Table Longitudinal Increment'; IsDeprecated: False),
|
|
(Group: $18; Element: $1138; DataType: iedtDS; Description: 'Table Angle'; IsDeprecated: False),
|
|
(Group: $18; Element: $113a; DataType: iedtCS; Description: 'Table Type'; IsDeprecated: False),
|
|
(Group: $18; Element: $1140; DataType: iedtCS; Description: 'Rotation Direction'; IsDeprecated: False),
|
|
(Group: $18; Element: $1141; DataType: iedtDS; Description: 'Angular Position'; IsDeprecated: True),
|
|
(Group: $18; Element: $1142; DataType: iedtDS; Description: 'Radial Position'; IsDeprecated: False),
|
|
(Group: $18; Element: $1143; DataType: iedtDS; Description: 'Scan Arc'; IsDeprecated: False),
|
|
(Group: $18; Element: $1144; DataType: iedtDS; Description: 'Angular Step'; IsDeprecated: False),
|
|
(Group: $18; Element: $1145; DataType: iedtDS; Description: 'Center of Rotation Offset'; IsDeprecated: False),
|
|
(Group: $18; Element: $1146; DataType: iedtDS; Description: 'Rotation Offset'; IsDeprecated: True),
|
|
(Group: $18; Element: $1147; DataType: iedtCS; Description: 'Field of View Shape'; IsDeprecated: False),
|
|
(Group: $18; Element: $1149; DataType: iedtIS; Description: 'Field of View Dimension(s)'; IsDeprecated: False),
|
|
(Group: $18; Element: $1150; DataType: iedtIS; Description: 'Exposure Time'; IsDeprecated: False),
|
|
(Group: $18; Element: $1151; DataType: iedtIS; Description: 'X-Ray Tube Current'; IsDeprecated: False),
|
|
(Group: $18; Element: $1152; DataType: iedtIS; Description: 'Exposure'; IsDeprecated: False),
|
|
(Group: $18; Element: $1153; DataType: iedtIS; Description: 'Exposure in µAs'; IsDeprecated: False),
|
|
(Group: $18; Element: $1154; DataType: iedtDS; Description: 'Average Pulse Width'; IsDeprecated: False),
|
|
(Group: $18; Element: $1155; DataType: iedtCS; Description: 'Radiation Setting'; IsDeprecated: False),
|
|
(Group: $18; Element: $1156; DataType: iedtCS; Description: 'Rectification Type'; IsDeprecated: False),
|
|
(Group: $18; Element: $115a; DataType: iedtCS; Description: 'Radiation Mode'; IsDeprecated: False),
|
|
(Group: $18; Element: $115e; DataType: iedtDS; Description: 'Image and Fluoroscopy Area Dose Product'; IsDeprecated: False),
|
|
(Group: $18; Element: $1160; DataType: iedtSH; Description: 'Filter Type'; IsDeprecated: False),
|
|
(Group: $18; Element: $1161; DataType: iedtLO; Description: 'Type of Filters'; IsDeprecated: False),
|
|
(Group: $18; Element: $1162; DataType: iedtDS; Description: 'Intensifier Size'; IsDeprecated: False),
|
|
(Group: $18; Element: $1164; DataType: iedtDS; Description: 'Imager Pixel Spacing'; IsDeprecated: False),
|
|
(Group: $18; Element: $1166; DataType: iedtCS; Description: 'Grid'; IsDeprecated: False),
|
|
(Group: $18; Element: $1170; DataType: iedtIS; Description: 'Generator Power'; IsDeprecated: False),
|
|
(Group: $18; Element: $1180; DataType: iedtSH; Description: 'Collimator/grid Name'; IsDeprecated: False),
|
|
(Group: $18; Element: $1181; DataType: iedtCS; Description: 'Collimator Type'; IsDeprecated: False),
|
|
(Group: $18; Element: $1182; DataType: iedtIS; Description: 'Focal Distance'; IsDeprecated: False),
|
|
(Group: $18; Element: $1183; DataType: iedtDS; Description: 'X Focus Center'; IsDeprecated: False),
|
|
(Group: $18; Element: $1184; DataType: iedtDS; Description: 'Y Focus Center'; IsDeprecated: False),
|
|
(Group: $18; Element: $1190; DataType: iedtDS; Description: 'Focal Spot(s)'; IsDeprecated: False),
|
|
(Group: $18; Element: $1191; DataType: iedtCS; Description: 'Anode Target Material'; IsDeprecated: False),
|
|
(Group: $18; Element: $11a0; DataType: iedtDS; Description: 'Body Part Thickness'; IsDeprecated: False),
|
|
(Group: $18; Element: $11a2; DataType: iedtDS; Description: 'Compression Force'; IsDeprecated: False),
|
|
(Group: $18; Element: $1200; DataType: iedtDA; Description: 'Date of Last Calibration'; IsDeprecated: False),
|
|
(Group: $18; Element: $1201; DataType: iedtTM; Description: 'Time of Last Calibration'; IsDeprecated: False),
|
|
(Group: $18; Element: $1210; DataType: iedtSH; Description: 'Convolution Kernel'; IsDeprecated: False),
|
|
(Group: $18; Element: $1240; DataType: iedtIS; Description: 'Upper/Lower Pixel Values'; IsDeprecated: True),
|
|
(Group: $18; Element: $1242; DataType: iedtIS; Description: 'Actual Frame Duration'; IsDeprecated: False),
|
|
(Group: $18; Element: $1243; DataType: iedtIS; Description: 'Count Rate'; IsDeprecated: False),
|
|
(Group: $18; Element: $1244; DataType: iedtUS; Description: 'Preferred Playback Sequencing'; IsDeprecated: False),
|
|
(Group: $18; Element: $1250; DataType: iedtSH; Description: 'Receive Coil Name'; IsDeprecated: False),
|
|
(Group: $18; Element: $1251; DataType: iedtSH; Description: 'Transmit Coil Name'; IsDeprecated: False),
|
|
(Group: $18; Element: $1260; DataType: iedtSH; Description: 'Plate Type'; IsDeprecated: False),
|
|
(Group: $18; Element: $1261; DataType: iedtLO; Description: 'Phosphor Type'; IsDeprecated: False),
|
|
(Group: $18; Element: $1300; DataType: iedtDS; Description: 'Scan Velocity'; IsDeprecated: False),
|
|
(Group: $18; Element: $1301; DataType: iedtCS; Description: 'Whole Body Technique'; IsDeprecated: False),
|
|
(Group: $18; Element: $1302; DataType: iedtIS; Description: 'Scan Length'; IsDeprecated: False),
|
|
(Group: $18; Element: $1310; DataType: iedtUS; Description: 'Acquisition Matrix'; IsDeprecated: False),
|
|
(Group: $18; Element: $1312; DataType: iedtCS; Description: 'In-plane Phase Encoding Direction'; IsDeprecated: False),
|
|
(Group: $18; Element: $1314; DataType: iedtDS; Description: 'Flip Angle'; IsDeprecated: False),
|
|
(Group: $18; Element: $1315; DataType: iedtCS; Description: 'Variable Flip Angle Flag'; IsDeprecated: False),
|
|
(Group: $18; Element: $1316; DataType: iedtDS; Description: 'SAR'; IsDeprecated: False),
|
|
(Group: $18; Element: $1318; DataType: iedtDS; Description: 'dB/dt'; IsDeprecated: False),
|
|
(Group: $18; Element: $1400; DataType: iedtLO; Description: 'Acquisition Device Processing Description'; IsDeprecated: False),
|
|
(Group: $18; Element: $1401; DataType: iedtLO; Description: 'Acquisition Device Processing Code'; IsDeprecated: False),
|
|
(Group: $18; Element: $1402; DataType: iedtCS; Description: 'Cassette Orientation'; IsDeprecated: False),
|
|
(Group: $18; Element: $1403; DataType: iedtCS; Description: 'Cassette Size'; IsDeprecated: False),
|
|
(Group: $18; Element: $1404; DataType: iedtUS; Description: 'Exposures on Plate'; IsDeprecated: False),
|
|
(Group: $18; Element: $1405; DataType: iedtIS; Description: 'Relative X-Ray Exposure'; IsDeprecated: False),
|
|
(Group: $18; Element: $1450; DataType: iedtDS; Description: 'Column Angulation'; IsDeprecated: False),
|
|
(Group: $18; Element: $1460; DataType: iedtDS; Description: 'Tomo Layer Height'; IsDeprecated: False),
|
|
(Group: $18; Element: $1470; DataType: iedtDS; Description: 'Tomo Angle'; IsDeprecated: False),
|
|
(Group: $18; Element: $1480; DataType: iedtDS; Description: 'Tomo Time'; IsDeprecated: False),
|
|
(Group: $18; Element: $1490; DataType: iedtCS; Description: 'Tomo Type'; IsDeprecated: False),
|
|
(Group: $18; Element: $1491; DataType: iedtCS; Description: 'Tomo Class'; IsDeprecated: False),
|
|
(Group: $18; Element: $1495; DataType: iedtIS; Description: 'Number of Tomosynthesis Source Images'; IsDeprecated: False),
|
|
(Group: $18; Element: $1500; DataType: iedtCS; Description: 'Positioner Motion'; IsDeprecated: False),
|
|
(Group: $18; Element: $1508; DataType: iedtCS; Description: 'Positioner Type'; IsDeprecated: False),
|
|
(Group: $18; Element: $1510; DataType: iedtDS; Description: 'Positioner Primary Angle'; IsDeprecated: False),
|
|
(Group: $18; Element: $1511; DataType: iedtDS; Description: 'Positioner Secondary Angle'; IsDeprecated: False),
|
|
(Group: $18; Element: $1520; DataType: iedtDS; Description: 'Positioner Primary Angle Increment'; IsDeprecated: False),
|
|
(Group: $18; Element: $1521; DataType: iedtDS; Description: 'Positioner Secondary Angle Increment'; IsDeprecated: False),
|
|
(Group: $18; Element: $1530; DataType: iedtDS; Description: 'Detector Primary Angle'; IsDeprecated: False),
|
|
(Group: $18; Element: $1531; DataType: iedtDS; Description: 'Detector Secondary Angle'; IsDeprecated: False),
|
|
(Group: $18; Element: $1600; DataType: iedtCS; Description: 'Shutter Shape'; IsDeprecated: False),
|
|
(Group: $18; Element: $1602; DataType: iedtIS; Description: 'Shutter Left Vertical Edge'; IsDeprecated: False),
|
|
(Group: $18; Element: $1604; DataType: iedtIS; Description: 'Shutter Right Vertical Edge'; IsDeprecated: False),
|
|
(Group: $18; Element: $1606; DataType: iedtIS; Description: 'Shutter Upper Horizontal Edge'; IsDeprecated: False),
|
|
(Group: $18; Element: $1608; DataType: iedtIS; Description: 'Shutter Lower Horizontal Edge'; IsDeprecated: False),
|
|
(Group: $18; Element: $1610; DataType: iedtIS; Description: 'Center of Circular Shutter'; IsDeprecated: False),
|
|
(Group: $18; Element: $1612; DataType: iedtIS; Description: 'Radius of Circular Shutter'; IsDeprecated: False),
|
|
(Group: $18; Element: $1620; DataType: iedtIS; Description: 'Vertices of the Polygonal Shutter'; IsDeprecated: False),
|
|
(Group: $18; Element: $1622; DataType: iedtUS; Description: 'Shutter Presentation Value'; IsDeprecated: False),
|
|
(Group: $18; Element: $1623; DataType: iedtUS; Description: 'Shutter Overlay Group'; IsDeprecated: False),
|
|
(Group: $18; Element: $1624; DataType: iedtUS; Description: 'Shutter Presentation Color CIELab Value'; IsDeprecated: False),
|
|
(Group: $18; Element: $1700; DataType: iedtCS; Description: 'Collimator Shape'; IsDeprecated: False),
|
|
(Group: $18; Element: $1702; DataType: iedtIS; Description: 'Collimator Left Vertical Edge'; IsDeprecated: False),
|
|
(Group: $18; Element: $1704; DataType: iedtIS; Description: 'Collimator Right Vertical Edge'; IsDeprecated: False),
|
|
(Group: $18; Element: $1706; DataType: iedtIS; Description: 'Collimator Upper Horizontal Edge'; IsDeprecated: False),
|
|
(Group: $18; Element: $1708; DataType: iedtIS; Description: 'Collimator Lower Horizontal Edge'; IsDeprecated: False),
|
|
(Group: $18; Element: $1710; DataType: iedtIS; Description: 'Center of Circular Collimator'; IsDeprecated: False),
|
|
(Group: $18; Element: $1712; DataType: iedtIS; Description: 'Radius of Circular Collimator'; IsDeprecated: False),
|
|
(Group: $18; Element: $1720; DataType: iedtIS; Description: 'Vertices of the Polygonal Collimator'; IsDeprecated: False),
|
|
(Group: $18; Element: $1800; DataType: iedtCS; Description: 'Acquisition Time Synchronized'; IsDeprecated: False),
|
|
(Group: $18; Element: $1801; DataType: iedtSH; Description: 'Time Source'; IsDeprecated: False),
|
|
(Group: $18; Element: $1802; DataType: iedtCS; Description: 'Time Distribution Protocol'; IsDeprecated: False),
|
|
(Group: $18; Element: $1803; DataType: iedtLO; Description: 'NTP Source Address'; IsDeprecated: False),
|
|
(Group: $18; Element: $2001; DataType: iedtIS; Description: 'Page Number Vector'; IsDeprecated: False),
|
|
(Group: $18; Element: $2002; DataType: iedtSH; Description: 'Frame Label Vector'; IsDeprecated: False),
|
|
(Group: $18; Element: $2003; DataType: iedtDS; Description: 'Frame Primary Angle Vector'; IsDeprecated: False),
|
|
(Group: $18; Element: $2004; DataType: iedtDS; Description: 'Frame Secondary Angle Vector'; IsDeprecated: False),
|
|
(Group: $18; Element: $2005; DataType: iedtDS; Description: 'Slice Location Vector'; IsDeprecated: False),
|
|
(Group: $18; Element: $2006; DataType: iedtSH; Description: 'Display Window Label Vector'; IsDeprecated: False),
|
|
(Group: $18; Element: $2010; DataType: iedtDS; Description: 'Nominal Scanned Pixel Spacing'; IsDeprecated: False),
|
|
(Group: $18; Element: $2020; DataType: iedtCS; Description: 'Digitizing Device Transport Direction'; IsDeprecated: False),
|
|
(Group: $18; Element: $2030; DataType: iedtDS; Description: 'Rotation of Scanned Film'; IsDeprecated: False),
|
|
(Group: $18; Element: $3100; DataType: iedtCS; Description: 'IVUS Acquisition'; IsDeprecated: False),
|
|
(Group: $18; Element: $3101; DataType: iedtDS; Description: 'IVUS Pullback Rate'; IsDeprecated: False),
|
|
(Group: $18; Element: $3102; DataType: iedtDS; Description: 'IVUS Gated Rate'; IsDeprecated: False),
|
|
(Group: $18; Element: $3103; DataType: iedtIS; Description: 'IVUS Pullback Start Frame Number'; IsDeprecated: False),
|
|
(Group: $18; Element: $3104; DataType: iedtIS; Description: 'IVUS Pullback Stop Frame Number'; IsDeprecated: False),
|
|
(Group: $18; Element: $3105; DataType: iedtIS; Description: 'Lesion Number'; IsDeprecated: False),
|
|
(Group: $18; Element: $4000; DataType: iedtLT; Description: 'Acquisition Comments'; IsDeprecated: True),
|
|
(Group: $18; Element: $5000; DataType: iedtSH; Description: 'Output Power'; IsDeprecated: False),
|
|
(Group: $18; Element: $5010; DataType: iedtLO; Description: 'Transducer Data'; IsDeprecated: False),
|
|
(Group: $18; Element: $5012; DataType: iedtDS; Description: 'Focus Depth'; IsDeprecated: False),
|
|
(Group: $18; Element: $5020; DataType: iedtLO; Description: 'Processing Function'; IsDeprecated: False),
|
|
(Group: $18; Element: $5021; DataType: iedtLO; Description: 'Postprocessing Function'; IsDeprecated: True),
|
|
(Group: $18; Element: $5022; DataType: iedtDS; Description: 'Mechanical Index'; IsDeprecated: False),
|
|
(Group: $18; Element: $5024; DataType: iedtDS; Description: 'Bone Thermal Index'; IsDeprecated: False),
|
|
(Group: $18; Element: $5026; DataType: iedtDS; Description: 'Cranial Thermal Index'; IsDeprecated: False),
|
|
(Group: $18; Element: $5027; DataType: iedtDS; Description: 'Soft Tissue Thermal Index'; IsDeprecated: False),
|
|
(Group: $18; Element: $5028; DataType: iedtDS; Description: 'Soft Tissue-focus Thermal Index'; IsDeprecated: False),
|
|
(Group: $18; Element: $5029; DataType: iedtDS; Description: 'Soft Tissue-surface Thermal Index'; IsDeprecated: False),
|
|
(Group: $18; Element: $5030; DataType: iedtDS; Description: 'Dynamic Range'; IsDeprecated: True),
|
|
(Group: $18; Element: $5040; DataType: iedtDS; Description: 'Total Gain'; IsDeprecated: True),
|
|
(Group: $18; Element: $5050; DataType: iedtIS; Description: 'Depth of Scan Field'; IsDeprecated: False),
|
|
(Group: $18; Element: $5100; DataType: iedtCS; Description: 'Patient Position'; IsDeprecated: False),
|
|
(Group: $18; Element: $5101; DataType: iedtCS; Description: 'View Position'; IsDeprecated: False),
|
|
(Group: $18; Element: $5104; DataType: iedtSQ; Description: 'Projection Eponymous Name Code Sequence'; IsDeprecated: False),
|
|
(Group: $18; Element: $5210; DataType: iedtDS; Description: 'Image Transformation Matrix'; IsDeprecated: True),
|
|
(Group: $18; Element: $5212; DataType: iedtDS; Description: 'Image Translation Vector'; IsDeprecated: True),
|
|
(Group: $18; Element: $6000; DataType: iedtDS; Description: 'Sensitivity'; IsDeprecated: False),
|
|
(Group: $18; Element: $6011; DataType: iedtSQ; Description: 'Sequence of Ultrasound Regions'; IsDeprecated: False),
|
|
(Group: $18; Element: $6012; DataType: iedtUS; Description: 'Region Spatial Format'; IsDeprecated: False),
|
|
(Group: $18; Element: $6014; DataType: iedtUS; Description: 'Region Data Type'; IsDeprecated: False),
|
|
(Group: $18; Element: $6016; DataType: iedtUL; Description: 'Region Flags'; IsDeprecated: False),
|
|
(Group: $18; Element: $6018; DataType: iedtUL; Description: 'Region Location Min X0'; IsDeprecated: False),
|
|
(Group: $18; Element: $601a; DataType: iedtUL; Description: 'Region Location Min Y0'; IsDeprecated: False),
|
|
(Group: $18; Element: $601c; DataType: iedtUL; Description: 'Region Location Max X1'; IsDeprecated: False),
|
|
(Group: $18; Element: $601e; DataType: iedtUL; Description: 'Region Location Max Y1'; IsDeprecated: False),
|
|
(Group: $18; Element: $6020; DataType: iedtSL; Description: 'Reference Pixel X0'; IsDeprecated: False),
|
|
(Group: $18; Element: $6022; DataType: iedtSL; Description: 'Reference Pixel Y0'; IsDeprecated: False),
|
|
(Group: $18; Element: $6024; DataType: iedtUS; Description: 'Physical Units X Direction'; IsDeprecated: False),
|
|
(Group: $18; Element: $6026; DataType: iedtUS; Description: 'Physical Units Y Direction'; IsDeprecated: False),
|
|
(Group: $18; Element: $6028; DataType: iedtFD; Description: 'Reference Pixel Physical Value X'; IsDeprecated: False),
|
|
(Group: $18; Element: $602a; DataType: iedtFD; Description: 'Reference Pixel Physical Value Y'; IsDeprecated: False),
|
|
(Group: $18; Element: $602c; DataType: iedtFD; Description: 'Physical Delta X'; IsDeprecated: False),
|
|
(Group: $18; Element: $602e; DataType: iedtFD; Description: 'Physical Delta Y'; IsDeprecated: False),
|
|
(Group: $18; Element: $6030; DataType: iedtUL; Description: 'Transducer Frequency'; IsDeprecated: False),
|
|
(Group: $18; Element: $6031; DataType: iedtCS; Description: 'Transducer Type'; IsDeprecated: False),
|
|
(Group: $18; Element: $6032; DataType: iedtUL; Description: 'Pulse Repetition Frequency'; IsDeprecated: False),
|
|
(Group: $18; Element: $6034; DataType: iedtFD; Description: 'Doppler Correction Angle'; IsDeprecated: False),
|
|
(Group: $18; Element: $6036; DataType: iedtFD; Description: 'Steering Angle'; IsDeprecated: False),
|
|
(Group: $18; Element: $6038; DataType: iedtUL; Description: 'Doppler Sample Volume X Position (Retired)'; IsDeprecated: True),
|
|
(Group: $18; Element: $6039; DataType: iedtSL; Description: 'Doppler Sample Volume X Position'; IsDeprecated: False),
|
|
(Group: $18; Element: $603a; DataType: iedtUL; Description: 'Doppler Sample Volume Y Position (Retired)'; IsDeprecated: True),
|
|
(Group: $18; Element: $603b; DataType: iedtSL; Description: 'Doppler Sample Volume Y Position'; IsDeprecated: False),
|
|
(Group: $18; Element: $603c; DataType: iedtUL; Description: 'TM-Line Position X0 (Retired)'; IsDeprecated: True),
|
|
(Group: $18; Element: $603d; DataType: iedtSL; Description: 'TM-Line Position X0'; IsDeprecated: False),
|
|
(Group: $18; Element: $603e; DataType: iedtUL; Description: 'TM-Line Position Y0 (Retired)'; IsDeprecated: True),
|
|
(Group: $18; Element: $603f; DataType: iedtSL; Description: 'TM-Line Position Y0'; IsDeprecated: False),
|
|
(Group: $18; Element: $6040; DataType: iedtUL; Description: 'TM-Line Position X1 (Retired)'; IsDeprecated: True),
|
|
(Group: $18; Element: $6041; DataType: iedtSL; Description: 'TM-Line Position X1'; IsDeprecated: False),
|
|
(Group: $18; Element: $6042; DataType: iedtUL; Description: 'TM-Line Position Y1 (Retired)'; IsDeprecated: True),
|
|
(Group: $18; Element: $6043; DataType: iedtSL; Description: 'TM-Line Position Y1'; IsDeprecated: False),
|
|
(Group: $18; Element: $6044; DataType: iedtUS; Description: 'Pixel Component Organization'; IsDeprecated: False),
|
|
(Group: $18; Element: $6046; DataType: iedtUL; Description: 'Pixel Component Mask'; IsDeprecated: False),
|
|
(Group: $18; Element: $6048; DataType: iedtUL; Description: 'Pixel Component Range Start'; IsDeprecated: False),
|
|
(Group: $18; Element: $604a; DataType: iedtUL; Description: 'Pixel Component Range Stop'; IsDeprecated: False),
|
|
(Group: $18; Element: $604c; DataType: iedtUS; Description: 'Pixel Component Physical Units'; IsDeprecated: False),
|
|
(Group: $18; Element: $604e; DataType: iedtUS; Description: 'Pixel Component Data Type'; IsDeprecated: False),
|
|
(Group: $18; Element: $6050; DataType: iedtUL; Description: 'Number of Table Break Points'; IsDeprecated: False),
|
|
(Group: $18; Element: $6052; DataType: iedtUL; Description: 'Table of X Break Points'; IsDeprecated: False),
|
|
(Group: $18; Element: $6054; DataType: iedtFD; Description: 'Table of Y Break Points'; IsDeprecated: False),
|
|
(Group: $18; Element: $6056; DataType: iedtUL; Description: 'Number of Table Entries'; IsDeprecated: False),
|
|
(Group: $18; Element: $6058; DataType: iedtUL; Description: 'Table of Pixel Values'; IsDeprecated: False),
|
|
(Group: $18; Element: $605a; DataType: iedtFL; Description: 'Table of Parameter Values'; IsDeprecated: False),
|
|
(Group: $18; Element: $6060; DataType: iedtFL; Description: 'R Wave Time Vector'; IsDeprecated: False),
|
|
(Group: $18; Element: $7000; DataType: iedtCS; Description: 'Detector Conditions Nominal Flag'; IsDeprecated: False),
|
|
(Group: $18; Element: $7001; DataType: iedtDS; Description: 'Detector Temperature'; IsDeprecated: False),
|
|
(Group: $18; Element: $7004; DataType: iedtCS; Description: 'Detector Type'; IsDeprecated: False),
|
|
(Group: $18; Element: $7005; DataType: iedtCS; Description: 'Detector Configuration'; IsDeprecated: False),
|
|
(Group: $18; Element: $7006; DataType: iedtLT; Description: 'Detector Description'; IsDeprecated: False),
|
|
(Group: $18; Element: $7008; DataType: iedtLT; Description: 'Detector Mode'; IsDeprecated: False),
|
|
(Group: $18; Element: $700a; DataType: iedtSH; Description: 'Detector ID'; IsDeprecated: False),
|
|
(Group: $18; Element: $700c; DataType: iedtDA; Description: 'Date of Last Detector Calibration'; IsDeprecated: False),
|
|
(Group: $18; Element: $700e; DataType: iedtTM; Description: 'Time of Last Detector Calibration'; IsDeprecated: False),
|
|
(Group: $18; Element: $7010; DataType: iedtIS; Description: 'Exposures on Detector Since Last Calibration'; IsDeprecated: False),
|
|
(Group: $18; Element: $7011; DataType: iedtIS; Description: 'Exposures on Detector Since Manufactured'; IsDeprecated: False),
|
|
(Group: $18; Element: $7012; DataType: iedtDS; Description: 'Detector Time Since Last Exposure'; IsDeprecated: False),
|
|
(Group: $18; Element: $7014; DataType: iedtDS; Description: 'Detector Active Time'; IsDeprecated: False),
|
|
(Group: $18; Element: $7016; DataType: iedtDS; Description: 'Detector Activation Offset From Exposure'; IsDeprecated: False),
|
|
(Group: $18; Element: $701a; DataType: iedtDS; Description: 'Detector Binning'; IsDeprecated: False),
|
|
(Group: $18; Element: $7020; DataType: iedtDS; Description: 'Detector Element Physical Size'; IsDeprecated: False),
|
|
(Group: $18; Element: $7022; DataType: iedtDS; Description: 'Detector Element Spacing'; IsDeprecated: False),
|
|
(Group: $18; Element: $7024; DataType: iedtCS; Description: 'Detector Active Shape'; IsDeprecated: False),
|
|
(Group: $18; Element: $7026; DataType: iedtDS; Description: 'Detector Active Dimension(s)'; IsDeprecated: False),
|
|
(Group: $18; Element: $7028; DataType: iedtDS; Description: 'Detector Active Origin'; IsDeprecated: False),
|
|
(Group: $18; Element: $702a; DataType: iedtLO; Description: 'Detector Manufacturer Name'; IsDeprecated: False),
|
|
(Group: $18; Element: $702b; DataType: iedtLO; Description: 'Detector Manufacturer''s Model Name'; IsDeprecated: False),
|
|
(Group: $18; Element: $7030; DataType: iedtDS; Description: 'Field of View Origin'; IsDeprecated: False),
|
|
(Group: $18; Element: $7032; DataType: iedtDS; Description: 'Field of View Rotation'; IsDeprecated: False),
|
|
(Group: $18; Element: $7034; DataType: iedtCS; Description: 'Field of View Horizontal Flip'; IsDeprecated: False),
|
|
(Group: $18; Element: $7040; DataType: iedtLT; Description: 'Grid Absorbing Material'; IsDeprecated: False),
|
|
(Group: $18; Element: $7041; DataType: iedtLT; Description: 'Grid Spacing Material'; IsDeprecated: False),
|
|
(Group: $18; Element: $7042; DataType: iedtDS; Description: 'Grid Thickness'; IsDeprecated: False),
|
|
(Group: $18; Element: $7044; DataType: iedtDS; Description: 'Grid Pitch'; IsDeprecated: False),
|
|
(Group: $18; Element: $7046; DataType: iedtIS; Description: 'Grid Aspect Ratio'; IsDeprecated: False),
|
|
(Group: $18; Element: $7048; DataType: iedtDS; Description: 'Grid Period'; IsDeprecated: False),
|
|
(Group: $18; Element: $704c; DataType: iedtDS; Description: 'Grid Focal Distance'; IsDeprecated: False),
|
|
(Group: $18; Element: $7050; DataType: iedtCS; Description: 'Filter Material'; IsDeprecated: False),
|
|
(Group: $18; Element: $7052; DataType: iedtDS; Description: 'Filter Thickness Minimum'; IsDeprecated: False),
|
|
(Group: $18; Element: $7054; DataType: iedtDS; Description: 'Filter Thickness Maximum'; IsDeprecated: False),
|
|
(Group: $18; Element: $7060; DataType: iedtCS; Description: 'Exposure Control Mode'; IsDeprecated: False),
|
|
(Group: $18; Element: $7062; DataType: iedtLT; Description: 'Exposure Control Mode Description'; IsDeprecated: False),
|
|
(Group: $18; Element: $7064; DataType: iedtCS; Description: 'Exposure Status'; IsDeprecated: False),
|
|
(Group: $18; Element: $7065; DataType: iedtDS; Description: 'Phototimer Setting'; IsDeprecated: False),
|
|
(Group: $18; Element: $8150; DataType: iedtDS; Description: 'Exposure Time in µS'; IsDeprecated: False),
|
|
(Group: $18; Element: $8151; DataType: iedtDS; Description: 'X-Ray Tube Current in µA'; IsDeprecated: False),
|
|
(Group: $18; Element: $9004; DataType: iedtCS; Description: 'Content Qualification'; IsDeprecated: False),
|
|
(Group: $18; Element: $9005; DataType: iedtSH; Description: 'Pulse Sequence Name'; IsDeprecated: False),
|
|
(Group: $18; Element: $9006; DataType: iedtSQ; Description: 'MR Imaging Modifier Sequence'; IsDeprecated: False),
|
|
(Group: $18; Element: $9008; DataType: iedtCS; Description: 'Echo Pulse Sequence'; IsDeprecated: False),
|
|
(Group: $18; Element: $9009; DataType: iedtCS; Description: 'Inversion Recovery'; IsDeprecated: False),
|
|
(Group: $18; Element: $9010; DataType: iedtCS; Description: 'Flow Compensation'; IsDeprecated: False),
|
|
(Group: $18; Element: $9011; DataType: iedtCS; Description: 'Multiple Spin Echo'; IsDeprecated: False),
|
|
(Group: $18; Element: $9012; DataType: iedtCS; Description: 'Multi-planar Excitation'; IsDeprecated: False),
|
|
(Group: $18; Element: $9014; DataType: iedtCS; Description: 'Phase Contrast'; IsDeprecated: False),
|
|
(Group: $18; Element: $9015; DataType: iedtCS; Description: 'Time of Flight Contrast'; IsDeprecated: False),
|
|
(Group: $18; Element: $9016; DataType: iedtCS; Description: 'Spoiling'; IsDeprecated: False),
|
|
(Group: $18; Element: $9017; DataType: iedtCS; Description: 'Steady State Pulse Sequence'; IsDeprecated: False),
|
|
(Group: $18; Element: $9018; DataType: iedtCS; Description: 'Echo Planar Pulse Sequence'; IsDeprecated: False),
|
|
(Group: $18; Element: $9019; DataType: iedtFD; Description: 'Tag Angle First Axis'; IsDeprecated: False),
|
|
(Group: $18; Element: $9020; DataType: iedtCS; Description: 'Magnetization Transfer'; IsDeprecated: False),
|
|
(Group: $18; Element: $9021; DataType: iedtCS; Description: 'T2 Preparation'; IsDeprecated: False),
|
|
(Group: $18; Element: $9022; DataType: iedtCS; Description: 'Blood Signal Nulling'; IsDeprecated: False),
|
|
(Group: $18; Element: $9024; DataType: iedtCS; Description: 'Saturation Recovery'; IsDeprecated: False),
|
|
(Group: $18; Element: $9025; DataType: iedtCS; Description: 'Spectrally Selected Suppression'; IsDeprecated: False),
|
|
(Group: $18; Element: $9026; DataType: iedtCS; Description: 'Spectrally Selected Excitation'; IsDeprecated: False),
|
|
(Group: $18; Element: $9027; DataType: iedtCS; Description: 'Spatial Pre-saturation'; IsDeprecated: False),
|
|
(Group: $18; Element: $9028; DataType: iedtCS; Description: 'Tagging'; IsDeprecated: False),
|
|
(Group: $18; Element: $9029; DataType: iedtCS; Description: 'Oversampling Phase'; IsDeprecated: False),
|
|
(Group: $18; Element: $9030; DataType: iedtFD; Description: 'Tag Spacing First Dimension'; IsDeprecated: False),
|
|
(Group: $18; Element: $9032; DataType: iedtCS; Description: 'Geometry of k-Space Traversal'; IsDeprecated: False),
|
|
(Group: $18; Element: $9033; DataType: iedtCS; Description: 'Segmented k-Space Traversal'; IsDeprecated: False),
|
|
(Group: $18; Element: $9034; DataType: iedtCS; Description: 'Rectilinear Phase Encode Reordering'; IsDeprecated: False),
|
|
(Group: $18; Element: $9035; DataType: iedtFD; Description: 'Tag Thickness'; IsDeprecated: False),
|
|
(Group: $18; Element: $9036; DataType: iedtCS; Description: 'Partial Fourier Direction'; IsDeprecated: False),
|
|
(Group: $18; Element: $9037; DataType: iedtCS; Description: 'Cardiac Synchronization Technique'; IsDeprecated: False),
|
|
(Group: $18; Element: $9041; DataType: iedtLO; Description: 'Receive Coil Manufacturer Name'; IsDeprecated: False),
|
|
(Group: $18; Element: $9042; DataType: iedtSQ; Description: 'MR Receive Coil Sequence'; IsDeprecated: False),
|
|
(Group: $18; Element: $9043; DataType: iedtCS; Description: 'Receive Coil Type'; IsDeprecated: False),
|
|
(Group: $18; Element: $9044; DataType: iedtCS; Description: 'Quadrature Receive Coil'; IsDeprecated: False),
|
|
(Group: $18; Element: $9045; DataType: iedtSQ; Description: 'Multi-Coil Definition Sequence'; IsDeprecated: False),
|
|
(Group: $18; Element: $9046; DataType: iedtLO; Description: 'Multi-Coil Configuration'; IsDeprecated: False),
|
|
(Group: $18; Element: $9047; DataType: iedtSH; Description: 'Multi-Coil Element Name'; IsDeprecated: False),
|
|
(Group: $18; Element: $9048; DataType: iedtCS; Description: 'Multi-Coil Element Used'; IsDeprecated: False),
|
|
(Group: $18; Element: $9049; DataType: iedtSQ; Description: 'MR Transmit Coil Sequence'; IsDeprecated: False),
|
|
(Group: $18; Element: $9050; DataType: iedtLO; Description: 'Transmit Coil Manufacturer Name'; IsDeprecated: False),
|
|
(Group: $18; Element: $9051; DataType: iedtCS; Description: 'Transmit Coil Type'; IsDeprecated: False),
|
|
(Group: $18; Element: $9052; DataType: iedtFD; Description: 'Spectral Width'; IsDeprecated: False),
|
|
(Group: $18; Element: $9053; DataType: iedtFD; Description: 'Chemical Shift Reference'; IsDeprecated: False),
|
|
(Group: $18; Element: $9054; DataType: iedtCS; Description: 'Volume Localization Technique'; IsDeprecated: False),
|
|
(Group: $18; Element: $9058; DataType: iedtUS; Description: 'MR Acquisition Frequency Encoding Steps'; IsDeprecated: False),
|
|
(Group: $18; Element: $9059; DataType: iedtCS; Description: 'De-coupling'; IsDeprecated: False),
|
|
(Group: $18; Element: $9060; DataType: iedtCS; Description: 'De-coupled Nucleus'; IsDeprecated: False),
|
|
(Group: $18; Element: $9061; DataType: iedtFD; Description: 'De-coupling Frequency'; IsDeprecated: False),
|
|
(Group: $18; Element: $9062; DataType: iedtCS; Description: 'De-coupling Method'; IsDeprecated: False),
|
|
(Group: $18; Element: $9063; DataType: iedtFD; Description: 'De-coupling Chemical Shift Reference'; IsDeprecated: False),
|
|
(Group: $18; Element: $9064; DataType: iedtCS; Description: 'k-space Filtering'; IsDeprecated: False),
|
|
(Group: $18; Element: $9065; DataType: iedtCS; Description: 'Time Domain Filtering'; IsDeprecated: False),
|
|
(Group: $18; Element: $9066; DataType: iedtUS; Description: 'Number of Zero fills'; IsDeprecated: False),
|
|
(Group: $18; Element: $9067; DataType: iedtCS; Description: 'Baseline Correction'; IsDeprecated: False),
|
|
(Group: $18; Element: $9069; DataType: iedtFD; Description: 'Parallel Reduction Factor In-plane'; IsDeprecated: False),
|
|
(Group: $18; Element: $9070; DataType: iedtFD; Description: 'Cardiac R-R Interval Specified'; IsDeprecated: False),
|
|
(Group: $18; Element: $9073; DataType: iedtFD; Description: 'Acquisition Duration'; IsDeprecated: False),
|
|
(Group: $18; Element: $9074; DataType: iedtDT; Description: 'Frame Acquisition DateTime'; IsDeprecated: False),
|
|
(Group: $18; Element: $9075; DataType: iedtCS; Description: 'Diffusion Directionality'; IsDeprecated: False),
|
|
(Group: $18; Element: $9076; DataType: iedtSQ; Description: 'Diffusion Gradient Direction Sequence'; IsDeprecated: False),
|
|
(Group: $18; Element: $9077; DataType: iedtCS; Description: 'Parallel Acquisition'; IsDeprecated: False),
|
|
(Group: $18; Element: $9078; DataType: iedtCS; Description: 'Parallel Acquisition Technique'; IsDeprecated: False),
|
|
(Group: $18; Element: $9079; DataType: iedtFD; Description: 'Inversion Times'; IsDeprecated: False),
|
|
(Group: $18; Element: $9080; DataType: iedtST; Description: 'Metabolite Map Description'; IsDeprecated: False),
|
|
(Group: $18; Element: $9081; DataType: iedtCS; Description: 'Partial Fourier'; IsDeprecated: False),
|
|
(Group: $18; Element: $9082; DataType: iedtFD; Description: 'Effective Echo Time'; IsDeprecated: False),
|
|
(Group: $18; Element: $9083; DataType: iedtSQ; Description: 'Metabolite Map Code Sequence'; IsDeprecated: False),
|
|
(Group: $18; Element: $9084; DataType: iedtSQ; Description: 'Chemical Shift Sequence'; IsDeprecated: False),
|
|
(Group: $18; Element: $9085; DataType: iedtCS; Description: 'Cardiac Signal Source'; IsDeprecated: False),
|
|
(Group: $18; Element: $9087; DataType: iedtFD; Description: 'Diffusion b-value'; IsDeprecated: False),
|
|
(Group: $18; Element: $9089; DataType: iedtFD; Description: 'Diffusion Gradient Orientation'; IsDeprecated: False),
|
|
(Group: $18; Element: $9090; DataType: iedtFD; Description: 'Velocity Encoding Direction'; IsDeprecated: False),
|
|
(Group: $18; Element: $9091; DataType: iedtFD; Description: 'Velocity Encoding Minimum Value'; IsDeprecated: False),
|
|
(Group: $18; Element: $9093; DataType: iedtUS; Description: 'Number of k-Space Trajectories'; IsDeprecated: False),
|
|
(Group: $18; Element: $9094; DataType: iedtCS; Description: 'Coverage of k-Space'; IsDeprecated: False),
|
|
(Group: $18; Element: $9095; DataType: iedtUL; Description: 'Spectroscopy Acquisition Phase Rows'; IsDeprecated: False),
|
|
(Group: $18; Element: $9096; DataType: iedtFD; Description: 'Parallel Reduction Factor In-plane (Retired)'; IsDeprecated: True),
|
|
(Group: $18; Element: $9098; DataType: iedtFD; Description: 'Transmitter Frequency'; IsDeprecated: False),
|
|
(Group: $18; Element: $9100; DataType: iedtCS; Description: 'Resonant Nucleus'; IsDeprecated: False),
|
|
(Group: $18; Element: $9101; DataType: iedtCS; Description: 'Frequency Correction'; IsDeprecated: False),
|
|
(Group: $18; Element: $9103; DataType: iedtSQ; Description: 'MR Spectroscopy FOV/Geometry Sequence'; IsDeprecated: False),
|
|
(Group: $18; Element: $9104; DataType: iedtFD; Description: 'Slab Thickness'; IsDeprecated: False),
|
|
(Group: $18; Element: $9105; DataType: iedtFD; Description: 'Slab Orientation'; IsDeprecated: False),
|
|
(Group: $18; Element: $9106; DataType: iedtFD; Description: 'Mid Slab Position'; IsDeprecated: False),
|
|
(Group: $18; Element: $9107; DataType: iedtSQ; Description: 'MR Spatial Saturation Sequence'; IsDeprecated: False),
|
|
(Group: $18; Element: $9112; DataType: iedtSQ; Description: 'MR Timing and Related Parameters Sequence'; IsDeprecated: False),
|
|
(Group: $18; Element: $9114; DataType: iedtSQ; Description: 'MR Echo Sequence'; IsDeprecated: False),
|
|
(Group: $18; Element: $9115; DataType: iedtSQ; Description: 'MR Modifier Sequence'; IsDeprecated: False),
|
|
(Group: $18; Element: $9117; DataType: iedtSQ; Description: 'MR Diffusion Sequence'; IsDeprecated: False),
|
|
(Group: $18; Element: $9118; DataType: iedtSQ; Description: 'Cardiac Synchronization Sequence'; IsDeprecated: False),
|
|
(Group: $18; Element: $9119; DataType: iedtSQ; Description: 'MR Averages Sequence'; IsDeprecated: False),
|
|
(Group: $18; Element: $9125; DataType: iedtSQ; Description: 'MR FOV/Geometry Sequence'; IsDeprecated: False),
|
|
(Group: $18; Element: $9126; DataType: iedtSQ; Description: 'Volume Localization Sequence'; IsDeprecated: False),
|
|
(Group: $18; Element: $9127; DataType: iedtUL; Description: 'Spectroscopy Acquisition Data Columns'; IsDeprecated: False),
|
|
(Group: $18; Element: $9147; DataType: iedtCS; Description: 'Diffusion Anisotropy Type'; IsDeprecated: False),
|
|
(Group: $18; Element: $9151; DataType: iedtDT; Description: 'Frame Reference DateTime'; IsDeprecated: False),
|
|
(Group: $18; Element: $9152; DataType: iedtSQ; Description: 'MR Metabolite Map Sequence'; IsDeprecated: False),
|
|
(Group: $18; Element: $9155; DataType: iedtFD; Description: 'Parallel Reduction Factor out-of-plane'; IsDeprecated: False),
|
|
(Group: $18; Element: $9159; DataType: iedtUL; Description: 'Spectroscopy Acquisition Out-of-plane Phase Steps'; IsDeprecated: False),
|
|
(Group: $18; Element: $9166; DataType: iedtCS; Description: 'Bulk Motion Status'; IsDeprecated: True),
|
|
(Group: $18; Element: $9168; DataType: iedtFD; Description: 'Parallel Reduction Factor Second In-plane'; IsDeprecated: False),
|
|
(Group: $18; Element: $9169; DataType: iedtCS; Description: 'Cardiac Beat Rejection Technique'; IsDeprecated: False),
|
|
(Group: $18; Element: $9170; DataType: iedtCS; Description: 'Respiratory Motion Compensation Technique'; IsDeprecated: False),
|
|
(Group: $18; Element: $9171; DataType: iedtCS; Description: 'Respiratory Signal Source'; IsDeprecated: False),
|
|
(Group: $18; Element: $9172; DataType: iedtCS; Description: 'Bulk Motion Compensation Technique'; IsDeprecated: False),
|
|
(Group: $18; Element: $9173; DataType: iedtCS; Description: 'Bulk Motion Signal Source'; IsDeprecated: False),
|
|
(Group: $18; Element: $9174; DataType: iedtCS; Description: 'Applicable Safety Standard Agency'; IsDeprecated: False),
|
|
(Group: $18; Element: $9175; DataType: iedtLO; Description: 'Applicable Safety Standard Description'; IsDeprecated: False),
|
|
(Group: $18; Element: $9176; DataType: iedtSQ; Description: 'Operating Mode Sequence'; IsDeprecated: False),
|
|
(Group: $18; Element: $9177; DataType: iedtCS; Description: 'Operating Mode Type'; IsDeprecated: False),
|
|
(Group: $18; Element: $9178; DataType: iedtCS; Description: 'Operating Mode'; IsDeprecated: False),
|
|
(Group: $18; Element: $9179; DataType: iedtCS; Description: 'Specific Absorption Rate Definition'; IsDeprecated: False),
|
|
(Group: $18; Element: $9180; DataType: iedtCS; Description: 'Gradient Output Type'; IsDeprecated: False),
|
|
(Group: $18; Element: $9181; DataType: iedtFD; Description: 'Specific Absorption Rate Value'; IsDeprecated: False),
|
|
(Group: $18; Element: $9182; DataType: iedtFD; Description: 'Gradient Output'; IsDeprecated: False),
|
|
(Group: $18; Element: $9183; DataType: iedtCS; Description: 'Flow Compensation Direction'; IsDeprecated: False),
|
|
(Group: $18; Element: $9184; DataType: iedtFD; Description: 'Tagging Delay'; IsDeprecated: False),
|
|
(Group: $18; Element: $9185; DataType: iedtST; Description: 'Respiratory Motion Compensation Technique Description'; IsDeprecated: False),
|
|
(Group: $18; Element: $9186; DataType: iedtSH; Description: 'Respiratory Signal Source ID'; IsDeprecated: False),
|
|
(Group: $18; Element: $9195; DataType: iedtFD; Description: 'Chemical Shifts Minimum Integration Limit in Hz'; IsDeprecated: True),
|
|
(Group: $18; Element: $9196; DataType: iedtFD; Description: 'Chemical Shifts Maximum Integration Limit in Hz'; IsDeprecated: True),
|
|
(Group: $18; Element: $9197; DataType: iedtSQ; Description: 'MR Velocity Encoding Sequence'; IsDeprecated: False),
|
|
(Group: $18; Element: $9198; DataType: iedtCS; Description: 'First Order Phase Correction'; IsDeprecated: False),
|
|
(Group: $18; Element: $9199; DataType: iedtCS; Description: 'Water Referenced Phase Correction'; IsDeprecated: False),
|
|
(Group: $18; Element: $9200; DataType: iedtCS; Description: 'MR Spectroscopy Acquisition Type'; IsDeprecated: False),
|
|
(Group: $18; Element: $9214; DataType: iedtCS; Description: 'Respiratory Cycle Position'; IsDeprecated: False),
|
|
(Group: $18; Element: $9217; DataType: iedtFD; Description: 'Velocity Encoding Maximum Value'; IsDeprecated: False),
|
|
(Group: $18; Element: $9218; DataType: iedtFD; Description: 'Tag Spacing Second Dimension'; IsDeprecated: False),
|
|
(Group: $18; Element: $9219; DataType: iedtSS; Description: 'Tag Angle Second Axis'; IsDeprecated: False),
|
|
(Group: $18; Element: $9220; DataType: iedtFD; Description: 'Frame Acquisition Duration'; IsDeprecated: False),
|
|
(Group: $18; Element: $9226; DataType: iedtSQ; Description: 'MR Image Frame Type Sequence'; IsDeprecated: False),
|
|
(Group: $18; Element: $9227; DataType: iedtSQ; Description: 'MR Spectroscopy Frame Type Sequence'; IsDeprecated: False),
|
|
(Group: $18; Element: $9231; DataType: iedtUS; Description: 'MR Acquisition Phase Encoding Steps in-plane'; IsDeprecated: False),
|
|
(Group: $18; Element: $9232; DataType: iedtUS; Description: 'MR Acquisition Phase Encoding Steps out-of-plane'; IsDeprecated: False),
|
|
(Group: $18; Element: $9234; DataType: iedtUL; Description: 'Spectroscopy Acquisition Phase Columns'; IsDeprecated: False),
|
|
(Group: $18; Element: $9236; DataType: iedtCS; Description: 'Cardiac Cycle Position'; IsDeprecated: False),
|
|
(Group: $18; Element: $9239; DataType: iedtSQ; Description: 'Specific Absorption Rate Sequence'; IsDeprecated: False),
|
|
(Group: $18; Element: $9240; DataType: iedtUS; Description: 'RF Echo Train Length'; IsDeprecated: False),
|
|
(Group: $18; Element: $9241; DataType: iedtUS; Description: 'Gradient Echo Train Length'; IsDeprecated: False),
|
|
(Group: $18; Element: $9295; DataType: iedtFD; Description: 'Chemical Shifts Minimum Integration Limit in ppm'; IsDeprecated: False),
|
|
(Group: $18; Element: $9296; DataType: iedtFD; Description: 'Chemical Shifts Maximum Integration Limit in ppm'; IsDeprecated: False),
|
|
(Group: $18; Element: $9301; DataType: iedtSQ; Description: 'CT Acquisition Type Sequence'; IsDeprecated: False),
|
|
(Group: $18; Element: $9302; DataType: iedtCS; Description: 'Acquisition Type'; IsDeprecated: False),
|
|
(Group: $18; Element: $9303; DataType: iedtFD; Description: 'Tube Angle'; IsDeprecated: False),
|
|
(Group: $18; Element: $9304; DataType: iedtSQ; Description: 'CT Acquisition Details Sequence'; IsDeprecated: False),
|
|
(Group: $18; Element: $9305; DataType: iedtFD; Description: 'Revolution Time'; IsDeprecated: False),
|
|
(Group: $18; Element: $9306; DataType: iedtFD; Description: 'Single Collimation Width'; IsDeprecated: False),
|
|
(Group: $18; Element: $9307; DataType: iedtFD; Description: 'Total Collimation Width'; IsDeprecated: False),
|
|
(Group: $18; Element: $9308; DataType: iedtSQ; Description: 'CT Table Dynamics Sequence'; IsDeprecated: False),
|
|
(Group: $18; Element: $9309; DataType: iedtFD; Description: 'Table Speed'; IsDeprecated: False),
|
|
(Group: $18; Element: $9310; DataType: iedtFD; Description: 'Table Feed per Rotation'; IsDeprecated: False),
|
|
(Group: $18; Element: $9311; DataType: iedtFD; Description: 'Spiral Pitch Factor'; IsDeprecated: False),
|
|
(Group: $18; Element: $9312; DataType: iedtSQ; Description: 'CT Geometry Sequence'; IsDeprecated: False),
|
|
(Group: $18; Element: $9313; DataType: iedtFD; Description: 'Data Collection Center (Patient)'; IsDeprecated: False),
|
|
(Group: $18; Element: $9314; DataType: iedtSQ; Description: 'CT Reconstruction Sequence'; IsDeprecated: False),
|
|
(Group: $18; Element: $9315; DataType: iedtCS; Description: 'Reconstruction Algorithm'; IsDeprecated: False),
|
|
(Group: $18; Element: $9316; DataType: iedtCS; Description: 'Convolution Kernel Group'; IsDeprecated: False),
|
|
(Group: $18; Element: $9317; DataType: iedtFD; Description: 'Reconstruction Field of View'; IsDeprecated: False),
|
|
(Group: $18; Element: $9318; DataType: iedtFD; Description: 'Reconstruction Target Center (Patient)'; IsDeprecated: False),
|
|
(Group: $18; Element: $9319; DataType: iedtFD; Description: 'Reconstruction Angle'; IsDeprecated: False),
|
|
(Group: $18; Element: $9320; DataType: iedtSH; Description: 'Image Filter'; IsDeprecated: False),
|
|
(Group: $18; Element: $9321; DataType: iedtSQ; Description: 'CT Exposure Sequence'; IsDeprecated: False),
|
|
(Group: $18; Element: $9322; DataType: iedtFD; Description: 'Reconstruction Pixel Spacing'; IsDeprecated: False),
|
|
(Group: $18; Element: $9323; DataType: iedtCS; Description: 'Exposure Modulation Type'; IsDeprecated: False),
|
|
(Group: $18; Element: $9324; DataType: iedtFD; Description: 'Estimated Dose Saving'; IsDeprecated: False),
|
|
(Group: $18; Element: $9325; DataType: iedtSQ; Description: 'CT X-Ray Details Sequence'; IsDeprecated: False),
|
|
(Group: $18; Element: $9326; DataType: iedtSQ; Description: 'CT Position Sequence'; IsDeprecated: False),
|
|
(Group: $18; Element: $9327; DataType: iedtFD; Description: 'Table Position'; IsDeprecated: False),
|
|
(Group: $18; Element: $9328; DataType: iedtFD; Description: 'Exposure Time in ms'; IsDeprecated: False),
|
|
(Group: $18; Element: $9329; DataType: iedtSQ; Description: 'CT Image Frame Type Sequence'; IsDeprecated: False),
|
|
(Group: $18; Element: $9330; DataType: iedtFD; Description: 'X-Ray Tube Current in mA'; IsDeprecated: False),
|
|
(Group: $18; Element: $9332; DataType: iedtFD; Description: 'Exposure in mAs'; IsDeprecated: False),
|
|
(Group: $18; Element: $9333; DataType: iedtCS; Description: 'Constant Volume Flag'; IsDeprecated: False),
|
|
(Group: $18; Element: $9334; DataType: iedtCS; Description: 'Fluoroscopy Flag'; IsDeprecated: False),
|
|
(Group: $18; Element: $9335; DataType: iedtFD; Description: 'Distance Source to Data Collection Center'; IsDeprecated: False),
|
|
(Group: $18; Element: $9337; DataType: iedtUS; Description: 'Contrast/Bolus Agent Number'; IsDeprecated: False),
|
|
(Group: $18; Element: $9338; DataType: iedtSQ; Description: 'Contrast/Bolus Ingredient Code Sequence'; IsDeprecated: False),
|
|
(Group: $18; Element: $9340; DataType: iedtSQ; Description: 'Contrast Administration Profile Sequence'; IsDeprecated: False),
|
|
(Group: $18; Element: $9341; DataType: iedtSQ; Description: 'Contrast/Bolus Usage Sequence'; IsDeprecated: False),
|
|
(Group: $18; Element: $9342; DataType: iedtCS; Description: 'Contrast/Bolus Agent Administered'; IsDeprecated: False),
|
|
(Group: $18; Element: $9343; DataType: iedtCS; Description: 'Contrast/Bolus Agent Detected'; IsDeprecated: False),
|
|
(Group: $18; Element: $9344; DataType: iedtCS; Description: 'Contrast/Bolus Agent Phase'; IsDeprecated: False),
|
|
(Group: $18; Element: $9345; DataType: iedtFD; Description: 'CTDIvol'; IsDeprecated: False),
|
|
(Group: $18; Element: $9346; DataType: iedtSQ; Description: 'CTDI Phantom Type Code Sequence'; IsDeprecated: False),
|
|
(Group: $18; Element: $9351; DataType: iedtFL; Description: 'Calcium Scoring Mass Factor Patient'; IsDeprecated: False),
|
|
(Group: $18; Element: $9352; DataType: iedtFL; Description: 'Calcium Scoring Mass Factor Device'; IsDeprecated: False),
|
|
(Group: $18; Element: $9360; DataType: iedtSQ; Description: 'CT Additional X-Ray Source Sequence'; IsDeprecated: False),
|
|
(Group: $18; Element: $9401; DataType: iedtSQ; Description: 'Projection Pixel Calibration Sequence'; IsDeprecated: False),
|
|
(Group: $18; Element: $9402; DataType: iedtFL; Description: 'Distance Source to Isocenter'; IsDeprecated: False),
|
|
(Group: $18; Element: $9403; DataType: iedtFL; Description: 'Distance Object to Table Top'; IsDeprecated: False),
|
|
(Group: $18; Element: $9404; DataType: iedtFL; Description: 'Object Pixel Spacing in Center of Beam'; IsDeprecated: False),
|
|
(Group: $18; Element: $9405; DataType: iedtSQ; Description: 'Positioner Position Sequence'; IsDeprecated: False),
|
|
(Group: $18; Element: $9406; DataType: iedtSQ; Description: 'Table Position Sequence'; IsDeprecated: False),
|
|
(Group: $18; Element: $9407; DataType: iedtSQ; Description: 'Collimator Shape Sequence'; IsDeprecated: False),
|
|
(Group: $18; Element: $9412; DataType: iedtSQ; Description: 'XA/XRF Frame Characteristics Sequence'; IsDeprecated: False),
|
|
(Group: $18; Element: $9417; DataType: iedtSQ; Description: 'Frame Acquisition Sequence'; IsDeprecated: False),
|
|
(Group: $18; Element: $9420; DataType: iedtCS; Description: 'X-Ray Receptor Type'; IsDeprecated: False),
|
|
(Group: $18; Element: $9423; DataType: iedtLO; Description: 'Acquisition Protocol Name'; IsDeprecated: False),
|
|
(Group: $18; Element: $9424; DataType: iedtLT; Description: 'Acquisition Protocol Description'; IsDeprecated: False),
|
|
(Group: $18; Element: $9425; DataType: iedtCS; Description: 'Contrast/Bolus Ingredient Opaque'; IsDeprecated: False),
|
|
(Group: $18; Element: $9426; DataType: iedtFL; Description: 'Distance Receptor Plane to Detector Housing'; IsDeprecated: False),
|
|
(Group: $18; Element: $9427; DataType: iedtCS; Description: 'Intensifier Active Shape'; IsDeprecated: False),
|
|
(Group: $18; Element: $9428; DataType: iedtFL; Description: 'Intensifier Active Dimension(s)'; IsDeprecated: False),
|
|
(Group: $18; Element: $9429; DataType: iedtFL; Description: 'Physical Detector Size'; IsDeprecated: False),
|
|
(Group: $18; Element: $9430; DataType: iedtUS; Description: 'Position of Isocenter Projection'; IsDeprecated: False),
|
|
(Group: $18; Element: $9432; DataType: iedtSQ; Description: 'Field of View Sequence'; IsDeprecated: False),
|
|
(Group: $18; Element: $9433; DataType: iedtLO; Description: 'Field of View Description'; IsDeprecated: False),
|
|
(Group: $18; Element: $9434; DataType: iedtSQ; Description: 'Exposure Control Sensing Regions Sequence'; IsDeprecated: False),
|
|
(Group: $18; Element: $9435; DataType: iedtCS; Description: 'Exposure Control Sensing Region Shape'; IsDeprecated: False),
|
|
(Group: $18; Element: $9436; DataType: iedtSS; Description: 'Exposure Control Sensing Region Left Vertical Edge'; IsDeprecated: False),
|
|
(Group: $18; Element: $9437; DataType: iedtSS; Description: 'Exposure Control Sensing Region Right Vertical Edge'; IsDeprecated: False),
|
|
(Group: $18; Element: $9438; DataType: iedtSS; Description: 'Exposure Control Sensing Region Upper Horizontal Edge'; IsDeprecated: False),
|
|
(Group: $18; Element: $9439; DataType: iedtSS; Description: 'Exposure Control Sensing Region Lower Horizontal Edge'; IsDeprecated: False),
|
|
(Group: $18; Element: $9440; DataType: iedtSS; Description: 'Center of Circular Exposure Control Sensing Region'; IsDeprecated: False),
|
|
(Group: $18; Element: $9441; DataType: iedtUS; Description: 'Radius of Circular Exposure Control Sensing Region'; IsDeprecated: False),
|
|
(Group: $18; Element: $9442; DataType: iedtSS; Description: 'Vertices of the Polygonal Exposure Control Sensing Region'; IsDeprecated: False),
|
|
(Group: $18; Element: $9447; DataType: iedtFL; Description: 'Column Angulation (Patient)'; IsDeprecated: False),
|
|
(Group: $18; Element: $9449; DataType: iedtFL; Description: 'Beam Angle'; IsDeprecated: False),
|
|
(Group: $18; Element: $9451; DataType: iedtSQ; Description: 'Frame Detector Parameters Sequence'; IsDeprecated: False),
|
|
(Group: $18; Element: $9452; DataType: iedtFL; Description: 'Calculated Anatomy Thickness'; IsDeprecated: False),
|
|
(Group: $18; Element: $9455; DataType: iedtSQ; Description: 'Calibration Sequence'; IsDeprecated: False),
|
|
(Group: $18; Element: $9456; DataType: iedtSQ; Description: 'Object Thickness Sequence'; IsDeprecated: False),
|
|
(Group: $18; Element: $9457; DataType: iedtCS; Description: 'Plane Identification'; IsDeprecated: False),
|
|
(Group: $18; Element: $9461; DataType: iedtFL; Description: 'Field of View Dimension(s) in Float'; IsDeprecated: False),
|
|
(Group: $18; Element: $9462; DataType: iedtSQ; Description: 'Isocenter Reference System Sequence'; IsDeprecated: False),
|
|
(Group: $18; Element: $9463; DataType: iedtFL; Description: 'Positioner Isocenter Primary Angle'; IsDeprecated: False),
|
|
(Group: $18; Element: $9464; DataType: iedtFL; Description: 'Positioner Isocenter Secondary Angle'; IsDeprecated: False),
|
|
(Group: $18; Element: $9465; DataType: iedtFL; Description: 'Positioner Isocenter Detector Rotation Angle'; IsDeprecated: False),
|
|
(Group: $18; Element: $9466; DataType: iedtFL; Description: 'Table X Position to Isocenter'; IsDeprecated: False),
|
|
(Group: $18; Element: $9467; DataType: iedtFL; Description: 'Table Y Position to Isocenter'; IsDeprecated: False),
|
|
(Group: $18; Element: $9468; DataType: iedtFL; Description: 'Table Z Position to Isocenter'; IsDeprecated: False),
|
|
(Group: $18; Element: $9469; DataType: iedtFL; Description: 'Table Horizontal Rotation Angle'; IsDeprecated: False),
|
|
(Group: $18; Element: $9470; DataType: iedtFL; Description: 'Table Head Tilt Angle'; IsDeprecated: False),
|
|
(Group: $18; Element: $9471; DataType: iedtFL; Description: 'Table Cradle Tilt Angle'; IsDeprecated: False),
|
|
(Group: $18; Element: $9472; DataType: iedtSQ; Description: 'Frame Display Shutter Sequence'; IsDeprecated: False),
|
|
(Group: $18; Element: $9473; DataType: iedtFL; Description: 'Acquired Image Area Dose Product'; IsDeprecated: False),
|
|
(Group: $18; Element: $9474; DataType: iedtCS; Description: 'C-arm Positioner Tabletop Relationship'; IsDeprecated: False),
|
|
(Group: $18; Element: $9476; DataType: iedtSQ; Description: 'X-Ray Geometry Sequence'; IsDeprecated: False),
|
|
(Group: $18; Element: $9477; DataType: iedtSQ; Description: 'Irradiation Event Identification Sequence'; IsDeprecated: False),
|
|
(Group: $18; Element: $9504; DataType: iedtSQ; Description: 'X-Ray 3D Frame Type Sequence'; IsDeprecated: False),
|
|
(Group: $18; Element: $9506; DataType: iedtSQ; Description: 'Contributing Sources Sequence'; IsDeprecated: False),
|
|
(Group: $18; Element: $9507; DataType: iedtSQ; Description: 'X-Ray 3D Acquisition Sequence'; IsDeprecated: False),
|
|
(Group: $18; Element: $9508; DataType: iedtFL; Description: 'Primary Positioner Scan Arc'; IsDeprecated: False),
|
|
(Group: $18; Element: $9509; DataType: iedtFL; Description: 'Secondary Positioner Scan Arc'; IsDeprecated: False),
|
|
(Group: $18; Element: $9510; DataType: iedtFL; Description: 'Primary Positioner Scan Start Angle'; IsDeprecated: False),
|
|
(Group: $18; Element: $9511; DataType: iedtFL; Description: 'Secondary Positioner Scan Start Angle'; IsDeprecated: False),
|
|
(Group: $18; Element: $9514; DataType: iedtFL; Description: 'Primary Positioner Increment'; IsDeprecated: False),
|
|
(Group: $18; Element: $9515; DataType: iedtFL; Description: 'Secondary Positioner Increment'; IsDeprecated: False),
|
|
(Group: $18; Element: $9516; DataType: iedtDT; Description: 'Start Acquisition DateTime'; IsDeprecated: False),
|
|
(Group: $18; Element: $9517; DataType: iedtDT; Description: 'End Acquisition DateTime'; IsDeprecated: False),
|
|
(Group: $18; Element: $9524; DataType: iedtLO; Description: 'Application Name'; IsDeprecated: False),
|
|
(Group: $18; Element: $9525; DataType: iedtLO; Description: 'Application Version'; IsDeprecated: False),
|
|
(Group: $18; Element: $9526; DataType: iedtLO; Description: 'Application Manufacturer'; IsDeprecated: False),
|
|
(Group: $18; Element: $9527; DataType: iedtCS; Description: 'Algorithm Type'; IsDeprecated: False),
|
|
(Group: $18; Element: $9528; DataType: iedtLO; Description: 'Algorithm Description'; IsDeprecated: False),
|
|
(Group: $18; Element: $9530; DataType: iedtSQ; Description: 'X-Ray 3D Reconstruction Sequence'; IsDeprecated: False),
|
|
(Group: $18; Element: $9531; DataType: iedtLO; Description: 'Reconstruction Description'; IsDeprecated: False),
|
|
(Group: $18; Element: $9538; DataType: iedtSQ; Description: 'Per Projection Acquisition Sequence'; IsDeprecated: False),
|
|
(Group: $18; Element: $9601; DataType: iedtSQ; Description: 'Diffusion b-matrix Sequence'; IsDeprecated: False),
|
|
(Group: $18; Element: $9602; DataType: iedtFD; Description: 'Diffusion b-value 00'; IsDeprecated: False),
|
|
(Group: $18; Element: $9603; DataType: iedtFD; Description: 'Diffusion b-value XY'; IsDeprecated: False),
|
|
(Group: $18; Element: $9604; DataType: iedtFD; Description: 'Diffusion b-value XZ'; IsDeprecated: False),
|
|
(Group: $18; Element: $9605; DataType: iedtFD; Description: 'Diffusion b-value YY'; IsDeprecated: False),
|
|
(Group: $18; Element: $9606; DataType: iedtFD; Description: 'Diffusion b-value YZ'; IsDeprecated: False),
|
|
(Group: $18; Element: $9607; DataType: iedtFD; Description: 'Diffusion b-value ZZ'; IsDeprecated: False),
|
|
(Group: $18; Element: $a001; DataType: iedtSQ; Description: 'Contributing Equipment Sequence'; IsDeprecated: False),
|
|
(Group: $18; Element: $a002; DataType: iedtDT; Description: 'Contribution Date Time'; IsDeprecated: False),
|
|
(Group: $18; Element: $a003; DataType: iedtST; Description: 'Contribution Description'; IsDeprecated: False),
|
|
(Group: $20; Element: $000d; DataType: iedtUI; Description: 'Study Instance UID'; IsDeprecated: False),
|
|
(Group: $20; Element: $000e; DataType: iedtUI; Description: 'Series Instance UID'; IsDeprecated: False),
|
|
(Group: $20; Element: $10; DataType: iedtSH; Description: 'Study ID'; IsDeprecated: False),
|
|
(Group: $20; Element: $11; DataType: iedtIS; Description: 'Series Number'; IsDeprecated: False),
|
|
(Group: $20; Element: $12; DataType: iedtIS; Description: 'Acquisition Number'; IsDeprecated: False),
|
|
(Group: $20; Element: $13; DataType: iedtIS; Description: 'Instance Number'; IsDeprecated: False),
|
|
(Group: $20; Element: $14; DataType: iedtIS; Description: 'Isotope Number'; IsDeprecated: True),
|
|
(Group: $20; Element: $15; DataType: iedtIS; Description: 'Phase Number'; IsDeprecated: True),
|
|
(Group: $20; Element: $16; DataType: iedtIS; Description: 'Interval Number'; IsDeprecated: True),
|
|
(Group: $20; Element: $17; DataType: iedtIS; Description: 'Time Slot Number'; IsDeprecated: True),
|
|
(Group: $20; Element: $18; DataType: iedtIS; Description: 'Angle Number'; IsDeprecated: True),
|
|
(Group: $20; Element: $19; DataType: iedtIS; Description: 'Item Number'; IsDeprecated: False),
|
|
(Group: $20; Element: $20; DataType: iedtCS; Description: 'Patient Orientation'; IsDeprecated: False),
|
|
(Group: $20; Element: $22; DataType: iedtIS; Description: 'Overlay Number'; IsDeprecated: True),
|
|
(Group: $20; Element: $24; DataType: iedtIS; Description: 'Curve Number'; IsDeprecated: True),
|
|
(Group: $20; Element: $26; DataType: iedtIS; Description: 'Lookup Table Number'; IsDeprecated: True),
|
|
(Group: $20; Element: $30; DataType: iedtDS; Description: 'Image Position'; IsDeprecated: True),
|
|
(Group: $20; Element: $32; DataType: iedtDS; Description: 'Image Position (Patient)'; IsDeprecated: False),
|
|
(Group: $20; Element: $35; DataType: iedtDS; Description: 'Image Orientation'; IsDeprecated: True),
|
|
(Group: $20; Element: $37; DataType: iedtDS; Description: 'Image Orientation (Patient)'; IsDeprecated: False),
|
|
(Group: $20; Element: $50; DataType: iedtDS; Description: 'Location'; IsDeprecated: True),
|
|
(Group: $20; Element: $52; DataType: iedtUI; Description: 'Frame of Reference UID'; IsDeprecated: False),
|
|
(Group: $20; Element: $60; DataType: iedtCS; Description: 'Laterality'; IsDeprecated: False),
|
|
(Group: $20; Element: $62; DataType: iedtCS; Description: 'Image Laterality'; IsDeprecated: False),
|
|
(Group: $20; Element: $70; DataType: iedtLO; Description: 'Image Geometry Type'; IsDeprecated: True),
|
|
(Group: $20; Element: $80; DataType: iedtCS; Description: 'Masking Image'; IsDeprecated: True),
|
|
(Group: $20; Element: $100; DataType: iedtIS; Description: 'Temporal Position Identifier'; IsDeprecated: False),
|
|
(Group: $20; Element: $105; DataType: iedtIS; Description: 'Number of Temporal Positions'; IsDeprecated: False),
|
|
(Group: $20; Element: $110; DataType: iedtDS; Description: 'Temporal Resolution'; IsDeprecated: False),
|
|
(Group: $20; Element: $200; DataType: iedtUI; Description: 'Synchronization Frame of Reference UID'; IsDeprecated: False),
|
|
(Group: $20; Element: $1000; DataType: iedtIS; Description: 'Series in Study'; IsDeprecated: True),
|
|
(Group: $20; Element: $1001; DataType: iedtIS; Description: 'Acquisitions in Series'; IsDeprecated: True),
|
|
(Group: $20; Element: $1002; DataType: iedtIS; Description: 'Images in Acquisition'; IsDeprecated: False),
|
|
(Group: $20; Element: $1003; DataType: iedtIS; Description: 'Images in Series'; IsDeprecated: True),
|
|
(Group: $20; Element: $1004; DataType: iedtIS; Description: 'Acquisitions in Study'; IsDeprecated: True),
|
|
(Group: $20; Element: $1005; DataType: iedtIS; Description: 'Images in Study'; IsDeprecated: True),
|
|
(Group: $20; Element: $1020; DataType: iedtCS; Description: 'Reference'; IsDeprecated: True),
|
|
(Group: $20; Element: $1040; DataType: iedtLO; Description: 'Position Reference Indicator'; IsDeprecated: False),
|
|
(Group: $20; Element: $1041; DataType: iedtDS; Description: 'Slice Location'; IsDeprecated: False),
|
|
(Group: $20; Element: $1070; DataType: iedtIS; Description: 'Other Study Numbers'; IsDeprecated: True),
|
|
(Group: $20; Element: $1200; DataType: iedtIS; Description: 'Number of Patient Related Studies'; IsDeprecated: False),
|
|
(Group: $20; Element: $1202; DataType: iedtIS; Description: 'Number of Patient Related Series'; IsDeprecated: False),
|
|
(Group: $20; Element: $1204; DataType: iedtIS; Description: 'Number of Patient Related Instances'; IsDeprecated: False),
|
|
(Group: $20; Element: $1206; DataType: iedtIS; Description: 'Number of Study Related Series'; IsDeprecated: False),
|
|
(Group: $20; Element: $1208; DataType: iedtIS; Description: 'Number of Study Related Instances'; IsDeprecated: False),
|
|
(Group: $20; Element: $1209; DataType: iedtIS; Description: 'Number of Series Related Instances'; IsDeprecated: False),
|
|
(Group: $20; Element: $3100; DataType: iedtCS; Description: 'Source Image IDs'; IsDeprecated: True),
|
|
(Group: $20; Element: $3401; DataType: iedtCS; Description: 'Modifying Device ID'; IsDeprecated: True),
|
|
(Group: $20; Element: $3402; DataType: iedtCS; Description: 'Modified Image ID'; IsDeprecated: True),
|
|
(Group: $20; Element: $3403; DataType: iedtDA; Description: 'Modified Image Date'; IsDeprecated: True),
|
|
(Group: $20; Element: $3404; DataType: iedtLO; Description: 'Modifying Device Manufacturer'; IsDeprecated: True),
|
|
(Group: $20; Element: $3405; DataType: iedtTM; Description: 'Modified Image Time'; IsDeprecated: True),
|
|
(Group: $20; Element: $3406; DataType: iedtLO; Description: 'Modified Image Description'; IsDeprecated: True),
|
|
(Group: $20; Element: $4000; DataType: iedtLT; Description: 'Image Comments'; IsDeprecated: False),
|
|
(Group: $20; Element: $5000; DataType: iedtAT; Description: 'Original Image Identification'; IsDeprecated: True),
|
|
(Group: $20; Element: $5002; DataType: iedtCS; Description: 'Original Image Identification Nomenclature'; IsDeprecated: True),
|
|
(Group: $20; Element: $9056; DataType: iedtSH; Description: 'Stack ID'; IsDeprecated: False),
|
|
(Group: $20; Element: $9057; DataType: iedtUL; Description: 'In-Stack Position Number'; IsDeprecated: False),
|
|
(Group: $20; Element: $9071; DataType: iedtSQ; Description: 'Frame Anatomy Sequence'; IsDeprecated: False),
|
|
(Group: $20; Element: $9072; DataType: iedtCS; Description: 'Frame Laterality'; IsDeprecated: False),
|
|
(Group: $20; Element: $9111; DataType: iedtSQ; Description: 'Frame Content Sequence'; IsDeprecated: False),
|
|
(Group: $20; Element: $9113; DataType: iedtSQ; Description: 'Plane Position Sequence'; IsDeprecated: False),
|
|
(Group: $20; Element: $9116; DataType: iedtSQ; Description: 'Plane Orientation Sequence'; IsDeprecated: False),
|
|
(Group: $20; Element: $9128; DataType: iedtUL; Description: 'Temporal Position Index'; IsDeprecated: False),
|
|
(Group: $20; Element: $9153; DataType: iedtFD; Description: 'Nominal Cardiac Trigger Delay Time'; IsDeprecated: False),
|
|
(Group: $20; Element: $9156; DataType: iedtUS; Description: 'Frame Acquisition Number'; IsDeprecated: False),
|
|
(Group: $20; Element: $9157; DataType: iedtUL; Description: 'Dimension Index Values'; IsDeprecated: False),
|
|
(Group: $20; Element: $9158; DataType: iedtLT; Description: 'Frame Comments'; IsDeprecated: False),
|
|
(Group: $20; Element: $9161; DataType: iedtUI; Description: 'Concatenation UID'; IsDeprecated: False),
|
|
(Group: $20; Element: $9162; DataType: iedtUS; Description: 'In-concatenation Number'; IsDeprecated: False),
|
|
(Group: $20; Element: $9163; DataType: iedtUS; Description: 'In-concatenation Total Number'; IsDeprecated: False),
|
|
(Group: $20; Element: $9164; DataType: iedtUI; Description: 'Dimension Organization UID'; IsDeprecated: False),
|
|
(Group: $20; Element: $9165; DataType: iedtAT; Description: 'Dimension Index Pointer'; IsDeprecated: False),
|
|
(Group: $20; Element: $9167; DataType: iedtAT; Description: 'Functional Group Pointer'; IsDeprecated: False),
|
|
(Group: $20; Element: $9213; DataType: iedtLO; Description: 'Dimension Index Private Creator'; IsDeprecated: False),
|
|
(Group: $20; Element: $9221; DataType: iedtSQ; Description: 'Dimension Organization Sequence'; IsDeprecated: False),
|
|
(Group: $20; Element: $9222; DataType: iedtSQ; Description: 'Dimension Index Sequence'; IsDeprecated: False),
|
|
(Group: $20; Element: $9228; DataType: iedtUL; Description: 'Concatenation Frame Offset Number'; IsDeprecated: False),
|
|
(Group: $20; Element: $9238; DataType: iedtLO; Description: 'Functional Group Private Creator'; IsDeprecated: False),
|
|
(Group: $20; Element: $9241; DataType: iedtFL; Description: 'Nominal Percentage of Cardiac Phase'; IsDeprecated: False),
|
|
(Group: $20; Element: $9245; DataType: iedtFL; Description: 'Nominal Percentage of Respiratory Phase'; IsDeprecated: False),
|
|
(Group: $20; Element: $9246; DataType: iedtFL; Description: 'Starting Respiratory Amplitude'; IsDeprecated: False),
|
|
(Group: $20; Element: $9247; DataType: iedtCS; Description: 'Starting Respiratory Phase'; IsDeprecated: False),
|
|
(Group: $20; Element: $9248; DataType: iedtFL; Description: 'Ending Respiratory Amplitude'; IsDeprecated: False),
|
|
(Group: $20; Element: $9249; DataType: iedtCS; Description: 'Ending Respiratory Phase'; IsDeprecated: False),
|
|
(Group: $20; Element: $9250; DataType: iedtCS; Description: 'Respiratory Trigger Type'; IsDeprecated: False),
|
|
(Group: $20; Element: $9251; DataType: iedtFD; Description: 'R - R Interval Time Nominal'; IsDeprecated: False),
|
|
(Group: $20; Element: $9252; DataType: iedtFD; Description: 'Actual Cardiac Trigger Delay Time'; IsDeprecated: False),
|
|
(Group: $20; Element: $9253; DataType: iedtSQ; Description: 'Respiratory Synchronization Sequence'; IsDeprecated: False),
|
|
(Group: $20; Element: $9254; DataType: iedtFD; Description: 'Respiratory Interval Time'; IsDeprecated: False),
|
|
(Group: $20; Element: $9255; DataType: iedtFD; Description: 'Nominal Respiratory Trigger Delay Time'; IsDeprecated: False),
|
|
(Group: $20; Element: $9256; DataType: iedtFD; Description: 'Respiratory Trigger Delay Threshold'; IsDeprecated: False),
|
|
(Group: $20; Element: $9257; DataType: iedtFD; Description: 'Actual Respiratory Trigger Delay Time'; IsDeprecated: False),
|
|
(Group: $20; Element: $9421; DataType: iedtLO; Description: 'Dimension Description Label'; IsDeprecated: False),
|
|
(Group: $20; Element: $9450; DataType: iedtSQ; Description: 'Patient Orientation in Frame Sequence'; IsDeprecated: False),
|
|
(Group: $20; Element: $9453; DataType: iedtLO; Description: 'Frame Label'; IsDeprecated: False),
|
|
(Group: $20; Element: $9518; DataType: iedtUS; Description: 'Acquisition Index'; IsDeprecated: False),
|
|
(Group: $20; Element: $9529; DataType: iedtSQ; Description: 'Contributing SOP Instances Reference Sequence'; IsDeprecated: False),
|
|
(Group: $20; Element: $9536; DataType: iedtUS; Description: 'Reconstruction Index'; IsDeprecated: False),
|
|
(Group: $22; Element: $1; DataType: iedtUS; Description: 'Light Path Filter Pass-Through Wavelength'; IsDeprecated: False),
|
|
(Group: $22; Element: $2; DataType: iedtUS; Description: 'Light Path Filter Pass Band'; IsDeprecated: False),
|
|
(Group: $22; Element: $3; DataType: iedtUS; Description: 'Image Path Filter Pass-Through Wavelength'; IsDeprecated: False),
|
|
(Group: $22; Element: $4; DataType: iedtUS; Description: 'Image Path Filter Pass Band'; IsDeprecated: False),
|
|
(Group: $22; Element: $5; DataType: iedtCS; Description: 'Patient Eye Movement Commanded'; IsDeprecated: False),
|
|
(Group: $22; Element: $6; DataType: iedtSQ; Description: 'Patient Eye Movement Command Code Sequence'; IsDeprecated: False),
|
|
(Group: $22; Element: $7; DataType: iedtFL; Description: 'Spherical Lens Power'; IsDeprecated: False),
|
|
(Group: $22; Element: $8; DataType: iedtFL; Description: 'Cylinder Lens Power'; IsDeprecated: False),
|
|
(Group: $22; Element: $9; DataType: iedtFL; Description: 'Cylinder Axis'; IsDeprecated: False),
|
|
(Group: $22; Element: $000a; DataType: iedtFL; Description: 'Emmetropic Magnification'; IsDeprecated: False),
|
|
(Group: $22; Element: $000b; DataType: iedtFL; Description: 'Intra Ocular Pressure'; IsDeprecated: False),
|
|
(Group: $22; Element: $000c; DataType: iedtFL; Description: 'Horizontal Field of View'; IsDeprecated: False),
|
|
(Group: $22; Element: $000d; DataType: iedtCS; Description: 'Pupil Dilated'; IsDeprecated: False),
|
|
(Group: $22; Element: $000e; DataType: iedtFL; Description: 'Degree of Dilation'; IsDeprecated: False),
|
|
(Group: $22; Element: $10; DataType: iedtFL; Description: 'Stereo Baseline Angle'; IsDeprecated: False),
|
|
(Group: $22; Element: $11; DataType: iedtFL; Description: 'Stereo Baseline Displacement'; IsDeprecated: False),
|
|
(Group: $22; Element: $12; DataType: iedtFL; Description: 'Stereo Horizontal Pixel Offset'; IsDeprecated: False),
|
|
(Group: $22; Element: $13; DataType: iedtFL; Description: 'Stereo Vertical Pixel Offset'; IsDeprecated: False),
|
|
(Group: $22; Element: $14; DataType: iedtFL; Description: 'Stereo Rotation'; IsDeprecated: False),
|
|
(Group: $22; Element: $15; DataType: iedtSQ; Description: 'Acquisition Device Type Code Sequence'; IsDeprecated: False),
|
|
(Group: $22; Element: $16; DataType: iedtSQ; Description: 'Illumination Type Code Sequence'; IsDeprecated: False),
|
|
(Group: $22; Element: $17; DataType: iedtSQ; Description: 'Light Path Filter Type Stack Code Sequence'; IsDeprecated: False),
|
|
(Group: $22; Element: $18; DataType: iedtSQ; Description: 'Image Path Filter Type Stack Code Sequence'; IsDeprecated: False),
|
|
(Group: $22; Element: $19; DataType: iedtSQ; Description: 'Lenses Code Sequence'; IsDeprecated: False),
|
|
(Group: $22; Element: $001a; DataType: iedtSQ; Description: 'Channel Description Code Sequence'; IsDeprecated: False),
|
|
(Group: $22; Element: $001b; DataType: iedtSQ; Description: 'Refractive State Sequence'; IsDeprecated: False),
|
|
(Group: $22; Element: $001c; DataType: iedtSQ; Description: 'Mydriatic Agent Code Sequence'; IsDeprecated: False),
|
|
(Group: $22; Element: $001d; DataType: iedtSQ; Description: 'Relative Image Position Code Sequence'; IsDeprecated: False),
|
|
(Group: $22; Element: $20; DataType: iedtSQ; Description: 'Stereo Pairs Sequence'; IsDeprecated: False),
|
|
(Group: $22; Element: $21; DataType: iedtSQ; Description: 'Left Image Sequence'; IsDeprecated: False),
|
|
(Group: $22; Element: $22; DataType: iedtSQ; Description: 'Right Image Sequence'; IsDeprecated: False),
|
|
(Group: $22; Element: $30; DataType: iedtFL; Description: 'Axial Length of the Eye'; IsDeprecated: False),
|
|
(Group: $22; Element: $31; DataType: iedtSQ; Description: 'Ophthalmic Frame Location Sequence'; IsDeprecated: False),
|
|
(Group: $22; Element: $32; DataType: iedtFL; Description: 'Reference Coordinates'; IsDeprecated: False),
|
|
(Group: $22; Element: $35; DataType: iedtFL; Description: 'Depth Spatial Resolution'; IsDeprecated: False),
|
|
(Group: $22; Element: $36; DataType: iedtFL; Description: 'Maximum Depth Distortion'; IsDeprecated: False),
|
|
(Group: $22; Element: $37; DataType: iedtFL; Description: 'Along-scan Spatial Resolution'; IsDeprecated: False),
|
|
(Group: $22; Element: $38; DataType: iedtFL; Description: 'Maximum Along-scan Distortion'; IsDeprecated: False),
|
|
(Group: $22; Element: $39; DataType: iedtCS; Description: 'Ophthalmic Image Orientation'; IsDeprecated: False),
|
|
(Group: $22; Element: $41; DataType: iedtFL; Description: 'Depth of Transverse Image'; IsDeprecated: False),
|
|
(Group: $22; Element: $42; DataType: iedtSQ; Description: 'Mydriatic Agent Concentration Units Sequence'; IsDeprecated: False),
|
|
(Group: $22; Element: $48; DataType: iedtFL; Description: 'Across-scan Spatial Resolution'; IsDeprecated: False),
|
|
(Group: $22; Element: $49; DataType: iedtFL; Description: 'Maximum Across-scan Distortion'; IsDeprecated: False),
|
|
(Group: $22; Element: $004e; DataType: iedtDS; Description: 'Mydriatic Agent Concentration'; IsDeprecated: False),
|
|
(Group: $22; Element: $55; DataType: iedtFL; Description: 'Illumination Wave Length'; IsDeprecated: False),
|
|
(Group: $22; Element: $56; DataType: iedtFL; Description: 'Illumination Power'; IsDeprecated: False),
|
|
(Group: $22; Element: $57; DataType: iedtFL; Description: 'Illumination Bandwidth'; IsDeprecated: False),
|
|
(Group: $22; Element: $58; DataType: iedtSQ; Description: 'Mydriatic Agent Sequence'; IsDeprecated: False),
|
|
(Group: $28; Element: $2; DataType: iedtUS; Description: 'Samples per Pixel'; IsDeprecated: False),
|
|
(Group: $28; Element: $3; DataType: iedtUS; Description: 'Samples per Pixel Used'; IsDeprecated: False),
|
|
(Group: $28; Element: $4; DataType: iedtCS; Description: 'Photometric Interpretation'; IsDeprecated: False),
|
|
(Group: $28; Element: $5; DataType: iedtUS; Description: 'Image Dimensions'; IsDeprecated: True),
|
|
(Group: $28; Element: $6; DataType: iedtUS; Description: 'Planar Configuration'; IsDeprecated: False),
|
|
(Group: $28; Element: $8; DataType: iedtIS; Description: 'Number of Frames'; IsDeprecated: False),
|
|
(Group: $28; Element: $9; DataType: iedtAT; Description: 'Frame Increment Pointer'; IsDeprecated: False),
|
|
(Group: $28; Element: $000a; DataType: iedtAT; Description: 'Frame Dimension Pointer'; IsDeprecated: False),
|
|
(Group: $28; Element: $10; DataType: iedtUS; Description: 'Rows'; IsDeprecated: False),
|
|
(Group: $28; Element: $11; DataType: iedtUS; Description: 'Columns'; IsDeprecated: False),
|
|
(Group: $28; Element: $12; DataType: iedtUS; Description: 'Planes'; IsDeprecated: True),
|
|
(Group: $28; Element: $14; DataType: iedtUS; Description: 'Ultrasound Color Data Present'; IsDeprecated: False),
|
|
(Group: $28; Element: $30; DataType: iedtDS; Description: 'Pixel Spacing'; IsDeprecated: False),
|
|
(Group: $28; Element: $31; DataType: iedtDS; Description: 'Zoom Factor'; IsDeprecated: False),
|
|
(Group: $28; Element: $32; DataType: iedtDS; Description: 'Zoom Center'; IsDeprecated: False),
|
|
(Group: $28; Element: $34; DataType: iedtIS; Description: 'Pixel Aspect Ratio'; IsDeprecated: False),
|
|
(Group: $28; Element: $40; DataType: iedtCS; Description: 'Image Format'; IsDeprecated: True),
|
|
(Group: $28; Element: $50; DataType: iedtLO; Description: 'Manipulated Image'; IsDeprecated: True),
|
|
(Group: $28; Element: $51; DataType: iedtCS; Description: 'Corrected Image'; IsDeprecated: False),
|
|
(Group: $28; Element: $005f; DataType: iedtLO; Description: 'Compression Recognition Code'; IsDeprecated: True),
|
|
(Group: $28; Element: $60; DataType: iedtCS; Description: 'Compression Code'; IsDeprecated: True),
|
|
(Group: $28; Element: $61; DataType: iedtSH; Description: 'Compression Originator'; IsDeprecated: True),
|
|
(Group: $28; Element: $62; DataType: iedtLO; Description: 'Compression Label'; IsDeprecated: True),
|
|
(Group: $28; Element: $63; DataType: iedtSH; Description: 'Compression Description'; IsDeprecated: True),
|
|
(Group: $28; Element: $65; DataType: iedtCS; Description: 'Compression Sequence'; IsDeprecated: True),
|
|
(Group: $28; Element: $66; DataType: iedtAT; Description: 'Compression Step Pointers'; IsDeprecated: True),
|
|
(Group: $28; Element: $68; DataType: iedtUS; Description: 'Repeat Interval'; IsDeprecated: True),
|
|
(Group: $28; Element: $69; DataType: iedtUS; Description: 'Bits Grouped'; IsDeprecated: True),
|
|
(Group: $28; Element: $70; DataType: iedtUS; Description: 'Perimeter Table'; IsDeprecated: True),
|
|
(Group: $28; Element: $71; DataType: iedtxs; Description: 'Perimeter Value'; IsDeprecated: True),
|
|
(Group: $28; Element: $80; DataType: iedtUS; Description: 'Predictor Rows'; IsDeprecated: True),
|
|
(Group: $28; Element: $81; DataType: iedtUS; Description: 'Predictor Columns'; IsDeprecated: True),
|
|
(Group: $28; Element: $82; DataType: iedtUS; Description: 'Predictor Constants'; IsDeprecated: True),
|
|
(Group: $28; Element: $90; DataType: iedtCS; Description: 'Blocked Pixels'; IsDeprecated: True),
|
|
(Group: $28; Element: $91; DataType: iedtUS; Description: 'Block Rows'; IsDeprecated: True),
|
|
(Group: $28; Element: $92; DataType: iedtUS; Description: 'Block Columns'; IsDeprecated: True),
|
|
(Group: $28; Element: $93; DataType: iedtUS; Description: 'Row Overlap'; IsDeprecated: True),
|
|
(Group: $28; Element: $94; DataType: iedtUS; Description: 'Column Overlap'; IsDeprecated: True),
|
|
(Group: $28; Element: $100; DataType: iedtUS; Description: 'Bits Allocated'; IsDeprecated: False),
|
|
(Group: $28; Element: $101; DataType: iedtUS; Description: 'Bits Stored'; IsDeprecated: False),
|
|
(Group: $28; Element: $102; DataType: iedtUS; Description: 'High Bit'; IsDeprecated: False),
|
|
(Group: $28; Element: $103; DataType: iedtUS; Description: 'Pixel Representation'; IsDeprecated: False),
|
|
(Group: $28; Element: $104; DataType: iedtxs; Description: 'Smallest Valid Pixel Value'; IsDeprecated: True),
|
|
(Group: $28; Element: $105; DataType: iedtxs; Description: 'Largest Valid Pixel Value'; IsDeprecated: True),
|
|
(Group: $28; Element: $106; DataType: iedtxs; Description: 'Smallest Image Pixel Value'; IsDeprecated: False),
|
|
(Group: $28; Element: $107; DataType: iedtxs; Description: 'Largest Image Pixel Value'; IsDeprecated: False),
|
|
(Group: $28; Element: $108; DataType: iedtxs; Description: 'Smallest Pixel Value in Series'; IsDeprecated: False),
|
|
(Group: $28; Element: $109; DataType: iedtxs; Description: 'Largest Pixel Value in Series'; IsDeprecated: False),
|
|
(Group: $28; Element: $110; DataType: iedtxs; Description: 'Smallest Image Pixel Value in Plane'; IsDeprecated: True),
|
|
(Group: $28; Element: $111; DataType: iedtxs; Description: 'Largest Image Pixel Value in Plane'; IsDeprecated: True),
|
|
(Group: $28; Element: $120; DataType: iedtxs; Description: 'Pixel Padding Value'; IsDeprecated: False),
|
|
(Group: $28; Element: $121; DataType: iedtxs; Description: 'Pixel Padding Range Limit'; IsDeprecated: False),
|
|
(Group: $28; Element: $200; DataType: iedtUS; Description: 'Image Location'; IsDeprecated: True),
|
|
(Group: $28; Element: $300; DataType: iedtCS; Description: 'Quality Control Image'; IsDeprecated: False),
|
|
(Group: $28; Element: $301; DataType: iedtCS; Description: 'Burned In Annotation'; IsDeprecated: False),
|
|
(Group: $28; Element: $400; DataType: iedtLO; Description: 'Transform Label'; IsDeprecated: True),
|
|
(Group: $28; Element: $401; DataType: iedtLO; Description: 'Transform Version Number'; IsDeprecated: True),
|
|
(Group: $28; Element: $402; DataType: iedtUS; Description: 'Number of Transform Steps'; IsDeprecated: True),
|
|
(Group: $28; Element: $403; DataType: iedtLO; Description: 'Sequence of Compressed Data'; IsDeprecated: True),
|
|
(Group: $28; Element: $404; DataType: iedtAT; Description: 'Details of Coefficients'; IsDeprecated: True),
|
|
(Group: $28; Element: $700; DataType: iedtLO; Description: 'DCT Label'; IsDeprecated: True),
|
|
(Group: $28; Element: $701; DataType: iedtCS; Description: 'Data Block Description'; IsDeprecated: True),
|
|
(Group: $28; Element: $702; DataType: iedtAT; Description: 'Data Block'; IsDeprecated: True),
|
|
(Group: $28; Element: $710; DataType: iedtUS; Description: 'Normalization Factor Format'; IsDeprecated: True),
|
|
(Group: $28; Element: $720; DataType: iedtUS; Description: 'Zonal Map Number Format'; IsDeprecated: True),
|
|
(Group: $28; Element: $721; DataType: iedtAT; Description: 'Zonal Map Location'; IsDeprecated: True),
|
|
(Group: $28; Element: $722; DataType: iedtUS; Description: 'Zonal Map Format'; IsDeprecated: True),
|
|
(Group: $28; Element: $730; DataType: iedtUS; Description: 'Adaptive Map Format'; IsDeprecated: True),
|
|
(Group: $28; Element: $740; DataType: iedtUS; Description: 'Code Number Format'; IsDeprecated: True),
|
|
(Group: $28; Element: $0800; DataType: iedtCS; Description: 'Code Label'; IsDeprecated: True),
|
|
(Group: $28; Element: $0802; DataType: iedtUS; Description: 'Number of Table'; IsDeprecated: True),
|
|
(Group: $28; Element: $0803; DataType: iedtAT; Description: 'Code Table Location'; IsDeprecated: True),
|
|
(Group: $28; Element: $0804; DataType: iedtUS; Description: 'Bits For Code Word'; IsDeprecated: True),
|
|
(Group: $28; Element: $0808; DataType: iedtAT; Description: 'Image Data Location'; IsDeprecated: True),
|
|
(Group: $28; Element: $0a02; DataType: iedtCS; Description: 'Pixel Spacing Calibration Type'; IsDeprecated: False),
|
|
(Group: $28; Element: $0a04; DataType: iedtLO; Description: 'Pixel Spacing Calibration Description'; IsDeprecated: False),
|
|
(Group: $28; Element: $1040; DataType: iedtCS; Description: 'Pixel Intensity Relationship'; IsDeprecated: False),
|
|
(Group: $28; Element: $1041; DataType: iedtSS; Description: 'Pixel Intensity Relationship Sign'; IsDeprecated: False),
|
|
(Group: $28; Element: $1050; DataType: iedtDS; Description: 'Window Center'; IsDeprecated: False),
|
|
(Group: $28; Element: $1051; DataType: iedtDS; Description: 'Window Width'; IsDeprecated: False),
|
|
(Group: $28; Element: $1052; DataType: iedtDS; Description: 'Rescale Intercept'; IsDeprecated: False),
|
|
(Group: $28; Element: $1053; DataType: iedtDS; Description: 'Rescale Slope'; IsDeprecated: False),
|
|
(Group: $28; Element: $1054; DataType: iedtLO; Description: 'Rescale Type'; IsDeprecated: False),
|
|
(Group: $28; Element: $1055; DataType: iedtLO; Description: 'Window Center & Width Explanation'; IsDeprecated: False),
|
|
(Group: $28; Element: $1056; DataType: iedtCS; Description: 'VOI LUT Function'; IsDeprecated: False),
|
|
(Group: $28; Element: $1080; DataType: iedtCS; Description: 'Gray Scale'; IsDeprecated: True),
|
|
(Group: $28; Element: $1090; DataType: iedtCS; Description: 'Recommended Viewing Mode'; IsDeprecated: False),
|
|
(Group: $28; Element: $1100; DataType: iedtxs; Description: 'Gray Lookup Table Descriptor'; IsDeprecated: True),
|
|
(Group: $28; Element: $1101; DataType: iedtxs; Description: 'Red Palette Color Lookup Table Descriptor'; IsDeprecated: False),
|
|
(Group: $28; Element: $1102; DataType: iedtxs; Description: 'Green Palette Color Lookup Table Descriptor'; IsDeprecated: False),
|
|
(Group: $28; Element: $1103; DataType: iedtxs; Description: 'Blue Palette Color Lookup Table Descriptor'; IsDeprecated: False),
|
|
(Group: $28; Element: $1111; DataType: iedtxs; Description: 'Large Red Palette Color Lookup Table Descriptor'; IsDeprecated: True),
|
|
(Group: $28; Element: $1112; DataType: iedtxs; Description: 'Large Green Palette Color Lookup Table Descriptor'; IsDeprecated: True),
|
|
(Group: $28; Element: $1113; DataType: iedtxs; Description: 'Large Blue Palette Color Lookup Table Descriptor'; IsDeprecated: True),
|
|
(Group: $28; Element: $1199; DataType: iedtUI; Description: 'Palette Color Lookup Table UID'; IsDeprecated: False),
|
|
(Group: $28; Element: $1200; DataType: iedtxs; Description: 'Gray Lookup Table Data'; IsDeprecated: True),
|
|
(Group: $28; Element: $1201; DataType: iedtOW; Description: 'Red Palette Color Lookup Table Data'; IsDeprecated: False),
|
|
(Group: $28; Element: $1202; DataType: iedtOW; Description: 'Green Palette Color Lookup Table Data'; IsDeprecated: False),
|
|
(Group: $28; Element: $1203; DataType: iedtOW; Description: 'Blue Palette Color Lookup Table Data'; IsDeprecated: False),
|
|
(Group: $28; Element: $1211; DataType: iedtOW; Description: 'Large Red Palette Color Lookup Table Data'; IsDeprecated: True),
|
|
(Group: $28; Element: $1212; DataType: iedtOW; Description: 'Large Green Palette Color Lookup Table Data'; IsDeprecated: True),
|
|
(Group: $28; Element: $1213; DataType: iedtOW; Description: 'Large Blue Palette Color Lookup Table Data'; IsDeprecated: True),
|
|
(Group: $28; Element: $1214; DataType: iedtUI; Description: 'Large Palette Color Lookup Table UID'; IsDeprecated: True),
|
|
(Group: $28; Element: $1221; DataType: iedtOW; Description: 'Segmented Red Palette Color Lookup Table Data'; IsDeprecated: False),
|
|
(Group: $28; Element: $1222; DataType: iedtOW; Description: 'Segmented Green Palette Color Lookup Table Data'; IsDeprecated: False),
|
|
(Group: $28; Element: $1223; DataType: iedtOW; Description: 'Segmented Blue Palette Color Lookup Table Data'; IsDeprecated: False),
|
|
(Group: $28; Element: $1300; DataType: iedtCS; Description: 'Implant Present'; IsDeprecated: False),
|
|
(Group: $28; Element: $1350; DataType: iedtCS; Description: 'Partial View'; IsDeprecated: False),
|
|
(Group: $28; Element: $1351; DataType: iedtST; Description: 'Partial View Description'; IsDeprecated: False),
|
|
(Group: $28; Element: $1352; DataType: iedtSQ; Description: 'Partial View Code Sequence'; IsDeprecated: False),
|
|
(Group: $28; Element: $135a; DataType: iedtCS; Description: 'Spatial Locations Preserved'; IsDeprecated: False),
|
|
(Group: $28; Element: $2000; DataType: iedtOB; Description: 'ICC Profile'; IsDeprecated: False),
|
|
(Group: $28; Element: $2110; DataType: iedtCS; Description: 'Lossy Image Compression'; IsDeprecated: False),
|
|
(Group: $28; Element: $2112; DataType: iedtDS; Description: 'Lossy Image Compression Ratio'; IsDeprecated: False),
|
|
(Group: $28; Element: $2114; DataType: iedtCS; Description: 'Lossy Image Compression Method'; IsDeprecated: False),
|
|
(Group: $28; Element: $3000; DataType: iedtSQ; Description: 'Modality LUT Sequence'; IsDeprecated: False),
|
|
(Group: $28; Element: $3002; DataType: iedtxs; Description: 'LUT Descriptor'; IsDeprecated: False),
|
|
(Group: $28; Element: $3003; DataType: iedtLO; Description: 'LUT Explanation'; IsDeprecated: False),
|
|
(Group: $28; Element: $3004; DataType: iedtLO; Description: 'Modality LUT Type'; IsDeprecated: False),
|
|
(Group: $28; Element: $3006; DataType: iedtxs; Description: 'LUT Data'; IsDeprecated: False),
|
|
(Group: $28; Element: $3010; DataType: iedtSQ; Description: 'VOI LUT Sequence'; IsDeprecated: False),
|
|
(Group: $28; Element: $3110; DataType: iedtSQ; Description: 'Softcopy VOI LUT Sequence'; IsDeprecated: False),
|
|
(Group: $28; Element: $4000; DataType: iedtLT; Description: 'Image Presentation Comments'; IsDeprecated: True),
|
|
(Group: $28; Element: $5000; DataType: iedtSQ; Description: 'Bi-Plane Acquisition Sequence'; IsDeprecated: True),
|
|
(Group: $28; Element: $6010; DataType: iedtUS; Description: 'Representative Frame Number'; IsDeprecated: False),
|
|
(Group: $28; Element: $6020; DataType: iedtUS; Description: 'Frame Numbers of Interest (FOI)'; IsDeprecated: False),
|
|
(Group: $28; Element: $6022; DataType: iedtLO; Description: 'Frame(s) of Interest Description'; IsDeprecated: False),
|
|
(Group: $28; Element: $6023; DataType: iedtCS; Description: 'Frame of Interest Type'; IsDeprecated: False),
|
|
(Group: $28; Element: $6030; DataType: iedtUS; Description: 'Mask Pointer(s)'; IsDeprecated: True),
|
|
(Group: $28; Element: $6040; DataType: iedtUS; Description: 'R Wave Pointer'; IsDeprecated: False),
|
|
(Group: $28; Element: $6100; DataType: iedtSQ; Description: 'Mask Subtraction Sequence'; IsDeprecated: False),
|
|
(Group: $28; Element: $6101; DataType: iedtCS; Description: 'Mask Operation'; IsDeprecated: False),
|
|
(Group: $28; Element: $6102; DataType: iedtUS; Description: 'Applicable Frame Range'; IsDeprecated: False),
|
|
(Group: $28; Element: $6110; DataType: iedtUS; Description: 'Mask Frame Numbers'; IsDeprecated: False),
|
|
(Group: $28; Element: $6112; DataType: iedtUS; Description: 'Contrast Frame Averaging'; IsDeprecated: False),
|
|
(Group: $28; Element: $6114; DataType: iedtFL; Description: 'Mask Sub-pixel Shift'; IsDeprecated: False),
|
|
(Group: $28; Element: $6120; DataType: iedtSS; Description: 'TID Offset'; IsDeprecated: False),
|
|
(Group: $28; Element: $6190; DataType: iedtST; Description: 'Mask Operation Explanation'; IsDeprecated: False),
|
|
(Group: $28; Element: $7fe0; DataType: iedtUT; Description: 'Pixel Data Provider URL'; IsDeprecated: False),
|
|
(Group: $28; Element: $9001; DataType: iedtUL; Description: 'Data Point Rows'; IsDeprecated: False),
|
|
(Group: $28; Element: $9002; DataType: iedtUL; Description: 'Data Point Columns'; IsDeprecated: False),
|
|
(Group: $28; Element: $9003; DataType: iedtCS; Description: 'Signal Domain Columns'; IsDeprecated: False),
|
|
(Group: $28; Element: $9099; DataType: iedtUS; Description: 'Largest Monochrome Pixel Value'; IsDeprecated: True),
|
|
(Group: $28; Element: $9108; DataType: iedtCS; Description: 'Data Representation'; IsDeprecated: False),
|
|
(Group: $28; Element: $9110; DataType: iedtSQ; Description: 'Pixel Measures Sequence'; IsDeprecated: False),
|
|
(Group: $28; Element: $9132; DataType: iedtSQ; Description: 'Frame VOI LUT Sequence'; IsDeprecated: False),
|
|
(Group: $28; Element: $9145; DataType: iedtSQ; Description: 'Pixel Value Transformation Sequence'; IsDeprecated: False),
|
|
(Group: $28; Element: $9235; DataType: iedtCS; Description: 'Signal Domain Rows'; IsDeprecated: False),
|
|
(Group: $28; Element: $9411; DataType: iedtFL; Description: 'Display Filter Percentage'; IsDeprecated: False),
|
|
(Group: $28; Element: $9415; DataType: iedtSQ; Description: 'Frame Pixel Shift Sequence'; IsDeprecated: False),
|
|
(Group: $28; Element: $9416; DataType: iedtUS; Description: 'Subtraction Item ID'; IsDeprecated: False),
|
|
(Group: $28; Element: $9422; DataType: iedtSQ; Description: 'Pixel Intensity Relationship LUT Sequence'; IsDeprecated: False),
|
|
(Group: $28; Element: $9443; DataType: iedtSQ; Description: 'Frame Pixel Data Properties Sequence'; IsDeprecated: False),
|
|
(Group: $28; Element: $9444; DataType: iedtCS; Description: 'Geometrical Properties'; IsDeprecated: False),
|
|
(Group: $28; Element: $9445; DataType: iedtFL; Description: 'Geometric Maximum Distortion'; IsDeprecated: False),
|
|
(Group: $28; Element: $9446; DataType: iedtCS; Description: 'Image Processing Applied'; IsDeprecated: False),
|
|
(Group: $28; Element: $9454; DataType: iedtCS; Description: 'Mask Selection Mode'; IsDeprecated: False),
|
|
(Group: $28; Element: $9474; DataType: iedtCS; Description: 'LUT Function'; IsDeprecated: False),
|
|
(Group: $28; Element: $9520; DataType: iedtDS; Description: 'Image to Equipment Mapping Matrix'; IsDeprecated: False),
|
|
(Group: $28; Element: $9537; DataType: iedtCS; Description: 'Equipment Coordinate System Identification'; IsDeprecated: False),
|
|
(Group: $32; Element: $000a; DataType: iedtCS; Description: 'Study Status ID'; IsDeprecated: True),
|
|
(Group: $32; Element: $000c; DataType: iedtCS; Description: 'Study Priority ID'; IsDeprecated: True),
|
|
(Group: $32; Element: $12; DataType: iedtLO; Description: 'Study ID Issuer'; IsDeprecated: True),
|
|
(Group: $32; Element: $32; DataType: iedtDA; Description: 'Study Verified Date'; IsDeprecated: True),
|
|
(Group: $32; Element: $33; DataType: iedtTM; Description: 'Study Verified Time'; IsDeprecated: True),
|
|
(Group: $32; Element: $34; DataType: iedtDA; Description: 'Study Read Date'; IsDeprecated: True),
|
|
(Group: $32; Element: $35; DataType: iedtTM; Description: 'Study Read Time'; IsDeprecated: True),
|
|
(Group: $32; Element: $1000; DataType: iedtDA; Description: 'Scheduled Study Start Date'; IsDeprecated: True),
|
|
(Group: $32; Element: $1001; DataType: iedtTM; Description: 'Scheduled Study Start Time'; IsDeprecated: True),
|
|
(Group: $32; Element: $1010; DataType: iedtDA; Description: 'Scheduled Study Stop Date'; IsDeprecated: True),
|
|
(Group: $32; Element: $1011; DataType: iedtTM; Description: 'Scheduled Study Stop Time'; IsDeprecated: True),
|
|
(Group: $32; Element: $1020; DataType: iedtLO; Description: 'Scheduled Study Location'; IsDeprecated: True),
|
|
(Group: $32; Element: $1021; DataType: iedtAE; Description: 'Scheduled Study Location AE Title'; IsDeprecated: True),
|
|
(Group: $32; Element: $1030; DataType: iedtLO; Description: 'Reason for Study'; IsDeprecated: True),
|
|
(Group: $32; Element: $1031; DataType: iedtSQ; Description: 'Requesting Physician Identification Sequence'; IsDeprecated: False),
|
|
(Group: $32; Element: $1032; DataType: iedtPN; Description: 'Requesting Physician'; IsDeprecated: False),
|
|
(Group: $32; Element: $1033; DataType: iedtLO; Description: 'Requesting Service'; IsDeprecated: False),
|
|
(Group: $32; Element: $1040; DataType: iedtDA; Description: 'Study Arrival Date'; IsDeprecated: True),
|
|
(Group: $32; Element: $1041; DataType: iedtTM; Description: 'Study Arrival Time'; IsDeprecated: True),
|
|
(Group: $32; Element: $1050; DataType: iedtDA; Description: 'Study Completion Date'; IsDeprecated: True),
|
|
(Group: $32; Element: $1051; DataType: iedtTM; Description: 'Study Completion Time'; IsDeprecated: True),
|
|
(Group: $32; Element: $1055; DataType: iedtCS; Description: 'Study Component Status ID'; IsDeprecated: True),
|
|
(Group: $32; Element: $1060; DataType: iedtLO; Description: 'Requested Procedure Description'; IsDeprecated: False),
|
|
(Group: $32; Element: $1064; DataType: iedtSQ; Description: 'Requested Procedure Code Sequence'; IsDeprecated: False),
|
|
(Group: $32; Element: $1070; DataType: iedtLO; Description: 'Requested Contrast Agent'; IsDeprecated: False),
|
|
(Group: $32; Element: $4000; DataType: iedtLT; Description: 'Study Comments'; IsDeprecated: True),
|
|
(Group: $38; Element: $4; DataType: iedtSQ; Description: 'Referenced Patient Alias Sequence'; IsDeprecated: False),
|
|
(Group: $38; Element: $8; DataType: iedtCS; Description: 'Visit Status ID'; IsDeprecated: False),
|
|
(Group: $38; Element: $10; DataType: iedtLO; Description: 'Admission ID'; IsDeprecated: False),
|
|
(Group: $38; Element: $11; DataType: iedtLO; Description: 'Issuer of Admission ID'; IsDeprecated: False),
|
|
(Group: $38; Element: $16; DataType: iedtLO; Description: 'Route of Admissions'; IsDeprecated: False),
|
|
(Group: $38; Element: $001a; DataType: iedtDA; Description: 'Scheduled Admission Date'; IsDeprecated: True),
|
|
(Group: $38; Element: $001b; DataType: iedtTM; Description: 'Scheduled Admission Time'; IsDeprecated: True),
|
|
(Group: $38; Element: $001c; DataType: iedtDA; Description: 'Scheduled Discharge Date'; IsDeprecated: True),
|
|
(Group: $38; Element: $001d; DataType: iedtTM; Description: 'Scheduled Discharge Time'; IsDeprecated: True),
|
|
(Group: $38; Element: $001e; DataType: iedtLO; Description: 'Scheduled Patient Institution Residence'; IsDeprecated: True),
|
|
(Group: $38; Element: $20; DataType: iedtDA; Description: 'Admitting Date'; IsDeprecated: False),
|
|
(Group: $38; Element: $21; DataType: iedtTM; Description: 'Admitting Time'; IsDeprecated: False),
|
|
(Group: $38; Element: $30; DataType: iedtDA; Description: 'Discharge Date'; IsDeprecated: True),
|
|
(Group: $38; Element: $32; DataType: iedtTM; Description: 'Discharge Time'; IsDeprecated: True),
|
|
(Group: $38; Element: $40; DataType: iedtLO; Description: 'Discharge Diagnosis Description'; IsDeprecated: True),
|
|
(Group: $38; Element: $44; DataType: iedtSQ; Description: 'Discharge Diagnosis Code Sequence'; IsDeprecated: True),
|
|
(Group: $38; Element: $50; DataType: iedtLO; Description: 'Special Needs'; IsDeprecated: False),
|
|
(Group: $38; Element: $60; DataType: iedtLO; Description: 'Service Episode ID'; IsDeprecated: False),
|
|
(Group: $38; Element: $61; DataType: iedtLO; Description: 'Issuer of Service Episode ID'; IsDeprecated: False),
|
|
(Group: $38; Element: $62; DataType: iedtLO; Description: 'Service Episode Description'; IsDeprecated: False),
|
|
(Group: $38; Element: $100; DataType: iedtSQ; Description: 'Pertinent Documents Sequence'; IsDeprecated: False),
|
|
(Group: $38; Element: $300; DataType: iedtLO; Description: 'Current Patient Location'; IsDeprecated: False),
|
|
(Group: $38; Element: $400; DataType: iedtLO; Description: 'Patient''s Institution Residence'; IsDeprecated: False),
|
|
(Group: $38; Element: $500; DataType: iedtLO; Description: 'Patient State'; IsDeprecated: False),
|
|
(Group: $38; Element: $502; DataType: iedtSQ; Description: 'Patient Clinical Trial Participation Sequence'; IsDeprecated: False),
|
|
(Group: $38; Element: $4000; DataType: iedtLT; Description: 'Visit Comments'; IsDeprecated: False),
|
|
(Group: $003a; Element: $4; DataType: iedtCS; Description: 'Waveform Originality'; IsDeprecated: False),
|
|
(Group: $003a; Element: $5; DataType: iedtUS; Description: 'Number of Waveform Channels'; IsDeprecated: False),
|
|
(Group: $003a; Element: $10; DataType: iedtUL; Description: 'Number of Waveform Samples'; IsDeprecated: False),
|
|
(Group: $003a; Element: $001a; DataType: iedtDS; Description: 'Sampling Frequency'; IsDeprecated: False),
|
|
(Group: $003a; Element: $20; DataType: iedtSH; Description: 'Multiplex Group Label'; IsDeprecated: False),
|
|
(Group: $003a; Element: $200; DataType: iedtSQ; Description: 'Channel Definition Sequence'; IsDeprecated: False),
|
|
(Group: $003a; Element: $202; DataType: iedtIS; Description: 'Waveform Channel Number'; IsDeprecated: False),
|
|
(Group: $003a; Element: $203; DataType: iedtSH; Description: 'Channel Label'; IsDeprecated: False),
|
|
(Group: $003a; Element: $205; DataType: iedtCS; Description: 'Channel Status'; IsDeprecated: False),
|
|
(Group: $003a; Element: $208; DataType: iedtSQ; Description: 'Channel Source Sequence'; IsDeprecated: False),
|
|
(Group: $003a; Element: $209; DataType: iedtSQ; Description: 'Channel Source Modifiers Sequence'; IsDeprecated: False),
|
|
(Group: $003a; Element: $020a; DataType: iedtSQ; Description: 'Source Waveform Sequence'; IsDeprecated: False),
|
|
(Group: $003a; Element: $020c; DataType: iedtLO; Description: 'Channel Derivation Description'; IsDeprecated: False),
|
|
(Group: $003a; Element: $210; DataType: iedtDS; Description: 'Channel Sensitivity'; IsDeprecated: False),
|
|
(Group: $003a; Element: $211; DataType: iedtSQ; Description: 'Channel Sensitivity Units Sequence'; IsDeprecated: False),
|
|
(Group: $003a; Element: $212; DataType: iedtDS; Description: 'Channel Sensitivity Correction Factor'; IsDeprecated: False),
|
|
(Group: $003a; Element: $213; DataType: iedtDS; Description: 'Channel Baseline'; IsDeprecated: False),
|
|
(Group: $003a; Element: $214; DataType: iedtDS; Description: 'Channel Time Skew'; IsDeprecated: False),
|
|
(Group: $003a; Element: $215; DataType: iedtDS; Description: 'Channel Sample Skew'; IsDeprecated: False),
|
|
(Group: $003a; Element: $218; DataType: iedtDS; Description: 'Channel Offset'; IsDeprecated: False),
|
|
(Group: $003a; Element: $021a; DataType: iedtUS; Description: 'Waveform Bits Stored'; IsDeprecated: False),
|
|
(Group: $003a; Element: $220; DataType: iedtDS; Description: 'Filter Low Frequency'; IsDeprecated: False),
|
|
(Group: $003a; Element: $221; DataType: iedtDS; Description: 'Filter High Frequency'; IsDeprecated: False),
|
|
(Group: $003a; Element: $222; DataType: iedtDS; Description: 'Notch Filter Frequency'; IsDeprecated: False),
|
|
(Group: $003a; Element: $223; DataType: iedtDS; Description: 'Notch Filter Bandwidth'; IsDeprecated: False),
|
|
(Group: $003a; Element: $230; DataType: iedtFL; Description: 'Waveform Data Display Scale'; IsDeprecated: False),
|
|
(Group: $003a; Element: $231; DataType: iedtUS; Description: 'Waveform Display Background CIELab Value'; IsDeprecated: False),
|
|
(Group: $003a; Element: $240; DataType: iedtSQ; Description: 'Waveform Presentation Group Sequence'; IsDeprecated: False),
|
|
(Group: $003a; Element: $241; DataType: iedtUS; Description: 'Presentation Group Number'; IsDeprecated: False),
|
|
(Group: $003a; Element: $242; DataType: iedtSQ; Description: 'Channel Display Sequence'; IsDeprecated: False),
|
|
(Group: $003a; Element: $244; DataType: iedtUS; Description: 'Channel Recommended Display CIELab Value'; IsDeprecated: False),
|
|
(Group: $003a; Element: $245; DataType: iedtFL; Description: 'Channel Position'; IsDeprecated: False),
|
|
(Group: $003a; Element: $246; DataType: iedtCS; Description: 'Display Shading Flag'; IsDeprecated: False),
|
|
(Group: $003a; Element: $247; DataType: iedtFL; Description: 'Fractional Channel Display Scale'; IsDeprecated: False),
|
|
(Group: $003a; Element: $248; DataType: iedtFL; Description: 'Absolute Channel Display Scale'; IsDeprecated: False),
|
|
(Group: $003a; Element: $300; DataType: iedtSQ; Description: 'Multiplexed Audio Channels Description Code Sequence'; IsDeprecated: False),
|
|
(Group: $003a; Element: $301; DataType: iedtIS; Description: 'Channel Identification Code'; IsDeprecated: False),
|
|
(Group: $003a; Element: $302; DataType: iedtCS; Description: 'Channel Mode'; IsDeprecated: False),
|
|
(Group: $40; Element: $1; DataType: iedtAE; Description: 'Scheduled Station AE Title'; IsDeprecated: False),
|
|
(Group: $40; Element: $2; DataType: iedtDA; Description: 'Scheduled Procedure Step Start Date'; IsDeprecated: False),
|
|
(Group: $40; Element: $3; DataType: iedtTM; Description: 'Scheduled Procedure Step Start Time'; IsDeprecated: False),
|
|
(Group: $40; Element: $4; DataType: iedtDA; Description: 'Scheduled Procedure Step End Date'; IsDeprecated: False),
|
|
(Group: $40; Element: $5; DataType: iedtTM; Description: 'Scheduled Procedure Step End Time'; IsDeprecated: False),
|
|
(Group: $40; Element: $6; DataType: iedtPN; Description: 'Scheduled Performing Physician''s Name'; IsDeprecated: False),
|
|
(Group: $40; Element: $7; DataType: iedtLO; Description: 'Scheduled Procedure Step Description'; IsDeprecated: False),
|
|
(Group: $40; Element: $8; DataType: iedtSQ; Description: 'Scheduled Protocol Code Sequence'; IsDeprecated: False),
|
|
(Group: $40; Element: $9; DataType: iedtSH; Description: 'Scheduled Procedure Step ID'; IsDeprecated: False),
|
|
(Group: $40; Element: $000a; DataType: iedtSQ; Description: 'Stage Code Sequence'; IsDeprecated: False),
|
|
(Group: $40; Element: $000b; DataType: iedtSQ; Description: 'Scheduled Performing Physician Identification Sequence'; IsDeprecated: False),
|
|
(Group: $40; Element: $10; DataType: iedtSH; Description: 'Scheduled Station Name'; IsDeprecated: False),
|
|
(Group: $40; Element: $11; DataType: iedtSH; Description: 'Scheduled Procedure Step Location'; IsDeprecated: False),
|
|
(Group: $40; Element: $12; DataType: iedtLO; Description: 'Pre-Medication'; IsDeprecated: False),
|
|
(Group: $40; Element: $20; DataType: iedtCS; Description: 'Scheduled Procedure Step Status'; IsDeprecated: False),
|
|
(Group: $40; Element: $100; DataType: iedtSQ; Description: 'Scheduled Procedure Step Sequence'; IsDeprecated: False),
|
|
(Group: $40; Element: $220; DataType: iedtSQ; Description: 'Referenced Non-Image Composite SOP Instance Sequence'; IsDeprecated: False),
|
|
(Group: $40; Element: $241; DataType: iedtAE; Description: 'Performed Station AE Title'; IsDeprecated: False),
|
|
(Group: $40; Element: $242; DataType: iedtSH; Description: 'Performed Station Name'; IsDeprecated: False),
|
|
(Group: $40; Element: $243; DataType: iedtSH; Description: 'Performed Location'; IsDeprecated: False),
|
|
(Group: $40; Element: $244; DataType: iedtDA; Description: 'Performed Procedure Step Start Date'; IsDeprecated: False),
|
|
(Group: $40; Element: $245; DataType: iedtTM; Description: 'Performed Procedure Step Start Time'; IsDeprecated: False),
|
|
(Group: $40; Element: $250; DataType: iedtDA; Description: 'Performed Procedure Step End Date'; IsDeprecated: False),
|
|
(Group: $40; Element: $251; DataType: iedtTM; Description: 'Performed Procedure Step End Time'; IsDeprecated: False),
|
|
(Group: $40; Element: $252; DataType: iedtCS; Description: 'Performed Procedure Step Status'; IsDeprecated: False),
|
|
(Group: $40; Element: $253; DataType: iedtSH; Description: 'Performed Procedure Step ID'; IsDeprecated: False),
|
|
(Group: $40; Element: $254; DataType: iedtLO; Description: 'Performed Procedure Step Description'; IsDeprecated: False),
|
|
(Group: $40; Element: $255; DataType: iedtLO; Description: 'Performed Procedure Type Description'; IsDeprecated: False),
|
|
(Group: $40; Element: $260; DataType: iedtSQ; Description: 'Performed Protocol Code Sequence'; IsDeprecated: False),
|
|
(Group: $40; Element: $270; DataType: iedtSQ; Description: 'Scheduled Step Attributes Sequence'; IsDeprecated: False),
|
|
(Group: $40; Element: $275; DataType: iedtSQ; Description: 'Request Attributes Sequence'; IsDeprecated: False),
|
|
(Group: $40; Element: $280; DataType: iedtST; Description: 'Comments on the Performed Procedure Step'; IsDeprecated: False),
|
|
(Group: $40; Element: $281; DataType: iedtSQ; Description: 'Performed Procedure Step Discontinuation Reason Code Sequence'; IsDeprecated: False),
|
|
(Group: $40; Element: $293; DataType: iedtSQ; Description: 'Quantity Sequence'; IsDeprecated: False),
|
|
(Group: $40; Element: $294; DataType: iedtDS; Description: 'Quantity'; IsDeprecated: False),
|
|
(Group: $40; Element: $295; DataType: iedtSQ; Description: 'Measuring Units Sequence'; IsDeprecated: False),
|
|
(Group: $40; Element: $296; DataType: iedtSQ; Description: 'Billing Item Sequence'; IsDeprecated: False),
|
|
(Group: $40; Element: $300; DataType: iedtUS; Description: 'Total Time of Fluoroscopy'; IsDeprecated: False),
|
|
(Group: $40; Element: $301; DataType: iedtUS; Description: 'Total Number of Exposures'; IsDeprecated: False),
|
|
(Group: $40; Element: $302; DataType: iedtUS; Description: 'Entrance Dose'; IsDeprecated: False),
|
|
(Group: $40; Element: $303; DataType: iedtUS; Description: 'Exposed Area'; IsDeprecated: False),
|
|
(Group: $40; Element: $306; DataType: iedtDS; Description: 'Distance Source to Entrance'; IsDeprecated: False),
|
|
(Group: $40; Element: $307; DataType: iedtDS; Description: 'Distance Source to Support'; IsDeprecated: True),
|
|
(Group: $40; Element: $030e; DataType: iedtSQ; Description: 'Exposure Dose Sequence'; IsDeprecated: False),
|
|
(Group: $40; Element: $310; DataType: iedtST; Description: 'Comments on Radiation Dose'; IsDeprecated: False),
|
|
(Group: $40; Element: $312; DataType: iedtDS; Description: 'X-Ray Output'; IsDeprecated: False),
|
|
(Group: $40; Element: $314; DataType: iedtDS; Description: 'Half Value Layer'; IsDeprecated: False),
|
|
(Group: $40; Element: $316; DataType: iedtDS; Description: 'Organ Dose'; IsDeprecated: False),
|
|
(Group: $40; Element: $318; DataType: iedtCS; Description: 'Organ Exposed'; IsDeprecated: False),
|
|
(Group: $40; Element: $320; DataType: iedtSQ; Description: 'Billing Procedure Step Sequence'; IsDeprecated: False),
|
|
(Group: $40; Element: $321; DataType: iedtSQ; Description: 'Film Consumption Sequence'; IsDeprecated: False),
|
|
(Group: $40; Element: $324; DataType: iedtSQ; Description: 'Billing Supplies and Devices Sequence'; IsDeprecated: False),
|
|
(Group: $40; Element: $330; DataType: iedtSQ; Description: 'Referenced Procedure Step Sequence'; IsDeprecated: True),
|
|
(Group: $40; Element: $340; DataType: iedtSQ; Description: 'Performed Series Sequence'; IsDeprecated: False),
|
|
(Group: $40; Element: $400; DataType: iedtLT; Description: 'Comments on the Scheduled Procedure Step'; IsDeprecated: False),
|
|
(Group: $40; Element: $440; DataType: iedtSQ; Description: 'Protocol Context Sequence'; IsDeprecated: False),
|
|
(Group: $40; Element: $441; DataType: iedtSQ; Description: 'Content Item Modifier Sequence'; IsDeprecated: False),
|
|
(Group: $40; Element: $050a; DataType: iedtLO; Description: 'Specimen Accession Number'; IsDeprecated: False),
|
|
(Group: $40; Element: $550; DataType: iedtSQ; Description: 'Specimen Sequence'; IsDeprecated: False),
|
|
(Group: $40; Element: $551; DataType: iedtLO; Description: 'Specimen Identifier'; IsDeprecated: False),
|
|
(Group: $40; Element: $552; DataType: iedtSQ; Description: 'Specimen Description Sequence - Trial'; IsDeprecated: True),
|
|
(Group: $40; Element: $553; DataType: iedtST; Description: 'Specimen Description - Trial'; IsDeprecated: True),
|
|
(Group: $40; Element: $555; DataType: iedtSQ; Description: 'Acquisition Context Sequence'; IsDeprecated: False),
|
|
(Group: $40; Element: $556; DataType: iedtST; Description: 'Acquisition Context Description'; IsDeprecated: False),
|
|
(Group: $40; Element: $059a; DataType: iedtSQ; Description: 'Specimen Type Code Sequence'; IsDeprecated: False),
|
|
(Group: $40; Element: $06fa; DataType: iedtLO; Description: 'Slide Identifier'; IsDeprecated: False),
|
|
(Group: $40; Element: $071a; DataType: iedtSQ; Description: 'Image Center Point Coordinates Sequence'; IsDeprecated: False),
|
|
(Group: $40; Element: $072a; DataType: iedtDS; Description: 'X offset in Slide Coordinate System'; IsDeprecated: False),
|
|
(Group: $40; Element: $073a; DataType: iedtDS; Description: 'Y offset in Slide Coordinate System'; IsDeprecated: False),
|
|
(Group: $40; Element: $074a; DataType: iedtDS; Description: 'Z offset in Slide Coordinate System'; IsDeprecated: False),
|
|
(Group: $40; Element: $08d8; DataType: iedtSQ; Description: 'Pixel Spacing Sequence'; IsDeprecated: False),
|
|
(Group: $40; Element: $08da; DataType: iedtSQ; Description: 'Coordinate System Axis Code Sequence'; IsDeprecated: False),
|
|
(Group: $40; Element: $08ea; DataType: iedtSQ; Description: 'Measurement Units Code Sequence'; IsDeprecated: False),
|
|
(Group: $40; Element: $09f8; DataType: iedtSQ; Description: 'Vital Stain Code Sequence - Trial'; IsDeprecated: True),
|
|
(Group: $40; Element: $1001; DataType: iedtSH; Description: 'Requested Procedure ID'; IsDeprecated: False),
|
|
(Group: $40; Element: $1002; DataType: iedtLO; Description: 'Reason for the Requested Procedure'; IsDeprecated: False),
|
|
(Group: $40; Element: $1003; DataType: iedtSH; Description: 'Requested Procedure Priority'; IsDeprecated: False),
|
|
(Group: $40; Element: $1004; DataType: iedtLO; Description: 'Patient Transport Arrangements'; IsDeprecated: False),
|
|
(Group: $40; Element: $1005; DataType: iedtLO; Description: 'Requested Procedure Location'; IsDeprecated: False),
|
|
(Group: $40; Element: $1006; DataType: iedtSH; Description: 'Placer Order Number / Procedure'; IsDeprecated: True),
|
|
(Group: $40; Element: $1007; DataType: iedtSH; Description: 'Filler Order Number / Procedure'; IsDeprecated: True),
|
|
(Group: $40; Element: $1008; DataType: iedtLO; Description: 'Confidentiality Code'; IsDeprecated: False),
|
|
(Group: $40; Element: $1009; DataType: iedtSH; Description: 'Reporting Priority'; IsDeprecated: False),
|
|
(Group: $40; Element: $100a; DataType: iedtSQ; Description: 'Reason for Requested Procedure Code Sequence'; IsDeprecated: False),
|
|
(Group: $40; Element: $1010; DataType: iedtPN; Description: 'Names of Intended Recipients of Results'; IsDeprecated: False),
|
|
(Group: $40; Element: $1011; DataType: iedtSQ; Description: 'Intended Recipients of Results Identification Sequence'; IsDeprecated: False),
|
|
(Group: $40; Element: $1101; DataType: iedtSQ; Description: 'Person Identification Code Sequence'; IsDeprecated: False),
|
|
(Group: $40; Element: $1102; DataType: iedtST; Description: 'Person''s Address'; IsDeprecated: False),
|
|
(Group: $40; Element: $1103; DataType: iedtLO; Description: 'Person''s Telephone Numbers'; IsDeprecated: False),
|
|
(Group: $40; Element: $1400; DataType: iedtLT; Description: 'Requested Procedure Comments'; IsDeprecated: False),
|
|
(Group: $40; Element: $2001; DataType: iedtLO; Description: 'Reason for the Imaging Service Request'; IsDeprecated: True),
|
|
(Group: $40; Element: $2004; DataType: iedtDA; Description: 'Issue Date of Imaging Service Request'; IsDeprecated: False),
|
|
(Group: $40; Element: $2005; DataType: iedtTM; Description: 'Issue Time of Imaging Service Request'; IsDeprecated: False),
|
|
(Group: $40; Element: $2006; DataType: iedtSH; Description: 'Placer Order Number / Imaging Service Request (Retired)'; IsDeprecated: True),
|
|
(Group: $40; Element: $2007; DataType: iedtSH; Description: 'Filler Order Number / Imaging Service Request (Retired)'; IsDeprecated: True),
|
|
(Group: $40; Element: $2008; DataType: iedtPN; Description: 'Order Entered By'; IsDeprecated: False),
|
|
(Group: $40; Element: $2009; DataType: iedtSH; Description: 'Order Enterer''s Location'; IsDeprecated: False),
|
|
(Group: $40; Element: $2010; DataType: iedtSH; Description: 'Order Callback Phone Number'; IsDeprecated: False),
|
|
(Group: $40; Element: $2016; DataType: iedtLO; Description: 'Placer Order Number / Imaging Service Request'; IsDeprecated: False),
|
|
(Group: $40; Element: $2017; DataType: iedtLO; Description: 'Filler Order Number / Imaging Service Request'; IsDeprecated: False),
|
|
(Group: $40; Element: $2400; DataType: iedtLT; Description: 'Imaging Service Request Comments'; IsDeprecated: False),
|
|
(Group: $40; Element: $3001; DataType: iedtLO; Description: 'Confidentiality Constraint on Patient Data Description'; IsDeprecated: False),
|
|
(Group: $40; Element: $4001; DataType: iedtCS; Description: 'General Purpose Scheduled Procedure Step Status'; IsDeprecated: False),
|
|
(Group: $40; Element: $4002; DataType: iedtCS; Description: 'General Purpose Performed Procedure Step Status'; IsDeprecated: False),
|
|
(Group: $40; Element: $4003; DataType: iedtCS; Description: 'General Purpose Scheduled Procedure Step Priority'; IsDeprecated: False),
|
|
(Group: $40; Element: $4004; DataType: iedtSQ; Description: 'Scheduled Processing Applications Code Sequence'; IsDeprecated: False),
|
|
(Group: $40; Element: $4005; DataType: iedtDT; Description: 'Scheduled Procedure Step Start Date and Time'; IsDeprecated: False),
|
|
(Group: $40; Element: $4006; DataType: iedtCS; Description: 'Multiple Copies Flag'; IsDeprecated: False),
|
|
(Group: $40; Element: $4007; DataType: iedtSQ; Description: 'Performed Processing Applications Code Sequence'; IsDeprecated: False),
|
|
(Group: $40; Element: $4009; DataType: iedtSQ; Description: 'Human Performer Code Sequence'; IsDeprecated: False),
|
|
(Group: $40; Element: $4010; DataType: iedtDT; Description: 'Scheduled Procedure Step Modification Date and Time'; IsDeprecated: False),
|
|
(Group: $40; Element: $4011; DataType: iedtDT; Description: 'Expected Completion Date and Time'; IsDeprecated: False),
|
|
(Group: $40; Element: $4015; DataType: iedtSQ; Description: 'Resulting General Purpose Performed Procedure Steps Sequence'; IsDeprecated: False),
|
|
(Group: $40; Element: $4016; DataType: iedtSQ; Description: 'Referenced General Purpose Scheduled Procedure Step Sequence'; IsDeprecated: False),
|
|
(Group: $40; Element: $4018; DataType: iedtSQ; Description: 'Scheduled Workitem Code Sequence'; IsDeprecated: False),
|
|
(Group: $40; Element: $4019; DataType: iedtSQ; Description: 'Performed Workitem Code Sequence'; IsDeprecated: False),
|
|
(Group: $40; Element: $4020; DataType: iedtCS; Description: 'Input Availability Flag'; IsDeprecated: False),
|
|
(Group: $40; Element: $4021; DataType: iedtSQ; Description: 'Input Information Sequence'; IsDeprecated: False),
|
|
(Group: $40; Element: $4022; DataType: iedtSQ; Description: 'Relevant Information Sequence'; IsDeprecated: False),
|
|
(Group: $40; Element: $4023; DataType: iedtUI; Description: 'Referenced General Purpose Scheduled Procedure Step Transaction UID'; IsDeprecated: False),
|
|
(Group: $40; Element: $4025; DataType: iedtSQ; Description: 'Scheduled Station Name Code Sequence'; IsDeprecated: False),
|
|
(Group: $40; Element: $4026; DataType: iedtSQ; Description: 'Scheduled Station Class Code Sequence'; IsDeprecated: False),
|
|
(Group: $40; Element: $4027; DataType: iedtSQ; Description: 'Scheduled Station Geographic Location Code Sequence'; IsDeprecated: False),
|
|
(Group: $40; Element: $4028; DataType: iedtSQ; Description: 'Performed Station Name Code Sequence'; IsDeprecated: False),
|
|
(Group: $40; Element: $4029; DataType: iedtSQ; Description: 'Performed Station Class Code Sequence'; IsDeprecated: False),
|
|
(Group: $40; Element: $4030; DataType: iedtSQ; Description: 'Performed Station Geographic Location Code Sequence'; IsDeprecated: False),
|
|
(Group: $40; Element: $4031; DataType: iedtSQ; Description: 'Requested Subsequent Workitem Code Sequence'; IsDeprecated: False),
|
|
(Group: $40; Element: $4032; DataType: iedtSQ; Description: 'Non-DICOM Output Code Sequence'; IsDeprecated: False),
|
|
(Group: $40; Element: $4033; DataType: iedtSQ; Description: 'Output Information Sequence'; IsDeprecated: False),
|
|
(Group: $40; Element: $4034; DataType: iedtSQ; Description: 'Scheduled Human Performers Sequence'; IsDeprecated: False),
|
|
(Group: $40; Element: $4035; DataType: iedtSQ; Description: 'Actual Human Performers Sequence'; IsDeprecated: False),
|
|
(Group: $40; Element: $4036; DataType: iedtLO; Description: 'Human Performer''s Organization'; IsDeprecated: False),
|
|
(Group: $40; Element: $4037; DataType: iedtPN; Description: 'Human Performer''s Name'; IsDeprecated: False),
|
|
(Group: $40; Element: $8302; DataType: iedtDS; Description: 'Entrance Dose in mGy'; IsDeprecated: False),
|
|
(Group: $40; Element: $9094; DataType: iedtSQ; Description: 'Referenced Image Real World Value Mapping Sequence'; IsDeprecated: False),
|
|
(Group: $40; Element: $9096; DataType: iedtSQ; Description: 'Real World Value Mapping Sequence'; IsDeprecated: False),
|
|
(Group: $40; Element: $9098; DataType: iedtSQ; Description: 'Pixel Value Mapping Code Sequence'; IsDeprecated: False),
|
|
(Group: $40; Element: $9210; DataType: iedtSH; Description: 'LUT Label'; IsDeprecated: False),
|
|
(Group: $40; Element: $9211; DataType: iedtxs; Description: 'Real World Value Last Value Mapped'; IsDeprecated: False),
|
|
(Group: $40; Element: $9212; DataType: iedtFD; Description: 'Real World Value LUT Data'; IsDeprecated: False),
|
|
(Group: $40; Element: $9216; DataType: iedtxs; Description: 'Real World Value First Value Mapped'; IsDeprecated: False),
|
|
(Group: $40; Element: $9224; DataType: iedtFD; Description: 'Real World Value Intercept'; IsDeprecated: False),
|
|
(Group: $40; Element: $9225; DataType: iedtFD; Description: 'Real World Value Slope'; IsDeprecated: False),
|
|
(Group: $40; Element: $a010; DataType: iedtCS; Description: 'Relationship Type'; IsDeprecated: False),
|
|
(Group: $40; Element: $a027; DataType: iedtLO; Description: 'Verifying Organization'; IsDeprecated: False),
|
|
(Group: $40; Element: $a030; DataType: iedtDT; Description: 'Verification Date Time'; IsDeprecated: False),
|
|
(Group: $40; Element: $a032; DataType: iedtDT; Description: 'Observation Date Time'; IsDeprecated: False),
|
|
(Group: $40; Element: $a040; DataType: iedtCS; Description: 'Value Type'; IsDeprecated: False),
|
|
(Group: $40; Element: $a043; DataType: iedtSQ; Description: 'Concept Name Code Sequence'; IsDeprecated: False),
|
|
(Group: $40; Element: $a050; DataType: iedtCS; Description: 'Continuity Of Content'; IsDeprecated: False),
|
|
(Group: $40; Element: $a073; DataType: iedtSQ; Description: 'Verifying Observer Sequence'; IsDeprecated: False),
|
|
(Group: $40; Element: $a075; DataType: iedtPN; Description: 'Verifying Observer Name'; IsDeprecated: False),
|
|
(Group: $40; Element: $a078; DataType: iedtSQ; Description: 'Author Observer Sequence'; IsDeprecated: False),
|
|
(Group: $40; Element: $a07a; DataType: iedtSQ; Description: 'Participant Sequence'; IsDeprecated: False),
|
|
(Group: $40; Element: $a07c; DataType: iedtSQ; Description: 'Custodial Organization Sequence'; IsDeprecated: False),
|
|
(Group: $40; Element: $a080; DataType: iedtCS; Description: 'Participation Type'; IsDeprecated: False),
|
|
(Group: $40; Element: $a082; DataType: iedtDT; Description: 'Participation DateTime'; IsDeprecated: False),
|
|
(Group: $40; Element: $a084; DataType: iedtCS; Description: 'Observer Type'; IsDeprecated: False),
|
|
(Group: $40; Element: $a088; DataType: iedtSQ; Description: 'Verifying Observer Identification Code Sequence'; IsDeprecated: False),
|
|
(Group: $40; Element: $a090; DataType: iedtSQ; Description: 'Equivalent CDA Document Sequence'; IsDeprecated: True),
|
|
(Group: $40; Element: $a0b0; DataType: iedtUS; Description: 'Referenced Waveform Channels'; IsDeprecated: False),
|
|
(Group: $40; Element: $a120; DataType: iedtDT; Description: 'DateTime'; IsDeprecated: False),
|
|
(Group: $40; Element: $a121; DataType: iedtDA; Description: 'Date'; IsDeprecated: False),
|
|
(Group: $40; Element: $a122; DataType: iedtTM; Description: 'Time'; IsDeprecated: False),
|
|
(Group: $40; Element: $a123; DataType: iedtPN; Description: 'Person Name'; IsDeprecated: False),
|
|
(Group: $40; Element: $a124; DataType: iedtUI; Description: 'UID'; IsDeprecated: False),
|
|
(Group: $40; Element: $a130; DataType: iedtCS; Description: 'Temporal Range Type'; IsDeprecated: False),
|
|
(Group: $40; Element: $a132; DataType: iedtUL; Description: 'Referenced Sample Positions'; IsDeprecated: False),
|
|
(Group: $40; Element: $a136; DataType: iedtUS; Description: 'Referenced Frame Numbers'; IsDeprecated: False),
|
|
(Group: $40; Element: $a138; DataType: iedtDS; Description: 'Referenced Time Offsets'; IsDeprecated: False),
|
|
(Group: $40; Element: $a13a; DataType: iedtDT; Description: 'Referenced DateTime'; IsDeprecated: False),
|
|
(Group: $40; Element: $a160; DataType: iedtUT; Description: 'Text Value'; IsDeprecated: False),
|
|
(Group: $40; Element: $a168; DataType: iedtSQ; Description: 'Concept Code Sequence'; IsDeprecated: False),
|
|
(Group: $40; Element: $a170; DataType: iedtSQ; Description: 'Purpose of Reference Code Sequence'; IsDeprecated: False),
|
|
(Group: $40; Element: $a180; DataType: iedtUS; Description: 'Annotation Group Number'; IsDeprecated: False),
|
|
(Group: $40; Element: $a195; DataType: iedtSQ; Description: 'Modifier Code Sequence'; IsDeprecated: False),
|
|
(Group: $40; Element: $a300; DataType: iedtSQ; Description: 'Measured Value Sequence'; IsDeprecated: False),
|
|
(Group: $40; Element: $a301; DataType: iedtSQ; Description: 'Numeric Value Qualifier Code Sequence'; IsDeprecated: False),
|
|
(Group: $40; Element: $a30a; DataType: iedtDS; Description: 'Numeric Value'; IsDeprecated: False),
|
|
(Group: $40; Element: $a353; DataType: iedtST; Description: 'Address - Trial'; IsDeprecated: True),
|
|
(Group: $40; Element: $a354; DataType: iedtLO; Description: 'Telephone Number - Trial'; IsDeprecated: True),
|
|
(Group: $40; Element: $a360; DataType: iedtSQ; Description: 'Predecessor Documents Sequence'; IsDeprecated: False),
|
|
(Group: $40; Element: $a370; DataType: iedtSQ; Description: 'Referenced Request Sequence'; IsDeprecated: False),
|
|
(Group: $40; Element: $a372; DataType: iedtSQ; Description: 'Performed Procedure Code Sequence'; IsDeprecated: False),
|
|
(Group: $40; Element: $a375; DataType: iedtSQ; Description: 'Current Requested Procedure Evidence Sequence'; IsDeprecated: False),
|
|
(Group: $40; Element: $a385; DataType: iedtSQ; Description: 'Pertinent Other Evidence Sequence'; IsDeprecated: False),
|
|
(Group: $40; Element: $a390; DataType: iedtSQ; Description: 'HL7 Structured Document Reference Sequence'; IsDeprecated: False),
|
|
(Group: $40; Element: $a491; DataType: iedtCS; Description: 'Completion Flag'; IsDeprecated: False),
|
|
(Group: $40; Element: $a492; DataType: iedtLO; Description: 'Completion Flag Description'; IsDeprecated: False),
|
|
(Group: $40; Element: $a493; DataType: iedtCS; Description: 'Verification Flag'; IsDeprecated: False),
|
|
(Group: $40; Element: $a494; DataType: iedtCS; Description: 'Archive Requested'; IsDeprecated: False),
|
|
(Group: $40; Element: $a504; DataType: iedtSQ; Description: 'Content Template Sequence'; IsDeprecated: False),
|
|
(Group: $40; Element: $a525; DataType: iedtSQ; Description: 'Identical Documents Sequence'; IsDeprecated: False),
|
|
(Group: $40; Element: $a730; DataType: iedtSQ; Description: 'Content Sequence'; IsDeprecated: False),
|
|
(Group: $40; Element: $b020; DataType: iedtSQ; Description: 'Annotation Sequence'; IsDeprecated: False),
|
|
(Group: $40; Element: $db00; DataType: iedtCS; Description: 'Template Identifier'; IsDeprecated: False),
|
|
(Group: $40; Element: $db06; DataType: iedtDT; Description: 'Template Version'; IsDeprecated: True),
|
|
(Group: $40; Element: $db07; DataType: iedtDT; Description: 'Template Local Version'; IsDeprecated: True),
|
|
(Group: $40; Element: $db0b; DataType: iedtCS; Description: 'Template Extension Flag'; IsDeprecated: True),
|
|
(Group: $40; Element: $db0c; DataType: iedtUI; Description: 'Template Extension Organization UID'; IsDeprecated: True),
|
|
(Group: $40; Element: $db0d; DataType: iedtUI; Description: 'Template Extension Creator UID'; IsDeprecated: True),
|
|
(Group: $40; Element: $db73; DataType: iedtUL; Description: 'Referenced Content Item Identifier'; IsDeprecated: False),
|
|
(Group: $40; Element: $e001; DataType: iedtST; Description: 'HL7 Instance Identifier'; IsDeprecated: False),
|
|
(Group: $40; Element: $e004; DataType: iedtDT; Description: 'HL7 Document Effective Time'; IsDeprecated: False),
|
|
(Group: $40; Element: $e006; DataType: iedtSQ; Description: 'HL7 Document Type Code Sequence'; IsDeprecated: False),
|
|
(Group: $40; Element: $e010; DataType: iedtUT; Description: 'Retrieve URI'; IsDeprecated: False),
|
|
(Group: $42; Element: $10; DataType: iedtST; Description: 'Document Title'; IsDeprecated: False),
|
|
(Group: $42; Element: $11; DataType: iedtOB; Description: 'Encapsulated Document'; IsDeprecated: False),
|
|
(Group: $42; Element: $12; DataType: iedtLO; Description: 'MIME Type of Encapsulated Document'; IsDeprecated: False),
|
|
(Group: $42; Element: $13; DataType: iedtSQ; Description: 'Source Instance Sequence'; IsDeprecated: False),
|
|
(Group: $42; Element: $14; DataType: iedtLO; Description: 'List of MIME Types'; IsDeprecated: False),
|
|
(Group: $44; Element: $1; DataType: iedtST; Description: 'Product Package Identifier'; IsDeprecated: False),
|
|
(Group: $44; Element: $2; DataType: iedtCS; Description: 'Substance Administration Approval'; IsDeprecated: False),
|
|
(Group: $44; Element: $3; DataType: iedtLT; Description: 'Approval Status Further Description'; IsDeprecated: False),
|
|
(Group: $44; Element: $4; DataType: iedtDT; Description: 'Approval Status DateTime'; IsDeprecated: False),
|
|
(Group: $44; Element: $7; DataType: iedtSQ; Description: 'Product Type Code Sequence'; IsDeprecated: False),
|
|
(Group: $44; Element: $8; DataType: iedtLO; Description: 'Product Name'; IsDeprecated: False),
|
|
(Group: $44; Element: $9; DataType: iedtLT; Description: 'Product Description'; IsDeprecated: False),
|
|
(Group: $44; Element: $000a; DataType: iedtLO; Description: 'Product Lot Identifier'; IsDeprecated: False),
|
|
(Group: $44; Element: $000b; DataType: iedtDT; Description: 'Product Expiration DateTime'; IsDeprecated: False),
|
|
(Group: $44; Element: $10; DataType: iedtDT; Description: 'Substance Administration DateTime'; IsDeprecated: False),
|
|
(Group: $44; Element: $11; DataType: iedtLO; Description: 'Substance Administration Notes'; IsDeprecated: False),
|
|
(Group: $44; Element: $12; DataType: iedtLO; Description: 'Substance Administration Device ID'; IsDeprecated: False),
|
|
(Group: $44; Element: $13; DataType: iedtSQ; Description: 'Product Parameter Sequence'; IsDeprecated: False),
|
|
(Group: $44; Element: $19; DataType: iedtSQ; Description: 'Substance Administration Parameter Sequence'; IsDeprecated: False),
|
|
(Group: $50; Element: $4; DataType: iedtCS; Description: 'Calibration Image'; IsDeprecated: False),
|
|
(Group: $50; Element: $10; DataType: iedtSQ; Description: 'Device Sequence'; IsDeprecated: False),
|
|
(Group: $50; Element: $14; DataType: iedtDS; Description: 'Device Length'; IsDeprecated: False),
|
|
(Group: $50; Element: $16; DataType: iedtDS; Description: 'Device Diameter'; IsDeprecated: False),
|
|
(Group: $50; Element: $17; DataType: iedtCS; Description: 'Device Diameter Units'; IsDeprecated: False),
|
|
(Group: $50; Element: $18; DataType: iedtDS; Description: 'Device Volume'; IsDeprecated: False),
|
|
(Group: $50; Element: $19; DataType: iedtDS; Description: 'Intermarker Distance'; IsDeprecated: False),
|
|
(Group: $50; Element: $20; DataType: iedtLO; Description: 'Device Description'; IsDeprecated: False),
|
|
(Group: $54; Element: $10; DataType: iedtUS; Description: 'Energy Window Vector'; IsDeprecated: False),
|
|
(Group: $54; Element: $11; DataType: iedtUS; Description: 'Number of Energy Windows'; IsDeprecated: False),
|
|
(Group: $54; Element: $12; DataType: iedtSQ; Description: 'Energy Window Information Sequence'; IsDeprecated: False),
|
|
(Group: $54; Element: $13; DataType: iedtSQ; Description: 'Energy Window Range Sequence'; IsDeprecated: False),
|
|
(Group: $54; Element: $14; DataType: iedtDS; Description: 'Energy Window Lower Limit'; IsDeprecated: False),
|
|
(Group: $54; Element: $15; DataType: iedtDS; Description: 'Energy Window Upper Limit'; IsDeprecated: False),
|
|
(Group: $54; Element: $16; DataType: iedtSQ; Description: 'Radiopharmaceutical Information Sequence'; IsDeprecated: False),
|
|
(Group: $54; Element: $17; DataType: iedtIS; Description: 'Residual Syringe Counts'; IsDeprecated: False),
|
|
(Group: $54; Element: $18; DataType: iedtSH; Description: 'Energy Window Name'; IsDeprecated: False),
|
|
(Group: $54; Element: $20; DataType: iedtUS; Description: 'Detector Vector'; IsDeprecated: False),
|
|
(Group: $54; Element: $21; DataType: iedtUS; Description: 'Number of Detectors'; IsDeprecated: False),
|
|
(Group: $54; Element: $22; DataType: iedtSQ; Description: 'Detector Information Sequence'; IsDeprecated: False),
|
|
(Group: $54; Element: $30; DataType: iedtUS; Description: 'Phase Vector'; IsDeprecated: False),
|
|
(Group: $54; Element: $31; DataType: iedtUS; Description: 'Number of Phases'; IsDeprecated: False),
|
|
(Group: $54; Element: $32; DataType: iedtSQ; Description: 'Phase Information Sequence'; IsDeprecated: False),
|
|
(Group: $54; Element: $33; DataType: iedtUS; Description: 'Number of Frames in Phase'; IsDeprecated: False),
|
|
(Group: $54; Element: $36; DataType: iedtIS; Description: 'Phase Delay'; IsDeprecated: False),
|
|
(Group: $54; Element: $38; DataType: iedtIS; Description: 'Pause Between Frames'; IsDeprecated: False),
|
|
(Group: $54; Element: $39; DataType: iedtCS; Description: 'Phase Description'; IsDeprecated: False),
|
|
(Group: $54; Element: $50; DataType: iedtUS; Description: 'Rotation Vector'; IsDeprecated: False),
|
|
(Group: $54; Element: $51; DataType: iedtUS; Description: 'Number of Rotations'; IsDeprecated: False),
|
|
(Group: $54; Element: $52; DataType: iedtSQ; Description: 'Rotation Information Sequence'; IsDeprecated: False),
|
|
(Group: $54; Element: $53; DataType: iedtUS; Description: 'Number of Frames in Rotation'; IsDeprecated: False),
|
|
(Group: $54; Element: $60; DataType: iedtUS; Description: 'R-R Interval Vector'; IsDeprecated: False),
|
|
(Group: $54; Element: $61; DataType: iedtUS; Description: 'Number of R-R Intervals'; IsDeprecated: False),
|
|
(Group: $54; Element: $62; DataType: iedtSQ; Description: 'Gated Information Sequence'; IsDeprecated: False),
|
|
(Group: $54; Element: $63; DataType: iedtSQ; Description: 'Data Information Sequence'; IsDeprecated: False),
|
|
(Group: $54; Element: $70; DataType: iedtUS; Description: 'Time Slot Vector'; IsDeprecated: False),
|
|
(Group: $54; Element: $71; DataType: iedtUS; Description: 'Number of Time Slots'; IsDeprecated: False),
|
|
(Group: $54; Element: $72; DataType: iedtSQ; Description: 'Time Slot Information Sequence'; IsDeprecated: False),
|
|
(Group: $54; Element: $73; DataType: iedtDS; Description: 'Time Slot Time'; IsDeprecated: False),
|
|
(Group: $54; Element: $80; DataType: iedtUS; Description: 'Slice Vector'; IsDeprecated: False),
|
|
(Group: $54; Element: $81; DataType: iedtUS; Description: 'Number of Slices'; IsDeprecated: False),
|
|
(Group: $54; Element: $90; DataType: iedtUS; Description: 'Angular View Vector'; IsDeprecated: False),
|
|
(Group: $54; Element: $100; DataType: iedtUS; Description: 'Time Slice Vector'; IsDeprecated: False),
|
|
(Group: $54; Element: $101; DataType: iedtUS; Description: 'Number of Time Slices'; IsDeprecated: False),
|
|
(Group: $54; Element: $200; DataType: iedtDS; Description: 'Start Angle'; IsDeprecated: False),
|
|
(Group: $54; Element: $202; DataType: iedtCS; Description: 'Type of Detector Motion'; IsDeprecated: False),
|
|
(Group: $54; Element: $210; DataType: iedtIS; Description: 'Trigger Vector'; IsDeprecated: False),
|
|
(Group: $54; Element: $211; DataType: iedtUS; Description: 'Number of Triggers in Phase'; IsDeprecated: False),
|
|
(Group: $54; Element: $220; DataType: iedtSQ; Description: 'View Code Sequence'; IsDeprecated: False),
|
|
(Group: $54; Element: $222; DataType: iedtSQ; Description: 'View Modifier Code Sequence'; IsDeprecated: False),
|
|
(Group: $54; Element: $300; DataType: iedtSQ; Description: 'Radionuclide Code Sequence'; IsDeprecated: False),
|
|
(Group: $54; Element: $302; DataType: iedtSQ; Description: 'Administration Route Code Sequence'; IsDeprecated: False),
|
|
(Group: $54; Element: $304; DataType: iedtSQ; Description: 'Radiopharmaceutical Code Sequence'; IsDeprecated: False),
|
|
(Group: $54; Element: $306; DataType: iedtSQ; Description: 'Calibration Data Sequence'; IsDeprecated: False),
|
|
(Group: $54; Element: $308; DataType: iedtUS; Description: 'Energy Window Number'; IsDeprecated: False),
|
|
(Group: $54; Element: $400; DataType: iedtSH; Description: 'Image ID'; IsDeprecated: False),
|
|
(Group: $54; Element: $410; DataType: iedtSQ; Description: 'Patient Orientation Code Sequence'; IsDeprecated: False),
|
|
(Group: $54; Element: $412; DataType: iedtSQ; Description: 'Patient Orientation Modifier Code Sequence'; IsDeprecated: False),
|
|
(Group: $54; Element: $414; DataType: iedtSQ; Description: 'Patient Gantry Relationship Code Sequence'; IsDeprecated: False),
|
|
(Group: $54; Element: $500; DataType: iedtCS; Description: 'Slice Progression Direction'; IsDeprecated: False),
|
|
(Group: $54; Element: $1000; DataType: iedtCS; Description: 'Series Type'; IsDeprecated: False),
|
|
(Group: $54; Element: $1001; DataType: iedtCS; Description: 'Units'; IsDeprecated: False),
|
|
(Group: $54; Element: $1002; DataType: iedtCS; Description: 'Counts Source'; IsDeprecated: False),
|
|
(Group: $54; Element: $1004; DataType: iedtCS; Description: 'Reprojection Method'; IsDeprecated: False),
|
|
(Group: $54; Element: $1100; DataType: iedtCS; Description: 'Randoms Correction Method'; IsDeprecated: False),
|
|
(Group: $54; Element: $1101; DataType: iedtLO; Description: 'Attenuation Correction Method'; IsDeprecated: False),
|
|
(Group: $54; Element: $1102; DataType: iedtCS; Description: 'Decay Correction'; IsDeprecated: False),
|
|
(Group: $54; Element: $1103; DataType: iedtLO; Description: 'Reconstruction Method'; IsDeprecated: False),
|
|
(Group: $54; Element: $1104; DataType: iedtLO; Description: 'Detector Lines of Response Used'; IsDeprecated: False),
|
|
(Group: $54; Element: $1105; DataType: iedtLO; Description: 'Scatter Correction Method'; IsDeprecated: False),
|
|
(Group: $54; Element: $1200; DataType: iedtDS; Description: 'Axial Acceptance'; IsDeprecated: False),
|
|
(Group: $54; Element: $1201; DataType: iedtIS; Description: 'Axial Mash'; IsDeprecated: False),
|
|
(Group: $54; Element: $1202; DataType: iedtIS; Description: 'Transverse Mash'; IsDeprecated: False),
|
|
(Group: $54; Element: $1203; DataType: iedtDS; Description: 'Detector Element Size'; IsDeprecated: False),
|
|
(Group: $54; Element: $1210; DataType: iedtDS; Description: 'Coincidence Window Width'; IsDeprecated: False),
|
|
(Group: $54; Element: $1220; DataType: iedtCS; Description: 'Secondary Counts Type'; IsDeprecated: False),
|
|
(Group: $54; Element: $1300; DataType: iedtDS; Description: 'Frame Reference Time'; IsDeprecated: False),
|
|
(Group: $54; Element: $1310; DataType: iedtIS; Description: 'Primary (Prompts) Counts Accumulated'; IsDeprecated: False),
|
|
(Group: $54; Element: $1311; DataType: iedtIS; Description: 'Secondary Counts Accumulated'; IsDeprecated: False),
|
|
(Group: $54; Element: $1320; DataType: iedtDS; Description: 'Slice Sensitivity Factor'; IsDeprecated: False),
|
|
(Group: $54; Element: $1321; DataType: iedtDS; Description: 'Decay Factor'; IsDeprecated: False),
|
|
(Group: $54; Element: $1322; DataType: iedtDS; Description: 'Dose Calibration Factor'; IsDeprecated: False),
|
|
(Group: $54; Element: $1323; DataType: iedtDS; Description: 'Scatter Fraction Factor'; IsDeprecated: False),
|
|
(Group: $54; Element: $1324; DataType: iedtDS; Description: 'Dead Time Factor'; IsDeprecated: False),
|
|
(Group: $54; Element: $1330; DataType: iedtUS; Description: 'Image Index'; IsDeprecated: False),
|
|
(Group: $54; Element: $1400; DataType: iedtCS; Description: 'Counts Included'; IsDeprecated: True),
|
|
(Group: $54; Element: $1401; DataType: iedtCS; Description: 'Dead Time Correction Flag'; IsDeprecated: True),
|
|
(Group: $60; Element: $3000; DataType: iedtSQ; Description: 'Histogram Sequence'; IsDeprecated: False),
|
|
(Group: $60; Element: $3002; DataType: iedtUS; Description: 'Histogram Number of Bins'; IsDeprecated: False),
|
|
(Group: $60; Element: $3004; DataType: iedtxs; Description: 'Histogram First Bin Value'; IsDeprecated: False),
|
|
(Group: $60; Element: $3006; DataType: iedtxs; Description: 'Histogram Last Bin Value'; IsDeprecated: False),
|
|
(Group: $60; Element: $3008; DataType: iedtUS; Description: 'Histogram Bin Width'; IsDeprecated: False),
|
|
(Group: $60; Element: $3010; DataType: iedtLO; Description: 'Histogram Explanation'; IsDeprecated: False),
|
|
(Group: $60; Element: $3020; DataType: iedtUL; Description: 'Histogram Data'; IsDeprecated: False),
|
|
(Group: $62; Element: $1; DataType: iedtCS; Description: 'Segmentation Type'; IsDeprecated: False),
|
|
(Group: $62; Element: $2; DataType: iedtSQ; Description: 'Segment Sequence'; IsDeprecated: False),
|
|
(Group: $62; Element: $3; DataType: iedtSQ; Description: 'Segmented Property Category Code Sequence'; IsDeprecated: False),
|
|
(Group: $62; Element: $4; DataType: iedtUS; Description: 'Segment Number'; IsDeprecated: False),
|
|
(Group: $62; Element: $5; DataType: iedtLO; Description: 'Segment Label'; IsDeprecated: False),
|
|
(Group: $62; Element: $6; DataType: iedtST; Description: 'Segment Description'; IsDeprecated: False),
|
|
(Group: $62; Element: $8; DataType: iedtCS; Description: 'Segment Algorithm Type'; IsDeprecated: False),
|
|
(Group: $62; Element: $9; DataType: iedtLO; Description: 'Segment Algorithm Name'; IsDeprecated: False),
|
|
(Group: $62; Element: $000a; DataType: iedtSQ; Description: 'Segment Identification Sequence'; IsDeprecated: False),
|
|
(Group: $62; Element: $000b; DataType: iedtUS; Description: 'Referenced Segment Number'; IsDeprecated: False),
|
|
(Group: $62; Element: $000c; DataType: iedtUS; Description: 'Recommended Display Grayscale Value'; IsDeprecated: False),
|
|
(Group: $62; Element: $000d; DataType: iedtUS; Description: 'Recommended Display CIELab Value'; IsDeprecated: False),
|
|
(Group: $62; Element: $000e; DataType: iedtUS; Description: 'Maximum Fractional Value'; IsDeprecated: False),
|
|
(Group: $62; Element: $000f; DataType: iedtSQ; Description: 'Segmented Property Type Code Sequence'; IsDeprecated: False),
|
|
(Group: $62; Element: $10; DataType: iedtCS; Description: 'Segmentation Fractional Type'; IsDeprecated: False),
|
|
(Group: $64; Element: $2; DataType: iedtSQ; Description: 'Deformable Registration Sequence'; IsDeprecated: False),
|
|
(Group: $64; Element: $3; DataType: iedtUI; Description: 'Source Frame of Reference UID'; IsDeprecated: False),
|
|
(Group: $64; Element: $5; DataType: iedtSQ; Description: 'Deformable Registration Grid Sequence'; IsDeprecated: False),
|
|
(Group: $64; Element: $7; DataType: iedtUL; Description: 'Grid Dimensions'; IsDeprecated: False),
|
|
(Group: $64; Element: $8; DataType: iedtFD; Description: 'Grid Resolution'; IsDeprecated: False),
|
|
(Group: $64; Element: $9; DataType: iedtOF; Description: 'Vector Grid Data'; IsDeprecated: False),
|
|
(Group: $64; Element: $000f; DataType: iedtSQ; Description: 'Pre Deformation Matrix Registration Sequence'; IsDeprecated: False),
|
|
(Group: $64; Element: $10; DataType: iedtSQ; Description: 'Post Deformation Matrix Registration Sequence'; IsDeprecated: False),
|
|
(Group: $70; Element: $1; DataType: iedtSQ; Description: 'Graphic Annotation Sequence'; IsDeprecated: False),
|
|
(Group: $70; Element: $2; DataType: iedtCS; Description: 'Graphic Layer'; IsDeprecated: False),
|
|
(Group: $70; Element: $3; DataType: iedtCS; Description: 'Bounding Box Annotation Units'; IsDeprecated: False),
|
|
(Group: $70; Element: $4; DataType: iedtCS; Description: 'Anchor Point Annotation Units'; IsDeprecated: False),
|
|
(Group: $70; Element: $5; DataType: iedtCS; Description: 'Graphic Annotation Units'; IsDeprecated: False),
|
|
(Group: $70; Element: $6; DataType: iedtST; Description: 'Unformatted Text Value'; IsDeprecated: False),
|
|
(Group: $70; Element: $8; DataType: iedtSQ; Description: 'Text Object Sequence'; IsDeprecated: False),
|
|
(Group: $70; Element: $9; DataType: iedtSQ; Description: 'Graphic Object Sequence'; IsDeprecated: False),
|
|
(Group: $70; Element: $10; DataType: iedtFL; Description: 'Bounding Box Top Left Hand Corner'; IsDeprecated: False),
|
|
(Group: $70; Element: $11; DataType: iedtFL; Description: 'Bounding Box Bottom Right Hand Corner'; IsDeprecated: False),
|
|
(Group: $70; Element: $12; DataType: iedtCS; Description: 'Bounding Box Text Horizontal Justification'; IsDeprecated: False),
|
|
(Group: $70; Element: $14; DataType: iedtFL; Description: 'Anchor Point'; IsDeprecated: False),
|
|
(Group: $70; Element: $15; DataType: iedtCS; Description: 'Anchor Point Visibility'; IsDeprecated: False),
|
|
(Group: $70; Element: $20; DataType: iedtUS; Description: 'Graphic Dimensions'; IsDeprecated: False),
|
|
(Group: $70; Element: $21; DataType: iedtUS; Description: 'Number of Graphic Points'; IsDeprecated: False),
|
|
(Group: $70; Element: $22; DataType: iedtFL; Description: 'Graphic Data'; IsDeprecated: False),
|
|
(Group: $70; Element: $23; DataType: iedtCS; Description: 'Graphic Type'; IsDeprecated: False),
|
|
(Group: $70; Element: $24; DataType: iedtCS; Description: 'Graphic Filled'; IsDeprecated: False),
|
|
(Group: $70; Element: $40; DataType: iedtIS; Description: 'Image Rotation (Retired)'; IsDeprecated: True),
|
|
(Group: $70; Element: $41; DataType: iedtCS; Description: 'Image Horizontal Flip'; IsDeprecated: False),
|
|
(Group: $70; Element: $42; DataType: iedtUS; Description: 'Image Rotation'; IsDeprecated: False),
|
|
(Group: $70; Element: $50; DataType: iedtUS; Description: 'Displayed Area Top Left Hand Corner (Trial)'; IsDeprecated: True),
|
|
(Group: $70; Element: $51; DataType: iedtUS; Description: 'Displayed Area Bottom Right Hand Corner (Trial)'; IsDeprecated: True),
|
|
(Group: $70; Element: $52; DataType: iedtSL; Description: 'Displayed Area Top Left Hand Corner'; IsDeprecated: False),
|
|
(Group: $70; Element: $53; DataType: iedtSL; Description: 'Displayed Area Bottom Right Hand Corner'; IsDeprecated: False),
|
|
(Group: $70; Element: $005a; DataType: iedtSQ; Description: 'Displayed Area Selection Sequence'; IsDeprecated: False),
|
|
(Group: $70; Element: $60; DataType: iedtSQ; Description: 'Graphic Layer Sequence'; IsDeprecated: False),
|
|
(Group: $70; Element: $62; DataType: iedtIS; Description: 'Graphic Layer Order'; IsDeprecated: False),
|
|
(Group: $70; Element: $66; DataType: iedtUS; Description: 'Graphic Layer Recommended Display Grayscale Value'; IsDeprecated: False),
|
|
(Group: $70; Element: $67; DataType: iedtUS; Description: 'Graphic Layer Recommended Display RGB Value'; IsDeprecated: True),
|
|
(Group: $70; Element: $68; DataType: iedtLO; Description: 'Graphic Layer Description'; IsDeprecated: False),
|
|
(Group: $70; Element: $80; DataType: iedtCS; Description: 'Content Label'; IsDeprecated: False),
|
|
(Group: $70; Element: $81; DataType: iedtLO; Description: 'Content Description'; IsDeprecated: False),
|
|
(Group: $70; Element: $82; DataType: iedtDA; Description: 'Presentation Creation Date'; IsDeprecated: False),
|
|
(Group: $70; Element: $83; DataType: iedtTM; Description: 'Presentation Creation Time'; IsDeprecated: False),
|
|
(Group: $70; Element: $84; DataType: iedtPN; Description: 'Content Creator''s Name'; IsDeprecated: False),
|
|
(Group: $70; Element: $86; DataType: iedtSQ; Description: 'Content Creator''s Identification Code Sequence'; IsDeprecated: False),
|
|
(Group: $70; Element: $100; DataType: iedtCS; Description: 'Presentation Size Mode'; IsDeprecated: False),
|
|
(Group: $70; Element: $101; DataType: iedtDS; Description: 'Presentation Pixel Spacing'; IsDeprecated: False),
|
|
(Group: $70; Element: $102; DataType: iedtIS; Description: 'Presentation Pixel Aspect Ratio'; IsDeprecated: False),
|
|
(Group: $70; Element: $103; DataType: iedtFL; Description: 'Presentation Pixel Magnification Ratio'; IsDeprecated: False),
|
|
(Group: $70; Element: $306; DataType: iedtCS; Description: 'Shape Type'; IsDeprecated: False),
|
|
(Group: $70; Element: $308; DataType: iedtSQ; Description: 'Registration Sequence'; IsDeprecated: False),
|
|
(Group: $70; Element: $309; DataType: iedtSQ; Description: 'Matrix Registration Sequence'; IsDeprecated: False),
|
|
(Group: $70; Element: $030a; DataType: iedtSQ; Description: 'Matrix Sequence'; IsDeprecated: False),
|
|
(Group: $70; Element: $030c; DataType: iedtCS; Description: 'Frame of Reference Transformation Matrix Type'; IsDeprecated: False),
|
|
(Group: $70; Element: $030d; DataType: iedtSQ; Description: 'Registration Type Code Sequence'; IsDeprecated: False),
|
|
(Group: $70; Element: $030f; DataType: iedtST; Description: 'Fiducial Description'; IsDeprecated: False),
|
|
(Group: $70; Element: $310; DataType: iedtSH; Description: 'Fiducial Identifier'; IsDeprecated: False),
|
|
(Group: $70; Element: $311; DataType: iedtSQ; Description: 'Fiducial Identifier Code Sequence'; IsDeprecated: False),
|
|
(Group: $70; Element: $312; DataType: iedtFD; Description: 'Contour Uncertainty Radius'; IsDeprecated: False),
|
|
(Group: $70; Element: $314; DataType: iedtSQ; Description: 'Used Fiducials Sequence'; IsDeprecated: False),
|
|
(Group: $70; Element: $318; DataType: iedtSQ; Description: 'Graphic Coordinates Data Sequence'; IsDeprecated: False),
|
|
(Group: $70; Element: $031a; DataType: iedtUI; Description: 'Fiducial UID'; IsDeprecated: False),
|
|
(Group: $70; Element: $031c; DataType: iedtSQ; Description: 'Fiducial Set Sequence'; IsDeprecated: False),
|
|
(Group: $70; Element: $031e; DataType: iedtSQ; Description: 'Fiducial Sequence'; IsDeprecated: False),
|
|
(Group: $70; Element: $401; DataType: iedtUS; Description: 'Graphic Layer Recommended Display CIELab Value'; IsDeprecated: False),
|
|
(Group: $70; Element: $402; DataType: iedtSQ; Description: 'Blending Sequence'; IsDeprecated: False),
|
|
(Group: $70; Element: $403; DataType: iedtFL; Description: 'Relative Opacity'; IsDeprecated: False),
|
|
(Group: $70; Element: $404; DataType: iedtSQ; Description: 'Referenced Spatial Registration Sequence'; IsDeprecated: False),
|
|
(Group: $70; Element: $405; DataType: iedtCS; Description: 'Blending Position'; IsDeprecated: False),
|
|
(Group: $72; Element: $2; DataType: iedtSH; Description: 'Hanging Protocol Name'; IsDeprecated: False),
|
|
(Group: $72; Element: $4; DataType: iedtLO; Description: 'Hanging Protocol Description'; IsDeprecated: False),
|
|
(Group: $72; Element: $6; DataType: iedtCS; Description: 'Hanging Protocol Level'; IsDeprecated: False),
|
|
(Group: $72; Element: $8; DataType: iedtLO; Description: 'Hanging Protocol Creator'; IsDeprecated: False),
|
|
(Group: $72; Element: $000a; DataType: iedtDT; Description: 'Hanging Protocol Creation DateTime'; IsDeprecated: False),
|
|
(Group: $72; Element: $000c; DataType: iedtSQ; Description: 'Hanging Protocol Definition Sequence'; IsDeprecated: False),
|
|
(Group: $72; Element: $000e; DataType: iedtSQ; Description: 'Hanging Protocol User Identification Code Sequence'; IsDeprecated: False),
|
|
(Group: $72; Element: $10; DataType: iedtLO; Description: 'Hanging Protocol User Group Name'; IsDeprecated: False),
|
|
(Group: $72; Element: $12; DataType: iedtSQ; Description: 'Source Hanging Protocol Sequence'; IsDeprecated: False),
|
|
(Group: $72; Element: $14; DataType: iedtUS; Description: 'Number of Priors Referenced'; IsDeprecated: False),
|
|
(Group: $72; Element: $20; DataType: iedtSQ; Description: 'Image Sets Sequence'; IsDeprecated: False),
|
|
(Group: $72; Element: $22; DataType: iedtSQ; Description: 'Image Set Selector Sequence'; IsDeprecated: False),
|
|
(Group: $72; Element: $24; DataType: iedtCS; Description: 'Image Set Selector Usage Flag'; IsDeprecated: False),
|
|
(Group: $72; Element: $26; DataType: iedtAT; Description: 'Selector Attribute'; IsDeprecated: False),
|
|
(Group: $72; Element: $28; DataType: iedtUS; Description: 'Selector Value Number'; IsDeprecated: False),
|
|
(Group: $72; Element: $30; DataType: iedtSQ; Description: 'Time Based Image Sets Sequence'; IsDeprecated: False),
|
|
(Group: $72; Element: $32; DataType: iedtUS; Description: 'Image Set Number'; IsDeprecated: False),
|
|
(Group: $72; Element: $34; DataType: iedtCS; Description: 'Image Set Selector Category'; IsDeprecated: False),
|
|
(Group: $72; Element: $38; DataType: iedtUS; Description: 'Relative Time'; IsDeprecated: False),
|
|
(Group: $72; Element: $003a; DataType: iedtCS; Description: 'Relative Time Units'; IsDeprecated: False),
|
|
(Group: $72; Element: $003c; DataType: iedtSS; Description: 'Abstract Prior Value'; IsDeprecated: False),
|
|
(Group: $72; Element: $003e; DataType: iedtSQ; Description: 'Abstract Prior Code Sequence'; IsDeprecated: False),
|
|
(Group: $72; Element: $40; DataType: iedtLO; Description: 'Image Set Label'; IsDeprecated: False),
|
|
(Group: $72; Element: $50; DataType: iedtCS; Description: 'Selector Attribute VR'; IsDeprecated: False),
|
|
(Group: $72; Element: $52; DataType: iedtAT; Description: 'Selector Sequence Pointer'; IsDeprecated: False),
|
|
(Group: $72; Element: $54; DataType: iedtLO; Description: 'Selector Sequence Pointer Private Creator'; IsDeprecated: False),
|
|
(Group: $72; Element: $56; DataType: iedtLO; Description: 'Selector Attribute Private Creator'; IsDeprecated: False),
|
|
(Group: $72; Element: $60; DataType: iedtAT; Description: 'Selector AT Value'; IsDeprecated: False),
|
|
(Group: $72; Element: $62; DataType: iedtCS; Description: 'Selector CS Value'; IsDeprecated: False),
|
|
(Group: $72; Element: $64; DataType: iedtIS; Description: 'Selector IS Value'; IsDeprecated: False),
|
|
(Group: $72; Element: $66; DataType: iedtLO; Description: 'Selector LO Value'; IsDeprecated: False),
|
|
(Group: $72; Element: $68; DataType: iedtLT; Description: 'Selector LT Value'; IsDeprecated: False),
|
|
(Group: $72; Element: $006a; DataType: iedtPN; Description: 'Selector PN Value'; IsDeprecated: False),
|
|
(Group: $72; Element: $006c; DataType: iedtSH; Description: 'Selector SH Value'; IsDeprecated: False),
|
|
(Group: $72; Element: $006e; DataType: iedtST; Description: 'Selector ST Value'; IsDeprecated: False),
|
|
(Group: $72; Element: $70; DataType: iedtUT; Description: 'Selector UT Value'; IsDeprecated: False),
|
|
(Group: $72; Element: $72; DataType: iedtDS; Description: 'Selector DS Value'; IsDeprecated: False),
|
|
(Group: $72; Element: $74; DataType: iedtFD; Description: 'Selector FD Value'; IsDeprecated: False),
|
|
(Group: $72; Element: $76; DataType: iedtFL; Description: 'Selector FL Value'; IsDeprecated: False),
|
|
(Group: $72; Element: $78; DataType: iedtUL; Description: 'Selector UL Value'; IsDeprecated: False),
|
|
(Group: $72; Element: $007a; DataType: iedtUS; Description: 'Selector US Value'; IsDeprecated: False),
|
|
(Group: $72; Element: $007c; DataType: iedtSL; Description: 'Selector SL Value'; IsDeprecated: False),
|
|
(Group: $72; Element: $007e; DataType: iedtSS; Description: 'Selector SS Value'; IsDeprecated: False),
|
|
(Group: $72; Element: $80; DataType: iedtSQ; Description: 'Selector Code Sequence Value'; IsDeprecated: False),
|
|
(Group: $72; Element: $100; DataType: iedtUS; Description: 'Number of Screens'; IsDeprecated: False),
|
|
(Group: $72; Element: $102; DataType: iedtSQ; Description: 'Nominal Screen Definition Sequence'; IsDeprecated: False),
|
|
(Group: $72; Element: $104; DataType: iedtUS; Description: 'Number of Vertical Pixels'; IsDeprecated: False),
|
|
(Group: $72; Element: $106; DataType: iedtUS; Description: 'Number of Horizontal Pixels'; IsDeprecated: False),
|
|
(Group: $72; Element: $108; DataType: iedtFD; Description: 'Display Environment Spatial Position'; IsDeprecated: False),
|
|
(Group: $72; Element: $010a; DataType: iedtUS; Description: 'Screen Minimum Grayscale Bit Depth'; IsDeprecated: False),
|
|
(Group: $72; Element: $010c; DataType: iedtUS; Description: 'Screen Minimum Color Bit Depth'; IsDeprecated: False),
|
|
(Group: $72; Element: $010e; DataType: iedtUS; Description: 'Application Maximum Repaint Time'; IsDeprecated: False),
|
|
(Group: $72; Element: $200; DataType: iedtSQ; Description: 'Display Sets Sequence'; IsDeprecated: False),
|
|
(Group: $72; Element: $202; DataType: iedtUS; Description: 'Display Set Number'; IsDeprecated: False),
|
|
(Group: $72; Element: $203; DataType: iedtLO; Description: 'Display Set Label'; IsDeprecated: False),
|
|
(Group: $72; Element: $204; DataType: iedtUS; Description: 'Display Set Presentation Group'; IsDeprecated: False),
|
|
(Group: $72; Element: $206; DataType: iedtLO; Description: 'Display Set Presentation Group Description'; IsDeprecated: False),
|
|
(Group: $72; Element: $208; DataType: iedtCS; Description: 'Partial Data Display Handling'; IsDeprecated: False),
|
|
(Group: $72; Element: $210; DataType: iedtSQ; Description: 'Synchronized Scrolling Sequence'; IsDeprecated: False),
|
|
(Group: $72; Element: $212; DataType: iedtUS; Description: 'Display Set Scrolling Group'; IsDeprecated: False),
|
|
(Group: $72; Element: $214; DataType: iedtSQ; Description: 'Navigation Indicator Sequence'; IsDeprecated: False),
|
|
(Group: $72; Element: $216; DataType: iedtUS; Description: 'Navigation Display Set'; IsDeprecated: False),
|
|
(Group: $72; Element: $218; DataType: iedtUS; Description: 'Reference Display Sets'; IsDeprecated: False),
|
|
(Group: $72; Element: $300; DataType: iedtSQ; Description: 'Image Boxes Sequence'; IsDeprecated: False),
|
|
(Group: $72; Element: $302; DataType: iedtUS; Description: 'Image Box Number'; IsDeprecated: False),
|
|
(Group: $72; Element: $304; DataType: iedtCS; Description: 'Image Box Layout Type'; IsDeprecated: False),
|
|
(Group: $72; Element: $306; DataType: iedtUS; Description: 'Image Box Tile Horizontal Dimension'; IsDeprecated: False),
|
|
(Group: $72; Element: $308; DataType: iedtUS; Description: 'Image Box Tile Vertical Dimension'; IsDeprecated: False),
|
|
(Group: $72; Element: $310; DataType: iedtCS; Description: 'Image Box Scroll Direction'; IsDeprecated: False),
|
|
(Group: $72; Element: $312; DataType: iedtCS; Description: 'Image Box Small Scroll Type'; IsDeprecated: False),
|
|
(Group: $72; Element: $314; DataType: iedtUS; Description: 'Image Box Small Scroll Amount'; IsDeprecated: False),
|
|
(Group: $72; Element: $316; DataType: iedtCS; Description: 'Image Box Large Scroll Type'; IsDeprecated: False),
|
|
(Group: $72; Element: $318; DataType: iedtUS; Description: 'Image Box Large Scroll Amount'; IsDeprecated: False),
|
|
(Group: $72; Element: $320; DataType: iedtUS; Description: 'Image Box Overlap Priority'; IsDeprecated: False),
|
|
(Group: $72; Element: $330; DataType: iedtFD; Description: 'Cine Relative to Real-Time'; IsDeprecated: False),
|
|
(Group: $72; Element: $400; DataType: iedtSQ; Description: 'Filter Operations Sequence'; IsDeprecated: False),
|
|
(Group: $72; Element: $402; DataType: iedtCS; Description: 'Filter-by Category'; IsDeprecated: False),
|
|
(Group: $72; Element: $404; DataType: iedtCS; Description: 'Filter-by Attribute Presence'; IsDeprecated: False),
|
|
(Group: $72; Element: $406; DataType: iedtCS; Description: 'Filter-by Operator'; IsDeprecated: False),
|
|
(Group: $72; Element: $500; DataType: iedtCS; Description: 'Blending Operation Type'; IsDeprecated: False),
|
|
(Group: $72; Element: $510; DataType: iedtCS; Description: 'Reformatting Operation Type'; IsDeprecated: False),
|
|
(Group: $72; Element: $512; DataType: iedtFD; Description: 'Reformatting Thickness'; IsDeprecated: False),
|
|
(Group: $72; Element: $514; DataType: iedtFD; Description: 'Reformatting Interval'; IsDeprecated: False),
|
|
(Group: $72; Element: $516; DataType: iedtCS; Description: 'Reformatting Operation Initial View Direction'; IsDeprecated: False),
|
|
(Group: $72; Element: $520; DataType: iedtCS; Description: '3D Rendering Type'; IsDeprecated: False),
|
|
(Group: $72; Element: $600; DataType: iedtSQ; Description: 'Sorting Operations Sequence'; IsDeprecated: False),
|
|
(Group: $72; Element: $602; DataType: iedtCS; Description: 'Sort-by Category'; IsDeprecated: False),
|
|
(Group: $72; Element: $604; DataType: iedtCS; Description: 'Sorting Direction'; IsDeprecated: False),
|
|
(Group: $72; Element: $700; DataType: iedtCS; Description: 'Display Set Patient Orientation'; IsDeprecated: False),
|
|
(Group: $72; Element: $702; DataType: iedtCS; Description: 'VOI Type'; IsDeprecated: False),
|
|
(Group: $72; Element: $704; DataType: iedtCS; Description: 'Pseudo-color Type'; IsDeprecated: False),
|
|
(Group: $72; Element: $706; DataType: iedtCS; Description: 'Show Grayscale Inverted'; IsDeprecated: False),
|
|
(Group: $72; Element: $710; DataType: iedtCS; Description: 'Show Image True Size Flag'; IsDeprecated: False),
|
|
(Group: $72; Element: $712; DataType: iedtCS; Description: 'Show Graphic Annotation Flag'; IsDeprecated: False),
|
|
(Group: $72; Element: $714; DataType: iedtCS; Description: 'Show Patient Demographics Flag'; IsDeprecated: False),
|
|
(Group: $72; Element: $716; DataType: iedtCS; Description: 'Show Acquisition Techniques Flag'; IsDeprecated: False),
|
|
(Group: $72; Element: $717; DataType: iedtCS; Description: 'Display Set Horizontal Justification'; IsDeprecated: False),
|
|
(Group: $72; Element: $718; DataType: iedtCS; Description: 'Display Set Vertical Justification'; IsDeprecated: False),
|
|
(Group: $74; Element: $1000; DataType: iedtCS; Description: 'Unified Procedure Step State'; IsDeprecated: False),
|
|
(Group: $74; Element: $1002; DataType: iedtSQ; Description: 'UPS Progress Information Sequence'; IsDeprecated: False),
|
|
(Group: $74; Element: $1004; DataType: iedtDS; Description: 'Unified Procedure Step Progress'; IsDeprecated: False),
|
|
(Group: $74; Element: $1006; DataType: iedtST; Description: 'Unified Procedure Step Progress Description'; IsDeprecated: False),
|
|
(Group: $74; Element: $1008; DataType: iedtSQ; Description: 'Unified Procedure Step Communications URI Sequence'; IsDeprecated: False),
|
|
(Group: $74; Element: $100a; DataType: iedtST; Description: 'Contact URI'; IsDeprecated: False),
|
|
(Group: $74; Element: $100c; DataType: iedtLO; Description: 'Contact Display Name'; IsDeprecated: False),
|
|
(Group: $74; Element: $100e; DataType: iedtSQ; Description: 'Unified Procedure Step Discontinuation Reason Code Sequence'; IsDeprecated: False),
|
|
(Group: $74; Element: $1020; DataType: iedtSQ; Description: 'Beam Task Sequence'; IsDeprecated: False),
|
|
(Group: $74; Element: $1022; DataType: iedtCS; Description: 'Beam Task Type'; IsDeprecated: False),
|
|
(Group: $74; Element: $1024; DataType: iedtIS; Description: 'Beam Order Index'; IsDeprecated: False),
|
|
(Group: $74; Element: $1030; DataType: iedtSQ; Description: 'Delivery Verification Image Sequence'; IsDeprecated: False),
|
|
(Group: $74; Element: $1032; DataType: iedtCS; Description: 'Verification Image Timing'; IsDeprecated: False),
|
|
(Group: $74; Element: $1034; DataType: iedtCS; Description: 'Double Exposure Flag'; IsDeprecated: False),
|
|
(Group: $74; Element: $1036; DataType: iedtCS; Description: 'Double Exposure Ordering'; IsDeprecated: False),
|
|
(Group: $74; Element: $1038; DataType: iedtDS; Description: 'Double Exposure Meterset'; IsDeprecated: False),
|
|
(Group: $74; Element: $103a; DataType: iedtDS; Description: 'Double Exposure Field Delta'; IsDeprecated: False),
|
|
(Group: $74; Element: $1040; DataType: iedtSQ; Description: 'Related Reference RT Image Sequence'; IsDeprecated: False),
|
|
(Group: $74; Element: $1042; DataType: iedtSQ; Description: 'General Machine Verification Sequence'; IsDeprecated: False),
|
|
(Group: $74; Element: $1044; DataType: iedtSQ; Description: 'Conventional Machine Verification Sequence'; IsDeprecated: False),
|
|
(Group: $74; Element: $1046; DataType: iedtSQ; Description: 'Ion Machine Verification Sequence'; IsDeprecated: False),
|
|
(Group: $74; Element: $1048; DataType: iedtSQ; Description: 'Failed Attributes Sequence'; IsDeprecated: False),
|
|
(Group: $74; Element: $104a; DataType: iedtSQ; Description: 'Overridden Attributes Sequence'; IsDeprecated: False),
|
|
(Group: $74; Element: $104c; DataType: iedtSQ; Description: 'Conventional Control Point Verification Sequence'; IsDeprecated: False),
|
|
(Group: $74; Element: $104e; DataType: iedtSQ; Description: 'Ion Control Point Verification Sequence'; IsDeprecated: False),
|
|
(Group: $74; Element: $1050; DataType: iedtSQ; Description: 'Attribute Occurrence Sequence'; IsDeprecated: False),
|
|
(Group: $74; Element: $1052; DataType: iedtAT; Description: 'Attribute Occurrence Pointer'; IsDeprecated: False),
|
|
(Group: $74; Element: $1054; DataType: iedtUL; Description: 'Attribute Item Selector'; IsDeprecated: False),
|
|
(Group: $74; Element: $1056; DataType: iedtLO; Description: 'Attribute Occurrence Private Creator'; IsDeprecated: False),
|
|
(Group: $74; Element: $1200; DataType: iedtCS; Description: 'Scheduled Procedure Step Priority'; IsDeprecated: False),
|
|
(Group: $74; Element: $1202; DataType: iedtLO; Description: 'Worklist Label'; IsDeprecated: False),
|
|
(Group: $74; Element: $1204; DataType: iedtLO; Description: 'Procedure Step Label'; IsDeprecated: False),
|
|
(Group: $74; Element: $1210; DataType: iedtSQ; Description: 'Scheduled Processing Parameters Sequence'; IsDeprecated: False),
|
|
(Group: $74; Element: $1212; DataType: iedtSQ; Description: 'Performed Processing Parameters Sequence'; IsDeprecated: False),
|
|
(Group: $74; Element: $1216; DataType: iedtSQ; Description: 'UPS Performed Procedure Sequence'; IsDeprecated: False),
|
|
(Group: $74; Element: $1220; DataType: iedtSQ; Description: 'Related Procedure Step Sequence'; IsDeprecated: False),
|
|
(Group: $74; Element: $1222; DataType: iedtLO; Description: 'Procedure Step Relationship Type'; IsDeprecated: False),
|
|
(Group: $74; Element: $1230; DataType: iedtLO; Description: 'Deletion Lock'; IsDeprecated: False),
|
|
(Group: $74; Element: $1234; DataType: iedtAE; Description: 'Receiving AE'; IsDeprecated: False),
|
|
(Group: $74; Element: $1236; DataType: iedtAE; Description: 'Requesting AE'; IsDeprecated: False),
|
|
(Group: $74; Element: $1238; DataType: iedtLT; Description: 'Reason for Cancellation'; IsDeprecated: False),
|
|
(Group: $74; Element: $1242; DataType: iedtCS; Description: 'SCP Status'; IsDeprecated: False),
|
|
(Group: $74; Element: $1244; DataType: iedtCS; Description: 'Subscription List Status'; IsDeprecated: False),
|
|
(Group: $74; Element: $1246; DataType: iedtCS; Description: 'UPS List Status'; IsDeprecated: False),
|
|
(Group: $88; Element: $130; DataType: iedtSH; Description: 'Storage Media File-set ID'; IsDeprecated: False),
|
|
(Group: $88; Element: $140; DataType: iedtUI; Description: 'Storage Media File-set UID'; IsDeprecated: False),
|
|
(Group: $88; Element: $200; DataType: iedtSQ; Description: 'Icon Image Sequence'; IsDeprecated: False),
|
|
(Group: $88; Element: $904; DataType: iedtLO; Description: 'Topic Title'; IsDeprecated: True),
|
|
(Group: $88; Element: $906; DataType: iedtST; Description: 'Topic Subject'; IsDeprecated: True),
|
|
(Group: $88; Element: $910; DataType: iedtLO; Description: 'Topic Author'; IsDeprecated: True),
|
|
(Group: $88; Element: $912; DataType: iedtLO; Description: 'Topic Keywords'; IsDeprecated: True),
|
|
(Group: $100; Element: $410; DataType: iedtCS; Description: 'SOP Instance Status'; IsDeprecated: False),
|
|
(Group: $100; Element: $420; DataType: iedtDT; Description: 'SOP Authorization Date and Time'; IsDeprecated: False),
|
|
(Group: $100; Element: $424; DataType: iedtLT; Description: 'SOP Authorization Comment'; IsDeprecated: False),
|
|
(Group: $100; Element: $426; DataType: iedtLO; Description: 'Authorization Equipment Certification Number'; IsDeprecated: False),
|
|
(Group: $400; Element: $5; DataType: iedtUS; Description: 'MAC ID Number'; IsDeprecated: False),
|
|
(Group: $400; Element: $10; DataType: iedtUI; Description: 'MAC Calculation Transfer Syntax UID'; IsDeprecated: False),
|
|
(Group: $400; Element: $15; DataType: iedtCS; Description: 'MAC Algorithm'; IsDeprecated: False),
|
|
(Group: $400; Element: $20; DataType: iedtAT; Description: 'Data Elements Signed'; IsDeprecated: False),
|
|
(Group: $400; Element: $100; DataType: iedtUI; Description: 'Digital Signature UID'; IsDeprecated: False),
|
|
(Group: $400; Element: $105; DataType: iedtDT; Description: 'Digital Signature DateTime'; IsDeprecated: False),
|
|
(Group: $400; Element: $110; DataType: iedtCS; Description: 'Certificate Type'; IsDeprecated: False),
|
|
(Group: $400; Element: $115; DataType: iedtOB; Description: 'Certificate of Signer'; IsDeprecated: False),
|
|
(Group: $400; Element: $120; DataType: iedtOB; Description: 'Signature'; IsDeprecated: False),
|
|
(Group: $400; Element: $305; DataType: iedtCS; Description: 'Certified Timestamp Type'; IsDeprecated: False),
|
|
(Group: $400; Element: $310; DataType: iedtOB; Description: 'Certified Timestamp'; IsDeprecated: False),
|
|
(Group: $400; Element: $401; DataType: iedtSQ; Description: 'Digital Signature Purpose Code Sequence'; IsDeprecated: False),
|
|
(Group: $400; Element: $402; DataType: iedtSQ; Description: 'Referenced Digital Signature Sequence'; IsDeprecated: False),
|
|
(Group: $400; Element: $403; DataType: iedtSQ; Description: 'Referenced SOP Instance MAC Sequence'; IsDeprecated: False),
|
|
(Group: $400; Element: $404; DataType: iedtOB; Description: 'MAC'; IsDeprecated: False),
|
|
(Group: $400; Element: $500; DataType: iedtSQ; Description: 'Encrypted Attributes Sequence'; IsDeprecated: False),
|
|
(Group: $400; Element: $510; DataType: iedtUI; Description: 'Encrypted Content Transfer Syntax UID'; IsDeprecated: False),
|
|
(Group: $400; Element: $520; DataType: iedtOB; Description: 'Encrypted Content'; IsDeprecated: False),
|
|
(Group: $400; Element: $550; DataType: iedtSQ; Description: 'Modified Attributes Sequence'; IsDeprecated: False),
|
|
(Group: $400; Element: $561; DataType: iedtSQ; Description: 'Original Attributes Sequence'; IsDeprecated: False),
|
|
(Group: $400; Element: $562; DataType: iedtDT; Description: 'Attribute Modification DateTime'; IsDeprecated: False),
|
|
(Group: $400; Element: $563; DataType: iedtLO; Description: 'Modifying System'; IsDeprecated: False),
|
|
(Group: $400; Element: $564; DataType: iedtLO; Description: 'Source of Previous Values'; IsDeprecated: False),
|
|
(Group: $400; Element: $565; DataType: iedtCS; Description: 'Reason for the Attribute Modification'; IsDeprecated: False),
|
|
(Group: $1000; Element: $0000; DataType: iedtUS; Description: 'Escape Triplet'; IsDeprecated: True),
|
|
(Group: $1000; Element: $0001; DataType: iedtUS; Description: 'Run Length Triplet'; IsDeprecated: True),
|
|
(Group: $1000; Element: $0002; DataType: iedtUS; Description: 'Huffman Table Size'; IsDeprecated: True),
|
|
(Group: $1000; Element: $0003; DataType: iedtUS; Description: 'Huffman Table Triplet'; IsDeprecated: True),
|
|
(Group: $1000; Element: $0004; DataType: iedtUS; Description: 'Shift Table Size'; IsDeprecated: True),
|
|
(Group: $1000; Element: $0005; DataType: iedtUS; Description: 'Shift Table Triplet'; IsDeprecated: True),
|
|
(Group: $1010; Element: $0; DataType: iedtUS; Description: 'Zonal Map'; IsDeprecated: True),
|
|
(Group: $2000; Element: $10; DataType: iedtIS; Description: 'Number of Copies'; IsDeprecated: False),
|
|
(Group: $2000; Element: $001e; DataType: iedtSQ; Description: 'Printer Configuration Sequence'; IsDeprecated: False),
|
|
(Group: $2000; Element: $20; DataType: iedtCS; Description: 'Print Priority'; IsDeprecated: False),
|
|
(Group: $2000; Element: $30; DataType: iedtCS; Description: 'Medium Type'; IsDeprecated: False),
|
|
(Group: $2000; Element: $40; DataType: iedtCS; Description: 'Film Destination'; IsDeprecated: False),
|
|
(Group: $2000; Element: $50; DataType: iedtLO; Description: 'Film Session Label'; IsDeprecated: False),
|
|
(Group: $2000; Element: $60; DataType: iedtIS; Description: 'Memory Allocation'; IsDeprecated: False),
|
|
(Group: $2000; Element: $61; DataType: iedtIS; Description: 'Maximum Memory Allocation'; IsDeprecated: False),
|
|
(Group: $2000; Element: $62; DataType: iedtCS; Description: 'Color Image Printing Flag'; IsDeprecated: True),
|
|
(Group: $2000; Element: $63; DataType: iedtCS; Description: 'Collation Flag'; IsDeprecated: True),
|
|
(Group: $2000; Element: $65; DataType: iedtCS; Description: 'Annotation Flag'; IsDeprecated: True),
|
|
(Group: $2000; Element: $67; DataType: iedtCS; Description: 'Image Overlay Flag'; IsDeprecated: True),
|
|
(Group: $2000; Element: $69; DataType: iedtCS; Description: 'Presentation LUT Flag'; IsDeprecated: True),
|
|
(Group: $2000; Element: $006a; DataType: iedtCS; Description: 'Image Box Presentation LUT Flag'; IsDeprecated: True),
|
|
(Group: $2000; Element: $00a0; DataType: iedtUS; Description: 'Memory Bit Depth'; IsDeprecated: False),
|
|
(Group: $2000; Element: $00a1; DataType: iedtUS; Description: 'Printing Bit Depth'; IsDeprecated: False),
|
|
(Group: $2000; Element: $00a2; DataType: iedtSQ; Description: 'Media Installed Sequence'; IsDeprecated: False),
|
|
(Group: $2000; Element: $00a4; DataType: iedtSQ; Description: 'Other Media Available Sequence'; IsDeprecated: False),
|
|
(Group: $2000; Element: $00a8; DataType: iedtSQ; Description: 'Supported Image Display Formats Sequence'; IsDeprecated: False),
|
|
(Group: $2000; Element: $500; DataType: iedtSQ; Description: 'Referenced Film Box Sequence'; IsDeprecated: False),
|
|
(Group: $2000; Element: $510; DataType: iedtSQ; Description: 'Referenced Stored Print Sequence'; IsDeprecated: True),
|
|
(Group: $2010; Element: $10; DataType: iedtST; Description: 'Image Display Format'; IsDeprecated: False),
|
|
(Group: $2010; Element: $30; DataType: iedtCS; Description: 'Annotation Display Format ID'; IsDeprecated: False),
|
|
(Group: $2010; Element: $40; DataType: iedtCS; Description: 'Film Orientation'; IsDeprecated: False),
|
|
(Group: $2010; Element: $50; DataType: iedtCS; Description: 'Film Size ID'; IsDeprecated: False),
|
|
(Group: $2010; Element: $52; DataType: iedtCS; Description: 'Printer Resolution ID'; IsDeprecated: False),
|
|
(Group: $2010; Element: $54; DataType: iedtCS; Description: 'Default Printer Resolution ID'; IsDeprecated: False),
|
|
(Group: $2010; Element: $60; DataType: iedtCS; Description: 'Magnification Type'; IsDeprecated: False),
|
|
(Group: $2010; Element: $80; DataType: iedtCS; Description: 'Smoothing Type'; IsDeprecated: False),
|
|
(Group: $2010; Element: $00a6; DataType: iedtCS; Description: 'Default Magnification Type'; IsDeprecated: False),
|
|
(Group: $2010; Element: $00a7; DataType: iedtCS; Description: 'Other Magnification Types Available'; IsDeprecated: False),
|
|
(Group: $2010; Element: $00a8; DataType: iedtCS; Description: 'Default Smoothing Type'; IsDeprecated: False),
|
|
(Group: $2010; Element: $00a9; DataType: iedtCS; Description: 'Other Smoothing Types Available'; IsDeprecated: False),
|
|
(Group: $2010; Element: $100; DataType: iedtCS; Description: 'Border Density'; IsDeprecated: False),
|
|
(Group: $2010; Element: $110; DataType: iedtCS; Description: 'Empty Image Density'; IsDeprecated: False),
|
|
(Group: $2010; Element: $120; DataType: iedtUS; Description: 'Min Density'; IsDeprecated: False),
|
|
(Group: $2010; Element: $130; DataType: iedtUS; Description: 'Max Density'; IsDeprecated: False),
|
|
(Group: $2010; Element: $140; DataType: iedtCS; Description: 'Trim'; IsDeprecated: False),
|
|
(Group: $2010; Element: $150; DataType: iedtST; Description: 'Configuration Information'; IsDeprecated: False),
|
|
(Group: $2010; Element: $152; DataType: iedtLT; Description: 'Configuration Information Description'; IsDeprecated: False),
|
|
(Group: $2010; Element: $154; DataType: iedtIS; Description: 'Maximum Collated Films'; IsDeprecated: False),
|
|
(Group: $2010; Element: $015e; DataType: iedtUS; Description: 'Illumination'; IsDeprecated: False),
|
|
(Group: $2010; Element: $160; DataType: iedtUS; Description: 'Reflected Ambient Light'; IsDeprecated: False),
|
|
(Group: $2010; Element: $376; DataType: iedtDS; Description: 'Printer Pixel Spacing'; IsDeprecated: False),
|
|
(Group: $2010; Element: $500; DataType: iedtSQ; Description: 'Referenced Film Session Sequence'; IsDeprecated: False),
|
|
(Group: $2010; Element: $510; DataType: iedtSQ; Description: 'Referenced Image Box Sequence'; IsDeprecated: False),
|
|
(Group: $2010; Element: $520; DataType: iedtSQ; Description: 'Referenced Basic Annotation Box Sequence'; IsDeprecated: False),
|
|
(Group: $2020; Element: $10; DataType: iedtUS; Description: 'Image Box Position'; IsDeprecated: False),
|
|
(Group: $2020; Element: $20; DataType: iedtCS; Description: 'Polarity'; IsDeprecated: False),
|
|
(Group: $2020; Element: $30; DataType: iedtDS; Description: 'Requested Image Size'; IsDeprecated: False),
|
|
(Group: $2020; Element: $40; DataType: iedtCS; Description: 'Requested Decimate/Crop Behavior'; IsDeprecated: False),
|
|
(Group: $2020; Element: $50; DataType: iedtCS; Description: 'Requested Resolution ID'; IsDeprecated: False),
|
|
(Group: $2020; Element: $00a0; DataType: iedtCS; Description: 'Requested Image Size Flag'; IsDeprecated: False),
|
|
(Group: $2020; Element: $00a2; DataType: iedtCS; Description: 'Decimate/Crop Result'; IsDeprecated: False),
|
|
(Group: $2020; Element: $110; DataType: iedtSQ; Description: 'Basic Grayscale Image Sequence'; IsDeprecated: False),
|
|
(Group: $2020; Element: $111; DataType: iedtSQ; Description: 'Basic Color Image Sequence'; IsDeprecated: False),
|
|
(Group: $2020; Element: $130; DataType: iedtSQ; Description: 'Referenced Image Overlay Box Sequence'; IsDeprecated: True),
|
|
(Group: $2020; Element: $140; DataType: iedtSQ; Description: 'Referenced VOI LUT Box Sequence'; IsDeprecated: True),
|
|
(Group: $2030; Element: $10; DataType: iedtUS; Description: 'Annotation Position'; IsDeprecated: False),
|
|
(Group: $2030; Element: $20; DataType: iedtLO; Description: 'Text String'; IsDeprecated: False),
|
|
(Group: $2040; Element: $10; DataType: iedtSQ; Description: 'Referenced Overlay Plane Sequence'; IsDeprecated: True),
|
|
(Group: $2040; Element: $11; DataType: iedtUS; Description: 'Referenced Overlay Plane Groups'; IsDeprecated: True),
|
|
(Group: $2040; Element: $20; DataType: iedtSQ; Description: 'Overlay Pixel Data Sequence'; IsDeprecated: True),
|
|
(Group: $2040; Element: $60; DataType: iedtCS; Description: 'Overlay Magnification Type'; IsDeprecated: True),
|
|
(Group: $2040; Element: $70; DataType: iedtCS; Description: 'Overlay Smoothing Type'; IsDeprecated: True),
|
|
(Group: $2040; Element: $72; DataType: iedtCS; Description: 'Overlay or Image Magnification'; IsDeprecated: True),
|
|
(Group: $2040; Element: $74; DataType: iedtUS; Description: 'Magnify to Number of Columns'; IsDeprecated: True),
|
|
(Group: $2040; Element: $80; DataType: iedtCS; Description: 'Overlay Foreground Density'; IsDeprecated: True),
|
|
(Group: $2040; Element: $82; DataType: iedtCS; Description: 'Overlay Background Density'; IsDeprecated: True),
|
|
(Group: $2040; Element: $90; DataType: iedtCS; Description: 'Overlay Mode'; IsDeprecated: True),
|
|
(Group: $2040; Element: $100; DataType: iedtCS; Description: 'Threshold Density'; IsDeprecated: True),
|
|
(Group: $2040; Element: $500; DataType: iedtSQ; Description: 'Referenced Image Box Sequence (Retired)'; IsDeprecated: True),
|
|
(Group: $2050; Element: $10; DataType: iedtSQ; Description: 'Presentation LUT Sequence'; IsDeprecated: False),
|
|
(Group: $2050; Element: $20; DataType: iedtCS; Description: 'Presentation LUT Shape'; IsDeprecated: False),
|
|
(Group: $2050; Element: $500; DataType: iedtSQ; Description: 'Referenced Presentation LUT Sequence'; IsDeprecated: False),
|
|
(Group: $2100; Element: $10; DataType: iedtSH; Description: 'Print Job ID'; IsDeprecated: True),
|
|
(Group: $2100; Element: $20; DataType: iedtCS; Description: 'Execution Status'; IsDeprecated: False),
|
|
(Group: $2100; Element: $30; DataType: iedtCS; Description: 'Execution Status Info'; IsDeprecated: False),
|
|
(Group: $2100; Element: $40; DataType: iedtDA; Description: 'Creation Date'; IsDeprecated: False),
|
|
(Group: $2100; Element: $50; DataType: iedtTM; Description: 'Creation Time'; IsDeprecated: False),
|
|
(Group: $2100; Element: $70; DataType: iedtAE; Description: 'Originator'; IsDeprecated: False),
|
|
(Group: $2100; Element: $140; DataType: iedtAE; Description: 'Destination AE'; IsDeprecated: True),
|
|
(Group: $2100; Element: $160; DataType: iedtSH; Description: 'Owner ID'; IsDeprecated: False),
|
|
(Group: $2100; Element: $170; DataType: iedtIS; Description: 'Number of Films'; IsDeprecated: False),
|
|
(Group: $2100; Element: $500; DataType: iedtSQ; Description: 'Referenced Print Job Sequence (Pull Stored Print)'; IsDeprecated: True),
|
|
(Group: $2110; Element: $10; DataType: iedtCS; Description: 'Printer Status'; IsDeprecated: False),
|
|
(Group: $2110; Element: $20; DataType: iedtCS; Description: 'Printer Status Info'; IsDeprecated: False),
|
|
(Group: $2110; Element: $30; DataType: iedtLO; Description: 'Printer Name'; IsDeprecated: False),
|
|
(Group: $2110; Element: $99; DataType: iedtSH; Description: 'Print Queue ID'; IsDeprecated: True),
|
|
(Group: $2120; Element: $10; DataType: iedtCS; Description: 'Queue Status'; IsDeprecated: True),
|
|
(Group: $2120; Element: $50; DataType: iedtSQ; Description: 'Print Job Description Sequence'; IsDeprecated: True),
|
|
(Group: $2120; Element: $70; DataType: iedtSQ; Description: 'Referenced Print Job Sequence'; IsDeprecated: True),
|
|
(Group: $2130; Element: $10; DataType: iedtSQ; Description: 'Print Management Capabilities Sequence'; IsDeprecated: True),
|
|
(Group: $2130; Element: $15; DataType: iedtSQ; Description: 'Printer Characteristics Sequence'; IsDeprecated: True),
|
|
(Group: $2130; Element: $30; DataType: iedtSQ; Description: 'Film Box Content Sequence'; IsDeprecated: True),
|
|
(Group: $2130; Element: $40; DataType: iedtSQ; Description: 'Image Box Content Sequence'; IsDeprecated: True),
|
|
(Group: $2130; Element: $50; DataType: iedtSQ; Description: 'Annotation Content Sequence'; IsDeprecated: True),
|
|
(Group: $2130; Element: $60; DataType: iedtSQ; Description: 'Image Overlay Box Content Sequence'; IsDeprecated: True),
|
|
(Group: $2130; Element: $80; DataType: iedtSQ; Description: 'Presentation LUT Content Sequence'; IsDeprecated: True),
|
|
(Group: $2130; Element: $00a0; DataType: iedtSQ; Description: 'Proposed Study Sequence'; IsDeprecated: True),
|
|
(Group: $2130; Element: $00c0; DataType: iedtSQ; Description: 'Original Image Sequence'; IsDeprecated: True),
|
|
(Group: $2200; Element: $1; DataType: iedtCS; Description: 'Label Using Information Extracted From Instances'; IsDeprecated: False),
|
|
(Group: $2200; Element: $2; DataType: iedtUT; Description: 'Label Text'; IsDeprecated: False),
|
|
(Group: $2200; Element: $3; DataType: iedtCS; Description: 'Label Style Selection'; IsDeprecated: False),
|
|
(Group: $2200; Element: $4; DataType: iedtLT; Description: 'Media Disposition'; IsDeprecated: False),
|
|
(Group: $2200; Element: $5; DataType: iedtLT; Description: 'Barcode Value'; IsDeprecated: False),
|
|
(Group: $2200; Element: $6; DataType: iedtCS; Description: 'Barcode Symbology'; IsDeprecated: False),
|
|
(Group: $2200; Element: $7; DataType: iedtCS; Description: 'Allow Media Splitting'; IsDeprecated: False),
|
|
(Group: $2200; Element: $8; DataType: iedtCS; Description: 'Include Non-DICOM Objects'; IsDeprecated: False),
|
|
(Group: $2200; Element: $9; DataType: iedtCS; Description: 'Include Display Application'; IsDeprecated: False),
|
|
(Group: $2200; Element: $000a; DataType: iedtCS; Description: 'Preserve Composite Instances After Media Creation'; IsDeprecated: False),
|
|
(Group: $2200; Element: $000b; DataType: iedtUS; Description: 'Total Number of Pieces of Media Created'; IsDeprecated: False),
|
|
(Group: $2200; Element: $000c; DataType: iedtLO; Description: 'Requested Media Application Profile'; IsDeprecated: False),
|
|
(Group: $2200; Element: $000d; DataType: iedtSQ; Description: 'Referenced Storage Media Sequence'; IsDeprecated: False),
|
|
(Group: $2200; Element: $000e; DataType: iedtAT; Description: 'Failure Attributes'; IsDeprecated: False),
|
|
(Group: $2200; Element: $000f; DataType: iedtCS; Description: 'Allow Lossy Compression'; IsDeprecated: False),
|
|
(Group: $2200; Element: $20; DataType: iedtCS; Description: 'Request Priority'; IsDeprecated: False),
|
|
(Group: $3002; Element: $2; DataType: iedtSH; Description: 'RT Image Label'; IsDeprecated: False),
|
|
(Group: $3002; Element: $3; DataType: iedtLO; Description: 'RT Image Name'; IsDeprecated: False),
|
|
(Group: $3002; Element: $4; DataType: iedtST; Description: 'RT Image Description'; IsDeprecated: False),
|
|
(Group: $3002; Element: $000a; DataType: iedtCS; Description: 'Reported Values Origin'; IsDeprecated: False),
|
|
(Group: $3002; Element: $000c; DataType: iedtCS; Description: 'RT Image Plane'; IsDeprecated: False),
|
|
(Group: $3002; Element: $000d; DataType: iedtDS; Description: 'X-Ray Image Receptor Translation'; IsDeprecated: False),
|
|
(Group: $3002; Element: $000e; DataType: iedtDS; Description: 'X-Ray Image Receptor Angle'; IsDeprecated: False),
|
|
(Group: $3002; Element: $10; DataType: iedtDS; Description: 'RT Image Orientation'; IsDeprecated: False),
|
|
(Group: $3002; Element: $11; DataType: iedtDS; Description: 'Image Plane Pixel Spacing'; IsDeprecated: False),
|
|
(Group: $3002; Element: $12; DataType: iedtDS; Description: 'RT Image Position'; IsDeprecated: False),
|
|
(Group: $3002; Element: $20; DataType: iedtSH; Description: 'Radiation Machine Name'; IsDeprecated: False),
|
|
(Group: $3002; Element: $22; DataType: iedtDS; Description: 'Radiation Machine SAD'; IsDeprecated: False),
|
|
(Group: $3002; Element: $24; DataType: iedtDS; Description: 'Radiation Machine SSD'; IsDeprecated: False),
|
|
(Group: $3002; Element: $26; DataType: iedtDS; Description: 'RT Image SID'; IsDeprecated: False),
|
|
(Group: $3002; Element: $28; DataType: iedtDS; Description: 'Source to Reference Object Distance'; IsDeprecated: False),
|
|
(Group: $3002; Element: $29; DataType: iedtIS; Description: 'Fraction Number'; IsDeprecated: False),
|
|
(Group: $3002; Element: $30; DataType: iedtSQ; Description: 'Exposure Sequence'; IsDeprecated: False),
|
|
(Group: $3002; Element: $32; DataType: iedtDS; Description: 'Meterset Exposure'; IsDeprecated: False),
|
|
(Group: $3002; Element: $34; DataType: iedtDS; Description: 'Diaphragm Position'; IsDeprecated: False),
|
|
(Group: $3002; Element: $40; DataType: iedtSQ; Description: 'Fluence Map Sequence'; IsDeprecated: False),
|
|
(Group: $3002; Element: $41; DataType: iedtCS; Description: 'Fluence Data Source'; IsDeprecated: False),
|
|
(Group: $3002; Element: $42; DataType: iedtDS; Description: 'Fluence Data Scale'; IsDeprecated: False),
|
|
(Group: $3004; Element: $1; DataType: iedtCS; Description: 'DVH Type'; IsDeprecated: False),
|
|
(Group: $3004; Element: $2; DataType: iedtCS; Description: 'Dose Units'; IsDeprecated: False),
|
|
(Group: $3004; Element: $4; DataType: iedtCS; Description: 'Dose Type'; IsDeprecated: False),
|
|
(Group: $3004; Element: $6; DataType: iedtLO; Description: 'Dose Comment'; IsDeprecated: False),
|
|
(Group: $3004; Element: $8; DataType: iedtDS; Description: 'Normalization Point'; IsDeprecated: False),
|
|
(Group: $3004; Element: $000a; DataType: iedtCS; Description: 'Dose Summation Type'; IsDeprecated: False),
|
|
(Group: $3004; Element: $000c; DataType: iedtDS; Description: 'Grid Frame Offset Vector'; IsDeprecated: False),
|
|
(Group: $3004; Element: $000e; DataType: iedtDS; Description: 'Dose Grid Scaling'; IsDeprecated: False),
|
|
(Group: $3004; Element: $10; DataType: iedtSQ; Description: 'RT Dose ROI Sequence'; IsDeprecated: False),
|
|
(Group: $3004; Element: $12; DataType: iedtDS; Description: 'Dose Value'; IsDeprecated: False),
|
|
(Group: $3004; Element: $14; DataType: iedtCS; Description: 'Tissue Heterogeneity Correction'; IsDeprecated: False),
|
|
(Group: $3004; Element: $40; DataType: iedtDS; Description: 'DVH Normalization Point'; IsDeprecated: False),
|
|
(Group: $3004; Element: $42; DataType: iedtDS; Description: 'DVH Normalization Dose Value'; IsDeprecated: False),
|
|
(Group: $3004; Element: $50; DataType: iedtSQ; Description: 'DVH Sequence'; IsDeprecated: False),
|
|
(Group: $3004; Element: $52; DataType: iedtDS; Description: 'DVH Dose Scaling'; IsDeprecated: False),
|
|
(Group: $3004; Element: $54; DataType: iedtCS; Description: 'DVH Volume Units'; IsDeprecated: False),
|
|
(Group: $3004; Element: $56; DataType: iedtIS; Description: 'DVH Number of Bins'; IsDeprecated: False),
|
|
(Group: $3004; Element: $58; DataType: iedtDS; Description: 'DVH Data'; IsDeprecated: False),
|
|
(Group: $3004; Element: $60; DataType: iedtSQ; Description: 'DVH Referenced ROI Sequence'; IsDeprecated: False),
|
|
(Group: $3004; Element: $62; DataType: iedtCS; Description: 'DVH ROI Contribution Type'; IsDeprecated: False),
|
|
(Group: $3004; Element: $70; DataType: iedtDS; Description: 'DVH Minimum Dose'; IsDeprecated: False),
|
|
(Group: $3004; Element: $72; DataType: iedtDS; Description: 'DVH Maximum Dose'; IsDeprecated: False),
|
|
(Group: $3004; Element: $74; DataType: iedtDS; Description: 'DVH Mean Dose'; IsDeprecated: False),
|
|
(Group: $3006; Element: $2; DataType: iedtSH; Description: 'Structure Set Label'; IsDeprecated: False),
|
|
(Group: $3006; Element: $4; DataType: iedtLO; Description: 'Structure Set Name'; IsDeprecated: False),
|
|
(Group: $3006; Element: $6; DataType: iedtST; Description: 'Structure Set Description'; IsDeprecated: False),
|
|
(Group: $3006; Element: $8; DataType: iedtDA; Description: 'Structure Set Date'; IsDeprecated: False),
|
|
(Group: $3006; Element: $9; DataType: iedtTM; Description: 'Structure Set Time'; IsDeprecated: False),
|
|
(Group: $3006; Element: $10; DataType: iedtSQ; Description: 'Referenced Frame of Reference Sequence'; IsDeprecated: False),
|
|
(Group: $3006; Element: $12; DataType: iedtSQ; Description: 'RT Referenced Study Sequence'; IsDeprecated: False),
|
|
(Group: $3006; Element: $14; DataType: iedtSQ; Description: 'RT Referenced Series Sequence'; IsDeprecated: False),
|
|
(Group: $3006; Element: $16; DataType: iedtSQ; Description: 'Contour Image Sequence'; IsDeprecated: False),
|
|
(Group: $3006; Element: $20; DataType: iedtSQ; Description: 'Structure Set ROI Sequence'; IsDeprecated: False),
|
|
(Group: $3006; Element: $22; DataType: iedtIS; Description: 'ROI Number'; IsDeprecated: False),
|
|
(Group: $3006; Element: $24; DataType: iedtUI; Description: 'Referenced Frame of Reference UID'; IsDeprecated: False),
|
|
(Group: $3006; Element: $26; DataType: iedtLO; Description: 'ROI Name'; IsDeprecated: False),
|
|
(Group: $3006; Element: $28; DataType: iedtST; Description: 'ROI Description'; IsDeprecated: False),
|
|
(Group: $3006; Element: $002a; DataType: iedtIS; Description: 'ROI Display Color'; IsDeprecated: False),
|
|
(Group: $3006; Element: $002c; DataType: iedtDS; Description: 'ROI Volume'; IsDeprecated: False),
|
|
(Group: $3006; Element: $30; DataType: iedtSQ; Description: 'RT Related ROI Sequence'; IsDeprecated: False),
|
|
(Group: $3006; Element: $33; DataType: iedtCS; Description: 'RT ROI Relationship'; IsDeprecated: False),
|
|
(Group: $3006; Element: $36; DataType: iedtCS; Description: 'ROI Generation Algorithm'; IsDeprecated: False),
|
|
(Group: $3006; Element: $38; DataType: iedtLO; Description: 'ROI Generation Description'; IsDeprecated: False),
|
|
(Group: $3006; Element: $39; DataType: iedtSQ; Description: 'ROI Contour Sequence'; IsDeprecated: False),
|
|
(Group: $3006; Element: $40; DataType: iedtSQ; Description: 'Contour Sequence'; IsDeprecated: False),
|
|
(Group: $3006; Element: $42; DataType: iedtCS; Description: 'Contour Geometric Type'; IsDeprecated: False),
|
|
(Group: $3006; Element: $44; DataType: iedtDS; Description: 'Contour Slab Thickness'; IsDeprecated: False),
|
|
(Group: $3006; Element: $45; DataType: iedtDS; Description: 'Contour Offset Vector'; IsDeprecated: False),
|
|
(Group: $3006; Element: $46; DataType: iedtIS; Description: 'Number of Contour Points'; IsDeprecated: False),
|
|
(Group: $3006; Element: $48; DataType: iedtIS; Description: 'Contour Number'; IsDeprecated: False),
|
|
(Group: $3006; Element: $49; DataType: iedtIS; Description: 'Attached Contours'; IsDeprecated: False),
|
|
(Group: $3006; Element: $50; DataType: iedtDS; Description: 'Contour Data'; IsDeprecated: False),
|
|
(Group: $3006; Element: $80; DataType: iedtSQ; Description: 'RT ROI Observations Sequence'; IsDeprecated: False),
|
|
(Group: $3006; Element: $82; DataType: iedtIS; Description: 'Observation Number'; IsDeprecated: False),
|
|
(Group: $3006; Element: $84; DataType: iedtIS; Description: 'Referenced ROI Number'; IsDeprecated: False),
|
|
(Group: $3006; Element: $85; DataType: iedtSH; Description: 'ROI Observation Label'; IsDeprecated: False),
|
|
(Group: $3006; Element: $86; DataType: iedtSQ; Description: 'RT ROI Identification Code Sequence'; IsDeprecated: False),
|
|
(Group: $3006; Element: $88; DataType: iedtST; Description: 'ROI Observation Description'; IsDeprecated: False),
|
|
(Group: $3006; Element: $00a0; DataType: iedtSQ; Description: 'Related RT ROI Observations Sequence'; IsDeprecated: False),
|
|
(Group: $3006; Element: $00a4; DataType: iedtCS; Description: 'RT ROI Interpreted Type'; IsDeprecated: False),
|
|
(Group: $3006; Element: $00a6; DataType: iedtPN; Description: 'ROI Interpreter'; IsDeprecated: False),
|
|
(Group: $3006; Element: $00b0; DataType: iedtSQ; Description: 'ROI Physical Properties Sequence'; IsDeprecated: False),
|
|
(Group: $3006; Element: $00b2; DataType: iedtCS; Description: 'ROI Physical Property'; IsDeprecated: False),
|
|
(Group: $3006; Element: $00b4; DataType: iedtDS; Description: 'ROI Physical Property Value'; IsDeprecated: False),
|
|
(Group: $3006; Element: $00b6; DataType: iedtSQ; Description: 'ROI Elemental Composition Sequence'; IsDeprecated: False),
|
|
(Group: $3006; Element: $00b7; DataType: iedtUS; Description: 'ROI Elemental Composition Atomic Number'; IsDeprecated: False),
|
|
(Group: $3006; Element: $00b8; DataType: iedtFL; Description: 'ROI Elemental Composition Atomic Mass Fraction'; IsDeprecated: False),
|
|
(Group: $3006; Element: $00c0; DataType: iedtSQ; Description: 'Frame of Reference Relationship Sequence'; IsDeprecated: False),
|
|
(Group: $3006; Element: $00c2; DataType: iedtUI; Description: 'Related Frame of Reference UID'; IsDeprecated: False),
|
|
(Group: $3006; Element: $00c4; DataType: iedtCS; Description: 'Frame of Reference Transformation Type'; IsDeprecated: False),
|
|
(Group: $3006; Element: $00c6; DataType: iedtDS; Description: 'Frame of Reference Transformation Matrix'; IsDeprecated: False),
|
|
(Group: $3006; Element: $00c8; DataType: iedtLO; Description: 'Frame of Reference Transformation Comment'; IsDeprecated: False),
|
|
(Group: $3008; Element: $10; DataType: iedtSQ; Description: 'Measured Dose Reference Sequence'; IsDeprecated: False),
|
|
(Group: $3008; Element: $12; DataType: iedtST; Description: 'Measured Dose Description'; IsDeprecated: False),
|
|
(Group: $3008; Element: $14; DataType: iedtCS; Description: 'Measured Dose Type'; IsDeprecated: False),
|
|
(Group: $3008; Element: $16; DataType: iedtDS; Description: 'Measured Dose Value'; IsDeprecated: False),
|
|
(Group: $3008; Element: $20; DataType: iedtSQ; Description: 'Treatment Session Beam Sequence'; IsDeprecated: False),
|
|
(Group: $3008; Element: $21; DataType: iedtSQ; Description: 'Treatment Session Ion Beam Sequence'; IsDeprecated: False),
|
|
(Group: $3008; Element: $22; DataType: iedtIS; Description: 'Current Fraction Number'; IsDeprecated: False),
|
|
(Group: $3008; Element: $24; DataType: iedtDA; Description: 'Treatment Control Point Date'; IsDeprecated: False),
|
|
(Group: $3008; Element: $25; DataType: iedtTM; Description: 'Treatment Control Point Time'; IsDeprecated: False),
|
|
(Group: $3008; Element: $002a; DataType: iedtCS; Description: 'Treatment Termination Status'; IsDeprecated: False),
|
|
(Group: $3008; Element: $002b; DataType: iedtSH; Description: 'Treatment Termination Code'; IsDeprecated: False),
|
|
(Group: $3008; Element: $002c; DataType: iedtCS; Description: 'Treatment Verification Status'; IsDeprecated: False),
|
|
(Group: $3008; Element: $30; DataType: iedtSQ; Description: 'Referenced Treatment Record Sequence'; IsDeprecated: False),
|
|
(Group: $3008; Element: $32; DataType: iedtDS; Description: 'Specified Primary Meterset'; IsDeprecated: False),
|
|
(Group: $3008; Element: $33; DataType: iedtDS; Description: 'Specified Secondary Meterset'; IsDeprecated: False),
|
|
(Group: $3008; Element: $36; DataType: iedtDS; Description: 'Delivered Primary Meterset'; IsDeprecated: False),
|
|
(Group: $3008; Element: $37; DataType: iedtDS; Description: 'Delivered Secondary Meterset'; IsDeprecated: False),
|
|
(Group: $3008; Element: $003a; DataType: iedtDS; Description: 'Specified Treatment Time'; IsDeprecated: False),
|
|
(Group: $3008; Element: $003b; DataType: iedtDS; Description: 'Delivered Treatment Time'; IsDeprecated: False),
|
|
(Group: $3008; Element: $40; DataType: iedtSQ; Description: 'Control Point Delivery Sequence'; IsDeprecated: False),
|
|
(Group: $3008; Element: $41; DataType: iedtSQ; Description: 'Ion Control Point Delivery Sequence'; IsDeprecated: False),
|
|
(Group: $3008; Element: $42; DataType: iedtDS; Description: 'Specified Meterset'; IsDeprecated: False),
|
|
(Group: $3008; Element: $44; DataType: iedtDS; Description: 'Delivered Meterset'; IsDeprecated: False),
|
|
(Group: $3008; Element: $45; DataType: iedtFL; Description: 'Meterset Rate Set'; IsDeprecated: False),
|
|
(Group: $3008; Element: $46; DataType: iedtFL; Description: 'Meterset Rate Delivered'; IsDeprecated: False),
|
|
(Group: $3008; Element: $47; DataType: iedtFL; Description: 'Scan Spot Metersets Delivered'; IsDeprecated: False),
|
|
(Group: $3008; Element: $48; DataType: iedtDS; Description: 'Dose Rate Delivered'; IsDeprecated: False),
|
|
(Group: $3008; Element: $50; DataType: iedtSQ; Description: 'Treatment Summary Calculated Dose Reference Sequence'; IsDeprecated: False),
|
|
(Group: $3008; Element: $52; DataType: iedtDS; Description: 'Cumulative Dose to Dose Reference'; IsDeprecated: False),
|
|
(Group: $3008; Element: $54; DataType: iedtDA; Description: 'First Treatment Date'; IsDeprecated: False),
|
|
(Group: $3008; Element: $56; DataType: iedtDA; Description: 'Most Recent Treatment Date'; IsDeprecated: False),
|
|
(Group: $3008; Element: $005a; DataType: iedtIS; Description: 'Number of Fractions Delivered'; IsDeprecated: False),
|
|
(Group: $3008; Element: $60; DataType: iedtSQ; Description: 'Override Sequence'; IsDeprecated: False),
|
|
(Group: $3008; Element: $61; DataType: iedtAT; Description: 'Parameter Sequence Pointer'; IsDeprecated: False),
|
|
(Group: $3008; Element: $62; DataType: iedtAT; Description: 'Override Parameter Pointer'; IsDeprecated: False),
|
|
(Group: $3008; Element: $63; DataType: iedtIS; Description: 'Parameter Item Index'; IsDeprecated: False),
|
|
(Group: $3008; Element: $64; DataType: iedtIS; Description: 'Measured Dose Reference Number'; IsDeprecated: False),
|
|
(Group: $3008; Element: $65; DataType: iedtAT; Description: 'Parameter Pointer'; IsDeprecated: False),
|
|
(Group: $3008; Element: $66; DataType: iedtST; Description: 'Override Reason'; IsDeprecated: False),
|
|
(Group: $3008; Element: $68; DataType: iedtSQ; Description: 'Corrected Parameter Sequence'; IsDeprecated: False),
|
|
(Group: $3008; Element: $006a; DataType: iedtFL; Description: 'Correction Value'; IsDeprecated: False),
|
|
(Group: $3008; Element: $70; DataType: iedtSQ; Description: 'Calculated Dose Reference Sequence'; IsDeprecated: False),
|
|
(Group: $3008; Element: $72; DataType: iedtIS; Description: 'Calculated Dose Reference Number'; IsDeprecated: False),
|
|
(Group: $3008; Element: $74; DataType: iedtST; Description: 'Calculated Dose Reference Description'; IsDeprecated: False),
|
|
(Group: $3008; Element: $76; DataType: iedtDS; Description: 'Calculated Dose Reference Dose Value'; IsDeprecated: False),
|
|
(Group: $3008; Element: $78; DataType: iedtDS; Description: 'Start Meterset'; IsDeprecated: False),
|
|
(Group: $3008; Element: $007a; DataType: iedtDS; Description: 'End Meterset'; IsDeprecated: False),
|
|
(Group: $3008; Element: $80; DataType: iedtSQ; Description: 'Referenced Measured Dose Reference Sequence'; IsDeprecated: False),
|
|
(Group: $3008; Element: $82; DataType: iedtIS; Description: 'Referenced Measured Dose Reference Number'; IsDeprecated: False),
|
|
(Group: $3008; Element: $90; DataType: iedtSQ; Description: 'Referenced Calculated Dose Reference Sequence'; IsDeprecated: False),
|
|
(Group: $3008; Element: $92; DataType: iedtIS; Description: 'Referenced Calculated Dose Reference Number'; IsDeprecated: False),
|
|
(Group: $3008; Element: $00a0; DataType: iedtSQ; Description: 'Beam Limiting Device Leaf Pairs Sequence'; IsDeprecated: False),
|
|
(Group: $3008; Element: $00b0; DataType: iedtSQ; Description: 'Recorded Wedge Sequence'; IsDeprecated: False),
|
|
(Group: $3008; Element: $00c0; DataType: iedtSQ; Description: 'Recorded Compensator Sequence'; IsDeprecated: False),
|
|
(Group: $3008; Element: $00d0; DataType: iedtSQ; Description: 'Recorded Block Sequence'; IsDeprecated: False),
|
|
(Group: $3008; Element: $00E0; DataType: iedtSQ; Description: 'Treatment Summary Measured Dose Reference Sequence'; IsDeprecated: False),
|
|
(Group: $3008; Element: $00f0; DataType: iedtSQ; Description: 'Recorded Snout Sequence'; IsDeprecated: False),
|
|
(Group: $3008; Element: $00f2; DataType: iedtSQ; Description: 'Recorded Range Shifter Sequence'; IsDeprecated: False),
|
|
(Group: $3008; Element: $00f4; DataType: iedtSQ; Description: 'Recorded Lateral Spreading Device Sequence'; IsDeprecated: False),
|
|
(Group: $3008; Element: $00f6; DataType: iedtSQ; Description: 'Recorded Range Modulator Sequence'; IsDeprecated: False),
|
|
(Group: $3008; Element: $100; DataType: iedtSQ; Description: 'Recorded Source Sequence'; IsDeprecated: False),
|
|
(Group: $3008; Element: $105; DataType: iedtLO; Description: 'Source Serial Number'; IsDeprecated: False),
|
|
(Group: $3008; Element: $110; DataType: iedtSQ; Description: 'Treatment Session Application Setup Sequence'; IsDeprecated: False),
|
|
(Group: $3008; Element: $116; DataType: iedtCS; Description: 'Application Setup Check'; IsDeprecated: False),
|
|
(Group: $3008; Element: $120; DataType: iedtSQ; Description: 'Recorded Brachy Accessory Device Sequence'; IsDeprecated: False),
|
|
(Group: $3008; Element: $122; DataType: iedtIS; Description: 'Referenced Brachy Accessory Device Number'; IsDeprecated: False),
|
|
(Group: $3008; Element: $130; DataType: iedtSQ; Description: 'Recorded Channel Sequence'; IsDeprecated: False),
|
|
(Group: $3008; Element: $132; DataType: iedtDS; Description: 'Specified Channel Total Time'; IsDeprecated: False),
|
|
(Group: $3008; Element: $134; DataType: iedtDS; Description: 'Delivered Channel Total Time'; IsDeprecated: False),
|
|
(Group: $3008; Element: $136; DataType: iedtIS; Description: 'Specified Number of Pulses'; IsDeprecated: False),
|
|
(Group: $3008; Element: $138; DataType: iedtIS; Description: 'Delivered Number of Pulses'; IsDeprecated: False),
|
|
(Group: $3008; Element: $013a; DataType: iedtDS; Description: 'Specified Pulse Repetition Interval'; IsDeprecated: False),
|
|
(Group: $3008; Element: $013c; DataType: iedtDS; Description: 'Delivered Pulse Repetition Interval'; IsDeprecated: False),
|
|
(Group: $3008; Element: $140; DataType: iedtSQ; Description: 'Recorded Source Applicator Sequence'; IsDeprecated: False),
|
|
(Group: $3008; Element: $142; DataType: iedtIS; Description: 'Referenced Source Applicator Number'; IsDeprecated: False),
|
|
(Group: $3008; Element: $150; DataType: iedtSQ; Description: 'Recorded Channel Shield Sequence'; IsDeprecated: False),
|
|
(Group: $3008; Element: $152; DataType: iedtIS; Description: 'Referenced Channel Shield Number'; IsDeprecated: False),
|
|
(Group: $3008; Element: $160; DataType: iedtSQ; Description: 'Brachy Control Point Delivered Sequence'; IsDeprecated: False),
|
|
(Group: $3008; Element: $162; DataType: iedtDA; Description: 'Safe Position Exit Date'; IsDeprecated: False),
|
|
(Group: $3008; Element: $164; DataType: iedtTM; Description: 'Safe Position Exit Time'; IsDeprecated: False),
|
|
(Group: $3008; Element: $166; DataType: iedtDA; Description: 'Safe Position Return Date'; IsDeprecated: False),
|
|
(Group: $3008; Element: $168; DataType: iedtTM; Description: 'Safe Position Return Time'; IsDeprecated: False),
|
|
(Group: $3008; Element: $200; DataType: iedtCS; Description: 'Current Treatment Status'; IsDeprecated: False),
|
|
(Group: $3008; Element: $202; DataType: iedtST; Description: 'Treatment Status Comment'; IsDeprecated: False),
|
|
(Group: $3008; Element: $220; DataType: iedtSQ; Description: 'Fraction Group Summary Sequence'; IsDeprecated: False),
|
|
(Group: $3008; Element: $223; DataType: iedtIS; Description: 'Referenced Fraction Number'; IsDeprecated: False),
|
|
(Group: $3008; Element: $224; DataType: iedtCS; Description: 'Fraction Group Type'; IsDeprecated: False),
|
|
(Group: $3008; Element: $230; DataType: iedtCS; Description: 'Beam Stopper Position'; IsDeprecated: False),
|
|
(Group: $3008; Element: $240; DataType: iedtSQ; Description: 'Fraction Status Summary Sequence'; IsDeprecated: False),
|
|
(Group: $3008; Element: $250; DataType: iedtDA; Description: 'Treatment Date'; IsDeprecated: False),
|
|
(Group: $3008; Element: $251; DataType: iedtTM; Description: 'Treatment Time'; IsDeprecated: False),
|
|
(Group: $300a; Element: $2; DataType: iedtSH; Description: 'RT Plan Label'; IsDeprecated: False),
|
|
(Group: $300a; Element: $3; DataType: iedtLO; Description: 'RT Plan Name'; IsDeprecated: False),
|
|
(Group: $300a; Element: $4; DataType: iedtST; Description: 'RT Plan Description'; IsDeprecated: False),
|
|
(Group: $300a; Element: $6; DataType: iedtDA; Description: 'RT Plan Date'; IsDeprecated: False),
|
|
(Group: $300a; Element: $7; DataType: iedtTM; Description: 'RT Plan Time'; IsDeprecated: False),
|
|
(Group: $300a; Element: $9; DataType: iedtLO; Description: 'Treatment Protocols'; IsDeprecated: False),
|
|
(Group: $300a; Element: $000a; DataType: iedtCS; Description: 'Plan Intent'; IsDeprecated: False),
|
|
(Group: $300a; Element: $000b; DataType: iedtLO; Description: 'Treatment Sites'; IsDeprecated: False),
|
|
(Group: $300a; Element: $000c; DataType: iedtCS; Description: 'RT Plan Geometry'; IsDeprecated: False),
|
|
(Group: $300a; Element: $000e; DataType: iedtST; Description: 'Prescription Description'; IsDeprecated: False),
|
|
(Group: $300a; Element: $10; DataType: iedtSQ; Description: 'Dose Reference Sequence'; IsDeprecated: False),
|
|
(Group: $300a; Element: $12; DataType: iedtIS; Description: 'Dose Reference Number'; IsDeprecated: False),
|
|
(Group: $300a; Element: $13; DataType: iedtUI; Description: 'Dose Reference UID'; IsDeprecated: False),
|
|
(Group: $300a; Element: $14; DataType: iedtCS; Description: 'Dose Reference Structure Type'; IsDeprecated: False),
|
|
(Group: $300a; Element: $15; DataType: iedtCS; Description: 'Nominal Beam Energy Unit'; IsDeprecated: False),
|
|
(Group: $300a; Element: $16; DataType: iedtLO; Description: 'Dose Reference Description'; IsDeprecated: False),
|
|
(Group: $300a; Element: $18; DataType: iedtDS; Description: 'Dose Reference Point Coordinates'; IsDeprecated: False),
|
|
(Group: $300a; Element: $001a; DataType: iedtDS; Description: 'Nominal Prior Dose'; IsDeprecated: False),
|
|
(Group: $300a; Element: $20; DataType: iedtCS; Description: 'Dose Reference Type'; IsDeprecated: False),
|
|
(Group: $300a; Element: $21; DataType: iedtDS; Description: 'Constraint Weight'; IsDeprecated: False),
|
|
(Group: $300a; Element: $22; DataType: iedtDS; Description: 'Delivery Warning Dose'; IsDeprecated: False),
|
|
(Group: $300a; Element: $23; DataType: iedtDS; Description: 'Delivery Maximum Dose'; IsDeprecated: False),
|
|
(Group: $300a; Element: $25; DataType: iedtDS; Description: 'Target Minimum Dose'; IsDeprecated: False),
|
|
(Group: $300a; Element: $26; DataType: iedtDS; Description: 'Target Prescription Dose'; IsDeprecated: False),
|
|
(Group: $300a; Element: $27; DataType: iedtDS; Description: 'Target Maximum Dose'; IsDeprecated: False),
|
|
(Group: $300a; Element: $28; DataType: iedtDS; Description: 'Target Underdose Volume Fraction'; IsDeprecated: False),
|
|
(Group: $300a; Element: $002a; DataType: iedtDS; Description: 'Organ at Risk Full-volume Dose'; IsDeprecated: False),
|
|
(Group: $300a; Element: $002b; DataType: iedtDS; Description: 'Organ at Risk Limit Dose'; IsDeprecated: False),
|
|
(Group: $300a; Element: $002c; DataType: iedtDS; Description: 'Organ at Risk Maximum Dose'; IsDeprecated: False),
|
|
(Group: $300a; Element: $002d; DataType: iedtDS; Description: 'Organ at Risk Overdose Volume Fraction'; IsDeprecated: False),
|
|
(Group: $300a; Element: $40; DataType: iedtSQ; Description: 'Tolerance Table Sequence'; IsDeprecated: False),
|
|
(Group: $300a; Element: $42; DataType: iedtIS; Description: 'Tolerance Table Number'; IsDeprecated: False),
|
|
(Group: $300a; Element: $43; DataType: iedtSH; Description: 'Tolerance Table Label'; IsDeprecated: False),
|
|
(Group: $300a; Element: $44; DataType: iedtDS; Description: 'Gantry Angle Tolerance'; IsDeprecated: False),
|
|
(Group: $300a; Element: $46; DataType: iedtDS; Description: 'Beam Limiting Device Angle Tolerance'; IsDeprecated: False),
|
|
(Group: $300a; Element: $48; DataType: iedtSQ; Description: 'Beam Limiting Device Tolerance Sequence'; IsDeprecated: False),
|
|
(Group: $300a; Element: $004a; DataType: iedtDS; Description: 'Beam Limiting Device Position Tolerance'; IsDeprecated: False),
|
|
(Group: $300a; Element: $004b; DataType: iedtFL; Description: 'Snout Position Tolerance'; IsDeprecated: False),
|
|
(Group: $300a; Element: $004c; DataType: iedtDS; Description: 'Patient Support Angle Tolerance'; IsDeprecated: False),
|
|
(Group: $300a; Element: $004e; DataType: iedtDS; Description: 'Table Top Eccentric Angle Tolerance'; IsDeprecated: False),
|
|
(Group: $300a; Element: $004f; DataType: iedtFL; Description: 'Table Top Pitch Angle Tolerance'; IsDeprecated: False),
|
|
(Group: $300a; Element: $50; DataType: iedtFL; Description: 'Table Top Roll Angle Tolerance'; IsDeprecated: False),
|
|
(Group: $300a; Element: $51; DataType: iedtDS; Description: 'Table Top Vertical Position Tolerance'; IsDeprecated: False),
|
|
(Group: $300a; Element: $52; DataType: iedtDS; Description: 'Table Top Longitudinal Position Tolerance'; IsDeprecated: False),
|
|
(Group: $300a; Element: $53; DataType: iedtDS; Description: 'Table Top Lateral Position Tolerance'; IsDeprecated: False),
|
|
(Group: $300a; Element: $55; DataType: iedtCS; Description: 'RT Plan Relationship'; IsDeprecated: False),
|
|
(Group: $300a; Element: $70; DataType: iedtSQ; Description: 'Fraction Group Sequence'; IsDeprecated: False),
|
|
(Group: $300a; Element: $71; DataType: iedtIS; Description: 'Fraction Group Number'; IsDeprecated: False),
|
|
(Group: $300a; Element: $72; DataType: iedtLO; Description: 'Fraction Group Description'; IsDeprecated: False),
|
|
(Group: $300a; Element: $78; DataType: iedtIS; Description: 'Number of Fractions Planned'; IsDeprecated: False),
|
|
(Group: $300a; Element: $79; DataType: iedtIS; Description: 'Number of Fraction Pattern Digits Per Day'; IsDeprecated: False),
|
|
(Group: $300a; Element: $007a; DataType: iedtIS; Description: 'Repeat Fraction Cycle Length'; IsDeprecated: False),
|
|
(Group: $300a; Element: $007b; DataType: iedtLT; Description: 'Fraction Pattern'; IsDeprecated: False),
|
|
(Group: $300a; Element: $80; DataType: iedtIS; Description: 'Number of Beams'; IsDeprecated: False),
|
|
(Group: $300a; Element: $82; DataType: iedtDS; Description: 'Beam Dose Specification Point'; IsDeprecated: False),
|
|
(Group: $300a; Element: $84; DataType: iedtDS; Description: 'Beam Dose'; IsDeprecated: False),
|
|
(Group: $300a; Element: $86; DataType: iedtDS; Description: 'Beam Meterset'; IsDeprecated: False),
|
|
(Group: $300a; Element: $88; DataType: iedtFL; Description: 'Beam Dose Point Depth'; IsDeprecated: False),
|
|
(Group: $300a; Element: $89; DataType: iedtFL; Description: 'Beam Dose Point Equivalent Depth'; IsDeprecated: False),
|
|
(Group: $300a; Element: $008a; DataType: iedtFL; Description: 'Beam Dose Point SSD'; IsDeprecated: False),
|
|
(Group: $300a; Element: $00a0; DataType: iedtIS; Description: 'Number of Brachy Application Setups'; IsDeprecated: False),
|
|
(Group: $300a; Element: $00a2; DataType: iedtDS; Description: 'Brachy Application Setup Dose Specification Point'; IsDeprecated: False),
|
|
(Group: $300a; Element: $00a4; DataType: iedtDS; Description: 'Brachy Application Setup Dose'; IsDeprecated: False),
|
|
(Group: $300a; Element: $00b0; DataType: iedtSQ; Description: 'Beam Sequence'; IsDeprecated: False),
|
|
(Group: $300a; Element: $00b2; DataType: iedtSH; Description: 'Treatment Machine Name'; IsDeprecated: False),
|
|
(Group: $300a; Element: $00b3; DataType: iedtCS; Description: 'Primary Dosimeter Unit'; IsDeprecated: False),
|
|
(Group: $300a; Element: $00b4; DataType: iedtDS; Description: 'Source-Axis Distance'; IsDeprecated: False),
|
|
(Group: $300a; Element: $00b6; DataType: iedtSQ; Description: 'Beam Limiting Device Sequence'; IsDeprecated: False),
|
|
(Group: $300a; Element: $00b8; DataType: iedtCS; Description: 'RT Beam Limiting Device Type'; IsDeprecated: False),
|
|
(Group: $300a; Element: $00ba; DataType: iedtDS; Description: 'Source to Beam Limiting Device Distance'; IsDeprecated: False),
|
|
(Group: $300a; Element: $00bb; DataType: iedtFL; Description: 'Isocenter to Beam Limiting Device Distance'; IsDeprecated: False),
|
|
(Group: $300a; Element: $00bc; DataType: iedtIS; Description: 'Number of Leaf/Jaw Pairs'; IsDeprecated: False),
|
|
(Group: $300a; Element: $00be; DataType: iedtDS; Description: 'n Leaf Position Boundaries'; IsDeprecated: False),
|
|
(Group: $300a; Element: $00c0; DataType: iedtIS; Description: 'Beam Number'; IsDeprecated: False),
|
|
(Group: $300a; Element: $00c2; DataType: iedtLO; Description: 'Beam Name'; IsDeprecated: False),
|
|
(Group: $300a; Element: $00c3; DataType: iedtST; Description: 'Beam Description'; IsDeprecated: False),
|
|
(Group: $300a; Element: $00c4; DataType: iedtCS; Description: 'Beam Type'; IsDeprecated: False),
|
|
(Group: $300a; Element: $00c6; DataType: iedtCS; Description: 'Radiation Type'; IsDeprecated: False),
|
|
(Group: $300a; Element: $00c7; DataType: iedtCS; Description: 'High-Dose Technique Type'; IsDeprecated: False),
|
|
(Group: $300a; Element: $00c8; DataType: iedtIS; Description: 'Reference Image Number'; IsDeprecated: False),
|
|
(Group: $300a; Element: $00ca; DataType: iedtSQ; Description: 'Planned Verification Image Sequence'; IsDeprecated: False),
|
|
(Group: $300a; Element: $00cc; DataType: iedtLO; Description: 'Imaging Device-Specific Acquisition Parameters'; IsDeprecated: False),
|
|
(Group: $300a; Element: $00ce; DataType: iedtCS; Description: 'Treatment Delivery Type'; IsDeprecated: False),
|
|
(Group: $300a; Element: $00d0; DataType: iedtIS; Description: 'Number of Wedges'; IsDeprecated: False),
|
|
(Group: $300a; Element: $00d1; DataType: iedtSQ; Description: 'Wedge Sequence'; IsDeprecated: False),
|
|
(Group: $300a; Element: $00d2; DataType: iedtIS; Description: 'Wedge Number'; IsDeprecated: False),
|
|
(Group: $300a; Element: $00d3; DataType: iedtCS; Description: 'Wedge Type'; IsDeprecated: False),
|
|
(Group: $300a; Element: $00d4; DataType: iedtSH; Description: 'Wedge ID'; IsDeprecated: False),
|
|
(Group: $300a; Element: $00d5; DataType: iedtIS; Description: 'Wedge Angle'; IsDeprecated: False),
|
|
(Group: $300a; Element: $00d6; DataType: iedtDS; Description: 'Wedge Factor'; IsDeprecated: False),
|
|
(Group: $300a; Element: $00d7; DataType: iedtFL; Description: 'Total Wedge Tray Water-Equivalent Thickness'; IsDeprecated: False),
|
|
(Group: $300a; Element: $00d8; DataType: iedtDS; Description: 'Wedge Orientation'; IsDeprecated: False),
|
|
(Group: $300a; Element: $00d9; DataType: iedtFL; Description: 'Isocenter to Wedge Tray Distance'; IsDeprecated: False),
|
|
(Group: $300a; Element: $00da; DataType: iedtDS; Description: 'Source to Wedge Tray Distance'; IsDeprecated: False),
|
|
(Group: $300a; Element: $00db; DataType: iedtFL; Description: 'Wedge Thin Edge Position'; IsDeprecated: False),
|
|
(Group: $300a; Element: $00dc; DataType: iedtSH; Description: 'Bolus ID'; IsDeprecated: False),
|
|
(Group: $300a; Element: $00dd; DataType: iedtST; Description: 'Bolus Description'; IsDeprecated: False),
|
|
(Group: $300a; Element: $00E0; DataType: iedtIS; Description: 'Number of Compensators'; IsDeprecated: False),
|
|
(Group: $300a; Element: $00E1; DataType: iedtSH; Description: 'Material ID'; IsDeprecated: False),
|
|
(Group: $300a; Element: $00E2; DataType: iedtDS; Description: 'Total Compensator Tray Factor'; IsDeprecated: False),
|
|
(Group: $300a; Element: $00E3; DataType: iedtSQ; Description: 'Compensator Sequence'; IsDeprecated: False),
|
|
(Group: $300a; Element: $00E4; DataType: iedtIS; Description: 'Compensator Number'; IsDeprecated: False),
|
|
(Group: $300a; Element: $00E5; DataType: iedtSH; Description: 'Compensator ID'; IsDeprecated: False),
|
|
(Group: $300a; Element: $00E6; DataType: iedtDS; Description: 'Source to Compensator Tray Distance'; IsDeprecated: False),
|
|
(Group: $300a; Element: $00E7; DataType: iedtIS; Description: 'Compensator Rows'; IsDeprecated: False),
|
|
(Group: $300a; Element: $00E8; DataType: iedtIS; Description: 'Compensator Columns'; IsDeprecated: False),
|
|
(Group: $300a; Element: $00E9; DataType: iedtDS; Description: 'Compensator Pixel Spacing'; IsDeprecated: False),
|
|
(Group: $300a; Element: $00ea; DataType: iedtDS; Description: 'Compensator Position'; IsDeprecated: False),
|
|
(Group: $300a; Element: $00eb; DataType: iedtDS; Description: 'Compensator Transmission Data'; IsDeprecated: False),
|
|
(Group: $300a; Element: $00ec; DataType: iedtDS; Description: 'Compensator Thickness Data'; IsDeprecated: False),
|
|
(Group: $300a; Element: $00ed; DataType: iedtIS; Description: 'Number of Boli'; IsDeprecated: False),
|
|
(Group: $300a; Element: $00ee; DataType: iedtCS; Description: 'Compensator Type'; IsDeprecated: False),
|
|
(Group: $300a; Element: $00f0; DataType: iedtIS; Description: 'Number of Blocks'; IsDeprecated: False),
|
|
(Group: $300a; Element: $00f2; DataType: iedtDS; Description: 'Total Block Tray Factor'; IsDeprecated: False),
|
|
(Group: $300a; Element: $00f3; DataType: iedtFL; Description: 'Total Block Tray Water-Equivalent Thickness'; IsDeprecated: False),
|
|
(Group: $300a; Element: $00f4; DataType: iedtSQ; Description: 'Block Sequence'; IsDeprecated: False),
|
|
(Group: $300a; Element: $00f5; DataType: iedtSH; Description: 'Block Tray ID'; IsDeprecated: False),
|
|
(Group: $300a; Element: $00f6; DataType: iedtDS; Description: 'Source to Block Tray Distance'; IsDeprecated: False),
|
|
(Group: $300a; Element: $00f7; DataType: iedtFL; Description: 'Isocenter to Block Tray Distance'; IsDeprecated: False),
|
|
(Group: $300a; Element: $00f8; DataType: iedtCS; Description: 'Block Type'; IsDeprecated: False),
|
|
(Group: $300a; Element: $00f9; DataType: iedtLO; Description: 'Accessory Code'; IsDeprecated: False),
|
|
(Group: $300a; Element: $00fa; DataType: iedtCS; Description: 'Block Divergence'; IsDeprecated: False),
|
|
(Group: $300a; Element: $00fb; DataType: iedtCS; Description: 'Block Mounting Position'; IsDeprecated: False),
|
|
(Group: $300a; Element: $00fc; DataType: iedtIS; Description: 'Block Number'; IsDeprecated: False),
|
|
(Group: $300a; Element: $00fe; DataType: iedtLO; Description: 'Block Name'; IsDeprecated: False),
|
|
(Group: $300a; Element: $100; DataType: iedtDS; Description: 'Block Thickness'; IsDeprecated: False),
|
|
(Group: $300a; Element: $102; DataType: iedtDS; Description: 'Block Transmission'; IsDeprecated: False),
|
|
(Group: $300a; Element: $104; DataType: iedtIS; Description: 'Block Number of Points'; IsDeprecated: False),
|
|
(Group: $300a; Element: $106; DataType: iedtDS; Description: 'Block Data'; IsDeprecated: False),
|
|
(Group: $300a; Element: $107; DataType: iedtSQ; Description: 'Applicator Sequence'; IsDeprecated: False),
|
|
(Group: $300a; Element: $108; DataType: iedtSH; Description: 'Applicator ID'; IsDeprecated: False),
|
|
(Group: $300a; Element: $109; DataType: iedtCS; Description: 'Applicator Type'; IsDeprecated: False),
|
|
(Group: $300a; Element: $010a; DataType: iedtLO; Description: 'Applicator Description'; IsDeprecated: False),
|
|
(Group: $300a; Element: $010c; DataType: iedtDS; Description: 'Cumulative Dose Reference Coefficient'; IsDeprecated: False),
|
|
(Group: $300a; Element: $010e; DataType: iedtDS; Description: 'Final Cumulative Meterset Weight'; IsDeprecated: False),
|
|
(Group: $300a; Element: $110; DataType: iedtIS; Description: 'Number of Control Points'; IsDeprecated: False),
|
|
(Group: $300a; Element: $111; DataType: iedtSQ; Description: 'Control Point Sequence'; IsDeprecated: False),
|
|
(Group: $300a; Element: $112; DataType: iedtIS; Description: 'Control Point Index'; IsDeprecated: False),
|
|
(Group: $300a; Element: $114; DataType: iedtDS; Description: 'Nominal Beam Energy'; IsDeprecated: False),
|
|
(Group: $300a; Element: $115; DataType: iedtDS; Description: 'Dose Rate Set'; IsDeprecated: False),
|
|
(Group: $300a; Element: $116; DataType: iedtSQ; Description: 'Wedge Position Sequence'; IsDeprecated: False),
|
|
(Group: $300a; Element: $118; DataType: iedtCS; Description: 'Wedge Position'; IsDeprecated: False),
|
|
(Group: $300a; Element: $011a; DataType: iedtSQ; Description: 'Beam Limiting Device Position Sequence'; IsDeprecated: False),
|
|
(Group: $300a; Element: $011c; DataType: iedtDS; Description: 'Leaf/Jaw Positions'; IsDeprecated: False),
|
|
(Group: $300a; Element: $011e; DataType: iedtDS; Description: 'Gantry Angle'; IsDeprecated: False),
|
|
(Group: $300a; Element: $011f; DataType: iedtCS; Description: 'Gantry Rotation Direction'; IsDeprecated: False),
|
|
(Group: $300a; Element: $120; DataType: iedtDS; Description: 'Beam Limiting Device Angle'; IsDeprecated: False),
|
|
(Group: $300a; Element: $121; DataType: iedtCS; Description: 'Beam Limiting Device Rotation Direction'; IsDeprecated: False),
|
|
(Group: $300a; Element: $122; DataType: iedtDS; Description: 'Patient Support Angle'; IsDeprecated: False),
|
|
(Group: $300a; Element: $123; DataType: iedtCS; Description: 'Patient Support Rotation Direction'; IsDeprecated: False),
|
|
(Group: $300a; Element: $124; DataType: iedtDS; Description: 'Table Top Eccentric Axis Distance'; IsDeprecated: False),
|
|
(Group: $300a; Element: $125; DataType: iedtDS; Description: 'Table Top Eccentric Angle'; IsDeprecated: False),
|
|
(Group: $300a; Element: $126; DataType: iedtCS; Description: 'Table Top Eccentric Rotation Direction'; IsDeprecated: False),
|
|
(Group: $300a; Element: $128; DataType: iedtDS; Description: 'Table Top Vertical Position'; IsDeprecated: False),
|
|
(Group: $300a; Element: $129; DataType: iedtDS; Description: 'Table Top Longitudinal Position'; IsDeprecated: False),
|
|
(Group: $300a; Element: $012a; DataType: iedtDS; Description: 'Table Top Lateral Position'; IsDeprecated: False),
|
|
(Group: $300a; Element: $012c; DataType: iedtDS; Description: 'Isocenter Position'; IsDeprecated: False),
|
|
(Group: $300a; Element: $012e; DataType: iedtDS; Description: 'Surface Entry Point'; IsDeprecated: False),
|
|
(Group: $300a; Element: $130; DataType: iedtDS; Description: 'Source to Surface Distance'; IsDeprecated: False),
|
|
(Group: $300a; Element: $134; DataType: iedtDS; Description: 'Cumulative Meterset Weight'; IsDeprecated: False),
|
|
(Group: $300a; Element: $140; DataType: iedtFL; Description: 'Table Top Pitch Angle'; IsDeprecated: False),
|
|
(Group: $300a; Element: $142; DataType: iedtCS; Description: 'Table Top Pitch Rotation Direction'; IsDeprecated: False),
|
|
(Group: $300a; Element: $144; DataType: iedtFL; Description: 'Table Top Roll Angle'; IsDeprecated: False),
|
|
(Group: $300a; Element: $146; DataType: iedtCS; Description: 'Table Top Roll Rotation Direction'; IsDeprecated: False),
|
|
(Group: $300a; Element: $148; DataType: iedtFL; Description: 'Head Fixation Angle'; IsDeprecated: False),
|
|
(Group: $300a; Element: $014a; DataType: iedtFL; Description: 'Gantry Pitch Angle'; IsDeprecated: False),
|
|
(Group: $300a; Element: $014c; DataType: iedtCS; Description: 'Gantry Pitch Rotation Direction'; IsDeprecated: False),
|
|
(Group: $300a; Element: $014e; DataType: iedtFL; Description: 'Gantry Pitch Angle Tolerance'; IsDeprecated: False),
|
|
(Group: $300a; Element: $180; DataType: iedtSQ; Description: 'Patient Setup Sequence'; IsDeprecated: False),
|
|
(Group: $300a; Element: $182; DataType: iedtIS; Description: 'Patient Setup Number'; IsDeprecated: False),
|
|
(Group: $300a; Element: $183; DataType: iedtLO; Description: 'Patient Setup Label'; IsDeprecated: False),
|
|
(Group: $300a; Element: $184; DataType: iedtLO; Description: 'Patient Additional Position'; IsDeprecated: False),
|
|
(Group: $300a; Element: $190; DataType: iedtSQ; Description: 'Fixation Device Sequence'; IsDeprecated: False),
|
|
(Group: $300a; Element: $192; DataType: iedtCS; Description: 'Fixation Device Type'; IsDeprecated: False),
|
|
(Group: $300a; Element: $194; DataType: iedtSH; Description: 'Fixation Device Label'; IsDeprecated: False),
|
|
(Group: $300a; Element: $196; DataType: iedtST; Description: 'Fixation Device Description'; IsDeprecated: False),
|
|
(Group: $300a; Element: $198; DataType: iedtSH; Description: 'Fixation Device Position'; IsDeprecated: False),
|
|
(Group: $300a; Element: $199; DataType: iedtFL; Description: 'Fixation Device Pitch Angle'; IsDeprecated: False),
|
|
(Group: $300a; Element: $019a; DataType: iedtFL; Description: 'Fixation Device Roll Angle'; IsDeprecated: False),
|
|
(Group: $300a; Element: $01a0; DataType: iedtSQ; Description: 'Shielding Device Sequence'; IsDeprecated: False),
|
|
(Group: $300a; Element: $01a2; DataType: iedtCS; Description: 'Shielding Device Type'; IsDeprecated: False),
|
|
(Group: $300a; Element: $01a4; DataType: iedtSH; Description: 'Shielding Device Label'; IsDeprecated: False),
|
|
(Group: $300a; Element: $01a6; DataType: iedtST; Description: 'Shielding Device Description'; IsDeprecated: False),
|
|
(Group: $300a; Element: $01a8; DataType: iedtSH; Description: 'Shielding Device Position'; IsDeprecated: False),
|
|
(Group: $300a; Element: $01b0; DataType: iedtCS; Description: 'Setup Technique'; IsDeprecated: False),
|
|
(Group: $300a; Element: $01b2; DataType: iedtST; Description: 'Setup Technique Description'; IsDeprecated: False),
|
|
(Group: $300a; Element: $01b4; DataType: iedtSQ; Description: 'Setup Device Sequence'; IsDeprecated: False),
|
|
(Group: $300a; Element: $01b6; DataType: iedtCS; Description: 'Setup Device Type'; IsDeprecated: False),
|
|
(Group: $300a; Element: $01b8; DataType: iedtSH; Description: 'Setup Device Label'; IsDeprecated: False),
|
|
(Group: $300a; Element: $01ba; DataType: iedtST; Description: 'Setup Device Description'; IsDeprecated: False),
|
|
(Group: $300a; Element: $01bc; DataType: iedtDS; Description: 'Setup Device Parameter'; IsDeprecated: False),
|
|
(Group: $300a; Element: $01d0; DataType: iedtST; Description: 'Setup Reference Description'; IsDeprecated: False),
|
|
(Group: $300a; Element: $01d2; DataType: iedtDS; Description: 'Table Top Vertical Setup Displacement'; IsDeprecated: False),
|
|
(Group: $300a; Element: $01d4; DataType: iedtDS; Description: 'Table Top Longitudinal Setup Displacement'; IsDeprecated: False),
|
|
(Group: $300a; Element: $01d6; DataType: iedtDS; Description: 'Table Top Lateral Setup Displacement'; IsDeprecated: False),
|
|
(Group: $300a; Element: $200; DataType: iedtCS; Description: 'Brachy Treatment Technique'; IsDeprecated: False),
|
|
(Group: $300a; Element: $202; DataType: iedtCS; Description: 'Brachy Treatment Type'; IsDeprecated: False),
|
|
(Group: $300a; Element: $206; DataType: iedtSQ; Description: 'Treatment Machine Sequence'; IsDeprecated: False),
|
|
(Group: $300a; Element: $210; DataType: iedtSQ; Description: 'Source Sequence'; IsDeprecated: False),
|
|
(Group: $300a; Element: $212; DataType: iedtIS; Description: 'Source Number'; IsDeprecated: False),
|
|
(Group: $300a; Element: $214; DataType: iedtCS; Description: 'Source Type'; IsDeprecated: False),
|
|
(Group: $300a; Element: $216; DataType: iedtLO; Description: 'Source Manufacturer'; IsDeprecated: False),
|
|
(Group: $300a; Element: $218; DataType: iedtDS; Description: 'Active Source Diameter'; IsDeprecated: False),
|
|
(Group: $300a; Element: $021a; DataType: iedtDS; Description: 'Active Source Length'; IsDeprecated: False),
|
|
(Group: $300a; Element: $222; DataType: iedtDS; Description: 'Source Encapsulation Nominal Thickness'; IsDeprecated: False),
|
|
(Group: $300a; Element: $224; DataType: iedtDS; Description: 'Source Encapsulation Nominal Transmission'; IsDeprecated: False),
|
|
(Group: $300a; Element: $226; DataType: iedtLO; Description: 'Source Isotope Name'; IsDeprecated: False),
|
|
(Group: $300a; Element: $228; DataType: iedtDS; Description: 'Source Isotope Half Life'; IsDeprecated: False),
|
|
(Group: $300a; Element: $229; DataType: iedtCS; Description: 'Source Strength Units'; IsDeprecated: False),
|
|
(Group: $300a; Element: $022a; DataType: iedtDS; Description: 'Reference Air Kerma Rate'; IsDeprecated: False),
|
|
(Group: $300a; Element: $022b; DataType: iedtDS; Description: 'Source Strength'; IsDeprecated: False),
|
|
(Group: $300a; Element: $022c; DataType: iedtDA; Description: 'Source Strength Reference Date'; IsDeprecated: False),
|
|
(Group: $300a; Element: $022e; DataType: iedtTM; Description: 'Source Strength Reference Time'; IsDeprecated: False),
|
|
(Group: $300a; Element: $230; DataType: iedtSQ; Description: 'Application Setup Sequence'; IsDeprecated: False),
|
|
(Group: $300a; Element: $232; DataType: iedtCS; Description: 'Application Setup Type'; IsDeprecated: False),
|
|
(Group: $300a; Element: $234; DataType: iedtIS; Description: 'Application Setup Number'; IsDeprecated: False),
|
|
(Group: $300a; Element: $236; DataType: iedtLO; Description: 'Application Setup Name'; IsDeprecated: False),
|
|
(Group: $300a; Element: $238; DataType: iedtLO; Description: 'Application Setup Manufacturer'; IsDeprecated: False),
|
|
(Group: $300a; Element: $240; DataType: iedtIS; Description: 'Template Number'; IsDeprecated: False),
|
|
(Group: $300a; Element: $242; DataType: iedtSH; Description: 'Template Type'; IsDeprecated: False),
|
|
(Group: $300a; Element: $244; DataType: iedtLO; Description: 'Template Name'; IsDeprecated: False),
|
|
(Group: $300a; Element: $250; DataType: iedtDS; Description: 'Total Reference Air Kerma'; IsDeprecated: False),
|
|
(Group: $300a; Element: $260; DataType: iedtSQ; Description: 'Brachy Accessory Device Sequence'; IsDeprecated: False),
|
|
(Group: $300a; Element: $262; DataType: iedtIS; Description: 'Brachy Accessory Device Number'; IsDeprecated: False),
|
|
(Group: $300a; Element: $263; DataType: iedtSH; Description: 'Brachy Accessory Device ID'; IsDeprecated: False),
|
|
(Group: $300a; Element: $264; DataType: iedtCS; Description: 'Brachy Accessory Device Type'; IsDeprecated: False),
|
|
(Group: $300a; Element: $266; DataType: iedtLO; Description: 'Brachy Accessory Device Name'; IsDeprecated: False),
|
|
(Group: $300a; Element: $026a; DataType: iedtDS; Description: 'Brachy Accessory Device Nominal Thickness'; IsDeprecated: False),
|
|
(Group: $300a; Element: $026c; DataType: iedtDS; Description: 'Brachy Accessory Device Nominal Transmission'; IsDeprecated: False),
|
|
(Group: $300a; Element: $280; DataType: iedtSQ; Description: 'Channel Sequence'; IsDeprecated: False),
|
|
(Group: $300a; Element: $282; DataType: iedtIS; Description: 'Channel Number'; IsDeprecated: False),
|
|
(Group: $300a; Element: $284; DataType: iedtDS; Description: 'Channel Length'; IsDeprecated: False),
|
|
(Group: $300a; Element: $286; DataType: iedtDS; Description: 'Channel Total Time'; IsDeprecated: False),
|
|
(Group: $300a; Element: $288; DataType: iedtCS; Description: 'Source Movement Type'; IsDeprecated: False),
|
|
(Group: $300a; Element: $028a; DataType: iedtIS; Description: 'Number of Pulses'; IsDeprecated: False),
|
|
(Group: $300a; Element: $028c; DataType: iedtDS; Description: 'Pulse Repetition Interval'; IsDeprecated: False),
|
|
(Group: $300a; Element: $290; DataType: iedtIS; Description: 'Source Applicator Number'; IsDeprecated: False),
|
|
(Group: $300a; Element: $291; DataType: iedtSH; Description: 'Source Applicator ID'; IsDeprecated: False),
|
|
(Group: $300a; Element: $292; DataType: iedtCS; Description: 'Source Applicator Type'; IsDeprecated: False),
|
|
(Group: $300a; Element: $294; DataType: iedtLO; Description: 'Source Applicator Name'; IsDeprecated: False),
|
|
(Group: $300a; Element: $296; DataType: iedtDS; Description: 'Source Applicator Length'; IsDeprecated: False),
|
|
(Group: $300a; Element: $298; DataType: iedtLO; Description: 'Source Applicator Manufacturer'; IsDeprecated: False),
|
|
(Group: $300a; Element: $029c; DataType: iedtDS; Description: 'Source Applicator Wall Nominal Thickness'; IsDeprecated: False),
|
|
(Group: $300a; Element: $029e; DataType: iedtDS; Description: 'Source Applicator Wall Nominal Transmission'; IsDeprecated: False),
|
|
(Group: $300a; Element: $02a0; DataType: iedtDS; Description: 'Source Applicator Step Size'; IsDeprecated: False),
|
|
(Group: $300a; Element: $02a2; DataType: iedtIS; Description: 'Transfer Tube Number'; IsDeprecated: False),
|
|
(Group: $300a; Element: $02a4; DataType: iedtDS; Description: 'Transfer Tube Length'; IsDeprecated: False),
|
|
(Group: $300a; Element: $02b0; DataType: iedtSQ; Description: 'Channel Shield Sequence'; IsDeprecated: False),
|
|
(Group: $300a; Element: $02b2; DataType: iedtIS; Description: 'Channel Shield Number'; IsDeprecated: False),
|
|
(Group: $300a; Element: $02b3; DataType: iedtSH; Description: 'Channel Shield ID'; IsDeprecated: False),
|
|
(Group: $300a; Element: $02b4; DataType: iedtLO; Description: 'Channel Shield Name'; IsDeprecated: False),
|
|
(Group: $300a; Element: $02b8; DataType: iedtDS; Description: 'Channel Shield Nominal Thickness'; IsDeprecated: False),
|
|
(Group: $300a; Element: $02ba; DataType: iedtDS; Description: 'Channel Shield Nominal Transmission'; IsDeprecated: False),
|
|
(Group: $300a; Element: $02c8; DataType: iedtDS; Description: 'Final Cumulative Time Weight'; IsDeprecated: False),
|
|
(Group: $300a; Element: $02d0; DataType: iedtSQ; Description: 'Brachy Control Point Sequence'; IsDeprecated: False),
|
|
(Group: $300a; Element: $02d2; DataType: iedtDS; Description: 'Control Point Relative Position'; IsDeprecated: False),
|
|
(Group: $300a; Element: $02d4; DataType: iedtDS; Description: 'Control Point 3D Position'; IsDeprecated: False),
|
|
(Group: $300a; Element: $02d6; DataType: iedtDS; Description: 'Cumulative Time Weight'; IsDeprecated: False),
|
|
(Group: $300a; Element: $02e0; DataType: iedtCS; Description: 'Compensator Divergence'; IsDeprecated: False),
|
|
(Group: $300a; Element: $02e1; DataType: iedtCS; Description: 'Compensator Mounting Position'; IsDeprecated: False),
|
|
(Group: $300a; Element: $02e2; DataType: iedtDS; Description: 'Source to Compensator Distance'; IsDeprecated: False),
|
|
(Group: $300a; Element: $02e3; DataType: iedtFL; Description: 'Total Compensator Tray Water-Equivalent Thickness'; IsDeprecated: False),
|
|
(Group: $300a; Element: $02e4; DataType: iedtFL; Description: 'Isocenter to Compensator Tray Distance'; IsDeprecated: False),
|
|
(Group: $300a; Element: $02e5; DataType: iedtFL; Description: 'Compensator Column Offset'; IsDeprecated: False),
|
|
(Group: $300a; Element: $02e6; DataType: iedtFL; Description: 'Isocenter to Compensator Distances'; IsDeprecated: False),
|
|
(Group: $300a; Element: $02e7; DataType: iedtFL; Description: 'Compensator Relative Stopping Power Ratio'; IsDeprecated: False),
|
|
(Group: $300a; Element: $02e8; DataType: iedtFL; Description: 'Compensator Milling Tool Diameter'; IsDeprecated: False),
|
|
(Group: $300a; Element: $02ea; DataType: iedtSQ; Description: 'Ion Range Compensator Sequence'; IsDeprecated: False),
|
|
(Group: $300a; Element: $02eb; DataType: iedtLT; Description: 'Compensator Description'; IsDeprecated: False),
|
|
(Group: $300a; Element: $302; DataType: iedtIS; Description: 'Radiation Mass Number'; IsDeprecated: False),
|
|
(Group: $300a; Element: $304; DataType: iedtIS; Description: 'Radiation Atomic Number'; IsDeprecated: False),
|
|
(Group: $300a; Element: $306; DataType: iedtSS; Description: 'Radiation Charge State'; IsDeprecated: False),
|
|
(Group: $300a; Element: $308; DataType: iedtCS; Description: 'Scan Mode'; IsDeprecated: False),
|
|
(Group: $300a; Element: $030a; DataType: iedtFL; Description: 'Virtual Source-Axis Distances'; IsDeprecated: False),
|
|
(Group: $300a; Element: $030c; DataType: iedtSQ; Description: 'Snout Sequence'; IsDeprecated: False),
|
|
(Group: $300a; Element: $030d; DataType: iedtFL; Description: 'Snout Position'; IsDeprecated: False),
|
|
(Group: $300a; Element: $030f; DataType: iedtSH; Description: 'Snout ID'; IsDeprecated: False),
|
|
(Group: $300a; Element: $312; DataType: iedtIS; Description: 'Number of Range Shifters'; IsDeprecated: False),
|
|
(Group: $300a; Element: $314; DataType: iedtSQ; Description: 'Range Shifter Sequence'; IsDeprecated: False),
|
|
(Group: $300a; Element: $316; DataType: iedtIS; Description: 'Range Shifter Number'; IsDeprecated: False),
|
|
(Group: $300a; Element: $318; DataType: iedtSH; Description: 'Range Shifter ID'; IsDeprecated: False),
|
|
(Group: $300a; Element: $320; DataType: iedtCS; Description: 'Range Shifter Type'; IsDeprecated: False),
|
|
(Group: $300a; Element: $322; DataType: iedtLO; Description: 'Range Shifter Description'; IsDeprecated: False),
|
|
(Group: $300a; Element: $330; DataType: iedtIS; Description: 'Number of Lateral Spreading Devices'; IsDeprecated: False),
|
|
(Group: $300a; Element: $332; DataType: iedtSQ; Description: 'Lateral Spreading Device Sequence'; IsDeprecated: False),
|
|
(Group: $300a; Element: $334; DataType: iedtIS; Description: 'Lateral Spreading Device Number'; IsDeprecated: False),
|
|
(Group: $300a; Element: $336; DataType: iedtSH; Description: 'Lateral Spreading Device ID'; IsDeprecated: False),
|
|
(Group: $300a; Element: $338; DataType: iedtCS; Description: 'Lateral Spreading Device Type'; IsDeprecated: False),
|
|
(Group: $300a; Element: $033a; DataType: iedtLO; Description: 'Lateral Spreading Device Description'; IsDeprecated: False),
|
|
(Group: $300a; Element: $033c; DataType: iedtFL; Description: 'Lateral Spreading Device Water Equivalent Thickness'; IsDeprecated: False),
|
|
(Group: $300a; Element: $340; DataType: iedtIS; Description: 'Number of Range Modulators'; IsDeprecated: False),
|
|
(Group: $300a; Element: $342; DataType: iedtSQ; Description: 'Range Modulator Sequence'; IsDeprecated: False),
|
|
(Group: $300a; Element: $344; DataType: iedtIS; Description: 'Range Modulator Number'; IsDeprecated: False),
|
|
(Group: $300a; Element: $346; DataType: iedtSH; Description: 'Range Modulator ID'; IsDeprecated: False),
|
|
(Group: $300a; Element: $348; DataType: iedtCS; Description: 'Range Modulator Type'; IsDeprecated: False),
|
|
(Group: $300a; Element: $034a; DataType: iedtLO; Description: 'Range Modulator Description'; IsDeprecated: False),
|
|
(Group: $300a; Element: $034c; DataType: iedtSH; Description: 'Beam Current Modulation ID'; IsDeprecated: False),
|
|
(Group: $300a; Element: $350; DataType: iedtCS; Description: 'Patient Support Type'; IsDeprecated: False),
|
|
(Group: $300a; Element: $352; DataType: iedtSH; Description: 'Patient Support ID'; IsDeprecated: False),
|
|
(Group: $300a; Element: $354; DataType: iedtLO; Description: 'Patient Support Accessory Code'; IsDeprecated: False),
|
|
(Group: $300a; Element: $356; DataType: iedtFL; Description: 'Fixation Light Azimuthal Angle'; IsDeprecated: False),
|
|
(Group: $300a; Element: $358; DataType: iedtFL; Description: 'Fixation Light Polar Angle'; IsDeprecated: False),
|
|
(Group: $300a; Element: $035a; DataType: iedtFL; Description: 'Meterset Rate'; IsDeprecated: False),
|
|
(Group: $300a; Element: $360; DataType: iedtSQ; Description: 'Range Shifter Settings Sequence'; IsDeprecated: False),
|
|
(Group: $300a; Element: $362; DataType: iedtLO; Description: 'Range Shifter Setting'; IsDeprecated: False),
|
|
(Group: $300a; Element: $364; DataType: iedtFL; Description: 'Isocenter to Range Shifter Distance'; IsDeprecated: False),
|
|
(Group: $300a; Element: $366; DataType: iedtFL; Description: 'Range Shifter Water Equivalent Thickness'; IsDeprecated: False),
|
|
(Group: $300a; Element: $370; DataType: iedtSQ; Description: 'Lateral Spreading Device Settings Sequence'; IsDeprecated: False),
|
|
(Group: $300a; Element: $372; DataType: iedtLO; Description: 'Lateral Spreading Device Setting'; IsDeprecated: False),
|
|
(Group: $300a; Element: $374; DataType: iedtFL; Description: 'Isocenter to Lateral Spreading Device Distance'; IsDeprecated: False),
|
|
(Group: $300a; Element: $380; DataType: iedtSQ; Description: 'Range Modulator Settings Sequence'; IsDeprecated: False),
|
|
(Group: $300a; Element: $382; DataType: iedtFL; Description: 'Range Modulator Gating Start Value'; IsDeprecated: False),
|
|
(Group: $300a; Element: $384; DataType: iedtFL; Description: 'Range Modulator Gating Stop Value'; IsDeprecated: False),
|
|
(Group: $300a; Element: $386; DataType: iedtFL; Description: 'Range Modulator Gating Start Water Equivalent Thickness'; IsDeprecated: False),
|
|
(Group: $300a; Element: $388; DataType: iedtFL; Description: 'Range Modulator Gating Stop Water Equivalent Thickness'; IsDeprecated: False),
|
|
(Group: $300a; Element: $038a; DataType: iedtFL; Description: 'Isocenter to Range Modulator Distance'; IsDeprecated: False),
|
|
(Group: $300a; Element: $390; DataType: iedtSH; Description: 'Scan Spot Tune ID'; IsDeprecated: False),
|
|
(Group: $300a; Element: $392; DataType: iedtIS; Description: 'Number of Scan Spot Positions'; IsDeprecated: False),
|
|
(Group: $300a; Element: $394; DataType: iedtFL; Description: 'Scan Spot Position Map'; IsDeprecated: False),
|
|
(Group: $300a; Element: $396; DataType: iedtFL; Description: 'Scan Spot Meterset Weights'; IsDeprecated: False),
|
|
(Group: $300a; Element: $398; DataType: iedtFL; Description: 'Scanning Spot Size'; IsDeprecated: False),
|
|
(Group: $300a; Element: $039a; DataType: iedtIS; Description: 'Number of Paintings'; IsDeprecated: False),
|
|
(Group: $300a; Element: $03a0; DataType: iedtSQ; Description: 'Ion Tolerance Table Sequence'; IsDeprecated: False),
|
|
(Group: $300a; Element: $03a2; DataType: iedtSQ; Description: 'Ion Beam Sequence'; IsDeprecated: False),
|
|
(Group: $300a; Element: $03a4; DataType: iedtSQ; Description: 'Ion Beam Limiting Device Sequence'; IsDeprecated: False),
|
|
(Group: $300a; Element: $03a6; DataType: iedtSQ; Description: 'Ion Block Sequence'; IsDeprecated: False),
|
|
(Group: $300a; Element: $03a8; DataType: iedtSQ; Description: 'Ion Control Point Sequence'; IsDeprecated: False),
|
|
(Group: $300a; Element: $03aa; DataType: iedtSQ; Description: 'Ion Wedge Sequence'; IsDeprecated: False),
|
|
(Group: $300a; Element: $03ac; DataType: iedtSQ; Description: 'Ion Wedge Position Sequence'; IsDeprecated: False),
|
|
(Group: $300a; Element: $401; DataType: iedtSQ; Description: 'Referenced Setup Image Sequence'; IsDeprecated: False),
|
|
(Group: $300a; Element: $402; DataType: iedtST; Description: 'Setup Image Comment'; IsDeprecated: False),
|
|
(Group: $300a; Element: $410; DataType: iedtSQ; Description: 'Motion Synchronization Sequence'; IsDeprecated: False),
|
|
(Group: $300a; Element: $412; DataType: iedtFL; Description: 'Control Point Orientation'; IsDeprecated: False),
|
|
(Group: $300a; Element: $420; DataType: iedtSQ; Description: 'General Accessory Sequence'; IsDeprecated: False),
|
|
(Group: $300a; Element: $421; DataType: iedtCS; Description: 'General Accessory ID'; IsDeprecated: False),
|
|
(Group: $300a; Element: $422; DataType: iedtST; Description: 'General Accessory Description'; IsDeprecated: False),
|
|
(Group: $300a; Element: $423; DataType: iedtSH; Description: 'General Accessory Type'; IsDeprecated: False),
|
|
(Group: $300a; Element: $424; DataType: iedtIS; Description: 'General Accessory Number'; IsDeprecated: False),
|
|
(Group: $300c; Element: $2; DataType: iedtSQ; Description: 'Referenced RT Plan Sequence'; IsDeprecated: False),
|
|
(Group: $300c; Element: $4; DataType: iedtSQ; Description: 'Referenced Beam Sequence'; IsDeprecated: False),
|
|
(Group: $300c; Element: $6; DataType: iedtIS; Description: 'Referenced Beam Number'; IsDeprecated: False),
|
|
(Group: $300c; Element: $7; DataType: iedtIS; Description: 'Referenced Reference Image Number'; IsDeprecated: False),
|
|
(Group: $300c; Element: $8; DataType: iedtDS; Description: 'Start Cumulative Meterset Weight'; IsDeprecated: False),
|
|
(Group: $300c; Element: $9; DataType: iedtDS; Description: 'End Cumulative Meterset Weight'; IsDeprecated: False),
|
|
(Group: $300c; Element: $000a; DataType: iedtSQ; Description: 'Referenced Brachy Application Setup Sequence'; IsDeprecated: False),
|
|
(Group: $300c; Element: $000c; DataType: iedtIS; Description: 'Referenced Brachy Application Setup Number'; IsDeprecated: False),
|
|
(Group: $300c; Element: $000e; DataType: iedtIS; Description: 'Referenced Source Number'; IsDeprecated: False),
|
|
(Group: $300c; Element: $20; DataType: iedtSQ; Description: 'Referenced Fraction Group Sequence'; IsDeprecated: False),
|
|
(Group: $300c; Element: $22; DataType: iedtIS; Description: 'Referenced Fraction Group Number'; IsDeprecated: False),
|
|
(Group: $300c; Element: $40; DataType: iedtSQ; Description: 'Referenced Verification Image Sequence'; IsDeprecated: False),
|
|
(Group: $300c; Element: $42; DataType: iedtSQ; Description: 'Referenced Reference Image Sequence'; IsDeprecated: False),
|
|
(Group: $300c; Element: $50; DataType: iedtSQ; Description: 'Referenced Dose Reference Sequence'; IsDeprecated: False),
|
|
(Group: $300c; Element: $51; DataType: iedtIS; Description: 'Referenced Dose Reference Number'; IsDeprecated: False),
|
|
(Group: $300c; Element: $55; DataType: iedtSQ; Description: 'Brachy Referenced Dose Reference Sequence'; IsDeprecated: False),
|
|
(Group: $300c; Element: $60; DataType: iedtSQ; Description: 'Referenced Structure Set Sequence'; IsDeprecated: False),
|
|
(Group: $300c; Element: $006a; DataType: iedtIS; Description: 'Referenced Patient Setup Number'; IsDeprecated: False),
|
|
(Group: $300c; Element: $80; DataType: iedtSQ; Description: 'Referenced Dose Sequence'; IsDeprecated: False),
|
|
(Group: $300c; Element: $00a0; DataType: iedtIS; Description: 'Referenced Tolerance Table Number'; IsDeprecated: False),
|
|
(Group: $300c; Element: $00b0; DataType: iedtSQ; Description: 'Referenced Bolus Sequence'; IsDeprecated: False),
|
|
(Group: $300c; Element: $00c0; DataType: iedtIS; Description: 'Referenced Wedge Number'; IsDeprecated: False),
|
|
(Group: $300c; Element: $00d0; DataType: iedtIS; Description: 'Referenced Compensator Number'; IsDeprecated: False),
|
|
(Group: $300c; Element: $00e0; DataType: iedtIS; Description: 'Referenced Block Number'; IsDeprecated: False),
|
|
(Group: $300c; Element: $00f0; DataType: iedtIS; Description: 'Referenced Control Point Index'; IsDeprecated: False),
|
|
(Group: $300c; Element: $00f2; DataType: iedtSQ; Description: 'Referenced Control Point Sequence'; IsDeprecated: False),
|
|
(Group: $300c; Element: $00f4; DataType: iedtIS; Description: 'Referenced Start Control Point Index'; IsDeprecated: False),
|
|
(Group: $300c; Element: $00f6; DataType: iedtIS; Description: 'Referenced Stop Control Point Index'; IsDeprecated: False),
|
|
(Group: $300c; Element: $100; DataType: iedtIS; Description: 'Referenced Range Shifter Number'; IsDeprecated: False),
|
|
(Group: $300c; Element: $102; DataType: iedtIS; Description: 'Referenced Lateral Spreading Device Number'; IsDeprecated: False),
|
|
(Group: $300c; Element: $104; DataType: iedtIS; Description: 'Referenced Range Modulator Number'; IsDeprecated: False),
|
|
(Group: $300e; Element: $2; DataType: iedtCS; Description: 'Approval Status'; IsDeprecated: False),
|
|
(Group: $300e; Element: $4; DataType: iedtDA; Description: 'Review Date'; IsDeprecated: False),
|
|
(Group: $300e; Element: $5; DataType: iedtTM; Description: 'Review Time'; IsDeprecated: False),
|
|
(Group: $300e; Element: $8; DataType: iedtPN; Description: 'Reviewer Name'; IsDeprecated: False),
|
|
(Group: $4000; Element: $10; DataType: iedtLT; Description: 'Arbitrary'; IsDeprecated: True),
|
|
(Group: $4000; Element: $4000; DataType: iedtLT; Description: 'Text Comments'; IsDeprecated: True),
|
|
(Group: $4008; Element: $40; DataType: iedtSH; Description: 'Results ID'; IsDeprecated: True),
|
|
(Group: $4008; Element: $42; DataType: iedtLO; Description: 'Results ID Issuer'; IsDeprecated: True),
|
|
(Group: $4008; Element: $50; DataType: iedtSQ; Description: 'Referenced Interpretation Sequence'; IsDeprecated: True),
|
|
(Group: $4008; Element: $100; DataType: iedtDA; Description: 'Interpretation Recorded Date'; IsDeprecated: True),
|
|
(Group: $4008; Element: $101; DataType: iedtTM; Description: 'Interpretation Recorded Time'; IsDeprecated: True),
|
|
(Group: $4008; Element: $102; DataType: iedtPN; Description: 'Interpretation Recorder'; IsDeprecated: True),
|
|
(Group: $4008; Element: $103; DataType: iedtLO; Description: 'Reference to Recorded Sound'; IsDeprecated: True),
|
|
(Group: $4008; Element: $108; DataType: iedtDA; Description: 'Interpretation Transcription Date'; IsDeprecated: True),
|
|
(Group: $4008; Element: $109; DataType: iedtTM; Description: 'Interpretation Transcription Time'; IsDeprecated: True),
|
|
(Group: $4008; Element: $010a; DataType: iedtPN; Description: 'Interpretation Transcriber'; IsDeprecated: True),
|
|
(Group: $4008; Element: $010b; DataType: iedtST; Description: 'Interpretation Text'; IsDeprecated: True),
|
|
(Group: $4008; Element: $010c; DataType: iedtPN; Description: 'Interpretation Author'; IsDeprecated: True),
|
|
(Group: $4008; Element: $111; DataType: iedtSQ; Description: 'Interpretation Approver Sequence'; IsDeprecated: True),
|
|
(Group: $4008; Element: $112; DataType: iedtDA; Description: 'Interpretation Approval Date'; IsDeprecated: True),
|
|
(Group: $4008; Element: $113; DataType: iedtTM; Description: 'Interpretation Approval Time'; IsDeprecated: True),
|
|
(Group: $4008; Element: $114; DataType: iedtPN; Description: 'Physician Approving Interpretation'; IsDeprecated: True),
|
|
(Group: $4008; Element: $115; DataType: iedtLT; Description: 'Interpretation Diagnosis Description'; IsDeprecated: True),
|
|
(Group: $4008; Element: $117; DataType: iedtSQ; Description: 'Interpretation Diagnosis Code Sequence'; IsDeprecated: True),
|
|
(Group: $4008; Element: $118; DataType: iedtSQ; Description: 'Results Distribution List Sequence'; IsDeprecated: True),
|
|
(Group: $4008; Element: $119; DataType: iedtPN; Description: 'Distribution Name'; IsDeprecated: True),
|
|
(Group: $4008; Element: $011a; DataType: iedtLO; Description: 'Distribution Address'; IsDeprecated: True),
|
|
(Group: $4008; Element: $200; DataType: iedtSH; Description: 'Interpretation ID'; IsDeprecated: True),
|
|
(Group: $4008; Element: $202; DataType: iedtLO; Description: 'Interpretation ID Issuer'; IsDeprecated: True),
|
|
(Group: $4008; Element: $210; DataType: iedtCS; Description: 'Interpretation Type ID'; IsDeprecated: True),
|
|
(Group: $4008; Element: $212; DataType: iedtCS; Description: 'Interpretation Status ID'; IsDeprecated: True),
|
|
(Group: $4008; Element: $300; DataType: iedtST; Description: 'Impressions'; IsDeprecated: True),
|
|
(Group: $4008; Element: $4000; DataType: iedtST; Description: 'Results Comments'; IsDeprecated: True),
|
|
(Group: $4ffe; Element: $1; DataType: iedtSQ; Description: 'MAC Parameters Sequence'; IsDeprecated: False),
|
|
(Group: $5000; Element: $5; DataType: iedtUS; Description: 'Curve Dimensions'; IsDeprecated: True),
|
|
(Group: $5000; Element: $10; DataType: iedtUS; Description: 'Number of Points'; IsDeprecated: True),
|
|
(Group: $5000; Element: $20; DataType: iedtCS; Description: 'Type of Data'; IsDeprecated: True),
|
|
(Group: $5000; Element: $22; DataType: iedtLO; Description: 'Curve Description'; IsDeprecated: True),
|
|
(Group: $5000; Element: $30; DataType: iedtSH; Description: 'Axis Units'; IsDeprecated: True),
|
|
(Group: $5000; Element: $40; DataType: iedtSH; Description: 'Axis Labels'; IsDeprecated: True),
|
|
(Group: $5000; Element: $103; DataType: iedtUS; Description: 'Data Value Representation'; IsDeprecated: True),
|
|
(Group: $5000; Element: $104; DataType: iedtUS; Description: 'Minimum Coordinate Value'; IsDeprecated: True),
|
|
(Group: $5000; Element: $105; DataType: iedtUS; Description: 'Maximum Coordinate Value'; IsDeprecated: True),
|
|
(Group: $5000; Element: $106; DataType: iedtSH; Description: 'Curve Range'; IsDeprecated: True),
|
|
(Group: $5000; Element: $110; DataType: iedtUS; Description: 'Curve Data Descriptor'; IsDeprecated: True),
|
|
(Group: $5000; Element: $112; DataType: iedtUS; Description: 'Coordinate Start Value'; IsDeprecated: True),
|
|
(Group: $5000; Element: $114; DataType: iedtUS; Description: 'Coordinate Step Value'; IsDeprecated: True),
|
|
(Group: $5000; Element: $1001; DataType: iedtCS; Description: 'Curve Activation Layer'; IsDeprecated: True),
|
|
(Group: $5000; Element: $2000; DataType: iedtUS; Description: 'Audio Type'; IsDeprecated: True),
|
|
(Group: $5000; Element: $2002; DataType: iedtUS; Description: 'Audio Sample Format'; IsDeprecated: True),
|
|
(Group: $5000; Element: $2004; DataType: iedtUS; Description: 'Number of Channels'; IsDeprecated: True),
|
|
(Group: $5000; Element: $2006; DataType: iedtUL; Description: 'Number of Samples'; IsDeprecated: True),
|
|
(Group: $5000; Element: $2008; DataType: iedtUL; Description: 'Sample Rate'; IsDeprecated: True),
|
|
(Group: $5000; Element: $200a; DataType: iedtUL; Description: 'Total Time'; IsDeprecated: True),
|
|
(Group: $5000; Element: $200c; DataType: iedtxs; Description: 'Audio Sample Data'; IsDeprecated: True),
|
|
(Group: $5000; Element: $200e; DataType: iedtLT; Description: 'Audio Comments'; IsDeprecated: True),
|
|
(Group: $5000; Element: $2500; DataType: iedtLO; Description: 'Curve Label'; IsDeprecated: True),
|
|
(Group: $5000; Element: $2600; DataType: iedtSQ; Description: 'Curve Referenced Overlay Sequence'; IsDeprecated: True),
|
|
(Group: $5000; Element: $2610; DataType: iedtUS; Description: 'Curve Referenced Overlay Group'; IsDeprecated: True),
|
|
(Group: $5000; Element: $3000; DataType: iedtxs; Description: 'Curve Data'; IsDeprecated: True),
|
|
(Group: $5200; Element: $9229; DataType: iedtSQ; Description: 'Shared Functional Groups Sequence'; IsDeprecated: False),
|
|
(Group: $5200; Element: $9230; DataType: iedtSQ; Description: 'Per-frame Functional Groups Sequence'; IsDeprecated: False),
|
|
(Group: $5400; Element: $100; DataType: iedtSQ; Description: 'Waveform Sequence'; IsDeprecated: False),
|
|
(Group: $5400; Element: $110; DataType: iedtxs; Description: 'Channel Minimum Value'; IsDeprecated: False),
|
|
(Group: $5400; Element: $112; DataType: iedtxs; Description: 'Channel Maximum Value'; IsDeprecated: False),
|
|
(Group: $5400; Element: $1004; DataType: iedtUS; Description: 'Waveform Bits Allocated'; IsDeprecated: False),
|
|
(Group: $5400; Element: $1006; DataType: iedtCS; Description: 'Waveform Sample Interpretation'; IsDeprecated: False),
|
|
(Group: $5400; Element: $100a; DataType: iedtxs; Description: 'Waveform Padding Value'; IsDeprecated: False),
|
|
(Group: $5400; Element: $1010; DataType: iedtxs; Description: 'Waveform Data'; IsDeprecated: False),
|
|
(Group: $5600; Element: $10; DataType: iedtOF; Description: 'First Order Phase Correction Angle'; IsDeprecated: False),
|
|
(Group: $5600; Element: $20; DataType: iedtOF; Description: 'Spectroscopy Data'; IsDeprecated: False),
|
|
(Group: $6000; Element: $10; DataType: iedtUS; Description: 'Overlay Rows'; IsDeprecated: False),
|
|
(Group: $6000; Element: $11; DataType: iedtUS; Description: 'Overlay Columns'; IsDeprecated: False),
|
|
(Group: $6000; Element: $12; DataType: iedtUS; Description: 'Overlay Planes'; IsDeprecated: True),
|
|
(Group: $6000; Element: $15; DataType: iedtIS; Description: 'Number of Frames in Overlay'; IsDeprecated: False),
|
|
(Group: $6000; Element: $22; DataType: iedtLO; Description: 'Overlay Description'; IsDeprecated: False),
|
|
(Group: $6000; Element: $40; DataType: iedtCS; Description: 'Overlay Type'; IsDeprecated: False),
|
|
(Group: $6000; Element: $45; DataType: iedtLO; Description: 'Overlay Subtype'; IsDeprecated: False),
|
|
(Group: $6000; Element: $50; DataType: iedtSS; Description: 'Overlay Origin'; IsDeprecated: False),
|
|
(Group: $6000; Element: $51; DataType: iedtUS; Description: 'Image Frame Origin'; IsDeprecated: False),
|
|
(Group: $6000; Element: $52; DataType: iedtUS; Description: 'Overlay Plane Origin'; IsDeprecated: True),
|
|
(Group: $6000; Element: $60; DataType: iedtCS; Description: 'Overlay Compression Code'; IsDeprecated: True),
|
|
(Group: $6000; Element: $61; DataType: iedtSH; Description: 'Overlay Compression Originator'; IsDeprecated: True),
|
|
(Group: $6000; Element: $62; DataType: iedtSH; Description: 'Overlay Compression Label'; IsDeprecated: True),
|
|
(Group: $6000; Element: $63; DataType: iedtCS; Description: 'Overlay Compression Description'; IsDeprecated: True),
|
|
(Group: $6000; Element: $66; DataType: iedtAT; Description: 'Overlay Compression Step Pointers'; IsDeprecated: True),
|
|
(Group: $6000; Element: $68; DataType: iedtUS; Description: 'Overlay Repeat Interval'; IsDeprecated: True),
|
|
(Group: $6000; Element: $69; DataType: iedtUS; Description: 'Overlay Bits Grouped'; IsDeprecated: True),
|
|
(Group: $6000; Element: $100; DataType: iedtUS; Description: 'Overlay Bits Allocated'; IsDeprecated: False),
|
|
(Group: $6000; Element: $102; DataType: iedtUS; Description: 'Overlay Bit Position'; IsDeprecated: False),
|
|
(Group: $6000; Element: $110; DataType: iedtCS; Description: 'Overlay Format'; IsDeprecated: True),
|
|
(Group: $6000; Element: $200; DataType: iedtUS; Description: 'Overlay Location'; IsDeprecated: True),
|
|
(Group: $6000; Element: $800; DataType: iedtCS; Description: 'Overlay Code Label'; IsDeprecated: True),
|
|
(Group: $6000; Element: $802; DataType: iedtUS; Description: 'Overlay Number of Tables'; IsDeprecated: True),
|
|
(Group: $6000; Element: $803; DataType: iedtAT; Description: 'Overlay Code Table Location'; IsDeprecated: True),
|
|
(Group: $6000; Element: $804; DataType: iedtUS; Description: 'Overlay Bits For Code Word'; IsDeprecated: True),
|
|
(Group: $6000; Element: $1001; DataType: iedtCS; Description: 'Overlay Activation Layer'; IsDeprecated: False),
|
|
(Group: $6000; Element: $1100; DataType: iedtUS; Description: 'Overlay Descriptor - Gray'; IsDeprecated: True),
|
|
(Group: $6000; Element: $1101; DataType: iedtUS; Description: 'Overlay Descriptor - Red'; IsDeprecated: True),
|
|
(Group: $6000; Element: $1102; DataType: iedtUS; Description: 'Overlay Descriptor - Green'; IsDeprecated: True),
|
|
(Group: $6000; Element: $1103; DataType: iedtUS; Description: 'Overlay Descriptor - Blue'; IsDeprecated: True),
|
|
(Group: $6000; Element: $1200; DataType: iedtUS; Description: 'Overlays - Gray'; IsDeprecated: True),
|
|
(Group: $6000; Element: $1201; DataType: iedtUS; Description: 'Overlays - Red'; IsDeprecated: True),
|
|
(Group: $6000; Element: $1202; DataType: iedtUS; Description: 'Overlays - Green'; IsDeprecated: True),
|
|
(Group: $6000; Element: $1203; DataType: iedtUS; Description: 'Overlays - Blue'; IsDeprecated: True),
|
|
(Group: $6000; Element: $1301; DataType: iedtIS; Description: 'ROI Area'; IsDeprecated: False),
|
|
(Group: $6000; Element: $1302; DataType: iedtDS; Description: 'ROI Mean'; IsDeprecated: False),
|
|
(Group: $6000; Element: $1303; DataType: iedtDS; Description: 'ROI Standard Deviation'; IsDeprecated: False),
|
|
(Group: $6000; Element: $1500; DataType: iedtLO; Description: 'Overlay Label'; IsDeprecated: False),
|
|
(Group: $6000; Element: $3000; DataType: iedtxs; Description: 'Overlay Data'; IsDeprecated: False),
|
|
(Group: $6000; Element: $4000; DataType: iedtLT; Description: 'Overlay Comments'; IsDeprecated: True),
|
|
(Group: $7fe0; Element: $10; DataType: iedtxs; Description: 'Pixel Data'; IsDeprecated: False),
|
|
(Group: $7fe0; Element: $20; DataType: iedtOW; Description: 'Coefficients SDVN'; IsDeprecated: True),
|
|
(Group: $7fe0; Element: $30; DataType: iedtOW; Description: 'Coefficients SDHN'; IsDeprecated: True),
|
|
(Group: $7fe0; Element: $40; DataType: iedtOW; Description: 'Coefficients SDDN'; IsDeprecated: True),
|
|
(Group: $7f00; Element: $10; DataType: iedtxs; Description: 'Variable Pixel Data'; IsDeprecated: True),
|
|
(Group: $7f00; Element: $11; DataType: iedtUS; Description: 'Variable Next Data Group'; IsDeprecated: True),
|
|
(Group: $7f00; Element: $20; DataType: iedtOW; Description: 'Variable Coefficients SDVN'; IsDeprecated: True),
|
|
(Group: $7f00; Element: $30; DataType: iedtOW; Description: 'Variable Coefficients SDHN'; IsDeprecated: True),
|
|
(Group: $7f00; Element: $40; DataType: iedtOW; Description: 'Variable Coefficients SDDN'; IsDeprecated: True),
|
|
(Group: $fffa; Element: $fffa; DataType: iedtSQ; Description: 'Digital Signatures Sequence'; IsDeprecated: False),
|
|
(Group: $fffc; Element: $fffc; DataType: iedtOB; Description: 'Data Set Trailing Padding'; IsDeprecated: False),
|
|
(Group: $fffe; Element: $e000; DataType: iedtOther; Description: 'Item'; IsDeprecated: False),
|
|
(Group: $fffe; Element: $e00d; DataType: iedtOther; Description: 'Item Delimitation Item'; IsDeprecated: False),
|
|
(Group: $fffe; Element: $e0dd; DataType: iedtOther; Description: 'Sequence Delimitation Item'; IsDeprecated: False)
|
|
);
|
|
|
|
|
|
|
|
implementation
|
|
|
|
uses
|
|
hyieutils;
|
|
|
|
{$ifdef IEINCLUDEDICOM}
|
|
|
|
|
|
|
|
|
|
// return true if the specified filename can support writing of Dicom Fields
|
|
function DicomCompatibleFile(const sFilename : string) : boolean;
|
|
begin
|
|
Result := IEFileIsOfFormat(sFilename, ioDicom);
|
|
end;
|
|
|
|
|
|
|
|
{$endif}
|
|
|
|
{!!
|
|
<FS>iexDicomRoutines
|
|
|
|
<FN>iexDicomRoutines.pas provides helper functions for working with the Dicom files.
|
|
|
|
!!}
|
|
|
|
end.
|
|
|
|
|