| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
package Image::DCMTK; |
|
2
|
|
|
|
|
|
|
|
|
3
|
1
|
|
|
1
|
|
28110
|
use 5.006; |
|
|
1
|
|
|
|
|
4
|
|
|
|
1
|
|
|
|
|
65
|
|
|
4
|
1
|
|
|
1
|
|
8
|
use strict; |
|
|
1
|
|
|
|
|
2
|
|
|
|
1
|
|
|
|
|
39
|
|
|
5
|
1
|
|
|
1
|
|
5
|
use warnings; |
|
|
1
|
|
|
|
|
7
|
|
|
|
1
|
|
|
|
|
41
|
|
|
6
|
1
|
|
|
1
|
|
450
|
use Data::PrintUtils qw(:ALL); |
|
|
0
|
|
|
|
|
|
|
|
|
0
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
use Getopt::CommandLineExports qw(:ALL); |
|
8
|
|
|
|
|
|
|
use XML::Simple; |
|
9
|
|
|
|
|
|
|
use IO::All; |
|
10
|
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
=head1 NAME |
|
13
|
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
Image::DCMTK - Interface to the DCMTK Dicom Toolkit |
|
15
|
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
=head1 VERSION |
|
17
|
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
Version 0.05 |
|
19
|
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
=cut |
|
21
|
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
our $VERSION = '0.05'; |
|
23
|
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
=head1 SYNOPSIS |
|
26
|
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
Provides a set of interface functions to the Dicom Toolkit (dcmtk) |
|
28
|
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
In most cases, the Dicom tags are treated as a hash to and from the various functions. |
|
30
|
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
There is an included Dicom Dictionary, but you are free to add your own tags as well |
|
32
|
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
=head1 EXPORT |
|
37
|
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
=head1 SUBROUTINES/METHODS |
|
41
|
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
=cut |
|
44
|
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
BEGIN { |
|
47
|
|
|
|
|
|
|
use Exporter (); |
|
48
|
|
|
|
|
|
|
our ($VERSION, @ISA, @EXPORT, @EXPORT_OK, %EXPORT_TAGS); |
|
49
|
|
|
|
|
|
|
# set the version for version checking |
|
50
|
|
|
|
|
|
|
@ISA = qw(Exporter); |
|
51
|
|
|
|
|
|
|
@EXPORT_OK = qw(); |
|
52
|
|
|
|
|
|
|
%EXPORT_TAGS = ( ); # eg: TAG => [ qw!name1 name2! ], |
|
53
|
|
|
|
|
|
|
@EXPORT_OK = qw( &openXMLItem &openXMLSequence &makeXMLElement &closeXMLItem &closeXMLSequence |
|
54
|
|
|
|
|
|
|
&returnTagAsXML &parseDCMDump &parseDCMDumpForTagLists &parseDCMDumpForSequences |
|
55
|
|
|
|
|
|
|
&parseDCMXMLDump &parseDCMXMLDumpForTagLists &parseDCMXMLDumpForSequences |
|
56
|
|
|
|
|
|
|
&modifyAnImage |
|
57
|
|
|
|
|
|
|
%dcmtkDicomDictionary %dcmtk360DicomDictionary %reverseDicomDictionary); |
|
58
|
|
|
|
|
|
|
%EXPORT_TAGS = (ALL => [ qw!&openXMLItem &openXMLSequence &makeXMLElement &closeXMLItem &closeXMLSequence |
|
59
|
|
|
|
|
|
|
&returnTagAsXML &parseDCMDump &parseDCMDumpForTagLists &parseDCMDumpForSequences |
|
60
|
|
|
|
|
|
|
&parseDCMXMLDump &parseDCMXMLDumpForTagLists &parseDCMXMLDumpForSequences |
|
61
|
|
|
|
|
|
|
&modifyAnImage |
|
62
|
|
|
|
|
|
|
%dcmtkDicomDictionary %dcmtk360DicomDictionary %reverseDicomDictionary! ], ); # eg: TAG => [ qw!name1 name2! ], |
|
63
|
|
|
|
|
|
|
} |
|
64
|
|
|
|
|
|
|
#your exported package globals go here, |
|
65
|
|
|
|
|
|
|
#as well as any optionally exported functions |
|
66
|
|
|
|
|
|
|
#The Dicom Dictionary is parsed with the following perl command to generate the hash: |
|
67
|
|
|
|
|
|
|
#perl -ne 'printf ("%72s => { GRP => \"%4s\", ELEM => \"%4s\", VR => \"%2s\", VM => \"%s\", VERSION => \"%s\"},\n", $+{name}, $+{grp}, $+{elem}, $+{vr}, $+{vm}, $+{ver} ) if m/\((?[0-9a-fA-F]{4})\,(?[0-9a-fA-F]{4})\)\s+(?\S{2})\s+(?\S+)\s+(?\S+)\s+(?\S+)/;' |
|
68
|
|
|
|
|
|
|
|
|
69
|
|
|
|
|
|
|
our %dcmtk360DicomDictionary = ( |
|
70
|
|
|
|
|
|
|
# PixelData => {GRP => "7fe0", ELEM => "0010", VR => "OB"}, |
|
71
|
|
|
|
|
|
|
MetaElementGroupLength => { GRP => "0000", ELEM => "0000", VR => "UL" }, |
|
72
|
|
|
|
|
|
|
|
|
73
|
|
|
|
|
|
|
#from dcmtk 3.6.0 |
|
74
|
|
|
|
|
|
|
CommandGroupLength => { GRP => "0000", ELEM => "0000", VR => "UL", VM => "1", VERSION => "DICOM_2009"}, |
|
75
|
|
|
|
|
|
|
AffectedSOPClassUID => { GRP => "0000", ELEM => "0002", VR => "UI", VM => "1", VERSION => "DICOM_2009"}, |
|
76
|
|
|
|
|
|
|
RequestedSOPClassUID => { GRP => "0000", ELEM => "0003", VR => "UI", VM => "1", VERSION => "DICOM_2009"}, |
|
77
|
|
|
|
|
|
|
CommandField => { GRP => "0000", ELEM => "0100", VR => "US", VM => "1", VERSION => "DICOM_2009"}, |
|
78
|
|
|
|
|
|
|
MessageID => { GRP => "0000", ELEM => "0110", VR => "US", VM => "1", VERSION => "DICOM_2009"}, |
|
79
|
|
|
|
|
|
|
MessageIDBeingRespondedTo => { GRP => "0000", ELEM => "0120", VR => "US", VM => "1", VERSION => "DICOM_2009"}, |
|
80
|
|
|
|
|
|
|
MoveDestination => { GRP => "0000", ELEM => "0600", VR => "AE", VM => "1", VERSION => "DICOM_2009"}, |
|
81
|
|
|
|
|
|
|
Priority => { GRP => "0000", ELEM => "0700", VR => "US", VM => "1", VERSION => "DICOM_2009"}, |
|
82
|
|
|
|
|
|
|
DataSetType => { GRP => "0000", ELEM => "0800", VR => "US", VM => "1", VERSION => "DICOM_2009"}, |
|
83
|
|
|
|
|
|
|
Status => { GRP => "0000", ELEM => "0900", VR => "US", VM => "1", VERSION => "DICOM_2009"}, |
|
84
|
|
|
|
|
|
|
OffendingElement => { GRP => "0000", ELEM => "0901", VR => "AT", VM => "1-n", VERSION => "DICOM_2009"}, |
|
85
|
|
|
|
|
|
|
ErrorComment => { GRP => "0000", ELEM => "0902", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
86
|
|
|
|
|
|
|
ErrorID => { GRP => "0000", ELEM => "0903", VR => "US", VM => "1", VERSION => "DICOM_2009"}, |
|
87
|
|
|
|
|
|
|
AffectedSOPInstanceUID => { GRP => "0000", ELEM => "1000", VR => "UI", VM => "1", VERSION => "DICOM_2009"}, |
|
88
|
|
|
|
|
|
|
RequestedSOPInstanceUID => { GRP => "0000", ELEM => "1001", VR => "UI", VM => "1", VERSION => "DICOM_2009"}, |
|
89
|
|
|
|
|
|
|
EventTypeID => { GRP => "0000", ELEM => "1002", VR => "US", VM => "1", VERSION => "DICOM_2009"}, |
|
90
|
|
|
|
|
|
|
AttributeIdentifierList => { GRP => "0000", ELEM => "1005", VR => "AT", VM => "1-n", VERSION => "DICOM_2009"}, |
|
91
|
|
|
|
|
|
|
ActionTypeID => { GRP => "0000", ELEM => "1008", VR => "US", VM => "1", VERSION => "DICOM_2009"}, |
|
92
|
|
|
|
|
|
|
NumberOfRemainingSubOperations => { GRP => "0000", ELEM => "1020", VR => "US", VM => "1", VERSION => "DICOM_2009"}, |
|
93
|
|
|
|
|
|
|
NumberOfCompletedSubOperations => { GRP => "0000", ELEM => "1021", VR => "US", VM => "1", VERSION => "DICOM_2009"}, |
|
94
|
|
|
|
|
|
|
NumberOfFailedSubOperations => { GRP => "0000", ELEM => "1022", VR => "US", VM => "1", VERSION => "DICOM_2009"}, |
|
95
|
|
|
|
|
|
|
NumberOfWarningSubOperations => { GRP => "0000", ELEM => "1023", VR => "US", VM => "1", VERSION => "DICOM_2009"}, |
|
96
|
|
|
|
|
|
|
MoveOriginatorApplicationEntityTitle => { GRP => "0000", ELEM => "1030", VR => "AE", VM => "1", VERSION => "DICOM_2009"}, |
|
97
|
|
|
|
|
|
|
MoveOriginatorMessageID => { GRP => "0000", ELEM => "1031", VR => "US", VM => "1", VERSION => "DICOM_2009"}, |
|
98
|
|
|
|
|
|
|
FileMetaInformationGroupLength => { GRP => "0002", ELEM => "0000", VR => "UL", VM => "1", VERSION => "DICOM_2009"}, |
|
99
|
|
|
|
|
|
|
FileMetaInformationVersion => { GRP => "0002", ELEM => "0001", VR => "OB", VM => "1", VERSION => "DICOM_2009"}, |
|
100
|
|
|
|
|
|
|
MediaStorageSOPClassUID => { GRP => "0002", ELEM => "0002", VR => "UI", VM => "1", VERSION => "DICOM_2009"}, |
|
101
|
|
|
|
|
|
|
MediaStorageSOPInstanceUID => { GRP => "0002", ELEM => "0003", VR => "UI", VM => "1", VERSION => "DICOM_2009"}, |
|
102
|
|
|
|
|
|
|
TransferSyntaxUID => { GRP => "0002", ELEM => "0010", VR => "UI", VM => "1", VERSION => "DICOM_2009"}, |
|
103
|
|
|
|
|
|
|
ImplementationClassUID => { GRP => "0002", ELEM => "0012", VR => "UI", VM => "1", VERSION => "DICOM_2009"}, |
|
104
|
|
|
|
|
|
|
ImplementationVersionName => { GRP => "0002", ELEM => "0013", VR => "SH", VM => "1", VERSION => "DICOM_2009"}, |
|
105
|
|
|
|
|
|
|
SourceApplicationEntityTitle => { GRP => "0002", ELEM => "0016", VR => "AE", VM => "1", VERSION => "DICOM_2009"}, |
|
106
|
|
|
|
|
|
|
PrivateInformationCreatorUID => { GRP => "0002", ELEM => "0100", VR => "UI", VM => "1", VERSION => "DICOM_2009"}, |
|
107
|
|
|
|
|
|
|
PrivateInformation => { GRP => "0002", ELEM => "0102", VR => "OB", VM => "1", VERSION => "DICOM_2009"}, |
|
108
|
|
|
|
|
|
|
FileSetID => { GRP => "0004", ELEM => "1130", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
109
|
|
|
|
|
|
|
FileSetDescriptorFileID => { GRP => "0004", ELEM => "1141", VR => "CS", VM => "1-8", VERSION => "DICOM_2009"}, |
|
110
|
|
|
|
|
|
|
SpecificCharacterSetOfFileSetDescriptorFile => { GRP => "0004", ELEM => "1142", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
111
|
|
|
|
|
|
|
OffsetOfTheFirstDirectoryRecordOfTheRootDirectoryEntity => { GRP => "0004", ELEM => "1200", VR => "up", VM => "1", VERSION => "DICOM_2009"}, |
|
112
|
|
|
|
|
|
|
OffsetOfTheLastDirectoryRecordOfTheRootDirectoryEntity => { GRP => "0004", ELEM => "1202", VR => "up", VM => "1", VERSION => "DICOM_2009"}, |
|
113
|
|
|
|
|
|
|
FileSetConsistencyFlag => { GRP => "0004", ELEM => "1212", VR => "US", VM => "1", VERSION => "DICOM_2009"}, |
|
114
|
|
|
|
|
|
|
DirectoryRecordSequence => { GRP => "0004", ELEM => "1220", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
115
|
|
|
|
|
|
|
OffsetOfTheNextDirectoryRecord => { GRP => "0004", ELEM => "1400", VR => "up", VM => "1", VERSION => "DICOM_2009"}, |
|
116
|
|
|
|
|
|
|
RecordInUseFlag => { GRP => "0004", ELEM => "1410", VR => "US", VM => "1", VERSION => "DICOM_2009"}, |
|
117
|
|
|
|
|
|
|
OffsetOfReferencedLowerLevelDirectoryEntity => { GRP => "0004", ELEM => "1420", VR => "up", VM => "1", VERSION => "DICOM_2009"}, |
|
118
|
|
|
|
|
|
|
DirectoryRecordType => { GRP => "0004", ELEM => "1430", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
119
|
|
|
|
|
|
|
PrivateRecordUID => { GRP => "0004", ELEM => "1432", VR => "UI", VM => "1", VERSION => "DICOM_2009"}, |
|
120
|
|
|
|
|
|
|
ReferencedFileID => { GRP => "0004", ELEM => "1500", VR => "CS", VM => "1-8", VERSION => "DICOM_2009"}, |
|
121
|
|
|
|
|
|
|
ReferencedSOPClassUIDInFile => { GRP => "0004", ELEM => "1510", VR => "UI", VM => "1", VERSION => "DICOM_2009"}, |
|
122
|
|
|
|
|
|
|
ReferencedSOPInstanceUIDInFile => { GRP => "0004", ELEM => "1511", VR => "UI", VM => "1", VERSION => "DICOM_2009"}, |
|
123
|
|
|
|
|
|
|
ReferencedTransferSyntaxUIDInFile => { GRP => "0004", ELEM => "1512", VR => "UI", VM => "1", VERSION => "DICOM_2009"}, |
|
124
|
|
|
|
|
|
|
ReferencedRelatedGeneralSOPClassUIDInFile => { GRP => "0004", ELEM => "151A", VR => "UI", VM => "1-n", VERSION => "DICOM_2009"}, |
|
125
|
|
|
|
|
|
|
SpecificCharacterSet => { GRP => "0008", ELEM => "0005", VR => "CS", VM => "1-n", VERSION => "DICOM_2009"}, |
|
126
|
|
|
|
|
|
|
LanguageCodeSequence => { GRP => "0008", ELEM => "0006", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
127
|
|
|
|
|
|
|
ImageType => { GRP => "0008", ELEM => "0008", VR => "CS", VM => "2-n", VERSION => "DICOM_2009"}, |
|
128
|
|
|
|
|
|
|
InstanceCreationDate => { GRP => "0008", ELEM => "0012", VR => "DA", VM => "1", VERSION => "DICOM_2009"}, |
|
129
|
|
|
|
|
|
|
InstanceCreationTime => { GRP => "0008", ELEM => "0013", VR => "TM", VM => "1", VERSION => "DICOM_2009"}, |
|
130
|
|
|
|
|
|
|
InstanceCreatorUID => { GRP => "0008", ELEM => "0014", VR => "UI", VM => "1", VERSION => "DICOM_2009"}, |
|
131
|
|
|
|
|
|
|
SOPClassUID => { GRP => "0008", ELEM => "0016", VR => "UI", VM => "1", VERSION => "DICOM_2009"}, |
|
132
|
|
|
|
|
|
|
SOPInstanceUID => { GRP => "0008", ELEM => "0018", VR => "UI", VM => "1", VERSION => "DICOM_2009"}, |
|
133
|
|
|
|
|
|
|
RelatedGeneralSOPClassUID => { GRP => "0008", ELEM => "001A", VR => "UI", VM => "1-n", VERSION => "DICOM_2009"}, |
|
134
|
|
|
|
|
|
|
OriginalSpecializedSOPClassUID => { GRP => "0008", ELEM => "001B", VR => "UI", VM => "1", VERSION => "DICOM_2009"}, |
|
135
|
|
|
|
|
|
|
StudyDate => { GRP => "0008", ELEM => "0020", VR => "DA", VM => "1", VERSION => "DICOM_2009"}, |
|
136
|
|
|
|
|
|
|
SeriesDate => { GRP => "0008", ELEM => "0021", VR => "DA", VM => "1", VERSION => "DICOM_2009"}, |
|
137
|
|
|
|
|
|
|
AcquisitionDate => { GRP => "0008", ELEM => "0022", VR => "DA", VM => "1", VERSION => "DICOM_2009"}, |
|
138
|
|
|
|
|
|
|
ContentDate => { GRP => "0008", ELEM => "0023", VR => "DA", VM => "1", VERSION => "DICOM_2009"}, |
|
139
|
|
|
|
|
|
|
AcquisitionDateTime => { GRP => "0008", ELEM => "002A", VR => "DT", VM => "1", VERSION => "DICOM_2009"}, |
|
140
|
|
|
|
|
|
|
StudyTime => { GRP => "0008", ELEM => "0030", VR => "TM", VM => "1", VERSION => "DICOM_2009"}, |
|
141
|
|
|
|
|
|
|
SeriesTime => { GRP => "0008", ELEM => "0031", VR => "TM", VM => "1", VERSION => "DICOM_2009"}, |
|
142
|
|
|
|
|
|
|
AcquisitionTime => { GRP => "0008", ELEM => "0032", VR => "TM", VM => "1", VERSION => "DICOM_2009"}, |
|
143
|
|
|
|
|
|
|
ContentTime => { GRP => "0008", ELEM => "0033", VR => "TM", VM => "1", VERSION => "DICOM_2009"}, |
|
144
|
|
|
|
|
|
|
AccessionNumber => { GRP => "0008", ELEM => "0050", VR => "SH", VM => "1", VERSION => "DICOM_2009"}, |
|
145
|
|
|
|
|
|
|
IssuerOfAccessionNumberSequence => { GRP => "0008", ELEM => "0051", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
146
|
|
|
|
|
|
|
QueryRetrieveLevel => { GRP => "0008", ELEM => "0052", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
147
|
|
|
|
|
|
|
RetrieveAETitle => { GRP => "0008", ELEM => "0054", VR => "AE", VM => "1-n", VERSION => "DICOM_2009"}, |
|
148
|
|
|
|
|
|
|
InstanceAvailability => { GRP => "0008", ELEM => "0056", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
149
|
|
|
|
|
|
|
FailedSOPInstanceUIDList => { GRP => "0008", ELEM => "0058", VR => "UI", VM => "1-n", VERSION => "DICOM_2009"}, |
|
150
|
|
|
|
|
|
|
Modality => { GRP => "0008", ELEM => "0060", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
151
|
|
|
|
|
|
|
ModalitiesInStudy => { GRP => "0008", ELEM => "0061", VR => "CS", VM => "1-n", VERSION => "DICOM_2009"}, |
|
152
|
|
|
|
|
|
|
SOPClassesInStudy => { GRP => "0008", ELEM => "0062", VR => "UI", VM => "1-n", VERSION => "DICOM_2009"}, |
|
153
|
|
|
|
|
|
|
ConversionType => { GRP => "0008", ELEM => "0064", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
154
|
|
|
|
|
|
|
PresentationIntentType => { GRP => "0008", ELEM => "0068", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
155
|
|
|
|
|
|
|
Manufacturer => { GRP => "0008", ELEM => "0070", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
156
|
|
|
|
|
|
|
InstitutionName => { GRP => "0008", ELEM => "0080", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
157
|
|
|
|
|
|
|
InstitutionAddress => { GRP => "0008", ELEM => "0081", VR => "ST", VM => "1", VERSION => "DICOM_2009"}, |
|
158
|
|
|
|
|
|
|
InstitutionCodeSequence => { GRP => "0008", ELEM => "0082", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
159
|
|
|
|
|
|
|
ReferringPhysicianName => { GRP => "0008", ELEM => "0090", VR => "PN", VM => "1", VERSION => "DICOM_2009"}, |
|
160
|
|
|
|
|
|
|
ReferringPhysicianAddress => { GRP => "0008", ELEM => "0092", VR => "ST", VM => "1", VERSION => "DICOM_2009"}, |
|
161
|
|
|
|
|
|
|
ReferringPhysicianTelephoneNumbers => { GRP => "0008", ELEM => "0094", VR => "SH", VM => "1-n", VERSION => "DICOM_2009"}, |
|
162
|
|
|
|
|
|
|
ReferringPhysicianIdentificationSequence => { GRP => "0008", ELEM => "0096", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
163
|
|
|
|
|
|
|
CodeValue => { GRP => "0008", ELEM => "0100", VR => "SH", VM => "1", VERSION => "DICOM_2009"}, |
|
164
|
|
|
|
|
|
|
CodingSchemeDesignator => { GRP => "0008", ELEM => "0102", VR => "SH", VM => "1", VERSION => "DICOM_2009"}, |
|
165
|
|
|
|
|
|
|
CodingSchemeVersion => { GRP => "0008", ELEM => "0103", VR => "SH", VM => "1", VERSION => "DICOM_2009"}, |
|
166
|
|
|
|
|
|
|
CodeMeaning => { GRP => "0008", ELEM => "0104", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
167
|
|
|
|
|
|
|
MappingResource => { GRP => "0008", ELEM => "0105", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
168
|
|
|
|
|
|
|
ContextGroupVersion => { GRP => "0008", ELEM => "0106", VR => "DT", VM => "1", VERSION => "DICOM_2009"}, |
|
169
|
|
|
|
|
|
|
ContextGroupLocalVersion => { GRP => "0008", ELEM => "0107", VR => "DT", VM => "1", VERSION => "DICOM_2009"}, |
|
170
|
|
|
|
|
|
|
ContextGroupExtensionFlag => { GRP => "0008", ELEM => "010B", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
171
|
|
|
|
|
|
|
CodingSchemeUID => { GRP => "0008", ELEM => "010C", VR => "UI", VM => "1", VERSION => "DICOM_2009"}, |
|
172
|
|
|
|
|
|
|
ContextGroupExtensionCreatorUID => { GRP => "0008", ELEM => "010D", VR => "UI", VM => "1", VERSION => "DICOM_2009"}, |
|
173
|
|
|
|
|
|
|
ContextIdentifier => { GRP => "0008", ELEM => "010F", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
174
|
|
|
|
|
|
|
CodingSchemeIdentificationSequence => { GRP => "0008", ELEM => "0110", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
175
|
|
|
|
|
|
|
CodingSchemeRegistry => { GRP => "0008", ELEM => "0112", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
176
|
|
|
|
|
|
|
CodingSchemeExternalID => { GRP => "0008", ELEM => "0114", VR => "ST", VM => "1", VERSION => "DICOM_2009"}, |
|
177
|
|
|
|
|
|
|
CodingSchemeName => { GRP => "0008", ELEM => "0115", VR => "ST", VM => "1", VERSION => "DICOM_2009"}, |
|
178
|
|
|
|
|
|
|
CodingSchemeResponsibleOrganization => { GRP => "0008", ELEM => "0116", VR => "ST", VM => "1", VERSION => "DICOM_2009"}, |
|
179
|
|
|
|
|
|
|
ContextUID => { GRP => "0008", ELEM => "0117", VR => "UI", VM => "1", VERSION => "DICOM_2009"}, |
|
180
|
|
|
|
|
|
|
TimezoneOffsetFromUTC => { GRP => "0008", ELEM => "0201", VR => "SH", VM => "1", VERSION => "DICOM_2009"}, |
|
181
|
|
|
|
|
|
|
StationName => { GRP => "0008", ELEM => "1010", VR => "SH", VM => "1", VERSION => "DICOM_2009"}, |
|
182
|
|
|
|
|
|
|
StudyDescription => { GRP => "0008", ELEM => "1030", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
183
|
|
|
|
|
|
|
ProcedureCodeSequence => { GRP => "0008", ELEM => "1032", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
184
|
|
|
|
|
|
|
SeriesDescription => { GRP => "0008", ELEM => "103E", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
185
|
|
|
|
|
|
|
SeriesDescriptionCodeSequence => { GRP => "0008", ELEM => "103F", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
186
|
|
|
|
|
|
|
InstitutionalDepartmentName => { GRP => "0008", ELEM => "1040", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
187
|
|
|
|
|
|
|
PhysiciansOfRecord => { GRP => "0008", ELEM => "1048", VR => "PN", VM => "1-n", VERSION => "DICOM_2009"}, |
|
188
|
|
|
|
|
|
|
PhysiciansOfRecordIdentificationSequence => { GRP => "0008", ELEM => "1049", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
189
|
|
|
|
|
|
|
PerformingPhysicianName => { GRP => "0008", ELEM => "1050", VR => "PN", VM => "1-n", VERSION => "DICOM_2009"}, |
|
190
|
|
|
|
|
|
|
PerformingPhysicianIdentificationSequence => { GRP => "0008", ELEM => "1052", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
191
|
|
|
|
|
|
|
NameOfPhysiciansReadingStudy => { GRP => "0008", ELEM => "1060", VR => "PN", VM => "1-n", VERSION => "DICOM_2009"}, |
|
192
|
|
|
|
|
|
|
PhysiciansReadingStudyIdentificationSequence => { GRP => "0008", ELEM => "1062", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
193
|
|
|
|
|
|
|
OperatorsName => { GRP => "0008", ELEM => "1070", VR => "PN", VM => "1-n", VERSION => "DICOM_2009"}, |
|
194
|
|
|
|
|
|
|
OperatorIdentificationSequence => { GRP => "0008", ELEM => "1072", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
195
|
|
|
|
|
|
|
AdmittingDiagnosesDescription => { GRP => "0008", ELEM => "1080", VR => "LO", VM => "1-n", VERSION => "DICOM_2009"}, |
|
196
|
|
|
|
|
|
|
AdmittingDiagnosesCodeSequence => { GRP => "0008", ELEM => "1084", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
197
|
|
|
|
|
|
|
ManufacturerModelName => { GRP => "0008", ELEM => "1090", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
198
|
|
|
|
|
|
|
ReferencedStudySequence => { GRP => "0008", ELEM => "1110", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
199
|
|
|
|
|
|
|
ReferencedPerformedProcedureStepSequence => { GRP => "0008", ELEM => "1111", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
200
|
|
|
|
|
|
|
ReferencedSeriesSequence => { GRP => "0008", ELEM => "1115", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
201
|
|
|
|
|
|
|
ReferencedPatientSequence => { GRP => "0008", ELEM => "1120", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
202
|
|
|
|
|
|
|
ReferencedVisitSequence => { GRP => "0008", ELEM => "1125", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
203
|
|
|
|
|
|
|
ReferencedStereometricInstanceSequence => { GRP => "0008", ELEM => "1134", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
204
|
|
|
|
|
|
|
ReferencedWaveformSequence => { GRP => "0008", ELEM => "113A", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
205
|
|
|
|
|
|
|
ReferencedImageSequence => { GRP => "0008", ELEM => "1140", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
206
|
|
|
|
|
|
|
ReferencedInstanceSequence => { GRP => "0008", ELEM => "114A", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
207
|
|
|
|
|
|
|
ReferencedRealWorldValueMappingInstanceSequence => { GRP => "0008", ELEM => "114B", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
208
|
|
|
|
|
|
|
ReferencedSOPClassUID => { GRP => "0008", ELEM => "1150", VR => "UI", VM => "1", VERSION => "DICOM_2009"}, |
|
209
|
|
|
|
|
|
|
ReferencedSOPInstanceUID => { GRP => "0008", ELEM => "1155", VR => "UI", VM => "1", VERSION => "DICOM_2009"}, |
|
210
|
|
|
|
|
|
|
SOPClassesSupported => { GRP => "0008", ELEM => "115A", VR => "UI", VM => "1-n", VERSION => "DICOM_2009"}, |
|
211
|
|
|
|
|
|
|
ReferencedFrameNumber => { GRP => "0008", ELEM => "1160", VR => "IS", VM => "1-n", VERSION => "DICOM_2009"}, |
|
212
|
|
|
|
|
|
|
SimpleFrameList => { GRP => "0008", ELEM => "1161", VR => "UL", VM => "1-n", VERSION => "DICOM_2009"}, |
|
213
|
|
|
|
|
|
|
CalculatedFrameList => { GRP => "0008", ELEM => "1162", VR => "UL", VM => "3-3n", VERSION => "DICOM_2009"}, |
|
214
|
|
|
|
|
|
|
TimeRange => { GRP => "0008", ELEM => "1163", VR => "FD", VM => "2", VERSION => "DICOM_2009"}, |
|
215
|
|
|
|
|
|
|
FrameExtractionSequence => { GRP => "0008", ELEM => "1164", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
216
|
|
|
|
|
|
|
MultiFrameSourceSOPInstanceUID => { GRP => "0008", ELEM => "1167", VR => "UI", VM => "1", VERSION => "DICOM_2009"}, |
|
217
|
|
|
|
|
|
|
TransactionUID => { GRP => "0008", ELEM => "1195", VR => "UI", VM => "1", VERSION => "DICOM_2009"}, |
|
218
|
|
|
|
|
|
|
FailureReason => { GRP => "0008", ELEM => "1197", VR => "US", VM => "1", VERSION => "DICOM_2009"}, |
|
219
|
|
|
|
|
|
|
FailedSOPSequence => { GRP => "0008", ELEM => "1198", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
220
|
|
|
|
|
|
|
ReferencedSOPSequence => { GRP => "0008", ELEM => "1199", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
221
|
|
|
|
|
|
|
StudiesContainingOtherReferencedInstancesSequence => { GRP => "0008", ELEM => "1200", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
222
|
|
|
|
|
|
|
RelatedSeriesSequence => { GRP => "0008", ELEM => "1250", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
223
|
|
|
|
|
|
|
DerivationDescription => { GRP => "0008", ELEM => "2111", VR => "ST", VM => "1", VERSION => "DICOM_2009"}, |
|
224
|
|
|
|
|
|
|
SourceImageSequence => { GRP => "0008", ELEM => "2112", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
225
|
|
|
|
|
|
|
StageName => { GRP => "0008", ELEM => "2120", VR => "SH", VM => "1", VERSION => "DICOM_2009"}, |
|
226
|
|
|
|
|
|
|
StageNumber => { GRP => "0008", ELEM => "2122", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
227
|
|
|
|
|
|
|
NumberOfStages => { GRP => "0008", ELEM => "2124", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
228
|
|
|
|
|
|
|
ViewName => { GRP => "0008", ELEM => "2127", VR => "SH", VM => "1", VERSION => "DICOM_2009"}, |
|
229
|
|
|
|
|
|
|
ViewNumber => { GRP => "0008", ELEM => "2128", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
230
|
|
|
|
|
|
|
NumberOfEventTimers => { GRP => "0008", ELEM => "2129", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
231
|
|
|
|
|
|
|
NumberOfViewsInStage => { GRP => "0008", ELEM => "212A", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
232
|
|
|
|
|
|
|
EventElapsedTimes => { GRP => "0008", ELEM => "2130", VR => "DS", VM => "1-n", VERSION => "DICOM_2009"}, |
|
233
|
|
|
|
|
|
|
EventTimerNames => { GRP => "0008", ELEM => "2132", VR => "LO", VM => "1-n", VERSION => "DICOM_2009"}, |
|
234
|
|
|
|
|
|
|
EventTimerSequence => { GRP => "0008", ELEM => "2133", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
235
|
|
|
|
|
|
|
EventTimeOffset => { GRP => "0008", ELEM => "2134", VR => "FD", VM => "1", VERSION => "DICOM_2009"}, |
|
236
|
|
|
|
|
|
|
EventCodeSequence => { GRP => "0008", ELEM => "2135", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
237
|
|
|
|
|
|
|
StartTrim => { GRP => "0008", ELEM => "2142", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
238
|
|
|
|
|
|
|
StopTrim => { GRP => "0008", ELEM => "2143", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
239
|
|
|
|
|
|
|
RecommendedDisplayFrameRate => { GRP => "0008", ELEM => "2144", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
240
|
|
|
|
|
|
|
AnatomicRegionSequence => { GRP => "0008", ELEM => "2218", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
241
|
|
|
|
|
|
|
AnatomicRegionModifierSequence => { GRP => "0008", ELEM => "2220", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
242
|
|
|
|
|
|
|
PrimaryAnatomicStructureSequence => { GRP => "0008", ELEM => "2228", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
243
|
|
|
|
|
|
|
AnatomicStructureSpaceOrRegionSequence => { GRP => "0008", ELEM => "2229", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
244
|
|
|
|
|
|
|
PrimaryAnatomicStructureModifierSequence => { GRP => "0008", ELEM => "2230", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
245
|
|
|
|
|
|
|
AlternateRepresentationSequence => { GRP => "0008", ELEM => "3001", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
246
|
|
|
|
|
|
|
IrradiationEventUID => { GRP => "0008", ELEM => "3010", VR => "UI", VM => "1", VERSION => "DICOM_2009"}, |
|
247
|
|
|
|
|
|
|
FrameType => { GRP => "0008", ELEM => "9007", VR => "CS", VM => "4", VERSION => "DICOM_2009"}, |
|
248
|
|
|
|
|
|
|
ReferencedImageEvidenceSequence => { GRP => "0008", ELEM => "9092", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
249
|
|
|
|
|
|
|
ReferencedRawDataSequence => { GRP => "0008", ELEM => "9121", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
250
|
|
|
|
|
|
|
CreatorVersionUID => { GRP => "0008", ELEM => "9123", VR => "UI", VM => "1", VERSION => "DICOM_2009"}, |
|
251
|
|
|
|
|
|
|
DerivationImageSequence => { GRP => "0008", ELEM => "9124", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
252
|
|
|
|
|
|
|
SourceImageEvidenceSequence => { GRP => "0008", ELEM => "9154", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
253
|
|
|
|
|
|
|
PixelPresentation => { GRP => "0008", ELEM => "9205", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
254
|
|
|
|
|
|
|
VolumetricProperties => { GRP => "0008", ELEM => "9206", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
255
|
|
|
|
|
|
|
VolumeBasedCalculationTechnique => { GRP => "0008", ELEM => "9207", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
256
|
|
|
|
|
|
|
ComplexImageComponent => { GRP => "0008", ELEM => "9208", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
257
|
|
|
|
|
|
|
AcquisitionContrast => { GRP => "0008", ELEM => "9209", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
258
|
|
|
|
|
|
|
DerivationCodeSequence => { GRP => "0008", ELEM => "9215", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
259
|
|
|
|
|
|
|
ReferencedPresentationStateSequence => { GRP => "0008", ELEM => "9237", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
260
|
|
|
|
|
|
|
ReferencedOtherPlaneSequence => { GRP => "0008", ELEM => "9410", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
261
|
|
|
|
|
|
|
FrameDisplaySequence => { GRP => "0008", ELEM => "9458", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
262
|
|
|
|
|
|
|
RecommendedDisplayFrameRateInFloat => { GRP => "0008", ELEM => "9459", VR => "FL", VM => "1", VERSION => "DICOM_2009"}, |
|
263
|
|
|
|
|
|
|
SkipFrameRangeFlag => { GRP => "0008", ELEM => "9460", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
264
|
|
|
|
|
|
|
PatientName => { GRP => "0010", ELEM => "0010", VR => "PN", VM => "1", VERSION => "DICOM_2009"}, |
|
265
|
|
|
|
|
|
|
PatientID => { GRP => "0010", ELEM => "0020", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
266
|
|
|
|
|
|
|
IssuerOfPatientID => { GRP => "0010", ELEM => "0021", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
267
|
|
|
|
|
|
|
TypeOfPatientID => { GRP => "0010", ELEM => "0022", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
268
|
|
|
|
|
|
|
IssuerOfPatientIDQualifiersSequence => { GRP => "0010", ELEM => "0024", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
269
|
|
|
|
|
|
|
PatientBirthDate => { GRP => "0010", ELEM => "0030", VR => "DA", VM => "1", VERSION => "DICOM_2009"}, |
|
270
|
|
|
|
|
|
|
PatientBirthTime => { GRP => "0010", ELEM => "0032", VR => "TM", VM => "1", VERSION => "DICOM_2009"}, |
|
271
|
|
|
|
|
|
|
PatientSex => { GRP => "0010", ELEM => "0040", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
272
|
|
|
|
|
|
|
PatientInsurancePlanCodeSequence => { GRP => "0010", ELEM => "0050", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
273
|
|
|
|
|
|
|
PatientPrimaryLanguageCodeSequence => { GRP => "0010", ELEM => "0101", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
274
|
|
|
|
|
|
|
PatientPrimaryLanguageModifierCodeSequence => { GRP => "0010", ELEM => "0102", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
275
|
|
|
|
|
|
|
OtherPatientIDs => { GRP => "0010", ELEM => "1000", VR => "LO", VM => "1-n", VERSION => "DICOM_2009"}, |
|
276
|
|
|
|
|
|
|
OtherPatientNames => { GRP => "0010", ELEM => "1001", VR => "PN", VM => "1-n", VERSION => "DICOM_2009"}, |
|
277
|
|
|
|
|
|
|
OtherPatientIDsSequence => { GRP => "0010", ELEM => "1002", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
278
|
|
|
|
|
|
|
PatientBirthName => { GRP => "0010", ELEM => "1005", VR => "PN", VM => "1", VERSION => "DICOM_2009"}, |
|
279
|
|
|
|
|
|
|
PatientAge => { GRP => "0010", ELEM => "1010", VR => "AS", VM => "1", VERSION => "DICOM_2009"}, |
|
280
|
|
|
|
|
|
|
PatientSize => { GRP => "0010", ELEM => "1020", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
281
|
|
|
|
|
|
|
PatientWeight => { GRP => "0010", ELEM => "1030", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
282
|
|
|
|
|
|
|
PatientAddress => { GRP => "0010", ELEM => "1040", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
283
|
|
|
|
|
|
|
PatientMotherBirthName => { GRP => "0010", ELEM => "1060", VR => "PN", VM => "1", VERSION => "DICOM_2009"}, |
|
284
|
|
|
|
|
|
|
MilitaryRank => { GRP => "0010", ELEM => "1080", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
285
|
|
|
|
|
|
|
BranchOfService => { GRP => "0010", ELEM => "1081", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
286
|
|
|
|
|
|
|
MedicalRecordLocator => { GRP => "0010", ELEM => "1090", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
287
|
|
|
|
|
|
|
MedicalAlerts => { GRP => "0010", ELEM => "2000", VR => "LO", VM => "1-n", VERSION => "DICOM_2009"}, |
|
288
|
|
|
|
|
|
|
Allergies => { GRP => "0010", ELEM => "2110", VR => "LO", VM => "1-n", VERSION => "DICOM_2009"}, |
|
289
|
|
|
|
|
|
|
CountryOfResidence => { GRP => "0010", ELEM => "2150", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
290
|
|
|
|
|
|
|
RegionOfResidence => { GRP => "0010", ELEM => "2152", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
291
|
|
|
|
|
|
|
PatientTelephoneNumbers => { GRP => "0010", ELEM => "2154", VR => "SH", VM => "1-n", VERSION => "DICOM_2009"}, |
|
292
|
|
|
|
|
|
|
EthnicGroup => { GRP => "0010", ELEM => "2160", VR => "SH", VM => "1", VERSION => "DICOM_2009"}, |
|
293
|
|
|
|
|
|
|
Occupation => { GRP => "0010", ELEM => "2180", VR => "SH", VM => "1", VERSION => "DICOM_2009"}, |
|
294
|
|
|
|
|
|
|
SmokingStatus => { GRP => "0010", ELEM => "21A0", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
295
|
|
|
|
|
|
|
AdditionalPatientHistory => { GRP => "0010", ELEM => "21B0", VR => "LT", VM => "1", VERSION => "DICOM_2009"}, |
|
296
|
|
|
|
|
|
|
PregnancyStatus => { GRP => "0010", ELEM => "21C0", VR => "US", VM => "1", VERSION => "DICOM_2009"}, |
|
297
|
|
|
|
|
|
|
LastMenstrualDate => { GRP => "0010", ELEM => "21D0", VR => "DA", VM => "1", VERSION => "DICOM_2009"}, |
|
298
|
|
|
|
|
|
|
PatientReligiousPreference => { GRP => "0010", ELEM => "21F0", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
299
|
|
|
|
|
|
|
PatientSpeciesDescription => { GRP => "0010", ELEM => "2201", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
300
|
|
|
|
|
|
|
PatientSpeciesCodeSequence => { GRP => "0010", ELEM => "2202", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
301
|
|
|
|
|
|
|
PatientSexNeutered => { GRP => "0010", ELEM => "2203", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
302
|
|
|
|
|
|
|
AnatomicalOrientationType => { GRP => "0010", ELEM => "2210", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
303
|
|
|
|
|
|
|
PatientBreedDescription => { GRP => "0010", ELEM => "2292", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
304
|
|
|
|
|
|
|
PatientBreedCodeSequence => { GRP => "0010", ELEM => "2293", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
305
|
|
|
|
|
|
|
BreedRegistrationSequence => { GRP => "0010", ELEM => "2294", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
306
|
|
|
|
|
|
|
BreedRegistrationNumber => { GRP => "0010", ELEM => "2295", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
307
|
|
|
|
|
|
|
BreedRegistryCodeSequence => { GRP => "0010", ELEM => "2296", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
308
|
|
|
|
|
|
|
ResponsiblePerson => { GRP => "0010", ELEM => "2297", VR => "PN", VM => "1", VERSION => "DICOM_2009"}, |
|
309
|
|
|
|
|
|
|
ResponsiblePersonRole => { GRP => "0010", ELEM => "2298", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
310
|
|
|
|
|
|
|
ResponsibleOrganization => { GRP => "0010", ELEM => "2299", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
311
|
|
|
|
|
|
|
PatientComments => { GRP => "0010", ELEM => "4000", VR => "LT", VM => "1", VERSION => "DICOM_2009"}, |
|
312
|
|
|
|
|
|
|
ExaminedBodyThickness => { GRP => "0010", ELEM => "9431", VR => "FL", VM => "1", VERSION => "DICOM_2009"}, |
|
313
|
|
|
|
|
|
|
ClinicalTrialSponsorName => { GRP => "0012", ELEM => "0010", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
314
|
|
|
|
|
|
|
ClinicalTrialProtocolID => { GRP => "0012", ELEM => "0020", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
315
|
|
|
|
|
|
|
ClinicalTrialProtocolName => { GRP => "0012", ELEM => "0021", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
316
|
|
|
|
|
|
|
ClinicalTrialSiteID => { GRP => "0012", ELEM => "0030", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
317
|
|
|
|
|
|
|
ClinicalTrialSiteName => { GRP => "0012", ELEM => "0031", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
318
|
|
|
|
|
|
|
ClinicalTrialSubjectID => { GRP => "0012", ELEM => "0040", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
319
|
|
|
|
|
|
|
ClinicalTrialSubjectReadingID => { GRP => "0012", ELEM => "0042", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
320
|
|
|
|
|
|
|
ClinicalTrialTimePointID => { GRP => "0012", ELEM => "0050", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
321
|
|
|
|
|
|
|
ClinicalTrialTimePointDescription => { GRP => "0012", ELEM => "0051", VR => "ST", VM => "1", VERSION => "DICOM_2009"}, |
|
322
|
|
|
|
|
|
|
ClinicalTrialCoordinatingCenterName => { GRP => "0012", ELEM => "0060", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
323
|
|
|
|
|
|
|
PatientIdentityRemoved => { GRP => "0012", ELEM => "0062", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
324
|
|
|
|
|
|
|
DeidentificationMethod => { GRP => "0012", ELEM => "0063", VR => "LO", VM => "1-n", VERSION => "DICOM_2009"}, |
|
325
|
|
|
|
|
|
|
DeidentificationMethodCodeSequence => { GRP => "0012", ELEM => "0064", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
326
|
|
|
|
|
|
|
ClinicalTrialSeriesID => { GRP => "0012", ELEM => "0071", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
327
|
|
|
|
|
|
|
ClinicalTrialSeriesDescription => { GRP => "0012", ELEM => "0072", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
328
|
|
|
|
|
|
|
ClinicalTrialProtocolEthicsCommitteeName => { GRP => "0012", ELEM => "0081", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
329
|
|
|
|
|
|
|
ClinicalTrialProtocolEthicsCommitteeApprovalNumber => { GRP => "0012", ELEM => "0082", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
330
|
|
|
|
|
|
|
ConsentForClinicalTrialUseSequence => { GRP => "0012", ELEM => "0083", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
331
|
|
|
|
|
|
|
DistributionType => { GRP => "0012", ELEM => "0084", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
332
|
|
|
|
|
|
|
ConsentForDistributionFlag => { GRP => "0012", ELEM => "0085", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
333
|
|
|
|
|
|
|
ContrastBolusAgent => { GRP => "0018", ELEM => "0010", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
334
|
|
|
|
|
|
|
ContrastBolusAgentSequence => { GRP => "0018", ELEM => "0012", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
335
|
|
|
|
|
|
|
ContrastBolusAdministrationRouteSequence => { GRP => "0018", ELEM => "0014", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
336
|
|
|
|
|
|
|
BodyPartExamined => { GRP => "0018", ELEM => "0015", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
337
|
|
|
|
|
|
|
ScanningSequence => { GRP => "0018", ELEM => "0020", VR => "CS", VM => "1-n", VERSION => "DICOM_2009"}, |
|
338
|
|
|
|
|
|
|
SequenceVariant => { GRP => "0018", ELEM => "0021", VR => "CS", VM => "1-n", VERSION => "DICOM_2009"}, |
|
339
|
|
|
|
|
|
|
ScanOptions => { GRP => "0018", ELEM => "0022", VR => "CS", VM => "1-n", VERSION => "DICOM_2009"}, |
|
340
|
|
|
|
|
|
|
MRAcquisitionType => { GRP => "0018", ELEM => "0023", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
341
|
|
|
|
|
|
|
SequenceName => { GRP => "0018", ELEM => "0024", VR => "SH", VM => "1", VERSION => "DICOM_2009"}, |
|
342
|
|
|
|
|
|
|
AngioFlag => { GRP => "0018", ELEM => "0025", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
343
|
|
|
|
|
|
|
InterventionDrugInformationSequence => { GRP => "0018", ELEM => "0026", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
344
|
|
|
|
|
|
|
InterventionDrugStopTime => { GRP => "0018", ELEM => "0027", VR => "TM", VM => "1", VERSION => "DICOM_2009"}, |
|
345
|
|
|
|
|
|
|
InterventionDrugDose => { GRP => "0018", ELEM => "0028", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
346
|
|
|
|
|
|
|
InterventionDrugCodeSequence => { GRP => "0018", ELEM => "0029", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
347
|
|
|
|
|
|
|
AdditionalDrugSequence => { GRP => "0018", ELEM => "002A", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
348
|
|
|
|
|
|
|
Radiopharmaceutical => { GRP => "0018", ELEM => "0031", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
349
|
|
|
|
|
|
|
InterventionDrugName => { GRP => "0018", ELEM => "0034", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
350
|
|
|
|
|
|
|
InterventionDrugStartTime => { GRP => "0018", ELEM => "0035", VR => "TM", VM => "1", VERSION => "DICOM_2009"}, |
|
351
|
|
|
|
|
|
|
InterventionSequence => { GRP => "0018", ELEM => "0036", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
352
|
|
|
|
|
|
|
InterventionStatus => { GRP => "0018", ELEM => "0038", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
353
|
|
|
|
|
|
|
InterventionDescription => { GRP => "0018", ELEM => "003A", VR => "ST", VM => "1", VERSION => "DICOM_2009"}, |
|
354
|
|
|
|
|
|
|
CineRate => { GRP => "0018", ELEM => "0040", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
355
|
|
|
|
|
|
|
InitialCineRunState => { GRP => "0018", ELEM => "0042", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
356
|
|
|
|
|
|
|
SliceThickness => { GRP => "0018", ELEM => "0050", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
357
|
|
|
|
|
|
|
KVP => { GRP => "0018", ELEM => "0060", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
358
|
|
|
|
|
|
|
CountsAccumulated => { GRP => "0018", ELEM => "0070", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
359
|
|
|
|
|
|
|
AcquisitionTerminationCondition => { GRP => "0018", ELEM => "0071", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
360
|
|
|
|
|
|
|
EffectiveDuration => { GRP => "0018", ELEM => "0072", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
361
|
|
|
|
|
|
|
AcquisitionStartCondition => { GRP => "0018", ELEM => "0073", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
362
|
|
|
|
|
|
|
AcquisitionStartConditionData => { GRP => "0018", ELEM => "0074", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
363
|
|
|
|
|
|
|
AcquisitionTerminationConditionData => { GRP => "0018", ELEM => "0075", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
364
|
|
|
|
|
|
|
RepetitionTime => { GRP => "0018", ELEM => "0080", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
365
|
|
|
|
|
|
|
EchoTime => { GRP => "0018", ELEM => "0081", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
366
|
|
|
|
|
|
|
InversionTime => { GRP => "0018", ELEM => "0082", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
367
|
|
|
|
|
|
|
NumberOfAverages => { GRP => "0018", ELEM => "0083", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
368
|
|
|
|
|
|
|
ImagingFrequency => { GRP => "0018", ELEM => "0084", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
369
|
|
|
|
|
|
|
ImagedNucleus => { GRP => "0018", ELEM => "0085", VR => "SH", VM => "1", VERSION => "DICOM_2009"}, |
|
370
|
|
|
|
|
|
|
EchoNumbers => { GRP => "0018", ELEM => "0086", VR => "IS", VM => "1-n", VERSION => "DICOM_2009"}, |
|
371
|
|
|
|
|
|
|
MagneticFieldStrength => { GRP => "0018", ELEM => "0087", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
372
|
|
|
|
|
|
|
SpacingBetweenSlices => { GRP => "0018", ELEM => "0088", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
373
|
|
|
|
|
|
|
NumberOfPhaseEncodingSteps => { GRP => "0018", ELEM => "0089", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
374
|
|
|
|
|
|
|
DataCollectionDiameter => { GRP => "0018", ELEM => "0090", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
375
|
|
|
|
|
|
|
EchoTrainLength => { GRP => "0018", ELEM => "0091", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
376
|
|
|
|
|
|
|
PercentSampling => { GRP => "0018", ELEM => "0093", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
377
|
|
|
|
|
|
|
PercentPhaseFieldOfView => { GRP => "0018", ELEM => "0094", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
378
|
|
|
|
|
|
|
PixelBandwidth => { GRP => "0018", ELEM => "0095", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
379
|
|
|
|
|
|
|
DeviceSerialNumber => { GRP => "0018", ELEM => "1000", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
380
|
|
|
|
|
|
|
DeviceUID => { GRP => "0018", ELEM => "1002", VR => "UI", VM => "1", VERSION => "DICOM_2009"}, |
|
381
|
|
|
|
|
|
|
DeviceID => { GRP => "0018", ELEM => "1003", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
382
|
|
|
|
|
|
|
PlateID => { GRP => "0018", ELEM => "1004", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
383
|
|
|
|
|
|
|
GeneratorID => { GRP => "0018", ELEM => "1005", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
384
|
|
|
|
|
|
|
GridID => { GRP => "0018", ELEM => "1006", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
385
|
|
|
|
|
|
|
CassetteID => { GRP => "0018", ELEM => "1007", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
386
|
|
|
|
|
|
|
GantryID => { GRP => "0018", ELEM => "1008", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
387
|
|
|
|
|
|
|
SecondaryCaptureDeviceID => { GRP => "0018", ELEM => "1010", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
388
|
|
|
|
|
|
|
DateOfSecondaryCapture => { GRP => "0018", ELEM => "1012", VR => "DA", VM => "1", VERSION => "DICOM_2009"}, |
|
389
|
|
|
|
|
|
|
TimeOfSecondaryCapture => { GRP => "0018", ELEM => "1014", VR => "TM", VM => "1", VERSION => "DICOM_2009"}, |
|
390
|
|
|
|
|
|
|
SecondaryCaptureDeviceManufacturer => { GRP => "0018", ELEM => "1016", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
391
|
|
|
|
|
|
|
SecondaryCaptureDeviceManufacturerModelName => { GRP => "0018", ELEM => "1018", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
392
|
|
|
|
|
|
|
SecondaryCaptureDeviceSoftwareVersions => { GRP => "0018", ELEM => "1019", VR => "LO", VM => "1-n", VERSION => "DICOM_2009"}, |
|
393
|
|
|
|
|
|
|
SoftwareVersions => { GRP => "0018", ELEM => "1020", VR => "LO", VM => "1-n", VERSION => "DICOM_2009"}, |
|
394
|
|
|
|
|
|
|
VideoImageFormatAcquired => { GRP => "0018", ELEM => "1022", VR => "SH", VM => "1", VERSION => "DICOM_2009"}, |
|
395
|
|
|
|
|
|
|
DigitalImageFormatAcquired => { GRP => "0018", ELEM => "1023", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
396
|
|
|
|
|
|
|
ProtocolName => { GRP => "0018", ELEM => "1030", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
397
|
|
|
|
|
|
|
ContrastBolusRoute => { GRP => "0018", ELEM => "1040", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
398
|
|
|
|
|
|
|
ContrastBolusVolume => { GRP => "0018", ELEM => "1041", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
399
|
|
|
|
|
|
|
ContrastBolusStartTime => { GRP => "0018", ELEM => "1042", VR => "TM", VM => "1", VERSION => "DICOM_2009"}, |
|
400
|
|
|
|
|
|
|
ContrastBolusStopTime => { GRP => "0018", ELEM => "1043", VR => "TM", VM => "1", VERSION => "DICOM_2009"}, |
|
401
|
|
|
|
|
|
|
ContrastBolusTotalDose => { GRP => "0018", ELEM => "1044", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
402
|
|
|
|
|
|
|
SyringeCounts => { GRP => "0018", ELEM => "1045", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
403
|
|
|
|
|
|
|
ContrastFlowRate => { GRP => "0018", ELEM => "1046", VR => "DS", VM => "1-n", VERSION => "DICOM_2009"}, |
|
404
|
|
|
|
|
|
|
ContrastFlowDuration => { GRP => "0018", ELEM => "1047", VR => "DS", VM => "1-n", VERSION => "DICOM_2009"}, |
|
405
|
|
|
|
|
|
|
ContrastBolusIngredient => { GRP => "0018", ELEM => "1048", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
406
|
|
|
|
|
|
|
ContrastBolusIngredientConcentration => { GRP => "0018", ELEM => "1049", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
407
|
|
|
|
|
|
|
SpatialResolution => { GRP => "0018", ELEM => "1050", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
408
|
|
|
|
|
|
|
TriggerTime => { GRP => "0018", ELEM => "1060", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
409
|
|
|
|
|
|
|
TriggerSourceOrType => { GRP => "0018", ELEM => "1061", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
410
|
|
|
|
|
|
|
NominalInterval => { GRP => "0018", ELEM => "1062", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
411
|
|
|
|
|
|
|
FrameTime => { GRP => "0018", ELEM => "1063", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
412
|
|
|
|
|
|
|
CardiacFramingType => { GRP => "0018", ELEM => "1064", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
413
|
|
|
|
|
|
|
FrameTimeVector => { GRP => "0018", ELEM => "1065", VR => "DS", VM => "1-n", VERSION => "DICOM_2009"}, |
|
414
|
|
|
|
|
|
|
FrameDelay => { GRP => "0018", ELEM => "1066", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
415
|
|
|
|
|
|
|
ImageTriggerDelay => { GRP => "0018", ELEM => "1067", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
416
|
|
|
|
|
|
|
MultiplexGroupTimeOffset => { GRP => "0018", ELEM => "1068", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
417
|
|
|
|
|
|
|
TriggerTimeOffset => { GRP => "0018", ELEM => "1069", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
418
|
|
|
|
|
|
|
SynchronizationTrigger => { GRP => "0018", ELEM => "106A", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
419
|
|
|
|
|
|
|
SynchronizationChannel => { GRP => "0018", ELEM => "106C", VR => "US", VM => "2", VERSION => "DICOM_2009"}, |
|
420
|
|
|
|
|
|
|
TriggerSamplePosition => { GRP => "0018", ELEM => "106E", VR => "UL", VM => "1", VERSION => "DICOM_2009"}, |
|
421
|
|
|
|
|
|
|
RadiopharmaceuticalRoute => { GRP => "0018", ELEM => "1070", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
422
|
|
|
|
|
|
|
RadiopharmaceuticalVolume => { GRP => "0018", ELEM => "1071", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
423
|
|
|
|
|
|
|
RadiopharmaceuticalStartTime => { GRP => "0018", ELEM => "1072", VR => "TM", VM => "1", VERSION => "DICOM_2009"}, |
|
424
|
|
|
|
|
|
|
RadiopharmaceuticalStopTime => { GRP => "0018", ELEM => "1073", VR => "TM", VM => "1", VERSION => "DICOM_2009"}, |
|
425
|
|
|
|
|
|
|
RadionuclideTotalDose => { GRP => "0018", ELEM => "1074", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
426
|
|
|
|
|
|
|
RadionuclideHalfLife => { GRP => "0018", ELEM => "1075", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
427
|
|
|
|
|
|
|
RadionuclidePositronFraction => { GRP => "0018", ELEM => "1076", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
428
|
|
|
|
|
|
|
RadiopharmaceuticalSpecificActivity => { GRP => "0018", ELEM => "1077", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
429
|
|
|
|
|
|
|
RadiopharmaceuticalStartDateTime => { GRP => "0018", ELEM => "1078", VR => "DT", VM => "1", VERSION => "DICOM_2009"}, |
|
430
|
|
|
|
|
|
|
RadiopharmaceuticalStopDateTime => { GRP => "0018", ELEM => "1079", VR => "DT", VM => "1", VERSION => "DICOM_2009"}, |
|
431
|
|
|
|
|
|
|
BeatRejectionFlag => { GRP => "0018", ELEM => "1080", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
432
|
|
|
|
|
|
|
LowRRValue => { GRP => "0018", ELEM => "1081", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
433
|
|
|
|
|
|
|
HighRRValue => { GRP => "0018", ELEM => "1082", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
434
|
|
|
|
|
|
|
IntervalsAcquired => { GRP => "0018", ELEM => "1083", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
435
|
|
|
|
|
|
|
IntervalsRejected => { GRP => "0018", ELEM => "1084", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
436
|
|
|
|
|
|
|
PVCRejection => { GRP => "0018", ELEM => "1085", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
437
|
|
|
|
|
|
|
SkipBeats => { GRP => "0018", ELEM => "1086", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
438
|
|
|
|
|
|
|
HeartRate => { GRP => "0018", ELEM => "1088", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
439
|
|
|
|
|
|
|
CardiacNumberOfImages => { GRP => "0018", ELEM => "1090", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
440
|
|
|
|
|
|
|
TriggerWindow => { GRP => "0018", ELEM => "1094", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
441
|
|
|
|
|
|
|
ReconstructionDiameter => { GRP => "0018", ELEM => "1100", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
442
|
|
|
|
|
|
|
DistanceSourceToDetector => { GRP => "0018", ELEM => "1110", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
443
|
|
|
|
|
|
|
DistanceSourceToPatient => { GRP => "0018", ELEM => "1111", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
444
|
|
|
|
|
|
|
EstimatedRadiographicMagnificationFactor => { GRP => "0018", ELEM => "1114", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
445
|
|
|
|
|
|
|
GantryDetectorTilt => { GRP => "0018", ELEM => "1120", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
446
|
|
|
|
|
|
|
GantryDetectorSlew => { GRP => "0018", ELEM => "1121", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
447
|
|
|
|
|
|
|
TableHeight => { GRP => "0018", ELEM => "1130", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
448
|
|
|
|
|
|
|
TableTraverse => { GRP => "0018", ELEM => "1131", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
449
|
|
|
|
|
|
|
TableMotion => { GRP => "0018", ELEM => "1134", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
450
|
|
|
|
|
|
|
TableVerticalIncrement => { GRP => "0018", ELEM => "1135", VR => "DS", VM => "1-n", VERSION => "DICOM_2009"}, |
|
451
|
|
|
|
|
|
|
TableLateralIncrement => { GRP => "0018", ELEM => "1136", VR => "DS", VM => "1-n", VERSION => "DICOM_2009"}, |
|
452
|
|
|
|
|
|
|
TableLongitudinalIncrement => { GRP => "0018", ELEM => "1137", VR => "DS", VM => "1-n", VERSION => "DICOM_2009"}, |
|
453
|
|
|
|
|
|
|
TableAngle => { GRP => "0018", ELEM => "1138", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
454
|
|
|
|
|
|
|
TableType => { GRP => "0018", ELEM => "113A", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
455
|
|
|
|
|
|
|
RotationDirection => { GRP => "0018", ELEM => "1140", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
456
|
|
|
|
|
|
|
RadialPosition => { GRP => "0018", ELEM => "1142", VR => "DS", VM => "1-n", VERSION => "DICOM_2009"}, |
|
457
|
|
|
|
|
|
|
ScanArc => { GRP => "0018", ELEM => "1143", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
458
|
|
|
|
|
|
|
AngularStep => { GRP => "0018", ELEM => "1144", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
459
|
|
|
|
|
|
|
CenterOfRotationOffset => { GRP => "0018", ELEM => "1145", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
460
|
|
|
|
|
|
|
FieldOfViewShape => { GRP => "0018", ELEM => "1147", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
461
|
|
|
|
|
|
|
FieldOfViewDimensions => { GRP => "0018", ELEM => "1149", VR => "IS", VM => "1-2", VERSION => "DICOM_2009"}, |
|
462
|
|
|
|
|
|
|
ExposureTime => { GRP => "0018", ELEM => "1150", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
463
|
|
|
|
|
|
|
XRayTubeCurrent => { GRP => "0018", ELEM => "1151", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
464
|
|
|
|
|
|
|
Exposure => { GRP => "0018", ELEM => "1152", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
465
|
|
|
|
|
|
|
ExposureInuAs => { GRP => "0018", ELEM => "1153", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
466
|
|
|
|
|
|
|
AveragePulseWidth => { GRP => "0018", ELEM => "1154", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
467
|
|
|
|
|
|
|
RadiationSetting => { GRP => "0018", ELEM => "1155", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
468
|
|
|
|
|
|
|
RectificationType => { GRP => "0018", ELEM => "1156", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
469
|
|
|
|
|
|
|
RadiationMode => { GRP => "0018", ELEM => "115A", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
470
|
|
|
|
|
|
|
ImageAndFluoroscopyAreaDoseProduct => { GRP => "0018", ELEM => "115E", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
471
|
|
|
|
|
|
|
FilterType => { GRP => "0018", ELEM => "1160", VR => "SH", VM => "1", VERSION => "DICOM_2009"}, |
|
472
|
|
|
|
|
|
|
TypeOfFilters => { GRP => "0018", ELEM => "1161", VR => "LO", VM => "1-n", VERSION => "DICOM_2009"}, |
|
473
|
|
|
|
|
|
|
IntensifierSize => { GRP => "0018", ELEM => "1162", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
474
|
|
|
|
|
|
|
ImagerPixelSpacing => { GRP => "0018", ELEM => "1164", VR => "DS", VM => "2", VERSION => "DICOM_2009"}, |
|
475
|
|
|
|
|
|
|
Grid => { GRP => "0018", ELEM => "1166", VR => "CS", VM => "1-n", VERSION => "DICOM_2009"}, |
|
476
|
|
|
|
|
|
|
GeneratorPower => { GRP => "0018", ELEM => "1170", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
477
|
|
|
|
|
|
|
CollimatorGridName => { GRP => "0018", ELEM => "1180", VR => "SH", VM => "1", VERSION => "DICOM_2009"}, |
|
478
|
|
|
|
|
|
|
CollimatorType => { GRP => "0018", ELEM => "1181", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
479
|
|
|
|
|
|
|
FocalDistance => { GRP => "0018", ELEM => "1182", VR => "IS", VM => "1-2", VERSION => "DICOM_2009"}, |
|
480
|
|
|
|
|
|
|
XFocusCenter => { GRP => "0018", ELEM => "1183", VR => "DS", VM => "1-2", VERSION => "DICOM_2009"}, |
|
481
|
|
|
|
|
|
|
YFocusCenter => { GRP => "0018", ELEM => "1184", VR => "DS", VM => "1-2", VERSION => "DICOM_2009"}, |
|
482
|
|
|
|
|
|
|
FocalSpots => { GRP => "0018", ELEM => "1190", VR => "DS", VM => "1-n", VERSION => "DICOM_2009"}, |
|
483
|
|
|
|
|
|
|
AnodeTargetMaterial => { GRP => "0018", ELEM => "1191", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
484
|
|
|
|
|
|
|
BodyPartThickness => { GRP => "0018", ELEM => "11A0", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
485
|
|
|
|
|
|
|
CompressionForce => { GRP => "0018", ELEM => "11A2", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
486
|
|
|
|
|
|
|
DateOfLastCalibration => { GRP => "0018", ELEM => "1200", VR => "DA", VM => "1-n", VERSION => "DICOM_2009"}, |
|
487
|
|
|
|
|
|
|
TimeOfLastCalibration => { GRP => "0018", ELEM => "1201", VR => "TM", VM => "1-n", VERSION => "DICOM_2009"}, |
|
488
|
|
|
|
|
|
|
ConvolutionKernel => { GRP => "0018", ELEM => "1210", VR => "SH", VM => "1-n", VERSION => "DICOM_2009"}, |
|
489
|
|
|
|
|
|
|
ActualFrameDuration => { GRP => "0018", ELEM => "1242", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
490
|
|
|
|
|
|
|
CountRate => { GRP => "0018", ELEM => "1243", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
491
|
|
|
|
|
|
|
PreferredPlaybackSequencing => { GRP => "0018", ELEM => "1244", VR => "US", VM => "1", VERSION => "DICOM_2009"}, |
|
492
|
|
|
|
|
|
|
ReceiveCoilName => { GRP => "0018", ELEM => "1250", VR => "SH", VM => "1", VERSION => "DICOM_2009"}, |
|
493
|
|
|
|
|
|
|
TransmitCoilName => { GRP => "0018", ELEM => "1251", VR => "SH", VM => "1", VERSION => "DICOM_2009"}, |
|
494
|
|
|
|
|
|
|
PlateType => { GRP => "0018", ELEM => "1260", VR => "SH", VM => "1", VERSION => "DICOM_2009"}, |
|
495
|
|
|
|
|
|
|
PhosphorType => { GRP => "0018", ELEM => "1261", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
496
|
|
|
|
|
|
|
ScanVelocity => { GRP => "0018", ELEM => "1300", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
497
|
|
|
|
|
|
|
WholeBodyTechnique => { GRP => "0018", ELEM => "1301", VR => "CS", VM => "1-n", VERSION => "DICOM_2009"}, |
|
498
|
|
|
|
|
|
|
ScanLength => { GRP => "0018", ELEM => "1302", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
499
|
|
|
|
|
|
|
AcquisitionMatrix => { GRP => "0018", ELEM => "1310", VR => "US", VM => "4", VERSION => "DICOM_2009"}, |
|
500
|
|
|
|
|
|
|
InPlanePhaseEncodingDirection => { GRP => "0018", ELEM => "1312", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
501
|
|
|
|
|
|
|
FlipAngle => { GRP => "0018", ELEM => "1314", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
502
|
|
|
|
|
|
|
VariableFlipAngleFlag => { GRP => "0018", ELEM => "1315", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
503
|
|
|
|
|
|
|
SAR => { GRP => "0018", ELEM => "1316", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
504
|
|
|
|
|
|
|
dBdt => { GRP => "0018", ELEM => "1318", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
505
|
|
|
|
|
|
|
AcquisitionDeviceProcessingDescription => { GRP => "0018", ELEM => "1400", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
506
|
|
|
|
|
|
|
AcquisitionDeviceProcessingCode => { GRP => "0018", ELEM => "1401", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
507
|
|
|
|
|
|
|
CassetteOrientation => { GRP => "0018", ELEM => "1402", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
508
|
|
|
|
|
|
|
CassetteSize => { GRP => "0018", ELEM => "1403", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
509
|
|
|
|
|
|
|
ExposuresOnPlate => { GRP => "0018", ELEM => "1404", VR => "US", VM => "1", VERSION => "DICOM_2009"}, |
|
510
|
|
|
|
|
|
|
RelativeXRayExposure => { GRP => "0018", ELEM => "1405", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
511
|
|
|
|
|
|
|
ColumnAngulation => { GRP => "0018", ELEM => "1450", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
512
|
|
|
|
|
|
|
TomoLayerHeight => { GRP => "0018", ELEM => "1460", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
513
|
|
|
|
|
|
|
TomoAngle => { GRP => "0018", ELEM => "1470", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
514
|
|
|
|
|
|
|
TomoTime => { GRP => "0018", ELEM => "1480", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
515
|
|
|
|
|
|
|
TomoType => { GRP => "0018", ELEM => "1490", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
516
|
|
|
|
|
|
|
TomoClass => { GRP => "0018", ELEM => "1491", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
517
|
|
|
|
|
|
|
NumberOfTomosynthesisSourceImages => { GRP => "0018", ELEM => "1495", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
518
|
|
|
|
|
|
|
PositionerMotion => { GRP => "0018", ELEM => "1500", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
519
|
|
|
|
|
|
|
PositionerType => { GRP => "0018", ELEM => "1508", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
520
|
|
|
|
|
|
|
PositionerPrimaryAngle => { GRP => "0018", ELEM => "1510", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
521
|
|
|
|
|
|
|
PositionerSecondaryAngle => { GRP => "0018", ELEM => "1511", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
522
|
|
|
|
|
|
|
PositionerPrimaryAngleIncrement => { GRP => "0018", ELEM => "1520", VR => "DS", VM => "1-n", VERSION => "DICOM_2009"}, |
|
523
|
|
|
|
|
|
|
PositionerSecondaryAngleIncrement => { GRP => "0018", ELEM => "1521", VR => "DS", VM => "1-n", VERSION => "DICOM_2009"}, |
|
524
|
|
|
|
|
|
|
DetectorPrimaryAngle => { GRP => "0018", ELEM => "1530", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
525
|
|
|
|
|
|
|
DetectorSecondaryAngle => { GRP => "0018", ELEM => "1531", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
526
|
|
|
|
|
|
|
ShutterShape => { GRP => "0018", ELEM => "1600", VR => "CS", VM => "1-3", VERSION => "DICOM_2009"}, |
|
527
|
|
|
|
|
|
|
ShutterLeftVerticalEdge => { GRP => "0018", ELEM => "1602", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
528
|
|
|
|
|
|
|
ShutterRightVerticalEdge => { GRP => "0018", ELEM => "1604", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
529
|
|
|
|
|
|
|
ShutterUpperHorizontalEdge => { GRP => "0018", ELEM => "1606", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
530
|
|
|
|
|
|
|
ShutterLowerHorizontalEdge => { GRP => "0018", ELEM => "1608", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
531
|
|
|
|
|
|
|
CenterOfCircularShutter => { GRP => "0018", ELEM => "1610", VR => "IS", VM => "2", VERSION => "DICOM_2009"}, |
|
532
|
|
|
|
|
|
|
RadiusOfCircularShutter => { GRP => "0018", ELEM => "1612", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
533
|
|
|
|
|
|
|
VerticesOfThePolygonalShutter => { GRP => "0018", ELEM => "1620", VR => "IS", VM => "2-2n", VERSION => "DICOM_2009"}, |
|
534
|
|
|
|
|
|
|
ShutterPresentationValue => { GRP => "0018", ELEM => "1622", VR => "US", VM => "1", VERSION => "DICOM_2009"}, |
|
535
|
|
|
|
|
|
|
ShutterOverlayGroup => { GRP => "0018", ELEM => "1623", VR => "US", VM => "1", VERSION => "DICOM_2009"}, |
|
536
|
|
|
|
|
|
|
ShutterPresentationColorCIELabValue => { GRP => "0018", ELEM => "1624", VR => "US", VM => "3", VERSION => "DICOM_2009"}, |
|
537
|
|
|
|
|
|
|
CollimatorShape => { GRP => "0018", ELEM => "1700", VR => "CS", VM => "1-3", VERSION => "DICOM_2009"}, |
|
538
|
|
|
|
|
|
|
CollimatorLeftVerticalEdge => { GRP => "0018", ELEM => "1702", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
539
|
|
|
|
|
|
|
CollimatorRightVerticalEdge => { GRP => "0018", ELEM => "1704", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
540
|
|
|
|
|
|
|
CollimatorUpperHorizontalEdge => { GRP => "0018", ELEM => "1706", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
541
|
|
|
|
|
|
|
CollimatorLowerHorizontalEdge => { GRP => "0018", ELEM => "1708", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
542
|
|
|
|
|
|
|
CenterOfCircularCollimator => { GRP => "0018", ELEM => "1710", VR => "IS", VM => "2", VERSION => "DICOM_2009"}, |
|
543
|
|
|
|
|
|
|
RadiusOfCircularCollimator => { GRP => "0018", ELEM => "1712", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
544
|
|
|
|
|
|
|
VerticesOfThePolygonalCollimator => { GRP => "0018", ELEM => "1720", VR => "IS", VM => "2-2n", VERSION => "DICOM_2009"}, |
|
545
|
|
|
|
|
|
|
AcquisitionTimeSynchronized => { GRP => "0018", ELEM => "1800", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
546
|
|
|
|
|
|
|
TimeSource => { GRP => "0018", ELEM => "1801", VR => "SH", VM => "1", VERSION => "DICOM_2009"}, |
|
547
|
|
|
|
|
|
|
TimeDistributionProtocol => { GRP => "0018", ELEM => "1802", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
548
|
|
|
|
|
|
|
NTPSourceAddress => { GRP => "0018", ELEM => "1803", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
549
|
|
|
|
|
|
|
PageNumberVector => { GRP => "0018", ELEM => "2001", VR => "IS", VM => "1-n", VERSION => "DICOM_2009"}, |
|
550
|
|
|
|
|
|
|
FrameLabelVector => { GRP => "0018", ELEM => "2002", VR => "SH", VM => "1-n", VERSION => "DICOM_2009"}, |
|
551
|
|
|
|
|
|
|
FramePrimaryAngleVector => { GRP => "0018", ELEM => "2003", VR => "DS", VM => "1-n", VERSION => "DICOM_2009"}, |
|
552
|
|
|
|
|
|
|
FrameSecondaryAngleVector => { GRP => "0018", ELEM => "2004", VR => "DS", VM => "1-n", VERSION => "DICOM_2009"}, |
|
553
|
|
|
|
|
|
|
SliceLocationVector => { GRP => "0018", ELEM => "2005", VR => "DS", VM => "1-n", VERSION => "DICOM_2009"}, |
|
554
|
|
|
|
|
|
|
DisplayWindowLabelVector => { GRP => "0018", ELEM => "2006", VR => "SH", VM => "1-n", VERSION => "DICOM_2009"}, |
|
555
|
|
|
|
|
|
|
NominalScannedPixelSpacing => { GRP => "0018", ELEM => "2010", VR => "DS", VM => "2", VERSION => "DICOM_2009"}, |
|
556
|
|
|
|
|
|
|
DigitizingDeviceTransportDirection => { GRP => "0018", ELEM => "2020", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
557
|
|
|
|
|
|
|
RotationOfScannedFilm => { GRP => "0018", ELEM => "2030", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
558
|
|
|
|
|
|
|
IVUSAcquisition => { GRP => "0018", ELEM => "3100", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
559
|
|
|
|
|
|
|
IVUSPullbackRate => { GRP => "0018", ELEM => "3101", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
560
|
|
|
|
|
|
|
IVUSGatedRate => { GRP => "0018", ELEM => "3102", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
561
|
|
|
|
|
|
|
IVUSPullbackStartFrameNumber => { GRP => "0018", ELEM => "3103", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
562
|
|
|
|
|
|
|
IVUSPullbackStopFrameNumber => { GRP => "0018", ELEM => "3104", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
563
|
|
|
|
|
|
|
LesionNumber => { GRP => "0018", ELEM => "3105", VR => "IS", VM => "1-n", VERSION => "DICOM_2009"}, |
|
564
|
|
|
|
|
|
|
OutputPower => { GRP => "0018", ELEM => "5000", VR => "SH", VM => "1-n", VERSION => "DICOM_2009"}, |
|
565
|
|
|
|
|
|
|
TransducerData => { GRP => "0018", ELEM => "5010", VR => "LO", VM => "1-n", VERSION => "DICOM_2009"}, |
|
566
|
|
|
|
|
|
|
FocusDepth => { GRP => "0018", ELEM => "5012", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
567
|
|
|
|
|
|
|
ProcessingFunction => { GRP => "0018", ELEM => "5020", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
568
|
|
|
|
|
|
|
MechanicalIndex => { GRP => "0018", ELEM => "5022", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
569
|
|
|
|
|
|
|
BoneThermalIndex => { GRP => "0018", ELEM => "5024", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
570
|
|
|
|
|
|
|
CranialThermalIndex => { GRP => "0018", ELEM => "5026", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
571
|
|
|
|
|
|
|
SoftTissueThermalIndex => { GRP => "0018", ELEM => "5027", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
572
|
|
|
|
|
|
|
SoftTissueFocusThermalIndex => { GRP => "0018", ELEM => "5028", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
573
|
|
|
|
|
|
|
SoftTissueSurfaceThermalIndex => { GRP => "0018", ELEM => "5029", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
574
|
|
|
|
|
|
|
DepthOfScanField => { GRP => "0018", ELEM => "5050", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
575
|
|
|
|
|
|
|
PatientPosition => { GRP => "0018", ELEM => "5100", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
576
|
|
|
|
|
|
|
ViewPosition => { GRP => "0018", ELEM => "5101", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
577
|
|
|
|
|
|
|
ProjectionEponymousNameCodeSequence => { GRP => "0018", ELEM => "5104", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
578
|
|
|
|
|
|
|
Sensitivity => { GRP => "0018", ELEM => "6000", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
579
|
|
|
|
|
|
|
SequenceOfUltrasoundRegions => { GRP => "0018", ELEM => "6011", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
580
|
|
|
|
|
|
|
RegionSpatialFormat => { GRP => "0018", ELEM => "6012", VR => "US", VM => "1", VERSION => "DICOM_2009"}, |
|
581
|
|
|
|
|
|
|
RegionDataType => { GRP => "0018", ELEM => "6014", VR => "US", VM => "1", VERSION => "DICOM_2009"}, |
|
582
|
|
|
|
|
|
|
RegionFlags => { GRP => "0018", ELEM => "6016", VR => "UL", VM => "1", VERSION => "DICOM_2009"}, |
|
583
|
|
|
|
|
|
|
RegionLocationMinX0 => { GRP => "0018", ELEM => "6018", VR => "UL", VM => "1", VERSION => "DICOM_2009"}, |
|
584
|
|
|
|
|
|
|
RegionLocationMinY0 => { GRP => "0018", ELEM => "601A", VR => "UL", VM => "1", VERSION => "DICOM_2009"}, |
|
585
|
|
|
|
|
|
|
RegionLocationMaxX1 => { GRP => "0018", ELEM => "601C", VR => "UL", VM => "1", VERSION => "DICOM_2009"}, |
|
586
|
|
|
|
|
|
|
RegionLocationMaxY1 => { GRP => "0018", ELEM => "601E", VR => "UL", VM => "1", VERSION => "DICOM_2009"}, |
|
587
|
|
|
|
|
|
|
ReferencePixelX0 => { GRP => "0018", ELEM => "6020", VR => "SL", VM => "1", VERSION => "DICOM_2009"}, |
|
588
|
|
|
|
|
|
|
ReferencePixelY0 => { GRP => "0018", ELEM => "6022", VR => "SL", VM => "1", VERSION => "DICOM_2009"}, |
|
589
|
|
|
|
|
|
|
PhysicalUnitsXDirection => { GRP => "0018", ELEM => "6024", VR => "US", VM => "1", VERSION => "DICOM_2009"}, |
|
590
|
|
|
|
|
|
|
PhysicalUnitsYDirection => { GRP => "0018", ELEM => "6026", VR => "US", VM => "1", VERSION => "DICOM_2009"}, |
|
591
|
|
|
|
|
|
|
ReferencePixelPhysicalValueX => { GRP => "0018", ELEM => "6028", VR => "FD", VM => "1", VERSION => "DICOM_2009"}, |
|
592
|
|
|
|
|
|
|
ReferencePixelPhysicalValueY => { GRP => "0018", ELEM => "602A", VR => "FD", VM => "1", VERSION => "DICOM_2009"}, |
|
593
|
|
|
|
|
|
|
PhysicalDeltaX => { GRP => "0018", ELEM => "602C", VR => "FD", VM => "1", VERSION => "DICOM_2009"}, |
|
594
|
|
|
|
|
|
|
PhysicalDeltaY => { GRP => "0018", ELEM => "602E", VR => "FD", VM => "1", VERSION => "DICOM_2009"}, |
|
595
|
|
|
|
|
|
|
TransducerFrequency => { GRP => "0018", ELEM => "6030", VR => "UL", VM => "1", VERSION => "DICOM_2009"}, |
|
596
|
|
|
|
|
|
|
TransducerType => { GRP => "0018", ELEM => "6031", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
597
|
|
|
|
|
|
|
PulseRepetitionFrequency => { GRP => "0018", ELEM => "6032", VR => "UL", VM => "1", VERSION => "DICOM_2009"}, |
|
598
|
|
|
|
|
|
|
DopplerCorrectionAngle => { GRP => "0018", ELEM => "6034", VR => "FD", VM => "1", VERSION => "DICOM_2009"}, |
|
599
|
|
|
|
|
|
|
SteeringAngle => { GRP => "0018", ELEM => "6036", VR => "FD", VM => "1", VERSION => "DICOM_2009"}, |
|
600
|
|
|
|
|
|
|
DopplerSampleVolumeXPosition => { GRP => "0018", ELEM => "6039", VR => "SL", VM => "1", VERSION => "DICOM_2009"}, |
|
601
|
|
|
|
|
|
|
DopplerSampleVolumeYPosition => { GRP => "0018", ELEM => "603B", VR => "SL", VM => "1", VERSION => "DICOM_2009"}, |
|
602
|
|
|
|
|
|
|
TMLinePositionX0 => { GRP => "0018", ELEM => "603D", VR => "SL", VM => "1", VERSION => "DICOM_2009"}, |
|
603
|
|
|
|
|
|
|
TMLinePositionY0 => { GRP => "0018", ELEM => "603F", VR => "SL", VM => "1", VERSION => "DICOM_2009"}, |
|
604
|
|
|
|
|
|
|
TMLinePositionX1 => { GRP => "0018", ELEM => "6041", VR => "SL", VM => "1", VERSION => "DICOM_2009"}, |
|
605
|
|
|
|
|
|
|
TMLinePositionY1 => { GRP => "0018", ELEM => "6043", VR => "SL", VM => "1", VERSION => "DICOM_2009"}, |
|
606
|
|
|
|
|
|
|
PixelComponentOrganization => { GRP => "0018", ELEM => "6044", VR => "US", VM => "1", VERSION => "DICOM_2009"}, |
|
607
|
|
|
|
|
|
|
PixelComponentMask => { GRP => "0018", ELEM => "6046", VR => "UL", VM => "1", VERSION => "DICOM_2009"}, |
|
608
|
|
|
|
|
|
|
PixelComponentRangeStart => { GRP => "0018", ELEM => "6048", VR => "UL", VM => "1", VERSION => "DICOM_2009"}, |
|
609
|
|
|
|
|
|
|
PixelComponentRangeStop => { GRP => "0018", ELEM => "604A", VR => "UL", VM => "1", VERSION => "DICOM_2009"}, |
|
610
|
|
|
|
|
|
|
PixelComponentPhysicalUnits => { GRP => "0018", ELEM => "604C", VR => "US", VM => "1", VERSION => "DICOM_2009"}, |
|
611
|
|
|
|
|
|
|
PixelComponentDataType => { GRP => "0018", ELEM => "604E", VR => "US", VM => "1", VERSION => "DICOM_2009"}, |
|
612
|
|
|
|
|
|
|
NumberOfTableBreakPoints => { GRP => "0018", ELEM => "6050", VR => "UL", VM => "1", VERSION => "DICOM_2009"}, |
|
613
|
|
|
|
|
|
|
TableOfXBreakPoints => { GRP => "0018", ELEM => "6052", VR => "UL", VM => "1-n", VERSION => "DICOM_2009"}, |
|
614
|
|
|
|
|
|
|
TableOfYBreakPoints => { GRP => "0018", ELEM => "6054", VR => "FD", VM => "1-n", VERSION => "DICOM_2009"}, |
|
615
|
|
|
|
|
|
|
NumberOfTableEntries => { GRP => "0018", ELEM => "6056", VR => "UL", VM => "1", VERSION => "DICOM_2009"}, |
|
616
|
|
|
|
|
|
|
TableOfPixelValues => { GRP => "0018", ELEM => "6058", VR => "UL", VM => "1-n", VERSION => "DICOM_2009"}, |
|
617
|
|
|
|
|
|
|
TableOfParameterValues => { GRP => "0018", ELEM => "605A", VR => "FL", VM => "1-n", VERSION => "DICOM_2009"}, |
|
618
|
|
|
|
|
|
|
RWaveTimeVector => { GRP => "0018", ELEM => "6060", VR => "FL", VM => "1-n", VERSION => "DICOM_2009"}, |
|
619
|
|
|
|
|
|
|
DetectorConditionsNominalFlag => { GRP => "0018", ELEM => "7000", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
620
|
|
|
|
|
|
|
DetectorTemperature => { GRP => "0018", ELEM => "7001", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
621
|
|
|
|
|
|
|
DetectorType => { GRP => "0018", ELEM => "7004", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
622
|
|
|
|
|
|
|
DetectorConfiguration => { GRP => "0018", ELEM => "7005", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
623
|
|
|
|
|
|
|
DetectorDescription => { GRP => "0018", ELEM => "7006", VR => "LT", VM => "1", VERSION => "DICOM_2009"}, |
|
624
|
|
|
|
|
|
|
DetectorMode => { GRP => "0018", ELEM => "7008", VR => "LT", VM => "1", VERSION => "DICOM_2009"}, |
|
625
|
|
|
|
|
|
|
DetectorID => { GRP => "0018", ELEM => "700A", VR => "SH", VM => "1", VERSION => "DICOM_2009"}, |
|
626
|
|
|
|
|
|
|
DateOfLastDetectorCalibration => { GRP => "0018", ELEM => "700C", VR => "DA", VM => "1", VERSION => "DICOM_2009"}, |
|
627
|
|
|
|
|
|
|
TimeOfLastDetectorCalibration => { GRP => "0018", ELEM => "700E", VR => "TM", VM => "1", VERSION => "DICOM_2009"}, |
|
628
|
|
|
|
|
|
|
ExposuresOnDetectorSinceLastCalibration => { GRP => "0018", ELEM => "7010", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
629
|
|
|
|
|
|
|
ExposuresOnDetectorSinceManufactured => { GRP => "0018", ELEM => "7011", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
630
|
|
|
|
|
|
|
DetectorTimeSinceLastExposure => { GRP => "0018", ELEM => "7012", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
631
|
|
|
|
|
|
|
DetectorActiveTime => { GRP => "0018", ELEM => "7014", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
632
|
|
|
|
|
|
|
DetectorActivationOffsetFromExposure => { GRP => "0018", ELEM => "7016", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
633
|
|
|
|
|
|
|
DetectorBinning => { GRP => "0018", ELEM => "701A", VR => "DS", VM => "2", VERSION => "DICOM_2009"}, |
|
634
|
|
|
|
|
|
|
DetectorElementPhysicalSize => { GRP => "0018", ELEM => "7020", VR => "DS", VM => "2", VERSION => "DICOM_2009"}, |
|
635
|
|
|
|
|
|
|
DetectorElementSpacing => { GRP => "0018", ELEM => "7022", VR => "DS", VM => "2", VERSION => "DICOM_2009"}, |
|
636
|
|
|
|
|
|
|
DetectorActiveShape => { GRP => "0018", ELEM => "7024", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
637
|
|
|
|
|
|
|
DetectorActiveDimensions => { GRP => "0018", ELEM => "7026", VR => "DS", VM => "1-2", VERSION => "DICOM_2009"}, |
|
638
|
|
|
|
|
|
|
DetectorActiveOrigin => { GRP => "0018", ELEM => "7028", VR => "DS", VM => "2", VERSION => "DICOM_2009"}, |
|
639
|
|
|
|
|
|
|
DetectorManufacturerName => { GRP => "0018", ELEM => "702A", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
640
|
|
|
|
|
|
|
DetectorManufacturerModelName => { GRP => "0018", ELEM => "702B", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
641
|
|
|
|
|
|
|
FieldOfViewOrigin => { GRP => "0018", ELEM => "7030", VR => "DS", VM => "2", VERSION => "DICOM_2009"}, |
|
642
|
|
|
|
|
|
|
FieldOfViewRotation => { GRP => "0018", ELEM => "7032", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
643
|
|
|
|
|
|
|
FieldOfViewHorizontalFlip => { GRP => "0018", ELEM => "7034", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
644
|
|
|
|
|
|
|
GridAbsorbingMaterial => { GRP => "0018", ELEM => "7040", VR => "LT", VM => "1", VERSION => "DICOM_2009"}, |
|
645
|
|
|
|
|
|
|
GridSpacingMaterial => { GRP => "0018", ELEM => "7041", VR => "LT", VM => "1", VERSION => "DICOM_2009"}, |
|
646
|
|
|
|
|
|
|
GridThickness => { GRP => "0018", ELEM => "7042", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
647
|
|
|
|
|
|
|
GridPitch => { GRP => "0018", ELEM => "7044", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
648
|
|
|
|
|
|
|
GridAspectRatio => { GRP => "0018", ELEM => "7046", VR => "IS", VM => "2", VERSION => "DICOM_2009"}, |
|
649
|
|
|
|
|
|
|
GridPeriod => { GRP => "0018", ELEM => "7048", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
650
|
|
|
|
|
|
|
GridFocalDistance => { GRP => "0018", ELEM => "704C", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
651
|
|
|
|
|
|
|
FilterMaterial => { GRP => "0018", ELEM => "7050", VR => "CS", VM => "1-n", VERSION => "DICOM_2009"}, |
|
652
|
|
|
|
|
|
|
FilterThicknessMinimum => { GRP => "0018", ELEM => "7052", VR => "DS", VM => "1-n", VERSION => "DICOM_2009"}, |
|
653
|
|
|
|
|
|
|
FilterThicknessMaximum => { GRP => "0018", ELEM => "7054", VR => "DS", VM => "1-n", VERSION => "DICOM_2009"}, |
|
654
|
|
|
|
|
|
|
FilterBeamPathLengthMinimum => { GRP => "0018", ELEM => "7056", VR => "FL", VM => "1-n", VERSION => "DICOM_2009"}, |
|
655
|
|
|
|
|
|
|
FilterBeamPathLengthMaximum => { GRP => "0018", ELEM => "7058", VR => "FL", VM => "1-n", VERSION => "DICOM_2009"}, |
|
656
|
|
|
|
|
|
|
ExposureControlMode => { GRP => "0018", ELEM => "7060", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
657
|
|
|
|
|
|
|
ExposureControlModeDescription => { GRP => "0018", ELEM => "7062", VR => "LT", VM => "1", VERSION => "DICOM_2009"}, |
|
658
|
|
|
|
|
|
|
ExposureStatus => { GRP => "0018", ELEM => "7064", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
659
|
|
|
|
|
|
|
PhototimerSetting => { GRP => "0018", ELEM => "7065", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
660
|
|
|
|
|
|
|
ExposureTimeInuS => { GRP => "0018", ELEM => "8150", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
661
|
|
|
|
|
|
|
XRayTubeCurrentInuA => { GRP => "0018", ELEM => "8151", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
662
|
|
|
|
|
|
|
ContentQualification => { GRP => "0018", ELEM => "9004", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
663
|
|
|
|
|
|
|
PulseSequenceName => { GRP => "0018", ELEM => "9005", VR => "SH", VM => "1", VERSION => "DICOM_2009"}, |
|
664
|
|
|
|
|
|
|
MRImagingModifierSequence => { GRP => "0018", ELEM => "9006", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
665
|
|
|
|
|
|
|
EchoPulseSequence => { GRP => "0018", ELEM => "9008", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
666
|
|
|
|
|
|
|
InversionRecovery => { GRP => "0018", ELEM => "9009", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
667
|
|
|
|
|
|
|
FlowCompensation => { GRP => "0018", ELEM => "9010", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
668
|
|
|
|
|
|
|
MultipleSpinEcho => { GRP => "0018", ELEM => "9011", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
669
|
|
|
|
|
|
|
MultiPlanarExcitation => { GRP => "0018", ELEM => "9012", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
670
|
|
|
|
|
|
|
PhaseContrast => { GRP => "0018", ELEM => "9014", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
671
|
|
|
|
|
|
|
TimeOfFlightContrast => { GRP => "0018", ELEM => "9015", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
672
|
|
|
|
|
|
|
Spoiling => { GRP => "0018", ELEM => "9016", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
673
|
|
|
|
|
|
|
SteadyStatePulseSequence => { GRP => "0018", ELEM => "9017", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
674
|
|
|
|
|
|
|
EchoPlanarPulseSequence => { GRP => "0018", ELEM => "9018", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
675
|
|
|
|
|
|
|
TagAngleFirstAxis => { GRP => "0018", ELEM => "9019", VR => "FD", VM => "1", VERSION => "DICOM_2009"}, |
|
676
|
|
|
|
|
|
|
MagnetizationTransfer => { GRP => "0018", ELEM => "9020", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
677
|
|
|
|
|
|
|
T2Preparation => { GRP => "0018", ELEM => "9021", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
678
|
|
|
|
|
|
|
BloodSignalNulling => { GRP => "0018", ELEM => "9022", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
679
|
|
|
|
|
|
|
SaturationRecovery => { GRP => "0018", ELEM => "9024", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
680
|
|
|
|
|
|
|
SpectrallySelectedSuppression => { GRP => "0018", ELEM => "9025", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
681
|
|
|
|
|
|
|
SpectrallySelectedExcitation => { GRP => "0018", ELEM => "9026", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
682
|
|
|
|
|
|
|
SpatialPresaturation => { GRP => "0018", ELEM => "9027", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
683
|
|
|
|
|
|
|
Tagging => { GRP => "0018", ELEM => "9028", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
684
|
|
|
|
|
|
|
OversamplingPhase => { GRP => "0018", ELEM => "9029", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
685
|
|
|
|
|
|
|
TagSpacingFirstDimension => { GRP => "0018", ELEM => "9030", VR => "FD", VM => "1", VERSION => "DICOM_2009"}, |
|
686
|
|
|
|
|
|
|
GeometryOfKSpaceTraversal => { GRP => "0018", ELEM => "9032", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
687
|
|
|
|
|
|
|
SegmentedKSpaceTraversal => { GRP => "0018", ELEM => "9033", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
688
|
|
|
|
|
|
|
RectilinearPhaseEncodeReordering => { GRP => "0018", ELEM => "9034", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
689
|
|
|
|
|
|
|
TagThickness => { GRP => "0018", ELEM => "9035", VR => "FD", VM => "1", VERSION => "DICOM_2009"}, |
|
690
|
|
|
|
|
|
|
PartialFourierDirection => { GRP => "0018", ELEM => "9036", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
691
|
|
|
|
|
|
|
CardiacSynchronizationTechnique => { GRP => "0018", ELEM => "9037", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
692
|
|
|
|
|
|
|
ReceiveCoilManufacturerName => { GRP => "0018", ELEM => "9041", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
693
|
|
|
|
|
|
|
MRReceiveCoilSequence => { GRP => "0018", ELEM => "9042", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
694
|
|
|
|
|
|
|
ReceiveCoilType => { GRP => "0018", ELEM => "9043", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
695
|
|
|
|
|
|
|
QuadratureReceiveCoil => { GRP => "0018", ELEM => "9044", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
696
|
|
|
|
|
|
|
MultiCoilDefinitionSequence => { GRP => "0018", ELEM => "9045", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
697
|
|
|
|
|
|
|
MultiCoilConfiguration => { GRP => "0018", ELEM => "9046", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
698
|
|
|
|
|
|
|
MultiCoilElementName => { GRP => "0018", ELEM => "9047", VR => "SH", VM => "1", VERSION => "DICOM_2009"}, |
|
699
|
|
|
|
|
|
|
MultiCoilElementUsed => { GRP => "0018", ELEM => "9048", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
700
|
|
|
|
|
|
|
MRTransmitCoilSequence => { GRP => "0018", ELEM => "9049", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
701
|
|
|
|
|
|
|
TransmitCoilManufacturerName => { GRP => "0018", ELEM => "9050", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
702
|
|
|
|
|
|
|
TransmitCoilType => { GRP => "0018", ELEM => "9051", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
703
|
|
|
|
|
|
|
SpectralWidth => { GRP => "0018", ELEM => "9052", VR => "FD", VM => "1-2", VERSION => "DICOM_2009"}, |
|
704
|
|
|
|
|
|
|
ChemicalShiftReference => { GRP => "0018", ELEM => "9053", VR => "FD", VM => "1-2", VERSION => "DICOM_2009"}, |
|
705
|
|
|
|
|
|
|
VolumeLocalizationTechnique => { GRP => "0018", ELEM => "9054", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
706
|
|
|
|
|
|
|
MRAcquisitionFrequencyEncodingSteps => { GRP => "0018", ELEM => "9058", VR => "US", VM => "1", VERSION => "DICOM_2009"}, |
|
707
|
|
|
|
|
|
|
Decoupling => { GRP => "0018", ELEM => "9059", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
708
|
|
|
|
|
|
|
DecoupledNucleus => { GRP => "0018", ELEM => "9060", VR => "CS", VM => "1-2", VERSION => "DICOM_2009"}, |
|
709
|
|
|
|
|
|
|
DecouplingFrequency => { GRP => "0018", ELEM => "9061", VR => "FD", VM => "1-2", VERSION => "DICOM_2009"}, |
|
710
|
|
|
|
|
|
|
DecouplingMethod => { GRP => "0018", ELEM => "9062", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
711
|
|
|
|
|
|
|
DecouplingChemicalShiftReference => { GRP => "0018", ELEM => "9063", VR => "FD", VM => "1-2", VERSION => "DICOM_2009"}, |
|
712
|
|
|
|
|
|
|
KSpaceFiltering => { GRP => "0018", ELEM => "9064", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
713
|
|
|
|
|
|
|
TimeDomainFiltering => { GRP => "0018", ELEM => "9065", VR => "CS", VM => "1-2", VERSION => "DICOM_2009"}, |
|
714
|
|
|
|
|
|
|
NumberOfZeroFills => { GRP => "0018", ELEM => "9066", VR => "US", VM => "1-2", VERSION => "DICOM_2009"}, |
|
715
|
|
|
|
|
|
|
BaselineCorrection => { GRP => "0018", ELEM => "9067", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
716
|
|
|
|
|
|
|
ParallelReductionFactorInPlane => { GRP => "0018", ELEM => "9069", VR => "FD", VM => "1", VERSION => "DICOM_2009"}, |
|
717
|
|
|
|
|
|
|
CardiacRRIntervalSpecified => { GRP => "0018", ELEM => "9070", VR => "FD", VM => "1", VERSION => "DICOM_2009"}, |
|
718
|
|
|
|
|
|
|
AcquisitionDuration => { GRP => "0018", ELEM => "9073", VR => "FD", VM => "1", VERSION => "DICOM_2009"}, |
|
719
|
|
|
|
|
|
|
FrameAcquisitionDateTime => { GRP => "0018", ELEM => "9074", VR => "DT", VM => "1", VERSION => "DICOM_2009"}, |
|
720
|
|
|
|
|
|
|
DiffusionDirectionality => { GRP => "0018", ELEM => "9075", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
721
|
|
|
|
|
|
|
DiffusionGradientDirectionSequence => { GRP => "0018", ELEM => "9076", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
722
|
|
|
|
|
|
|
ParallelAcquisition => { GRP => "0018", ELEM => "9077", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
723
|
|
|
|
|
|
|
ParallelAcquisitionTechnique => { GRP => "0018", ELEM => "9078", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
724
|
|
|
|
|
|
|
InversionTimes => { GRP => "0018", ELEM => "9079", VR => "FD", VM => "1-n", VERSION => "DICOM_2009"}, |
|
725
|
|
|
|
|
|
|
MetaboliteMapDescription => { GRP => "0018", ELEM => "9080", VR => "ST", VM => "1", VERSION => "DICOM_2009"}, |
|
726
|
|
|
|
|
|
|
PartialFourier => { GRP => "0018", ELEM => "9081", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
727
|
|
|
|
|
|
|
EffectiveEchoTime => { GRP => "0018", ELEM => "9082", VR => "FD", VM => "1", VERSION => "DICOM_2009"}, |
|
728
|
|
|
|
|
|
|
MetaboliteMapCodeSequence => { GRP => "0018", ELEM => "9083", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
729
|
|
|
|
|
|
|
ChemicalShiftSequence => { GRP => "0018", ELEM => "9084", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
730
|
|
|
|
|
|
|
CardiacSignalSource => { GRP => "0018", ELEM => "9085", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
731
|
|
|
|
|
|
|
DiffusionBValue => { GRP => "0018", ELEM => "9087", VR => "FD", VM => "1", VERSION => "DICOM_2009"}, |
|
732
|
|
|
|
|
|
|
DiffusionGradientOrientation => { GRP => "0018", ELEM => "9089", VR => "FD", VM => "3", VERSION => "DICOM_2009"}, |
|
733
|
|
|
|
|
|
|
VelocityEncodingDirection => { GRP => "0018", ELEM => "9090", VR => "FD", VM => "3", VERSION => "DICOM_2009"}, |
|
734
|
|
|
|
|
|
|
VelocityEncodingMinimumValue => { GRP => "0018", ELEM => "9091", VR => "FD", VM => "1", VERSION => "DICOM_2009"}, |
|
735
|
|
|
|
|
|
|
NumberOfKSpaceTrajectories => { GRP => "0018", ELEM => "9093", VR => "US", VM => "1", VERSION => "DICOM_2009"}, |
|
736
|
|
|
|
|
|
|
CoverageOfKSpace => { GRP => "0018", ELEM => "9094", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
737
|
|
|
|
|
|
|
SpectroscopyAcquisitionPhaseRows => { GRP => "0018", ELEM => "9095", VR => "UL", VM => "1", VERSION => "DICOM_2009"}, |
|
738
|
|
|
|
|
|
|
TransmitterFrequency => { GRP => "0018", ELEM => "9098", VR => "FD", VM => "1-2", VERSION => "DICOM_2009"}, |
|
739
|
|
|
|
|
|
|
ResonantNucleus => { GRP => "0018", ELEM => "9100", VR => "CS", VM => "1-2", VERSION => "DICOM_2009"}, |
|
740
|
|
|
|
|
|
|
FrequencyCorrection => { GRP => "0018", ELEM => "9101", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
741
|
|
|
|
|
|
|
MRSpectroscopyFOVGeometrySequence => { GRP => "0018", ELEM => "9103", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
742
|
|
|
|
|
|
|
SlabThickness => { GRP => "0018", ELEM => "9104", VR => "FD", VM => "1", VERSION => "DICOM_2009"}, |
|
743
|
|
|
|
|
|
|
SlabOrientation => { GRP => "0018", ELEM => "9105", VR => "FD", VM => "3", VERSION => "DICOM_2009"}, |
|
744
|
|
|
|
|
|
|
MidSlabPosition => { GRP => "0018", ELEM => "9106", VR => "FD", VM => "3", VERSION => "DICOM_2009"}, |
|
745
|
|
|
|
|
|
|
MRSpatialSaturationSequence => { GRP => "0018", ELEM => "9107", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
746
|
|
|
|
|
|
|
MRTimingAndRelatedParametersSequence => { GRP => "0018", ELEM => "9112", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
747
|
|
|
|
|
|
|
MREchoSequence => { GRP => "0018", ELEM => "9114", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
748
|
|
|
|
|
|
|
MRModifierSequence => { GRP => "0018", ELEM => "9115", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
749
|
|
|
|
|
|
|
MRDiffusionSequence => { GRP => "0018", ELEM => "9117", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
750
|
|
|
|
|
|
|
CardiacSynchronizationSequence => { GRP => "0018", ELEM => "9118", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
751
|
|
|
|
|
|
|
MRAveragesSequence => { GRP => "0018", ELEM => "9119", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
752
|
|
|
|
|
|
|
MRFOVGeometrySequence => { GRP => "0018", ELEM => "9125", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
753
|
|
|
|
|
|
|
VolumeLocalizationSequence => { GRP => "0018", ELEM => "9126", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
754
|
|
|
|
|
|
|
SpectroscopyAcquisitionDataColumns => { GRP => "0018", ELEM => "9127", VR => "UL", VM => "1", VERSION => "DICOM_2009"}, |
|
755
|
|
|
|
|
|
|
DiffusionAnisotropyType => { GRP => "0018", ELEM => "9147", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
756
|
|
|
|
|
|
|
FrameReferenceDateTime => { GRP => "0018", ELEM => "9151", VR => "DT", VM => "1", VERSION => "DICOM_2009"}, |
|
757
|
|
|
|
|
|
|
MRMetaboliteMapSequence => { GRP => "0018", ELEM => "9152", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
758
|
|
|
|
|
|
|
ParallelReductionFactorOutOfPlane => { GRP => "0018", ELEM => "9155", VR => "FD", VM => "1", VERSION => "DICOM_2009"}, |
|
759
|
|
|
|
|
|
|
SpectroscopyAcquisitionOutOfPlanePhaseSteps => { GRP => "0018", ELEM => "9159", VR => "UL", VM => "1", VERSION => "DICOM_2009"}, |
|
760
|
|
|
|
|
|
|
ParallelReductionFactorSecondInPlane => { GRP => "0018", ELEM => "9168", VR => "FD", VM => "1", VERSION => "DICOM_2009"}, |
|
761
|
|
|
|
|
|
|
CardiacBeatRejectionTechnique => { GRP => "0018", ELEM => "9169", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
762
|
|
|
|
|
|
|
RespiratoryMotionCompensationTechnique => { GRP => "0018", ELEM => "9170", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
763
|
|
|
|
|
|
|
RespiratorySignalSource => { GRP => "0018", ELEM => "9171", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
764
|
|
|
|
|
|
|
BulkMotionCompensationTechnique => { GRP => "0018", ELEM => "9172", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
765
|
|
|
|
|
|
|
BulkMotionSignalSource => { GRP => "0018", ELEM => "9173", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
766
|
|
|
|
|
|
|
ApplicableSafetyStandardAgency => { GRP => "0018", ELEM => "9174", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
767
|
|
|
|
|
|
|
ApplicableSafetyStandardDescription => { GRP => "0018", ELEM => "9175", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
768
|
|
|
|
|
|
|
OperatingModeSequence => { GRP => "0018", ELEM => "9176", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
769
|
|
|
|
|
|
|
OperatingModeType => { GRP => "0018", ELEM => "9177", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
770
|
|
|
|
|
|
|
OperatingMode => { GRP => "0018", ELEM => "9178", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
771
|
|
|
|
|
|
|
SpecificAbsorptionRateDefinition => { GRP => "0018", ELEM => "9179", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
772
|
|
|
|
|
|
|
GradientOutputType => { GRP => "0018", ELEM => "9180", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
773
|
|
|
|
|
|
|
SpecificAbsorptionRateValue => { GRP => "0018", ELEM => "9181", VR => "FD", VM => "1", VERSION => "DICOM_2009"}, |
|
774
|
|
|
|
|
|
|
GradientOutput => { GRP => "0018", ELEM => "9182", VR => "FD", VM => "1", VERSION => "DICOM_2009"}, |
|
775
|
|
|
|
|
|
|
FlowCompensationDirection => { GRP => "0018", ELEM => "9183", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
776
|
|
|
|
|
|
|
TaggingDelay => { GRP => "0018", ELEM => "9184", VR => "FD", VM => "1", VERSION => "DICOM_2009"}, |
|
777
|
|
|
|
|
|
|
RespiratoryMotionCompensationTechniqueDescription => { GRP => "0018", ELEM => "9185", VR => "ST", VM => "1", VERSION => "DICOM_2009"}, |
|
778
|
|
|
|
|
|
|
RespiratorySignalSourceID => { GRP => "0018", ELEM => "9186", VR => "SH", VM => "1", VERSION => "DICOM_2009"}, |
|
779
|
|
|
|
|
|
|
MRVelocityEncodingSequence => { GRP => "0018", ELEM => "9197", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
780
|
|
|
|
|
|
|
FirstOrderPhaseCorrection => { GRP => "0018", ELEM => "9198", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
781
|
|
|
|
|
|
|
WaterReferencedPhaseCorrection => { GRP => "0018", ELEM => "9199", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
782
|
|
|
|
|
|
|
MRSpectroscopyAcquisitionType => { GRP => "0018", ELEM => "9200", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
783
|
|
|
|
|
|
|
RespiratoryCyclePosition => { GRP => "0018", ELEM => "9214", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
784
|
|
|
|
|
|
|
VelocityEncodingMaximumValue => { GRP => "0018", ELEM => "9217", VR => "FD", VM => "1", VERSION => "DICOM_2009"}, |
|
785
|
|
|
|
|
|
|
TagSpacingSecondDimension => { GRP => "0018", ELEM => "9218", VR => "FD", VM => "1", VERSION => "DICOM_2009"}, |
|
786
|
|
|
|
|
|
|
TagAngleSecondAxis => { GRP => "0018", ELEM => "9219", VR => "SS", VM => "1", VERSION => "DICOM_2009"}, |
|
787
|
|
|
|
|
|
|
FrameAcquisitionDuration => { GRP => "0018", ELEM => "9220", VR => "FD", VM => "1", VERSION => "DICOM_2009"}, |
|
788
|
|
|
|
|
|
|
MRImageFrameTypeSequence => { GRP => "0018", ELEM => "9226", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
789
|
|
|
|
|
|
|
MRSpectroscopyFrameTypeSequence => { GRP => "0018", ELEM => "9227", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
790
|
|
|
|
|
|
|
MRAcquisitionPhaseEncodingStepsInPlane => { GRP => "0018", ELEM => "9231", VR => "US", VM => "1", VERSION => "DICOM_2009"}, |
|
791
|
|
|
|
|
|
|
MRAcquisitionPhaseEncodingStepsOutOfPlane => { GRP => "0018", ELEM => "9232", VR => "US", VM => "1", VERSION => "DICOM_2009"}, |
|
792
|
|
|
|
|
|
|
SpectroscopyAcquisitionPhaseColumns => { GRP => "0018", ELEM => "9234", VR => "UL", VM => "1", VERSION => "DICOM_2009"}, |
|
793
|
|
|
|
|
|
|
CardiacCyclePosition => { GRP => "0018", ELEM => "9236", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
794
|
|
|
|
|
|
|
SpecificAbsorptionRateSequence => { GRP => "0018", ELEM => "9239", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
795
|
|
|
|
|
|
|
RFEchoTrainLength => { GRP => "0018", ELEM => "9240", VR => "US", VM => "1", VERSION => "DICOM_2009"}, |
|
796
|
|
|
|
|
|
|
GradientEchoTrainLength => { GRP => "0018", ELEM => "9241", VR => "US", VM => "1", VERSION => "DICOM_2009"}, |
|
797
|
|
|
|
|
|
|
ChemicalShiftMinimumIntegrationLimitInppm => { GRP => "0018", ELEM => "9295", VR => "FD", VM => "1", VERSION => "DICOM_2009"}, |
|
798
|
|
|
|
|
|
|
ChemicalShiftMaximumIntegrationLimitInppm => { GRP => "0018", ELEM => "9296", VR => "FD", VM => "1", VERSION => "DICOM_2009"}, |
|
799
|
|
|
|
|
|
|
CTAcquisitionTypeSequence => { GRP => "0018", ELEM => "9301", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
800
|
|
|
|
|
|
|
AcquisitionType => { GRP => "0018", ELEM => "9302", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
801
|
|
|
|
|
|
|
TubeAngle => { GRP => "0018", ELEM => "9303", VR => "FD", VM => "1", VERSION => "DICOM_2009"}, |
|
802
|
|
|
|
|
|
|
CTAcquisitionDetailsSequence => { GRP => "0018", ELEM => "9304", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
803
|
|
|
|
|
|
|
RevolutionTime => { GRP => "0018", ELEM => "9305", VR => "FD", VM => "1", VERSION => "DICOM_2009"}, |
|
804
|
|
|
|
|
|
|
SingleCollimationWidth => { GRP => "0018", ELEM => "9306", VR => "FD", VM => "1", VERSION => "DICOM_2009"}, |
|
805
|
|
|
|
|
|
|
TotalCollimationWidth => { GRP => "0018", ELEM => "9307", VR => "FD", VM => "1", VERSION => "DICOM_2009"}, |
|
806
|
|
|
|
|
|
|
CTTableDynamicsSequence => { GRP => "0018", ELEM => "9308", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
807
|
|
|
|
|
|
|
TableSpeed => { GRP => "0018", ELEM => "9309", VR => "FD", VM => "1", VERSION => "DICOM_2009"}, |
|
808
|
|
|
|
|
|
|
TableFeedPerRotation => { GRP => "0018", ELEM => "9310", VR => "FD", VM => "1", VERSION => "DICOM_2009"}, |
|
809
|
|
|
|
|
|
|
SpiralPitchFactor => { GRP => "0018", ELEM => "9311", VR => "FD", VM => "1", VERSION => "DICOM_2009"}, |
|
810
|
|
|
|
|
|
|
CTGeometrySequence => { GRP => "0018", ELEM => "9312", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
811
|
|
|
|
|
|
|
DataCollectionCenterPatient => { GRP => "0018", ELEM => "9313", VR => "FD", VM => "3", VERSION => "DICOM_2009"}, |
|
812
|
|
|
|
|
|
|
CTReconstructionSequence => { GRP => "0018", ELEM => "9314", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
813
|
|
|
|
|
|
|
ReconstructionAlgorithm => { GRP => "0018", ELEM => "9315", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
814
|
|
|
|
|
|
|
ConvolutionKernelGroup => { GRP => "0018", ELEM => "9316", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
815
|
|
|
|
|
|
|
ReconstructionFieldOfView => { GRP => "0018", ELEM => "9317", VR => "FD", VM => "2", VERSION => "DICOM_2009"}, |
|
816
|
|
|
|
|
|
|
ReconstructionTargetCenterPatient => { GRP => "0018", ELEM => "9318", VR => "FD", VM => "3", VERSION => "DICOM_2009"}, |
|
817
|
|
|
|
|
|
|
ReconstructionAngle => { GRP => "0018", ELEM => "9319", VR => "FD", VM => "1", VERSION => "DICOM_2009"}, |
|
818
|
|
|
|
|
|
|
ImageFilter => { GRP => "0018", ELEM => "9320", VR => "SH", VM => "1", VERSION => "DICOM_2009"}, |
|
819
|
|
|
|
|
|
|
CTExposureSequence => { GRP => "0018", ELEM => "9321", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
820
|
|
|
|
|
|
|
ReconstructionPixelSpacing => { GRP => "0018", ELEM => "9322", VR => "FD", VM => "2", VERSION => "DICOM_2009"}, |
|
821
|
|
|
|
|
|
|
ExposureModulationType => { GRP => "0018", ELEM => "9323", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
822
|
|
|
|
|
|
|
EstimatedDoseSaving => { GRP => "0018", ELEM => "9324", VR => "FD", VM => "1", VERSION => "DICOM_2009"}, |
|
823
|
|
|
|
|
|
|
CTXRayDetailsSequence => { GRP => "0018", ELEM => "9325", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
824
|
|
|
|
|
|
|
CTPositionSequence => { GRP => "0018", ELEM => "9326", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
825
|
|
|
|
|
|
|
TablePosition => { GRP => "0018", ELEM => "9327", VR => "FD", VM => "1", VERSION => "DICOM_2009"}, |
|
826
|
|
|
|
|
|
|
ExposureTimeInms => { GRP => "0018", ELEM => "9328", VR => "FD", VM => "1", VERSION => "DICOM_2009"}, |
|
827
|
|
|
|
|
|
|
CTImageFrameTypeSequence => { GRP => "0018", ELEM => "9329", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
828
|
|
|
|
|
|
|
XRayTubeCurrentInmA => { GRP => "0018", ELEM => "9330", VR => "FD", VM => "1", VERSION => "DICOM_2009"}, |
|
829
|
|
|
|
|
|
|
ExposureInmAs => { GRP => "0018", ELEM => "9332", VR => "FD", VM => "1", VERSION => "DICOM_2009"}, |
|
830
|
|
|
|
|
|
|
ConstantVolumeFlag => { GRP => "0018", ELEM => "9333", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
831
|
|
|
|
|
|
|
FluoroscopyFlag => { GRP => "0018", ELEM => "9334", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
832
|
|
|
|
|
|
|
DistanceSourceToDataCollectionCenter => { GRP => "0018", ELEM => "9335", VR => "FD", VM => "1", VERSION => "DICOM_2009"}, |
|
833
|
|
|
|
|
|
|
ContrastBolusAgentNumber => { GRP => "0018", ELEM => "9337", VR => "US", VM => "1", VERSION => "DICOM_2009"}, |
|
834
|
|
|
|
|
|
|
ContrastBolusIngredientCodeSequence => { GRP => "0018", ELEM => "9338", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
835
|
|
|
|
|
|
|
ContrastAdministrationProfileSequence => { GRP => "0018", ELEM => "9340", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
836
|
|
|
|
|
|
|
ContrastBolusUsageSequence => { GRP => "0018", ELEM => "9341", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
837
|
|
|
|
|
|
|
ContrastBolusAgentAdministered => { GRP => "0018", ELEM => "9342", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
838
|
|
|
|
|
|
|
ContrastBolusAgentDetected => { GRP => "0018", ELEM => "9343", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
839
|
|
|
|
|
|
|
ContrastBolusAgentPhase => { GRP => "0018", ELEM => "9344", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
840
|
|
|
|
|
|
|
CTDIvol => { GRP => "0018", ELEM => "9345", VR => "FD", VM => "1", VERSION => "DICOM_2009"}, |
|
841
|
|
|
|
|
|
|
CTDIPhantomTypeCodeSequence => { GRP => "0018", ELEM => "9346", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
842
|
|
|
|
|
|
|
CalciumScoringMassFactorPatient => { GRP => "0018", ELEM => "9351", VR => "FL", VM => "1", VERSION => "DICOM_2009"}, |
|
843
|
|
|
|
|
|
|
CalciumScoringMassFactorDevice => { GRP => "0018", ELEM => "9352", VR => "FL", VM => "3", VERSION => "DICOM_2009"}, |
|
844
|
|
|
|
|
|
|
EnergyWeightingFactor => { GRP => "0018", ELEM => "9353", VR => "FL", VM => "1", VERSION => "DICOM_2009"}, |
|
845
|
|
|
|
|
|
|
CTAdditionalXRaySourceSequence => { GRP => "0018", ELEM => "9360", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
846
|
|
|
|
|
|
|
ProjectionPixelCalibrationSequence => { GRP => "0018", ELEM => "9401", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
847
|
|
|
|
|
|
|
DistanceSourceToIsocenter => { GRP => "0018", ELEM => "9402", VR => "FL", VM => "1", VERSION => "DICOM_2009"}, |
|
848
|
|
|
|
|
|
|
DistanceObjectToTableTop => { GRP => "0018", ELEM => "9403", VR => "FL", VM => "1", VERSION => "DICOM_2009"}, |
|
849
|
|
|
|
|
|
|
ObjectPixelSpacingInCenterOfBeam => { GRP => "0018", ELEM => "9404", VR => "FL", VM => "2", VERSION => "DICOM_2009"}, |
|
850
|
|
|
|
|
|
|
PositionerPositionSequence => { GRP => "0018", ELEM => "9405", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
851
|
|
|
|
|
|
|
TablePositionSequence => { GRP => "0018", ELEM => "9406", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
852
|
|
|
|
|
|
|
CollimatorShapeSequence => { GRP => "0018", ELEM => "9407", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
853
|
|
|
|
|
|
|
XAXRFFrameCharacteristicsSequence => { GRP => "0018", ELEM => "9412", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
854
|
|
|
|
|
|
|
FrameAcquisitionSequence => { GRP => "0018", ELEM => "9417", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
855
|
|
|
|
|
|
|
XRayReceptorType => { GRP => "0018", ELEM => "9420", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
856
|
|
|
|
|
|
|
AcquisitionProtocolName => { GRP => "0018", ELEM => "9423", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
857
|
|
|
|
|
|
|
AcquisitionProtocolDescription => { GRP => "0018", ELEM => "9424", VR => "LT", VM => "1", VERSION => "DICOM_2009"}, |
|
858
|
|
|
|
|
|
|
ContrastBolusIngredientOpaque => { GRP => "0018", ELEM => "9425", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
859
|
|
|
|
|
|
|
DistanceReceptorPlaneToDetectorHousing => { GRP => "0018", ELEM => "9426", VR => "FL", VM => "1", VERSION => "DICOM_2009"}, |
|
860
|
|
|
|
|
|
|
IntensifierActiveShape => { GRP => "0018", ELEM => "9427", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
861
|
|
|
|
|
|
|
IntensifierActiveDimensions => { GRP => "0018", ELEM => "9428", VR => "FL", VM => "1-2", VERSION => "DICOM_2009"}, |
|
862
|
|
|
|
|
|
|
PhysicalDetectorSize => { GRP => "0018", ELEM => "9429", VR => "FL", VM => "2", VERSION => "DICOM_2009"}, |
|
863
|
|
|
|
|
|
|
PositionOfIsocenterProjection => { GRP => "0018", ELEM => "9430", VR => "US", VM => "2", VERSION => "DICOM_2009"}, |
|
864
|
|
|
|
|
|
|
FieldOfViewSequence => { GRP => "0018", ELEM => "9432", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
865
|
|
|
|
|
|
|
FieldOfViewDescription => { GRP => "0018", ELEM => "9433", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
866
|
|
|
|
|
|
|
ExposureControlSensingRegionsSequence => { GRP => "0018", ELEM => "9434", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
867
|
|
|
|
|
|
|
ExposureControlSensingRegionShape => { GRP => "0018", ELEM => "9435", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
868
|
|
|
|
|
|
|
ExposureControlSensingRegionLeftVerticalEdge => { GRP => "0018", ELEM => "9436", VR => "SS", VM => "1", VERSION => "DICOM_2009"}, |
|
869
|
|
|
|
|
|
|
ExposureControlSensingRegionRightVerticalEdge => { GRP => "0018", ELEM => "9437", VR => "SS", VM => "1", VERSION => "DICOM_2009"}, |
|
870
|
|
|
|
|
|
|
ExposureControlSensingRegionUpperHorizontalEdge => { GRP => "0018", ELEM => "9438", VR => "SS", VM => "1", VERSION => "DICOM_2009"}, |
|
871
|
|
|
|
|
|
|
ExposureControlSensingRegionLowerHorizontalEdge => { GRP => "0018", ELEM => "9439", VR => "SS", VM => "1", VERSION => "DICOM_2009"}, |
|
872
|
|
|
|
|
|
|
CenterOfCircularExposureControlSensingRegion => { GRP => "0018", ELEM => "9440", VR => "SS", VM => "2", VERSION => "DICOM_2009"}, |
|
873
|
|
|
|
|
|
|
RadiusOfCircularExposureControlSensingRegion => { GRP => "0018", ELEM => "9441", VR => "US", VM => "1", VERSION => "DICOM_2009"}, |
|
874
|
|
|
|
|
|
|
VerticesOfThePolygonalExposureControlSensingRegion => { GRP => "0018", ELEM => "9442", VR => "SS", VM => "2-n", VERSION => "DICOM_2009"}, |
|
875
|
|
|
|
|
|
|
ColumnAngulationPatient => { GRP => "0018", ELEM => "9447", VR => "FL", VM => "1", VERSION => "DICOM_2009"}, |
|
876
|
|
|
|
|
|
|
BeamAngle => { GRP => "0018", ELEM => "9449", VR => "FL", VM => "1", VERSION => "DICOM_2009"}, |
|
877
|
|
|
|
|
|
|
FrameDetectorParametersSequence => { GRP => "0018", ELEM => "9451", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
878
|
|
|
|
|
|
|
CalculatedAnatomyThickness => { GRP => "0018", ELEM => "9452", VR => "FL", VM => "1", VERSION => "DICOM_2009"}, |
|
879
|
|
|
|
|
|
|
CalibrationSequence => { GRP => "0018", ELEM => "9455", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
880
|
|
|
|
|
|
|
ObjectThicknessSequence => { GRP => "0018", ELEM => "9456", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
881
|
|
|
|
|
|
|
PlaneIdentification => { GRP => "0018", ELEM => "9457", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
882
|
|
|
|
|
|
|
FieldOfViewDimensionsInFloat => { GRP => "0018", ELEM => "9461", VR => "FL", VM => "1-2", VERSION => "DICOM_2009"}, |
|
883
|
|
|
|
|
|
|
IsocenterReferenceSystemSequence => { GRP => "0018", ELEM => "9462", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
884
|
|
|
|
|
|
|
PositionerIsocenterPrimaryAngle => { GRP => "0018", ELEM => "9463", VR => "FL", VM => "1", VERSION => "DICOM_2009"}, |
|
885
|
|
|
|
|
|
|
PositionerIsocenterSecondaryAngle => { GRP => "0018", ELEM => "9464", VR => "FL", VM => "1", VERSION => "DICOM_2009"}, |
|
886
|
|
|
|
|
|
|
PositionerIsocenterDetectorRotationAngle => { GRP => "0018", ELEM => "9465", VR => "FL", VM => "1", VERSION => "DICOM_2009"}, |
|
887
|
|
|
|
|
|
|
TableXPositionToIsocenter => { GRP => "0018", ELEM => "9466", VR => "FL", VM => "1", VERSION => "DICOM_2009"}, |
|
888
|
|
|
|
|
|
|
TableYPositionToIsocenter => { GRP => "0018", ELEM => "9467", VR => "FL", VM => "1", VERSION => "DICOM_2009"}, |
|
889
|
|
|
|
|
|
|
TableZPositionToIsocenter => { GRP => "0018", ELEM => "9468", VR => "FL", VM => "1", VERSION => "DICOM_2009"}, |
|
890
|
|
|
|
|
|
|
TableHorizontalRotationAngle => { GRP => "0018", ELEM => "9469", VR => "FL", VM => "1", VERSION => "DICOM_2009"}, |
|
891
|
|
|
|
|
|
|
TableHeadTiltAngle => { GRP => "0018", ELEM => "9470", VR => "FL", VM => "1", VERSION => "DICOM_2009"}, |
|
892
|
|
|
|
|
|
|
TableCradleTiltAngle => { GRP => "0018", ELEM => "9471", VR => "FL", VM => "1", VERSION => "DICOM_2009"}, |
|
893
|
|
|
|
|
|
|
FrameDisplayShutterSequence => { GRP => "0018", ELEM => "9472", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
894
|
|
|
|
|
|
|
AcquiredImageAreaDoseProduct => { GRP => "0018", ELEM => "9473", VR => "FL", VM => "1", VERSION => "DICOM_2009"}, |
|
895
|
|
|
|
|
|
|
CArmPositionerTabletopRelationship => { GRP => "0018", ELEM => "9474", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
896
|
|
|
|
|
|
|
XRayGeometrySequence => { GRP => "0018", ELEM => "9476", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
897
|
|
|
|
|
|
|
IrradiationEventIdentificationSequence => { GRP => "0018", ELEM => "9477", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
898
|
|
|
|
|
|
|
XRay3DFrameTypeSequence => { GRP => "0018", ELEM => "9504", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
899
|
|
|
|
|
|
|
ContributingSourcesSequence => { GRP => "0018", ELEM => "9506", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
900
|
|
|
|
|
|
|
XRay3DAcquisitionSequence => { GRP => "0018", ELEM => "9507", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
901
|
|
|
|
|
|
|
PrimaryPositionerScanArc => { GRP => "0018", ELEM => "9508", VR => "FL", VM => "1", VERSION => "DICOM_2009"}, |
|
902
|
|
|
|
|
|
|
SecondaryPositionerScanArc => { GRP => "0018", ELEM => "9509", VR => "FL", VM => "1", VERSION => "DICOM_2009"}, |
|
903
|
|
|
|
|
|
|
PrimaryPositionerScanStartAngle => { GRP => "0018", ELEM => "9510", VR => "FL", VM => "1", VERSION => "DICOM_2009"}, |
|
904
|
|
|
|
|
|
|
SecondaryPositionerScanStartAngle => { GRP => "0018", ELEM => "9511", VR => "FL", VM => "1", VERSION => "DICOM_2009"}, |
|
905
|
|
|
|
|
|
|
PrimaryPositionerIncrement => { GRP => "0018", ELEM => "9514", VR => "FL", VM => "1", VERSION => "DICOM_2009"}, |
|
906
|
|
|
|
|
|
|
SecondaryPositionerIncrement => { GRP => "0018", ELEM => "9515", VR => "FL", VM => "1", VERSION => "DICOM_2009"}, |
|
907
|
|
|
|
|
|
|
StartAcquisitionDateTime => { GRP => "0018", ELEM => "9516", VR => "DT", VM => "1", VERSION => "DICOM_2009"}, |
|
908
|
|
|
|
|
|
|
EndAcquisitionDateTime => { GRP => "0018", ELEM => "9517", VR => "DT", VM => "1", VERSION => "DICOM_2009"}, |
|
909
|
|
|
|
|
|
|
ApplicationName => { GRP => "0018", ELEM => "9524", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
910
|
|
|
|
|
|
|
ApplicationVersion => { GRP => "0018", ELEM => "9525", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
911
|
|
|
|
|
|
|
ApplicationManufacturer => { GRP => "0018", ELEM => "9526", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
912
|
|
|
|
|
|
|
AlgorithmType => { GRP => "0018", ELEM => "9527", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
913
|
|
|
|
|
|
|
AlgorithmDescription => { GRP => "0018", ELEM => "9528", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
914
|
|
|
|
|
|
|
XRay3DReconstructionSequence => { GRP => "0018", ELEM => "9530", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
915
|
|
|
|
|
|
|
ReconstructionDescription => { GRP => "0018", ELEM => "9531", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
916
|
|
|
|
|
|
|
PerProjectionAcquisitionSequence => { GRP => "0018", ELEM => "9538", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
917
|
|
|
|
|
|
|
DiffusionBMatrixSequence => { GRP => "0018", ELEM => "9601", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
918
|
|
|
|
|
|
|
DiffusionBValueXX => { GRP => "0018", ELEM => "9602", VR => "FD", VM => "1", VERSION => "DICOM_2009"}, |
|
919
|
|
|
|
|
|
|
DiffusionBValueXY => { GRP => "0018", ELEM => "9603", VR => "FD", VM => "1", VERSION => "DICOM_2009"}, |
|
920
|
|
|
|
|
|
|
DiffusionBValueXZ => { GRP => "0018", ELEM => "9604", VR => "FD", VM => "1", VERSION => "DICOM_2009"}, |
|
921
|
|
|
|
|
|
|
DiffusionBValueYY => { GRP => "0018", ELEM => "9605", VR => "FD", VM => "1", VERSION => "DICOM_2009"}, |
|
922
|
|
|
|
|
|
|
DiffusionBValueYZ => { GRP => "0018", ELEM => "9606", VR => "FD", VM => "1", VERSION => "DICOM_2009"}, |
|
923
|
|
|
|
|
|
|
DiffusionBValueZZ => { GRP => "0018", ELEM => "9607", VR => "FD", VM => "1", VERSION => "DICOM_2009"}, |
|
924
|
|
|
|
|
|
|
DecayCorrectionDateTime => { GRP => "0018", ELEM => "9701", VR => "DT", VM => "1", VERSION => "DICOM_2009"}, |
|
925
|
|
|
|
|
|
|
StartDensityThreshold => { GRP => "0018", ELEM => "9715", VR => "FD", VM => "1", VERSION => "DICOM_2009"}, |
|
926
|
|
|
|
|
|
|
StartRelativeDensityDifferenceThreshold => { GRP => "0018", ELEM => "9716", VR => "FD", VM => "1", VERSION => "DICOM_2009"}, |
|
927
|
|
|
|
|
|
|
StartCardiacTriggerCountThreshold => { GRP => "0018", ELEM => "9717", VR => "FD", VM => "1", VERSION => "DICOM_2009"}, |
|
928
|
|
|
|
|
|
|
StartRespiratoryTriggerCountThreshold => { GRP => "0018", ELEM => "9718", VR => "FD", VM => "1", VERSION => "DICOM_2009"}, |
|
929
|
|
|
|
|
|
|
TerminationCountsThreshold => { GRP => "0018", ELEM => "9719", VR => "FD", VM => "1", VERSION => "DICOM_2009"}, |
|
930
|
|
|
|
|
|
|
TerminationDensityThreshold => { GRP => "0018", ELEM => "9720", VR => "FD", VM => "1", VERSION => "DICOM_2009"}, |
|
931
|
|
|
|
|
|
|
TerminationRelativeDensityThreshold => { GRP => "0018", ELEM => "9721", VR => "FD", VM => "1", VERSION => "DICOM_2009"}, |
|
932
|
|
|
|
|
|
|
TerminationTimeThreshold => { GRP => "0018", ELEM => "9722", VR => "FD", VM => "1", VERSION => "DICOM_2009"}, |
|
933
|
|
|
|
|
|
|
TerminationCardiacTriggerCountThreshold => { GRP => "0018", ELEM => "9723", VR => "FD", VM => "1", VERSION => "DICOM_2009"}, |
|
934
|
|
|
|
|
|
|
TerminationRespiratoryTriggerCountThreshold => { GRP => "0018", ELEM => "9724", VR => "FD", VM => "1", VERSION => "DICOM_2009"}, |
|
935
|
|
|
|
|
|
|
DetectorGeometry => { GRP => "0018", ELEM => "9725", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
936
|
|
|
|
|
|
|
TransverseDetectorSeparation => { GRP => "0018", ELEM => "9726", VR => "FD", VM => "1", VERSION => "DICOM_2009"}, |
|
937
|
|
|
|
|
|
|
AxialDetectorDimension => { GRP => "0018", ELEM => "9727", VR => "FD", VM => "1", VERSION => "DICOM_2009"}, |
|
938
|
|
|
|
|
|
|
RadiopharmaceuticalAgentNumber => { GRP => "0018", ELEM => "9729", VR => "US", VM => "1", VERSION => "DICOM_2009"}, |
|
939
|
|
|
|
|
|
|
PETFrameAcquisitionSequence => { GRP => "0018", ELEM => "9732", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
940
|
|
|
|
|
|
|
PETDetectorMotionDetailsSequence => { GRP => "0018", ELEM => "9733", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
941
|
|
|
|
|
|
|
PETTableDynamicsSequence => { GRP => "0018", ELEM => "9734", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
942
|
|
|
|
|
|
|
PETPositionSequence => { GRP => "0018", ELEM => "9735", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
943
|
|
|
|
|
|
|
PETFrameCorrectionFactorsSequence => { GRP => "0018", ELEM => "9736", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
944
|
|
|
|
|
|
|
RadiopharmaceuticalUsageSequence => { GRP => "0018", ELEM => "9737", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
945
|
|
|
|
|
|
|
AttenuationCorrectionSource => { GRP => "0018", ELEM => "9738", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
946
|
|
|
|
|
|
|
NumberOfIterations => { GRP => "0018", ELEM => "9739", VR => "US", VM => "1", VERSION => "DICOM_2009"}, |
|
947
|
|
|
|
|
|
|
NumberOfSubsets => { GRP => "0018", ELEM => "9740", VR => "US", VM => "1", VERSION => "DICOM_2009"}, |
|
948
|
|
|
|
|
|
|
PETReconstructionSequence => { GRP => "0018", ELEM => "9749", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
949
|
|
|
|
|
|
|
PETFrameTypeSequence => { GRP => "0018", ELEM => "9751", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
950
|
|
|
|
|
|
|
TimeOfFlightInformationUsed => { GRP => "0018", ELEM => "9755", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
951
|
|
|
|
|
|
|
ReconstructionType => { GRP => "0018", ELEM => "9756", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
952
|
|
|
|
|
|
|
DecayCorrected => { GRP => "0018", ELEM => "9758", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
953
|
|
|
|
|
|
|
AttenuationCorrected => { GRP => "0018", ELEM => "9759", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
954
|
|
|
|
|
|
|
ScatterCorrected => { GRP => "0018", ELEM => "9760", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
955
|
|
|
|
|
|
|
DeadTimeCorrected => { GRP => "0018", ELEM => "9761", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
956
|
|
|
|
|
|
|
GantryMotionCorrected => { GRP => "0018", ELEM => "9762", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
957
|
|
|
|
|
|
|
PatientMotionCorrected => { GRP => "0018", ELEM => "9763", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
958
|
|
|
|
|
|
|
CountLossNormalizationCorrected => { GRP => "0018", ELEM => "9764", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
959
|
|
|
|
|
|
|
RandomsCorrected => { GRP => "0018", ELEM => "9765", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
960
|
|
|
|
|
|
|
NonUniformRadialSamplingCorrected => { GRP => "0018", ELEM => "9766", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
961
|
|
|
|
|
|
|
SensitivityCalibrated => { GRP => "0018", ELEM => "9767", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
962
|
|
|
|
|
|
|
DetectorNormalizationCorrection => { GRP => "0018", ELEM => "9768", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
963
|
|
|
|
|
|
|
IterativeReconstructionMethod => { GRP => "0018", ELEM => "9769", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
964
|
|
|
|
|
|
|
AttenuationCorrectionTemporalRelationship => { GRP => "0018", ELEM => "9770", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
965
|
|
|
|
|
|
|
PatientPhysiologicalStateSequence => { GRP => "0018", ELEM => "9771", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
966
|
|
|
|
|
|
|
PatientPhysiologicalStateCodeSequence => { GRP => "0018", ELEM => "9772", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
967
|
|
|
|
|
|
|
DepthsOfFocus => { GRP => "0018", ELEM => "9801", VR => "FD", VM => "1-n", VERSION => "DICOM_2009"}, |
|
968
|
|
|
|
|
|
|
ExcludedIntervalsSequence => { GRP => "0018", ELEM => "9803", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
969
|
|
|
|
|
|
|
ExclusionStartDatetime => { GRP => "0018", ELEM => "9804", VR => "DT", VM => "1", VERSION => "DICOM_2009"}, |
|
970
|
|
|
|
|
|
|
ExclusionDuration => { GRP => "0018", ELEM => "9805", VR => "FD", VM => "1", VERSION => "DICOM_2009"}, |
|
971
|
|
|
|
|
|
|
USImageDescriptionSequence => { GRP => "0018", ELEM => "9806", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
972
|
|
|
|
|
|
|
ImageDataTypeSequence => { GRP => "0018", ELEM => "9807", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
973
|
|
|
|
|
|
|
DataType => { GRP => "0018", ELEM => "9808", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
974
|
|
|
|
|
|
|
TransducerScanPatternCodeSequence => { GRP => "0018", ELEM => "9809", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
975
|
|
|
|
|
|
|
AliasedDataType => { GRP => "0018", ELEM => "980B", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
976
|
|
|
|
|
|
|
PositionMeasuringDeviceUsed => { GRP => "0018", ELEM => "980C", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
977
|
|
|
|
|
|
|
TransducerGeometryCodeSequence => { GRP => "0018", ELEM => "980D", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
978
|
|
|
|
|
|
|
TransducerBeamSteeringCodeSequence => { GRP => "0018", ELEM => "980E", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
979
|
|
|
|
|
|
|
TransducerApplicationCodeSequence => { GRP => "0018", ELEM => "980F", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
980
|
|
|
|
|
|
|
ContributingEquipmentSequence => { GRP => "0018", ELEM => "A001", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
981
|
|
|
|
|
|
|
ContributionDateTime => { GRP => "0018", ELEM => "A002", VR => "DT", VM => "1", VERSION => "DICOM_2009"}, |
|
982
|
|
|
|
|
|
|
ContributionDescription => { GRP => "0018", ELEM => "A003", VR => "ST", VM => "1", VERSION => "DICOM_2009"}, |
|
983
|
|
|
|
|
|
|
StudyInstanceUID => { GRP => "0020", ELEM => "000D", VR => "UI", VM => "1", VERSION => "DICOM_2009"}, |
|
984
|
|
|
|
|
|
|
SeriesInstanceUID => { GRP => "0020", ELEM => "000E", VR => "UI", VM => "1", VERSION => "DICOM_2009"}, |
|
985
|
|
|
|
|
|
|
StudyID => { GRP => "0020", ELEM => "0010", VR => "SH", VM => "1", VERSION => "DICOM_2009"}, |
|
986
|
|
|
|
|
|
|
SeriesNumber => { GRP => "0020", ELEM => "0011", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
987
|
|
|
|
|
|
|
AcquisitionNumber => { GRP => "0020", ELEM => "0012", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
988
|
|
|
|
|
|
|
InstanceNumber => { GRP => "0020", ELEM => "0013", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
989
|
|
|
|
|
|
|
ItemNumber => { GRP => "0020", ELEM => "0019", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
990
|
|
|
|
|
|
|
PatientOrientation => { GRP => "0020", ELEM => "0020", VR => "CS", VM => "2", VERSION => "DICOM_2009"}, |
|
991
|
|
|
|
|
|
|
ImagePositionPatient => { GRP => "0020", ELEM => "0032", VR => "DS", VM => "3", VERSION => "DICOM_2009"}, |
|
992
|
|
|
|
|
|
|
ImageOrientationPatient => { GRP => "0020", ELEM => "0037", VR => "DS", VM => "6", VERSION => "DICOM_2009"}, |
|
993
|
|
|
|
|
|
|
FrameOfReferenceUID => { GRP => "0020", ELEM => "0052", VR => "UI", VM => "1", VERSION => "DICOM_2009"}, |
|
994
|
|
|
|
|
|
|
Laterality => { GRP => "0020", ELEM => "0060", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
995
|
|
|
|
|
|
|
ImageLaterality => { GRP => "0020", ELEM => "0062", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
996
|
|
|
|
|
|
|
TemporalPositionIdentifier => { GRP => "0020", ELEM => "0100", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
997
|
|
|
|
|
|
|
NumberOfTemporalPositions => { GRP => "0020", ELEM => "0105", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
998
|
|
|
|
|
|
|
TemporalResolution => { GRP => "0020", ELEM => "0110", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
999
|
|
|
|
|
|
|
SynchronizationFrameOfReferenceUID => { GRP => "0020", ELEM => "0200", VR => "UI", VM => "1", VERSION => "DICOM_2009"}, |
|
1000
|
|
|
|
|
|
|
SOPInstanceUIDOfConcatenationSource => { GRP => "0020", ELEM => "0242", VR => "UI", VM => "1", VERSION => "DICOM_2009"}, |
|
1001
|
|
|
|
|
|
|
ImagesInAcquisition => { GRP => "0020", ELEM => "1002", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
1002
|
|
|
|
|
|
|
PositionReferenceIndicator => { GRP => "0020", ELEM => "1040", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
1003
|
|
|
|
|
|
|
SliceLocation => { GRP => "0020", ELEM => "1041", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
1004
|
|
|
|
|
|
|
NumberOfPatientRelatedStudies => { GRP => "0020", ELEM => "1200", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
1005
|
|
|
|
|
|
|
NumberOfPatientRelatedSeries => { GRP => "0020", ELEM => "1202", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
1006
|
|
|
|
|
|
|
NumberOfPatientRelatedInstances => { GRP => "0020", ELEM => "1204", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
1007
|
|
|
|
|
|
|
NumberOfStudyRelatedSeries => { GRP => "0020", ELEM => "1206", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
1008
|
|
|
|
|
|
|
NumberOfStudyRelatedInstances => { GRP => "0020", ELEM => "1208", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
1009
|
|
|
|
|
|
|
NumberOfSeriesRelatedInstances => { GRP => "0020", ELEM => "1209", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
1010
|
|
|
|
|
|
|
ImageComments => { GRP => "0020", ELEM => "4000", VR => "LT", VM => "1", VERSION => "DICOM_2009"}, |
|
1011
|
|
|
|
|
|
|
StackID => { GRP => "0020", ELEM => "9056", VR => "SH", VM => "1", VERSION => "DICOM_2009"}, |
|
1012
|
|
|
|
|
|
|
InStackPositionNumber => { GRP => "0020", ELEM => "9057", VR => "UL", VM => "1", VERSION => "DICOM_2009"}, |
|
1013
|
|
|
|
|
|
|
FrameAnatomySequence => { GRP => "0020", ELEM => "9071", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1014
|
|
|
|
|
|
|
FrameLaterality => { GRP => "0020", ELEM => "9072", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1015
|
|
|
|
|
|
|
FrameContentSequence => { GRP => "0020", ELEM => "9111", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1016
|
|
|
|
|
|
|
PlanePositionSequence => { GRP => "0020", ELEM => "9113", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1017
|
|
|
|
|
|
|
PlaneOrientationSequence => { GRP => "0020", ELEM => "9116", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1018
|
|
|
|
|
|
|
TemporalPositionIndex => { GRP => "0020", ELEM => "9128", VR => "UL", VM => "1", VERSION => "DICOM_2009"}, |
|
1019
|
|
|
|
|
|
|
NominalCardiacTriggerDelayTime => { GRP => "0020", ELEM => "9153", VR => "FD", VM => "1", VERSION => "DICOM_2009"}, |
|
1020
|
|
|
|
|
|
|
FrameAcquisitionNumber => { GRP => "0020", ELEM => "9156", VR => "US", VM => "1", VERSION => "DICOM_2009"}, |
|
1021
|
|
|
|
|
|
|
DimensionIndexValues => { GRP => "0020", ELEM => "9157", VR => "UL", VM => "1-n", VERSION => "DICOM_2009"}, |
|
1022
|
|
|
|
|
|
|
FrameComments => { GRP => "0020", ELEM => "9158", VR => "LT", VM => "1", VERSION => "DICOM_2009"}, |
|
1023
|
|
|
|
|
|
|
ConcatenationUID => { GRP => "0020", ELEM => "9161", VR => "UI", VM => "1", VERSION => "DICOM_2009"}, |
|
1024
|
|
|
|
|
|
|
InConcatenationNumber => { GRP => "0020", ELEM => "9162", VR => "US", VM => "1", VERSION => "DICOM_2009"}, |
|
1025
|
|
|
|
|
|
|
InConcatenationTotalNumber => { GRP => "0020", ELEM => "9163", VR => "US", VM => "1", VERSION => "DICOM_2009"}, |
|
1026
|
|
|
|
|
|
|
DimensionOrganizationUID => { GRP => "0020", ELEM => "9164", VR => "UI", VM => "1", VERSION => "DICOM_2009"}, |
|
1027
|
|
|
|
|
|
|
DimensionIndexPointer => { GRP => "0020", ELEM => "9165", VR => "AT", VM => "1", VERSION => "DICOM_2009"}, |
|
1028
|
|
|
|
|
|
|
FunctionalGroupPointer => { GRP => "0020", ELEM => "9167", VR => "AT", VM => "1", VERSION => "DICOM_2009"}, |
|
1029
|
|
|
|
|
|
|
DimensionIndexPrivateCreator => { GRP => "0020", ELEM => "9213", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
1030
|
|
|
|
|
|
|
DimensionOrganizationSequence => { GRP => "0020", ELEM => "9221", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1031
|
|
|
|
|
|
|
DimensionIndexSequence => { GRP => "0020", ELEM => "9222", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1032
|
|
|
|
|
|
|
ConcatenationFrameOffsetNumber => { GRP => "0020", ELEM => "9228", VR => "UL", VM => "1", VERSION => "DICOM_2009"}, |
|
1033
|
|
|
|
|
|
|
FunctionalGroupPrivateCreator => { GRP => "0020", ELEM => "9238", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
1034
|
|
|
|
|
|
|
NominalPercentageOfCardiacPhase => { GRP => "0020", ELEM => "9241", VR => "FL", VM => "1", VERSION => "DICOM_2009"}, |
|
1035
|
|
|
|
|
|
|
NominalPercentageOfRespiratoryPhase => { GRP => "0020", ELEM => "9245", VR => "FL", VM => "1", VERSION => "DICOM_2009"}, |
|
1036
|
|
|
|
|
|
|
StartingRespiratoryAmplitude => { GRP => "0020", ELEM => "9246", VR => "FL", VM => "1", VERSION => "DICOM_2009"}, |
|
1037
|
|
|
|
|
|
|
StartingRespiratoryPhase => { GRP => "0020", ELEM => "9247", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1038
|
|
|
|
|
|
|
EndingRespiratoryAmplitude => { GRP => "0020", ELEM => "9248", VR => "FL", VM => "1", VERSION => "DICOM_2009"}, |
|
1039
|
|
|
|
|
|
|
EndingRespiratoryPhase => { GRP => "0020", ELEM => "9249", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1040
|
|
|
|
|
|
|
RespiratoryTriggerType => { GRP => "0020", ELEM => "9250", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1041
|
|
|
|
|
|
|
RRIntervalTimeNominal => { GRP => "0020", ELEM => "9251", VR => "FD", VM => "1", VERSION => "DICOM_2009"}, |
|
1042
|
|
|
|
|
|
|
ActualCardiacTriggerDelayTime => { GRP => "0020", ELEM => "9252", VR => "FD", VM => "1", VERSION => "DICOM_2009"}, |
|
1043
|
|
|
|
|
|
|
RespiratorySynchronizationSequence => { GRP => "0020", ELEM => "9253", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1044
|
|
|
|
|
|
|
RespiratoryIntervalTime => { GRP => "0020", ELEM => "9254", VR => "FD", VM => "1", VERSION => "DICOM_2009"}, |
|
1045
|
|
|
|
|
|
|
NominalRespiratoryTriggerDelayTime => { GRP => "0020", ELEM => "9255", VR => "FD", VM => "1", VERSION => "DICOM_2009"}, |
|
1046
|
|
|
|
|
|
|
RespiratoryTriggerDelayThreshold => { GRP => "0020", ELEM => "9256", VR => "FD", VM => "1", VERSION => "DICOM_2009"}, |
|
1047
|
|
|
|
|
|
|
ActualRespiratoryTriggerDelayTime => { GRP => "0020", ELEM => "9257", VR => "FD", VM => "1", VERSION => "DICOM_2009"}, |
|
1048
|
|
|
|
|
|
|
ImagePositionVolume => { GRP => "0020", ELEM => "9301", VR => "FD", VM => "3", VERSION => "DICOM_2009"}, |
|
1049
|
|
|
|
|
|
|
ImageOrientationVolume => { GRP => "0020", ELEM => "9302", VR => "FD", VM => "6", VERSION => "DICOM_2009"}, |
|
1050
|
|
|
|
|
|
|
UltrasoundAcquisitionGeometry => { GRP => "0020", ELEM => "9307", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1051
|
|
|
|
|
|
|
ApexPosition => { GRP => "0020", ELEM => "9308", VR => "FD", VM => "3", VERSION => "DICOM_2009"}, |
|
1052
|
|
|
|
|
|
|
VolumeToTransducerMappingMatrix => { GRP => "0020", ELEM => "9309", VR => "FD", VM => "16", VERSION => "DICOM_2009"}, |
|
1053
|
|
|
|
|
|
|
VolumeToTableMappingMatrix => { GRP => "0020", ELEM => "930A", VR => "FD", VM => "16", VERSION => "DICOM_2009"}, |
|
1054
|
|
|
|
|
|
|
PatientFrameOfReferenceSource => { GRP => "0020", ELEM => "930C", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1055
|
|
|
|
|
|
|
TemporalPositionTimeOffset => { GRP => "0020", ELEM => "930D", VR => "FD", VM => "1", VERSION => "DICOM_2009"}, |
|
1056
|
|
|
|
|
|
|
PlanePositionVolumeSequence => { GRP => "0020", ELEM => "930E", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1057
|
|
|
|
|
|
|
PlaneOrientationVolumeSequence => { GRP => "0020", ELEM => "930F", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1058
|
|
|
|
|
|
|
TemporalPositionSequence => { GRP => "0020", ELEM => "9310", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1059
|
|
|
|
|
|
|
DimensionOrganizationType => { GRP => "0020", ELEM => "9311", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1060
|
|
|
|
|
|
|
VolumeFrameOfReferenceUID => { GRP => "0020", ELEM => "9312", VR => "UI", VM => "1", VERSION => "DICOM_2009"}, |
|
1061
|
|
|
|
|
|
|
TableFrameOfReferenceUID => { GRP => "0020", ELEM => "9313", VR => "UI", VM => "1", VERSION => "DICOM_2009"}, |
|
1062
|
|
|
|
|
|
|
DimensionDescriptionLabel => { GRP => "0020", ELEM => "9421", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
1063
|
|
|
|
|
|
|
PatientOrientationInFrameSequence => { GRP => "0020", ELEM => "9450", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1064
|
|
|
|
|
|
|
FrameLabel => { GRP => "0020", ELEM => "9453", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
1065
|
|
|
|
|
|
|
AcquisitionIndex => { GRP => "0020", ELEM => "9518", VR => "US", VM => "1-n", VERSION => "DICOM_2009"}, |
|
1066
|
|
|
|
|
|
|
ContributingSOPInstancesReferenceSequence => { GRP => "0020", ELEM => "9529", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1067
|
|
|
|
|
|
|
ReconstructionIndex => { GRP => "0020", ELEM => "9536", VR => "US", VM => "1", VERSION => "DICOM_2009"}, |
|
1068
|
|
|
|
|
|
|
LightPathFilterPassThroughWavelength => { GRP => "0022", ELEM => "0001", VR => "US", VM => "1", VERSION => "DICOM_2009"}, |
|
1069
|
|
|
|
|
|
|
LightPathFilterPassBand => { GRP => "0022", ELEM => "0002", VR => "US", VM => "2", VERSION => "DICOM_2009"}, |
|
1070
|
|
|
|
|
|
|
ImagePathFilterPassThroughWavelength => { GRP => "0022", ELEM => "0003", VR => "US", VM => "1", VERSION => "DICOM_2009"}, |
|
1071
|
|
|
|
|
|
|
ImagePathFilterPassBand => { GRP => "0022", ELEM => "0004", VR => "US", VM => "2", VERSION => "DICOM_2009"}, |
|
1072
|
|
|
|
|
|
|
PatientEyeMovementCommanded => { GRP => "0022", ELEM => "0005", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1073
|
|
|
|
|
|
|
PatientEyeMovementCommandCodeSequence => { GRP => "0022", ELEM => "0006", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1074
|
|
|
|
|
|
|
SphericalLensPower => { GRP => "0022", ELEM => "0007", VR => "FL", VM => "1", VERSION => "DICOM_2009"}, |
|
1075
|
|
|
|
|
|
|
CylinderLensPower => { GRP => "0022", ELEM => "0008", VR => "FL", VM => "1", VERSION => "DICOM_2009"}, |
|
1076
|
|
|
|
|
|
|
CylinderAxis => { GRP => "0022", ELEM => "0009", VR => "FL", VM => "1", VERSION => "DICOM_2009"}, |
|
1077
|
|
|
|
|
|
|
EmmetropicMagnification => { GRP => "0022", ELEM => "000A", VR => "FL", VM => "1", VERSION => "DICOM_2009"}, |
|
1078
|
|
|
|
|
|
|
IntraOcularPressure => { GRP => "0022", ELEM => "000B", VR => "FL", VM => "1", VERSION => "DICOM_2009"}, |
|
1079
|
|
|
|
|
|
|
HorizontalFieldOfView => { GRP => "0022", ELEM => "000C", VR => "FL", VM => "1", VERSION => "DICOM_2009"}, |
|
1080
|
|
|
|
|
|
|
PupilDilated => { GRP => "0022", ELEM => "000D", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1081
|
|
|
|
|
|
|
DegreeOfDilation => { GRP => "0022", ELEM => "000E", VR => "FL", VM => "1", VERSION => "DICOM_2009"}, |
|
1082
|
|
|
|
|
|
|
StereoBaselineAngle => { GRP => "0022", ELEM => "0010", VR => "FL", VM => "1", VERSION => "DICOM_2009"}, |
|
1083
|
|
|
|
|
|
|
StereoBaselineDisplacement => { GRP => "0022", ELEM => "0011", VR => "FL", VM => "1", VERSION => "DICOM_2009"}, |
|
1084
|
|
|
|
|
|
|
StereoHorizontalPixelOffset => { GRP => "0022", ELEM => "0012", VR => "FL", VM => "1", VERSION => "DICOM_2009"}, |
|
1085
|
|
|
|
|
|
|
StereoVerticalPixelOffset => { GRP => "0022", ELEM => "0013", VR => "FL", VM => "1", VERSION => "DICOM_2009"}, |
|
1086
|
|
|
|
|
|
|
StereoRotation => { GRP => "0022", ELEM => "0014", VR => "FL", VM => "1", VERSION => "DICOM_2009"}, |
|
1087
|
|
|
|
|
|
|
AcquisitionDeviceTypeCodeSequence => { GRP => "0022", ELEM => "0015", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1088
|
|
|
|
|
|
|
IlluminationTypeCodeSequence => { GRP => "0022", ELEM => "0016", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1089
|
|
|
|
|
|
|
LightPathFilterTypeStackCodeSequence => { GRP => "0022", ELEM => "0017", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1090
|
|
|
|
|
|
|
ImagePathFilterTypeStackCodeSequence => { GRP => "0022", ELEM => "0018", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1091
|
|
|
|
|
|
|
LensesCodeSequence => { GRP => "0022", ELEM => "0019", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1092
|
|
|
|
|
|
|
ChannelDescriptionCodeSequence => { GRP => "0022", ELEM => "001A", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1093
|
|
|
|
|
|
|
RefractiveStateSequence => { GRP => "0022", ELEM => "001B", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1094
|
|
|
|
|
|
|
MydriaticAgentCodeSequence => { GRP => "0022", ELEM => "001C", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1095
|
|
|
|
|
|
|
RelativeImagePositionCodeSequence => { GRP => "0022", ELEM => "001D", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1096
|
|
|
|
|
|
|
StereoPairsSequence => { GRP => "0022", ELEM => "0020", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1097
|
|
|
|
|
|
|
LeftImageSequence => { GRP => "0022", ELEM => "0021", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1098
|
|
|
|
|
|
|
RightImageSequence => { GRP => "0022", ELEM => "0022", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1099
|
|
|
|
|
|
|
AxialLengthOfTheEye => { GRP => "0022", ELEM => "0030", VR => "FL", VM => "1", VERSION => "DICOM_2009"}, |
|
1100
|
|
|
|
|
|
|
OphthalmicFrameLocationSequence => { GRP => "0022", ELEM => "0031", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1101
|
|
|
|
|
|
|
ReferenceCoordinates => { GRP => "0022", ELEM => "0032", VR => "FL", VM => "2-2n", VERSION => "DICOM_2009"}, |
|
1102
|
|
|
|
|
|
|
DepthSpatialResolution => { GRP => "0022", ELEM => "0035", VR => "FL", VM => "1", VERSION => "DICOM_2009"}, |
|
1103
|
|
|
|
|
|
|
MaximumDepthDistortion => { GRP => "0022", ELEM => "0036", VR => "FL", VM => "1", VERSION => "DICOM_2009"}, |
|
1104
|
|
|
|
|
|
|
AlongScanSpatialResolution => { GRP => "0022", ELEM => "0037", VR => "FL", VM => "1", VERSION => "DICOM_2009"}, |
|
1105
|
|
|
|
|
|
|
MaximumAlongScanDistortion => { GRP => "0022", ELEM => "0038", VR => "FL", VM => "1", VERSION => "DICOM_2009"}, |
|
1106
|
|
|
|
|
|
|
OphthalmicImageOrientation => { GRP => "0022", ELEM => "0039", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1107
|
|
|
|
|
|
|
DepthOfTransverseImage => { GRP => "0022", ELEM => "0041", VR => "FL", VM => "1", VERSION => "DICOM_2009"}, |
|
1108
|
|
|
|
|
|
|
MydriaticAgentConcentrationUnitsSequence => { GRP => "0022", ELEM => "0042", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1109
|
|
|
|
|
|
|
AcrossScanSpatialResolution => { GRP => "0022", ELEM => "0048", VR => "FL", VM => "1", VERSION => "DICOM_2009"}, |
|
1110
|
|
|
|
|
|
|
MaximumAcrossScanDistortion => { GRP => "0022", ELEM => "0049", VR => "FL", VM => "1", VERSION => "DICOM_2009"}, |
|
1111
|
|
|
|
|
|
|
MydriaticAgentConcentration => { GRP => "0022", ELEM => "004E", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
1112
|
|
|
|
|
|
|
IlluminationWaveLength => { GRP => "0022", ELEM => "0055", VR => "FL", VM => "1", VERSION => "DICOM_2009"}, |
|
1113
|
|
|
|
|
|
|
IlluminationPower => { GRP => "0022", ELEM => "0056", VR => "FL", VM => "1", VERSION => "DICOM_2009"}, |
|
1114
|
|
|
|
|
|
|
IlluminationBandwidth => { GRP => "0022", ELEM => "0057", VR => "FL", VM => "1", VERSION => "DICOM_2009"}, |
|
1115
|
|
|
|
|
|
|
MydriaticAgentSequence => { GRP => "0022", ELEM => "0058", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1116
|
|
|
|
|
|
|
SamplesPerPixel => { GRP => "0028", ELEM => "0002", VR => "US", VM => "1", VERSION => "DICOM_2009"}, |
|
1117
|
|
|
|
|
|
|
SamplesPerPixelUsed => { GRP => "0028", ELEM => "0003", VR => "US", VM => "1", VERSION => "DICOM_2009"}, |
|
1118
|
|
|
|
|
|
|
PhotometricInterpretation => { GRP => "0028", ELEM => "0004", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1119
|
|
|
|
|
|
|
PlanarConfiguration => { GRP => "0028", ELEM => "0006", VR => "US", VM => "1", VERSION => "DICOM_2009"}, |
|
1120
|
|
|
|
|
|
|
NumberOfFrames => { GRP => "0028", ELEM => "0008", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
1121
|
|
|
|
|
|
|
FrameIncrementPointer => { GRP => "0028", ELEM => "0009", VR => "AT", VM => "1-n", VERSION => "DICOM_2009"}, |
|
1122
|
|
|
|
|
|
|
FrameDimensionPointer => { GRP => "0028", ELEM => "000A", VR => "AT", VM => "1-n", VERSION => "DICOM_2009"}, |
|
1123
|
|
|
|
|
|
|
Rows => { GRP => "0028", ELEM => "0010", VR => "US", VM => "1", VERSION => "DICOM_2009"}, |
|
1124
|
|
|
|
|
|
|
Columns => { GRP => "0028", ELEM => "0011", VR => "US", VM => "1", VERSION => "DICOM_2009"}, |
|
1125
|
|
|
|
|
|
|
UltrasoundColorDataPresent => { GRP => "0028", ELEM => "0014", VR => "US", VM => "1", VERSION => "DICOM_2009"}, |
|
1126
|
|
|
|
|
|
|
PixelSpacing => { GRP => "0028", ELEM => "0030", VR => "DS", VM => "2", VERSION => "DICOM_2009"}, |
|
1127
|
|
|
|
|
|
|
ZoomFactor => { GRP => "0028", ELEM => "0031", VR => "DS", VM => "2", VERSION => "DICOM_2009"}, |
|
1128
|
|
|
|
|
|
|
ZoomCenter => { GRP => "0028", ELEM => "0032", VR => "DS", VM => "2", VERSION => "DICOM_2009"}, |
|
1129
|
|
|
|
|
|
|
PixelAspectRatio => { GRP => "0028", ELEM => "0034", VR => "IS", VM => "2", VERSION => "DICOM_2009"}, |
|
1130
|
|
|
|
|
|
|
CorrectedImage => { GRP => "0028", ELEM => "0051", VR => "CS", VM => "1-n", VERSION => "DICOM_2009"}, |
|
1131
|
|
|
|
|
|
|
BitsAllocated => { GRP => "0028", ELEM => "0100", VR => "US", VM => "1", VERSION => "DICOM_2009"}, |
|
1132
|
|
|
|
|
|
|
BitsStored => { GRP => "0028", ELEM => "0101", VR => "US", VM => "1", VERSION => "DICOM_2009"}, |
|
1133
|
|
|
|
|
|
|
HighBit => { GRP => "0028", ELEM => "0102", VR => "US", VM => "1", VERSION => "DICOM_2009"}, |
|
1134
|
|
|
|
|
|
|
PixelRepresentation => { GRP => "0028", ELEM => "0103", VR => "US", VM => "1", VERSION => "DICOM_2009"}, |
|
1135
|
|
|
|
|
|
|
SmallestImagePixelValue => { GRP => "0028", ELEM => "0106", VR => "xs", VM => "1", VERSION => "DICOM_2009"}, |
|
1136
|
|
|
|
|
|
|
LargestImagePixelValue => { GRP => "0028", ELEM => "0107", VR => "xs", VM => "1", VERSION => "DICOM_2009"}, |
|
1137
|
|
|
|
|
|
|
SmallestPixelValueInSeries => { GRP => "0028", ELEM => "0108", VR => "xs", VM => "1", VERSION => "DICOM_2009"}, |
|
1138
|
|
|
|
|
|
|
LargestPixelValueInSeries => { GRP => "0028", ELEM => "0109", VR => "xs", VM => "1", VERSION => "DICOM_2009"}, |
|
1139
|
|
|
|
|
|
|
PixelPaddingValue => { GRP => "0028", ELEM => "0120", VR => "xs", VM => "1", VERSION => "DICOM_2009"}, |
|
1140
|
|
|
|
|
|
|
PixelPaddingRangeLimit => { GRP => "0028", ELEM => "0121", VR => "xs", VM => "1", VERSION => "DICOM_2009"}, |
|
1141
|
|
|
|
|
|
|
QualityControlImage => { GRP => "0028", ELEM => "0300", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1142
|
|
|
|
|
|
|
BurnedInAnnotation => { GRP => "0028", ELEM => "0301", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1143
|
|
|
|
|
|
|
PixelSpacingCalibrationType => { GRP => "0028", ELEM => "0A02", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1144
|
|
|
|
|
|
|
PixelSpacingCalibrationDescription => { GRP => "0028", ELEM => "0A04", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
1145
|
|
|
|
|
|
|
PixelIntensityRelationship => { GRP => "0028", ELEM => "1040", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1146
|
|
|
|
|
|
|
PixelIntensityRelationshipSign => { GRP => "0028", ELEM => "1041", VR => "SS", VM => "1", VERSION => "DICOM_2009"}, |
|
1147
|
|
|
|
|
|
|
WindowCenter => { GRP => "0028", ELEM => "1050", VR => "DS", VM => "1-n", VERSION => "DICOM_2009"}, |
|
1148
|
|
|
|
|
|
|
WindowWidth => { GRP => "0028", ELEM => "1051", VR => "DS", VM => "1-n", VERSION => "DICOM_2009"}, |
|
1149
|
|
|
|
|
|
|
RescaleIntercept => { GRP => "0028", ELEM => "1052", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
1150
|
|
|
|
|
|
|
RescaleSlope => { GRP => "0028", ELEM => "1053", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
1151
|
|
|
|
|
|
|
RescaleType => { GRP => "0028", ELEM => "1054", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
1152
|
|
|
|
|
|
|
WindowCenterWidthExplanation => { GRP => "0028", ELEM => "1055", VR => "LO", VM => "1-n", VERSION => "DICOM_2009"}, |
|
1153
|
|
|
|
|
|
|
VOILUTFunction => { GRP => "0028", ELEM => "1056", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1154
|
|
|
|
|
|
|
RecommendedViewingMode => { GRP => "0028", ELEM => "1090", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1155
|
|
|
|
|
|
|
RedPaletteColorLookupTableDescriptor => { GRP => "0028", ELEM => "1101", VR => "xs", VM => "3", VERSION => "DICOM_2009"}, |
|
1156
|
|
|
|
|
|
|
GreenPaletteColorLookupTableDescriptor => { GRP => "0028", ELEM => "1102", VR => "xs", VM => "3", VERSION => "DICOM_2009"}, |
|
1157
|
|
|
|
|
|
|
BluePaletteColorLookupTableDescriptor => { GRP => "0028", ELEM => "1103", VR => "xs", VM => "3", VERSION => "DICOM_2009"}, |
|
1158
|
|
|
|
|
|
|
AlphaPaletteColorLookupTableDescriptor => { GRP => "0028", ELEM => "1104", VR => "US", VM => "3", VERSION => "DICOM_2009"}, |
|
1159
|
|
|
|
|
|
|
PaletteColorLookupTableUID => { GRP => "0028", ELEM => "1199", VR => "UI", VM => "1", VERSION => "DICOM_2009"}, |
|
1160
|
|
|
|
|
|
|
RedPaletteColorLookupTableData => { GRP => "0028", ELEM => "1201", VR => "OW", VM => "1", VERSION => "DICOM_2009"}, |
|
1161
|
|
|
|
|
|
|
GreenPaletteColorLookupTableData => { GRP => "0028", ELEM => "1202", VR => "OW", VM => "1", VERSION => "DICOM_2009"}, |
|
1162
|
|
|
|
|
|
|
BluePaletteColorLookupTableData => { GRP => "0028", ELEM => "1203", VR => "OW", VM => "1", VERSION => "DICOM_2009"}, |
|
1163
|
|
|
|
|
|
|
AlphaPaletteColorLookupTableData => { GRP => "0028", ELEM => "1204", VR => "OW", VM => "1", VERSION => "DICOM_2009"}, |
|
1164
|
|
|
|
|
|
|
SegmentedRedPaletteColorLookupTableData => { GRP => "0028", ELEM => "1221", VR => "OW", VM => "1", VERSION => "DICOM_2009"}, |
|
1165
|
|
|
|
|
|
|
SegmentedGreenPaletteColorLookupTableData => { GRP => "0028", ELEM => "1222", VR => "OW", VM => "1", VERSION => "DICOM_2009"}, |
|
1166
|
|
|
|
|
|
|
SegmentedBluePaletteColorLookupTableData => { GRP => "0028", ELEM => "1223", VR => "OW", VM => "1", VERSION => "DICOM_2009"}, |
|
1167
|
|
|
|
|
|
|
BreastImplantPresent => { GRP => "0028", ELEM => "1300", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1168
|
|
|
|
|
|
|
PartialView => { GRP => "0028", ELEM => "1350", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1169
|
|
|
|
|
|
|
PartialViewDescription => { GRP => "0028", ELEM => "1351", VR => "ST", VM => "1", VERSION => "DICOM_2009"}, |
|
1170
|
|
|
|
|
|
|
PartialViewCodeSequence => { GRP => "0028", ELEM => "1352", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1171
|
|
|
|
|
|
|
SpatialLocationsPreserved => { GRP => "0028", ELEM => "135A", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1172
|
|
|
|
|
|
|
DataFrameAssignmentSequence => { GRP => "0028", ELEM => "1401", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1173
|
|
|
|
|
|
|
DataPathAssignment => { GRP => "0028", ELEM => "1402", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1174
|
|
|
|
|
|
|
BitsMappedToColorLookupTable => { GRP => "0028", ELEM => "1403", VR => "US", VM => "1", VERSION => "DICOM_2009"}, |
|
1175
|
|
|
|
|
|
|
BlendingLUT1Sequence => { GRP => "0028", ELEM => "1404", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1176
|
|
|
|
|
|
|
BlendingLUT1TransferFunction => { GRP => "0028", ELEM => "1405", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1177
|
|
|
|
|
|
|
BlendingWeightConstant => { GRP => "0028", ELEM => "1406", VR => "FD", VM => "1", VERSION => "DICOM_2009"}, |
|
1178
|
|
|
|
|
|
|
BlendingLookupTableDescriptor => { GRP => "0028", ELEM => "1407", VR => "US", VM => "3", VERSION => "DICOM_2009"}, |
|
1179
|
|
|
|
|
|
|
BlendingLookupTableData => { GRP => "0028", ELEM => "1408", VR => "OW", VM => "1", VERSION => "DICOM_2009"}, |
|
1180
|
|
|
|
|
|
|
EnhancedPaletteColorLookupTableSequence => { GRP => "0028", ELEM => "140B", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1181
|
|
|
|
|
|
|
BlendingLUT2Sequence => { GRP => "0028", ELEM => "140C", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1182
|
|
|
|
|
|
|
BlendingLUT2TransferFunction => { GRP => "0028", ELEM => "140D", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1183
|
|
|
|
|
|
|
DataPathID => { GRP => "0028", ELEM => "140E", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1184
|
|
|
|
|
|
|
RGBLUTTransferFunction => { GRP => "0028", ELEM => "140F", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1185
|
|
|
|
|
|
|
AlphaLUTTransferFunction => { GRP => "0028", ELEM => "1410", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1186
|
|
|
|
|
|
|
ICCProfile => { GRP => "0028", ELEM => "2000", VR => "OB", VM => "1", VERSION => "DICOM_2009"}, |
|
1187
|
|
|
|
|
|
|
LossyImageCompression => { GRP => "0028", ELEM => "2110", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1188
|
|
|
|
|
|
|
LossyImageCompressionRatio => { GRP => "0028", ELEM => "2112", VR => "DS", VM => "1-n", VERSION => "DICOM_2009"}, |
|
1189
|
|
|
|
|
|
|
LossyImageCompressionMethod => { GRP => "0028", ELEM => "2114", VR => "CS", VM => "1-n", VERSION => "DICOM_2009"}, |
|
1190
|
|
|
|
|
|
|
ModalityLUTSequence => { GRP => "0028", ELEM => "3000", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1191
|
|
|
|
|
|
|
LUTDescriptor => { GRP => "0028", ELEM => "3002", VR => "xs", VM => "3", VERSION => "DICOM_2009"}, |
|
1192
|
|
|
|
|
|
|
LUTExplanation => { GRP => "0028", ELEM => "3003", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
1193
|
|
|
|
|
|
|
ModalityLUTType => { GRP => "0028", ELEM => "3004", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
1194
|
|
|
|
|
|
|
LUTData => { GRP => "0028", ELEM => "3006", VR => "lt", VM => "1-n", VERSION => "DICOM_2009"}, |
|
1195
|
|
|
|
|
|
|
VOILUTSequence => { GRP => "0028", ELEM => "3010", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1196
|
|
|
|
|
|
|
SoftcopyVOILUTSequence => { GRP => "0028", ELEM => "3110", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1197
|
|
|
|
|
|
|
RepresentativeFrameNumber => { GRP => "0028", ELEM => "6010", VR => "US", VM => "1", VERSION => "DICOM_2009"}, |
|
1198
|
|
|
|
|
|
|
FrameNumbersOfInterest => { GRP => "0028", ELEM => "6020", VR => "US", VM => "1-n", VERSION => "DICOM_2009"}, |
|
1199
|
|
|
|
|
|
|
FrameOfInterestDescription => { GRP => "0028", ELEM => "6022", VR => "LO", VM => "1-n", VERSION => "DICOM_2009"}, |
|
1200
|
|
|
|
|
|
|
FrameOfInterestType => { GRP => "0028", ELEM => "6023", VR => "CS", VM => "1-n", VERSION => "DICOM_2009"}, |
|
1201
|
|
|
|
|
|
|
RWavePointer => { GRP => "0028", ELEM => "6040", VR => "US", VM => "1-n", VERSION => "DICOM_2009"}, |
|
1202
|
|
|
|
|
|
|
MaskSubtractionSequence => { GRP => "0028", ELEM => "6100", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1203
|
|
|
|
|
|
|
MaskOperation => { GRP => "0028", ELEM => "6101", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1204
|
|
|
|
|
|
|
ApplicableFrameRange => { GRP => "0028", ELEM => "6102", VR => "US", VM => "2-2n", VERSION => "DICOM_2009"}, |
|
1205
|
|
|
|
|
|
|
MaskFrameNumbers => { GRP => "0028", ELEM => "6110", VR => "US", VM => "1-n", VERSION => "DICOM_2009"}, |
|
1206
|
|
|
|
|
|
|
ContrastFrameAveraging => { GRP => "0028", ELEM => "6112", VR => "US", VM => "1", VERSION => "DICOM_2009"}, |
|
1207
|
|
|
|
|
|
|
MaskSubPixelShift => { GRP => "0028", ELEM => "6114", VR => "FL", VM => "2", VERSION => "DICOM_2009"}, |
|
1208
|
|
|
|
|
|
|
TIDOffset => { GRP => "0028", ELEM => "6120", VR => "SS", VM => "1", VERSION => "DICOM_2009"}, |
|
1209
|
|
|
|
|
|
|
MaskOperationExplanation => { GRP => "0028", ELEM => "6190", VR => "ST", VM => "1", VERSION => "DICOM_2009"}, |
|
1210
|
|
|
|
|
|
|
PixelDataProviderURL => { GRP => "0028", ELEM => "7FE0", VR => "UT", VM => "1", VERSION => "DICOM_2009"}, |
|
1211
|
|
|
|
|
|
|
DataPointRows => { GRP => "0028", ELEM => "9001", VR => "UL", VM => "1", VERSION => "DICOM_2009"}, |
|
1212
|
|
|
|
|
|
|
DataPointColumns => { GRP => "0028", ELEM => "9002", VR => "UL", VM => "1", VERSION => "DICOM_2009"}, |
|
1213
|
|
|
|
|
|
|
SignalDomainColumns => { GRP => "0028", ELEM => "9003", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1214
|
|
|
|
|
|
|
DataRepresentation => { GRP => "0028", ELEM => "9108", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1215
|
|
|
|
|
|
|
PixelMeasuresSequence => { GRP => "0028", ELEM => "9110", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1216
|
|
|
|
|
|
|
FrameVOILUTSequence => { GRP => "0028", ELEM => "9132", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1217
|
|
|
|
|
|
|
PixelValueTransformationSequence => { GRP => "0028", ELEM => "9145", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1218
|
|
|
|
|
|
|
SignalDomainRows => { GRP => "0028", ELEM => "9235", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1219
|
|
|
|
|
|
|
DisplayFilterPercentage => { GRP => "0028", ELEM => "9411", VR => "FL", VM => "1", VERSION => "DICOM_2009"}, |
|
1220
|
|
|
|
|
|
|
FramePixelShiftSequence => { GRP => "0028", ELEM => "9415", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1221
|
|
|
|
|
|
|
SubtractionItemID => { GRP => "0028", ELEM => "9416", VR => "US", VM => "1", VERSION => "DICOM_2009"}, |
|
1222
|
|
|
|
|
|
|
PixelIntensityRelationshipLUTSequence => { GRP => "0028", ELEM => "9422", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1223
|
|
|
|
|
|
|
FramePixelDataPropertiesSequence => { GRP => "0028", ELEM => "9443", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1224
|
|
|
|
|
|
|
GeometricalProperties => { GRP => "0028", ELEM => "9444", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1225
|
|
|
|
|
|
|
GeometricMaximumDistortion => { GRP => "0028", ELEM => "9445", VR => "FL", VM => "1", VERSION => "DICOM_2009"}, |
|
1226
|
|
|
|
|
|
|
ImageProcessingApplied => { GRP => "0028", ELEM => "9446", VR => "CS", VM => "1-n", VERSION => "DICOM_2009"}, |
|
1227
|
|
|
|
|
|
|
MaskSelectionMode => { GRP => "0028", ELEM => "9454", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1228
|
|
|
|
|
|
|
LUTFunction => { GRP => "0028", ELEM => "9474", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1229
|
|
|
|
|
|
|
MaskVisibilityPercentage => { GRP => "0028", ELEM => "9478", VR => "FL", VM => "1", VERSION => "DICOM_2009"}, |
|
1230
|
|
|
|
|
|
|
PixelShiftSequence => { GRP => "0028", ELEM => "9501", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1231
|
|
|
|
|
|
|
RegionPixelShiftSequence => { GRP => "0028", ELEM => "9502", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1232
|
|
|
|
|
|
|
VerticesOfTheRegion => { GRP => "0028", ELEM => "9503", VR => "SS", VM => "2-2n", VERSION => "DICOM_2009"}, |
|
1233
|
|
|
|
|
|
|
MultiFramePresentationSequence => { GRP => "0028", ELEM => "9505", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1234
|
|
|
|
|
|
|
PixelShiftFrameRange => { GRP => "0028", ELEM => "9506", VR => "US", VM => "2-2n", VERSION => "DICOM_2009"}, |
|
1235
|
|
|
|
|
|
|
LUTFrameRange => { GRP => "0028", ELEM => "9507", VR => "US", VM => "2-2n", VERSION => "DICOM_2009"}, |
|
1236
|
|
|
|
|
|
|
ImageToEquipmentMappingMatrix => { GRP => "0028", ELEM => "9520", VR => "DS", VM => "16", VERSION => "DICOM_2009"}, |
|
1237
|
|
|
|
|
|
|
EquipmentCoordinateSystemIdentification => { GRP => "0028", ELEM => "9537", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1238
|
|
|
|
|
|
|
RequestingPhysicianIdentificationSequence => { GRP => "0032", ELEM => "1031", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1239
|
|
|
|
|
|
|
RequestingPhysician => { GRP => "0032", ELEM => "1032", VR => "PN", VM => "1", VERSION => "DICOM_2009"}, |
|
1240
|
|
|
|
|
|
|
RequestingService => { GRP => "0032", ELEM => "1033", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
1241
|
|
|
|
|
|
|
RequestingServiceCodeSequence => { GRP => "0032", ELEM => "1034", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1242
|
|
|
|
|
|
|
RequestedProcedureDescription => { GRP => "0032", ELEM => "1060", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
1243
|
|
|
|
|
|
|
RequestedProcedureCodeSequence => { GRP => "0032", ELEM => "1064", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1244
|
|
|
|
|
|
|
RequestedContrastAgent => { GRP => "0032", ELEM => "1070", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
1245
|
|
|
|
|
|
|
ReferencedPatientAliasSequence => { GRP => "0038", ELEM => "0004", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1246
|
|
|
|
|
|
|
VisitStatusID => { GRP => "0038", ELEM => "0008", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1247
|
|
|
|
|
|
|
AdmissionID => { GRP => "0038", ELEM => "0010", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
1248
|
|
|
|
|
|
|
IssuerOfAdmissionIDSequence => { GRP => "0038", ELEM => "0014", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1249
|
|
|
|
|
|
|
RouteOfAdmissions => { GRP => "0038", ELEM => "0016", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
1250
|
|
|
|
|
|
|
AdmittingDate => { GRP => "0038", ELEM => "0020", VR => "DA", VM => "1", VERSION => "DICOM_2009"}, |
|
1251
|
|
|
|
|
|
|
AdmittingTime => { GRP => "0038", ELEM => "0021", VR => "TM", VM => "1", VERSION => "DICOM_2009"}, |
|
1252
|
|
|
|
|
|
|
SpecialNeeds => { GRP => "0038", ELEM => "0050", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
1253
|
|
|
|
|
|
|
ServiceEpisodeID => { GRP => "0038", ELEM => "0060", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
1254
|
|
|
|
|
|
|
ServiceEpisodeDescription => { GRP => "0038", ELEM => "0062", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
1255
|
|
|
|
|
|
|
IssuerOfServiceEpisodeIDSequence => { GRP => "0038", ELEM => "0064", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1256
|
|
|
|
|
|
|
PertinentDocumentsSequence => { GRP => "0038", ELEM => "0100", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1257
|
|
|
|
|
|
|
CurrentPatientLocation => { GRP => "0038", ELEM => "0300", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
1258
|
|
|
|
|
|
|
PatientInstitutionResidence => { GRP => "0038", ELEM => "0400", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
1259
|
|
|
|
|
|
|
PatientState => { GRP => "0038", ELEM => "0500", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
1260
|
|
|
|
|
|
|
PatientClinicalTrialParticipationSequence => { GRP => "0038", ELEM => "0502", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1261
|
|
|
|
|
|
|
VisitComments => { GRP => "0038", ELEM => "4000", VR => "LT", VM => "1", VERSION => "DICOM_2009"}, |
|
1262
|
|
|
|
|
|
|
WaveformOriginality => { GRP => "003A", ELEM => "0004", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1263
|
|
|
|
|
|
|
NumberOfWaveformChannels => { GRP => "003A", ELEM => "0005", VR => "US", VM => "1", VERSION => "DICOM_2009"}, |
|
1264
|
|
|
|
|
|
|
NumberOfWaveformSamples => { GRP => "003A", ELEM => "0010", VR => "UL", VM => "1", VERSION => "DICOM_2009"}, |
|
1265
|
|
|
|
|
|
|
SamplingFrequency => { GRP => "003A", ELEM => "001A", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
1266
|
|
|
|
|
|
|
MultiplexGroupLabel => { GRP => "003A", ELEM => "0020", VR => "SH", VM => "1", VERSION => "DICOM_2009"}, |
|
1267
|
|
|
|
|
|
|
ChannelDefinitionSequence => { GRP => "003A", ELEM => "0200", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1268
|
|
|
|
|
|
|
WaveformChannelNumber => { GRP => "003A", ELEM => "0202", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
1269
|
|
|
|
|
|
|
ChannelLabel => { GRP => "003A", ELEM => "0203", VR => "SH", VM => "1", VERSION => "DICOM_2009"}, |
|
1270
|
|
|
|
|
|
|
ChannelStatus => { GRP => "003A", ELEM => "0205", VR => "CS", VM => "1-n", VERSION => "DICOM_2009"}, |
|
1271
|
|
|
|
|
|
|
ChannelSourceSequence => { GRP => "003A", ELEM => "0208", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1272
|
|
|
|
|
|
|
ChannelSourceModifiersSequence => { GRP => "003A", ELEM => "0209", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1273
|
|
|
|
|
|
|
SourceWaveformSequence => { GRP => "003A", ELEM => "020A", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1274
|
|
|
|
|
|
|
ChannelDerivationDescription => { GRP => "003A", ELEM => "020C", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
1275
|
|
|
|
|
|
|
ChannelSensitivity => { GRP => "003A", ELEM => "0210", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
1276
|
|
|
|
|
|
|
ChannelSensitivityUnitsSequence => { GRP => "003A", ELEM => "0211", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1277
|
|
|
|
|
|
|
ChannelSensitivityCorrectionFactor => { GRP => "003A", ELEM => "0212", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
1278
|
|
|
|
|
|
|
ChannelBaseline => { GRP => "003A", ELEM => "0213", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
1279
|
|
|
|
|
|
|
ChannelTimeSkew => { GRP => "003A", ELEM => "0214", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
1280
|
|
|
|
|
|
|
ChannelSampleSkew => { GRP => "003A", ELEM => "0215", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
1281
|
|
|
|
|
|
|
ChannelOffset => { GRP => "003A", ELEM => "0218", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
1282
|
|
|
|
|
|
|
WaveformBitsStored => { GRP => "003A", ELEM => "021A", VR => "US", VM => "1", VERSION => "DICOM_2009"}, |
|
1283
|
|
|
|
|
|
|
FilterLowFrequency => { GRP => "003A", ELEM => "0220", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
1284
|
|
|
|
|
|
|
FilterHighFrequency => { GRP => "003A", ELEM => "0221", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
1285
|
|
|
|
|
|
|
NotchFilterFrequency => { GRP => "003A", ELEM => "0222", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
1286
|
|
|
|
|
|
|
NotchFilterBandwidth => { GRP => "003A", ELEM => "0223", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
1287
|
|
|
|
|
|
|
WaveformDataDisplayScale => { GRP => "003A", ELEM => "0230", VR => "FL", VM => "1", VERSION => "DICOM_2009"}, |
|
1288
|
|
|
|
|
|
|
WaveformDisplayBackgroundCIELabValue => { GRP => "003A", ELEM => "0231", VR => "US", VM => "3", VERSION => "DICOM_2009"}, |
|
1289
|
|
|
|
|
|
|
WaveformPresentationGroupSequence => { GRP => "003A", ELEM => "0240", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1290
|
|
|
|
|
|
|
PresentationGroupNumber => { GRP => "003A", ELEM => "0241", VR => "US", VM => "1", VERSION => "DICOM_2009"}, |
|
1291
|
|
|
|
|
|
|
ChannelDisplaySequence => { GRP => "003A", ELEM => "0242", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1292
|
|
|
|
|
|
|
ChannelRecommendedDisplayCIELabValue => { GRP => "003A", ELEM => "0244", VR => "US", VM => "3", VERSION => "DICOM_2009"}, |
|
1293
|
|
|
|
|
|
|
ChannelPosition => { GRP => "003A", ELEM => "0245", VR => "FL", VM => "1", VERSION => "DICOM_2009"}, |
|
1294
|
|
|
|
|
|
|
DisplayShadingFlag => { GRP => "003A", ELEM => "0246", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1295
|
|
|
|
|
|
|
FractionalChannelDisplayScale => { GRP => "003A", ELEM => "0247", VR => "FL", VM => "1", VERSION => "DICOM_2009"}, |
|
1296
|
|
|
|
|
|
|
AbsoluteChannelDisplayScale => { GRP => "003A", ELEM => "0248", VR => "FL", VM => "1", VERSION => "DICOM_2009"}, |
|
1297
|
|
|
|
|
|
|
MultiplexedAudioChannelsDescriptionCodeSequence => { GRP => "003A", ELEM => "0300", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1298
|
|
|
|
|
|
|
ChannelIdentificationCode => { GRP => "003A", ELEM => "0301", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
1299
|
|
|
|
|
|
|
ChannelMode => { GRP => "003A", ELEM => "0302", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1300
|
|
|
|
|
|
|
ScheduledStationAETitle => { GRP => "0040", ELEM => "0001", VR => "AE", VM => "1-n", VERSION => "DICOM_2009"}, |
|
1301
|
|
|
|
|
|
|
ScheduledProcedureStepStartDate => { GRP => "0040", ELEM => "0002", VR => "DA", VM => "1", VERSION => "DICOM_2009"}, |
|
1302
|
|
|
|
|
|
|
ScheduledProcedureStepStartTime => { GRP => "0040", ELEM => "0003", VR => "TM", VM => "1", VERSION => "DICOM_2009"}, |
|
1303
|
|
|
|
|
|
|
ScheduledProcedureStepEndDate => { GRP => "0040", ELEM => "0004", VR => "DA", VM => "1", VERSION => "DICOM_2009"}, |
|
1304
|
|
|
|
|
|
|
ScheduledProcedureStepEndTime => { GRP => "0040", ELEM => "0005", VR => "TM", VM => "1", VERSION => "DICOM_2009"}, |
|
1305
|
|
|
|
|
|
|
ScheduledPerformingPhysicianName => { GRP => "0040", ELEM => "0006", VR => "PN", VM => "1", VERSION => "DICOM_2009"}, |
|
1306
|
|
|
|
|
|
|
ScheduledProcedureStepDescription => { GRP => "0040", ELEM => "0007", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
1307
|
|
|
|
|
|
|
ScheduledProtocolCodeSequence => { GRP => "0040", ELEM => "0008", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1308
|
|
|
|
|
|
|
ScheduledProcedureStepID => { GRP => "0040", ELEM => "0009", VR => "SH", VM => "1", VERSION => "DICOM_2009"}, |
|
1309
|
|
|
|
|
|
|
StageCodeSequence => { GRP => "0040", ELEM => "000A", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1310
|
|
|
|
|
|
|
ScheduledPerformingPhysicianIdentificationSequence => { GRP => "0040", ELEM => "000B", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1311
|
|
|
|
|
|
|
ScheduledStationName => { GRP => "0040", ELEM => "0010", VR => "SH", VM => "1-n", VERSION => "DICOM_2009"}, |
|
1312
|
|
|
|
|
|
|
ScheduledProcedureStepLocation => { GRP => "0040", ELEM => "0011", VR => "SH", VM => "1", VERSION => "DICOM_2009"}, |
|
1313
|
|
|
|
|
|
|
PreMedication => { GRP => "0040", ELEM => "0012", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
1314
|
|
|
|
|
|
|
ScheduledProcedureStepStatus => { GRP => "0040", ELEM => "0020", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1315
|
|
|
|
|
|
|
OrderPlacerIdentifierSequence => { GRP => "0040", ELEM => "0026", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1316
|
|
|
|
|
|
|
OrderFillerIdentifierSequence => { GRP => "0040", ELEM => "0027", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1317
|
|
|
|
|
|
|
LocalNamespaceEntityID => { GRP => "0040", ELEM => "0031", VR => "UT", VM => "1", VERSION => "DICOM_2009"}, |
|
1318
|
|
|
|
|
|
|
UniversalEntityID => { GRP => "0040", ELEM => "0032", VR => "UT", VM => "1", VERSION => "DICOM_2009"}, |
|
1319
|
|
|
|
|
|
|
UniversalEntityIDType => { GRP => "0040", ELEM => "0033", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1320
|
|
|
|
|
|
|
IdentifierTypeCode => { GRP => "0040", ELEM => "0035", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1321
|
|
|
|
|
|
|
AssigningFacilitySequence => { GRP => "0040", ELEM => "0036", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1322
|
|
|
|
|
|
|
AssigningJurisdictionCodeSequence => { GRP => "0040", ELEM => "0039", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1323
|
|
|
|
|
|
|
AssigningAgencyOrDepartmentCodeSequence => { GRP => "0040", ELEM => "003A", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1324
|
|
|
|
|
|
|
ScheduledProcedureStepSequence => { GRP => "0040", ELEM => "0100", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1325
|
|
|
|
|
|
|
ReferencedNonImageCompositeSOPInstanceSequence => { GRP => "0040", ELEM => "0220", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1326
|
|
|
|
|
|
|
PerformedStationAETitle => { GRP => "0040", ELEM => "0241", VR => "AE", VM => "1", VERSION => "DICOM_2009"}, |
|
1327
|
|
|
|
|
|
|
PerformedStationName => { GRP => "0040", ELEM => "0242", VR => "SH", VM => "1", VERSION => "DICOM_2009"}, |
|
1328
|
|
|
|
|
|
|
PerformedLocation => { GRP => "0040", ELEM => "0243", VR => "SH", VM => "1", VERSION => "DICOM_2009"}, |
|
1329
|
|
|
|
|
|
|
PerformedProcedureStepStartDate => { GRP => "0040", ELEM => "0244", VR => "DA", VM => "1", VERSION => "DICOM_2009"}, |
|
1330
|
|
|
|
|
|
|
PerformedProcedureStepStartTime => { GRP => "0040", ELEM => "0245", VR => "TM", VM => "1", VERSION => "DICOM_2009"}, |
|
1331
|
|
|
|
|
|
|
PerformedProcedureStepEndDate => { GRP => "0040", ELEM => "0250", VR => "DA", VM => "1", VERSION => "DICOM_2009"}, |
|
1332
|
|
|
|
|
|
|
PerformedProcedureStepEndTime => { GRP => "0040", ELEM => "0251", VR => "TM", VM => "1", VERSION => "DICOM_2009"}, |
|
1333
|
|
|
|
|
|
|
PerformedProcedureStepStatus => { GRP => "0040", ELEM => "0252", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1334
|
|
|
|
|
|
|
PerformedProcedureStepID => { GRP => "0040", ELEM => "0253", VR => "SH", VM => "1", VERSION => "DICOM_2009"}, |
|
1335
|
|
|
|
|
|
|
PerformedProcedureStepDescription => { GRP => "0040", ELEM => "0254", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
1336
|
|
|
|
|
|
|
PerformedProcedureTypeDescription => { GRP => "0040", ELEM => "0255", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
1337
|
|
|
|
|
|
|
PerformedProtocolCodeSequence => { GRP => "0040", ELEM => "0260", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1338
|
|
|
|
|
|
|
PerformedProtocolType => { GRP => "0040", ELEM => "0261", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1339
|
|
|
|
|
|
|
ScheduledStepAttributesSequence => { GRP => "0040", ELEM => "0270", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1340
|
|
|
|
|
|
|
RequestAttributesSequence => { GRP => "0040", ELEM => "0275", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1341
|
|
|
|
|
|
|
CommentsOnThePerformedProcedureStep => { GRP => "0040", ELEM => "0280", VR => "ST", VM => "1", VERSION => "DICOM_2009"}, |
|
1342
|
|
|
|
|
|
|
PerformedProcedureStepDiscontinuationReasonCodeSequence => { GRP => "0040", ELEM => "0281", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1343
|
|
|
|
|
|
|
QuantitySequence => { GRP => "0040", ELEM => "0293", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1344
|
|
|
|
|
|
|
Quantity => { GRP => "0040", ELEM => "0294", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
1345
|
|
|
|
|
|
|
MeasuringUnitsSequence => { GRP => "0040", ELEM => "0295", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1346
|
|
|
|
|
|
|
BillingItemSequence => { GRP => "0040", ELEM => "0296", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1347
|
|
|
|
|
|
|
TotalTimeOfFluoroscopy => { GRP => "0040", ELEM => "0300", VR => "US", VM => "1", VERSION => "DICOM_2009"}, |
|
1348
|
|
|
|
|
|
|
TotalNumberOfExposures => { GRP => "0040", ELEM => "0301", VR => "US", VM => "1", VERSION => "DICOM_2009"}, |
|
1349
|
|
|
|
|
|
|
EntranceDose => { GRP => "0040", ELEM => "0302", VR => "US", VM => "1", VERSION => "DICOM_2009"}, |
|
1350
|
|
|
|
|
|
|
ExposedArea => { GRP => "0040", ELEM => "0303", VR => "US", VM => "1-2", VERSION => "DICOM_2009"}, |
|
1351
|
|
|
|
|
|
|
DistanceSourceToEntrance => { GRP => "0040", ELEM => "0306", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
1352
|
|
|
|
|
|
|
ExposureDoseSequence => { GRP => "0040", ELEM => "030E", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1353
|
|
|
|
|
|
|
CommentsOnRadiationDose => { GRP => "0040", ELEM => "0310", VR => "ST", VM => "1", VERSION => "DICOM_2009"}, |
|
1354
|
|
|
|
|
|
|
XRayOutput => { GRP => "0040", ELEM => "0312", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
1355
|
|
|
|
|
|
|
HalfValueLayer => { GRP => "0040", ELEM => "0314", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
1356
|
|
|
|
|
|
|
OrganDose => { GRP => "0040", ELEM => "0316", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
1357
|
|
|
|
|
|
|
OrganExposed => { GRP => "0040", ELEM => "0318", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1358
|
|
|
|
|
|
|
BillingProcedureStepSequence => { GRP => "0040", ELEM => "0320", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1359
|
|
|
|
|
|
|
FilmConsumptionSequence => { GRP => "0040", ELEM => "0321", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1360
|
|
|
|
|
|
|
BillingSuppliesAndDevicesSequence => { GRP => "0040", ELEM => "0324", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1361
|
|
|
|
|
|
|
PerformedSeriesSequence => { GRP => "0040", ELEM => "0340", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1362
|
|
|
|
|
|
|
CommentsOnTheScheduledProcedureStep => { GRP => "0040", ELEM => "0400", VR => "LT", VM => "1", VERSION => "DICOM_2009"}, |
|
1363
|
|
|
|
|
|
|
ProtocolContextSequence => { GRP => "0040", ELEM => "0440", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1364
|
|
|
|
|
|
|
ContentItemModifierSequence => { GRP => "0040", ELEM => "0441", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1365
|
|
|
|
|
|
|
ScheduledSpecimenSequence => { GRP => "0040", ELEM => "0500", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1366
|
|
|
|
|
|
|
ContainerIdentifier => { GRP => "0040", ELEM => "0512", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
1367
|
|
|
|
|
|
|
IssuerOfTheContainerIdentifierSequence => { GRP => "0040", ELEM => "0513", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1368
|
|
|
|
|
|
|
AlternateContainerIdentifierSequence => { GRP => "0040", ELEM => "0515", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1369
|
|
|
|
|
|
|
ContainerTypeCodeSequence => { GRP => "0040", ELEM => "0518", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1370
|
|
|
|
|
|
|
ContainerDescription => { GRP => "0040", ELEM => "051A", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
1371
|
|
|
|
|
|
|
ContainerComponentSequence => { GRP => "0040", ELEM => "0520", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1372
|
|
|
|
|
|
|
SpecimenIdentifier => { GRP => "0040", ELEM => "0551", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
1373
|
|
|
|
|
|
|
SpecimenUID => { GRP => "0040", ELEM => "0554", VR => "UI", VM => "1", VERSION => "DICOM_2009"}, |
|
1374
|
|
|
|
|
|
|
AcquisitionContextSequence => { GRP => "0040", ELEM => "0555", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1375
|
|
|
|
|
|
|
AcquisitionContextDescription => { GRP => "0040", ELEM => "0556", VR => "ST", VM => "1", VERSION => "DICOM_2009"}, |
|
1376
|
|
|
|
|
|
|
SpecimenDescriptionSequence => { GRP => "0040", ELEM => "0560", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1377
|
|
|
|
|
|
|
IssuerOfTheSpecimenIdentifierSequence => { GRP => "0040", ELEM => "0562", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1378
|
|
|
|
|
|
|
SpecimenTypeCodeSequence => { GRP => "0040", ELEM => "059A", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1379
|
|
|
|
|
|
|
SpecimenShortDescription => { GRP => "0040", ELEM => "0600", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
1380
|
|
|
|
|
|
|
SpecimenDetailedDescription => { GRP => "0040", ELEM => "0602", VR => "UT", VM => "1", VERSION => "DICOM_2009"}, |
|
1381
|
|
|
|
|
|
|
SpecimenPreparationSequence => { GRP => "0040", ELEM => "0610", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1382
|
|
|
|
|
|
|
SpecimenPreparationStepContentItemSequence => { GRP => "0040", ELEM => "0612", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1383
|
|
|
|
|
|
|
SpecimenLocalizationContentItemSequence => { GRP => "0040", ELEM => "0620", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1384
|
|
|
|
|
|
|
ImageCenterPointCoordinatesSequence => { GRP => "0040", ELEM => "071A", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1385
|
|
|
|
|
|
|
XOffsetInSlideCoordinateSystem => { GRP => "0040", ELEM => "072A", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
1386
|
|
|
|
|
|
|
YOffsetInSlideCoordinateSystem => { GRP => "0040", ELEM => "073A", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
1387
|
|
|
|
|
|
|
ZOffsetInSlideCoordinateSystem => { GRP => "0040", ELEM => "074A", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
1388
|
|
|
|
|
|
|
PixelSpacingSequence => { GRP => "0040", ELEM => "08D8", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1389
|
|
|
|
|
|
|
CoordinateSystemAxisCodeSequence => { GRP => "0040", ELEM => "08DA", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1390
|
|
|
|
|
|
|
MeasurementUnitsCodeSequence => { GRP => "0040", ELEM => "08EA", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1391
|
|
|
|
|
|
|
RequestedProcedureID => { GRP => "0040", ELEM => "1001", VR => "SH", VM => "1", VERSION => "DICOM_2009"}, |
|
1392
|
|
|
|
|
|
|
ReasonForTheRequestedProcedure => { GRP => "0040", ELEM => "1002", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
1393
|
|
|
|
|
|
|
RequestedProcedurePriority => { GRP => "0040", ELEM => "1003", VR => "SH", VM => "1", VERSION => "DICOM_2009"}, |
|
1394
|
|
|
|
|
|
|
PatientTransportArrangements => { GRP => "0040", ELEM => "1004", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
1395
|
|
|
|
|
|
|
RequestedProcedureLocation => { GRP => "0040", ELEM => "1005", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
1396
|
|
|
|
|
|
|
ConfidentialityCode => { GRP => "0040", ELEM => "1008", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
1397
|
|
|
|
|
|
|
ReportingPriority => { GRP => "0040", ELEM => "1009", VR => "SH", VM => "1", VERSION => "DICOM_2009"}, |
|
1398
|
|
|
|
|
|
|
ReasonForRequestedProcedureCodeSequence => { GRP => "0040", ELEM => "100A", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1399
|
|
|
|
|
|
|
NamesOfIntendedRecipientsOfResults => { GRP => "0040", ELEM => "1010", VR => "PN", VM => "1-n", VERSION => "DICOM_2009"}, |
|
1400
|
|
|
|
|
|
|
IntendedRecipientsOfResultsIdentificationSequence => { GRP => "0040", ELEM => "1011", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1401
|
|
|
|
|
|
|
ReasonForPerformedProcedureCodeSequence => { GRP => "0040", ELEM => "1012", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1402
|
|
|
|
|
|
|
PersonIdentificationCodeSequence => { GRP => "0040", ELEM => "1101", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1403
|
|
|
|
|
|
|
PersonAddress => { GRP => "0040", ELEM => "1102", VR => "ST", VM => "1", VERSION => "DICOM_2009"}, |
|
1404
|
|
|
|
|
|
|
PersonTelephoneNumbers => { GRP => "0040", ELEM => "1103", VR => "LO", VM => "1-n", VERSION => "DICOM_2009"}, |
|
1405
|
|
|
|
|
|
|
RequestedProcedureComments => { GRP => "0040", ELEM => "1400", VR => "LT", VM => "1", VERSION => "DICOM_2009"}, |
|
1406
|
|
|
|
|
|
|
IssueDateOfImagingServiceRequest => { GRP => "0040", ELEM => "2004", VR => "DA", VM => "1", VERSION => "DICOM_2009"}, |
|
1407
|
|
|
|
|
|
|
IssueTimeOfImagingServiceRequest => { GRP => "0040", ELEM => "2005", VR => "TM", VM => "1", VERSION => "DICOM_2009"}, |
|
1408
|
|
|
|
|
|
|
OrderEnteredBy => { GRP => "0040", ELEM => "2008", VR => "PN", VM => "1", VERSION => "DICOM_2009"}, |
|
1409
|
|
|
|
|
|
|
OrderEntererLocation => { GRP => "0040", ELEM => "2009", VR => "SH", VM => "1", VERSION => "DICOM_2009"}, |
|
1410
|
|
|
|
|
|
|
OrderCallbackPhoneNumber => { GRP => "0040", ELEM => "2010", VR => "SH", VM => "1", VERSION => "DICOM_2009"}, |
|
1411
|
|
|
|
|
|
|
PlacerOrderNumberImagingServiceRequest => { GRP => "0040", ELEM => "2016", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
1412
|
|
|
|
|
|
|
FillerOrderNumberImagingServiceRequest => { GRP => "0040", ELEM => "2017", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
1413
|
|
|
|
|
|
|
ImagingServiceRequestComments => { GRP => "0040", ELEM => "2400", VR => "LT", VM => "1", VERSION => "DICOM_2009"}, |
|
1414
|
|
|
|
|
|
|
ConfidentialityConstraintOnPatientDataDescription => { GRP => "0040", ELEM => "3001", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
1415
|
|
|
|
|
|
|
GeneralPurposeScheduledProcedureStepStatus => { GRP => "0040", ELEM => "4001", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1416
|
|
|
|
|
|
|
GeneralPurposePerformedProcedureStepStatus => { GRP => "0040", ELEM => "4002", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1417
|
|
|
|
|
|
|
GeneralPurposeScheduledProcedureStepPriority => { GRP => "0040", ELEM => "4003", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1418
|
|
|
|
|
|
|
ScheduledProcessingApplicationsCodeSequence => { GRP => "0040", ELEM => "4004", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1419
|
|
|
|
|
|
|
ScheduledProcedureStepStartDateTime => { GRP => "0040", ELEM => "4005", VR => "DT", VM => "1", VERSION => "DICOM_2009"}, |
|
1420
|
|
|
|
|
|
|
MultipleCopiesFlag => { GRP => "0040", ELEM => "4006", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1421
|
|
|
|
|
|
|
PerformedProcessingApplicationsCodeSequence => { GRP => "0040", ELEM => "4007", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1422
|
|
|
|
|
|
|
HumanPerformerCodeSequence => { GRP => "0040", ELEM => "4009", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1423
|
|
|
|
|
|
|
ScheduledProcedureStepModificationDateTime => { GRP => "0040", ELEM => "4010", VR => "DT", VM => "1", VERSION => "DICOM_2009"}, |
|
1424
|
|
|
|
|
|
|
ExpectedCompletionDateTime => { GRP => "0040", ELEM => "4011", VR => "DT", VM => "1", VERSION => "DICOM_2009"}, |
|
1425
|
|
|
|
|
|
|
ResultingGeneralPurposePerformedProcedureStepsSequence => { GRP => "0040", ELEM => "4015", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1426
|
|
|
|
|
|
|
ReferencedGeneralPurposeScheduledProcedureStepSequence => { GRP => "0040", ELEM => "4016", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1427
|
|
|
|
|
|
|
ScheduledWorkitemCodeSequence => { GRP => "0040", ELEM => "4018", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1428
|
|
|
|
|
|
|
PerformedWorkitemCodeSequence => { GRP => "0040", ELEM => "4019", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1429
|
|
|
|
|
|
|
InputAvailabilityFlag => { GRP => "0040", ELEM => "4020", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1430
|
|
|
|
|
|
|
InputInformationSequence => { GRP => "0040", ELEM => "4021", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1431
|
|
|
|
|
|
|
RelevantInformationSequence => { GRP => "0040", ELEM => "4022", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1432
|
|
|
|
|
|
|
ReferencedGeneralPurposeScheduledProcedureStepTransactionUID => { GRP => "0040", ELEM => "4023", VR => "UI", VM => "1", VERSION => "DICOM_2009"}, |
|
1433
|
|
|
|
|
|
|
ScheduledStationNameCodeSequence => { GRP => "0040", ELEM => "4025", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1434
|
|
|
|
|
|
|
ScheduledStationClassCodeSequence => { GRP => "0040", ELEM => "4026", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1435
|
|
|
|
|
|
|
ScheduledStationGeographicLocationCodeSequence => { GRP => "0040", ELEM => "4027", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1436
|
|
|
|
|
|
|
PerformedStationNameCodeSequence => { GRP => "0040", ELEM => "4028", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1437
|
|
|
|
|
|
|
PerformedStationClassCodeSequence => { GRP => "0040", ELEM => "4029", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1438
|
|
|
|
|
|
|
PerformedStationGeographicLocationCodeSequence => { GRP => "0040", ELEM => "4030", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1439
|
|
|
|
|
|
|
RequestedSubsequentWorkitemCodeSequence => { GRP => "0040", ELEM => "4031", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1440
|
|
|
|
|
|
|
NonDICOMOutputCodeSequence => { GRP => "0040", ELEM => "4032", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1441
|
|
|
|
|
|
|
OutputInformationSequence => { GRP => "0040", ELEM => "4033", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1442
|
|
|
|
|
|
|
ScheduledHumanPerformersSequence => { GRP => "0040", ELEM => "4034", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1443
|
|
|
|
|
|
|
ActualHumanPerformersSequence => { GRP => "0040", ELEM => "4035", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1444
|
|
|
|
|
|
|
HumanPerformerOrganization => { GRP => "0040", ELEM => "4036", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
1445
|
|
|
|
|
|
|
HumanPerformerName => { GRP => "0040", ELEM => "4037", VR => "PN", VM => "1", VERSION => "DICOM_2009"}, |
|
1446
|
|
|
|
|
|
|
RawDataHandling => { GRP => "0040", ELEM => "4040", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1447
|
|
|
|
|
|
|
EntranceDoseInmGy => { GRP => "0040", ELEM => "8302", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
1448
|
|
|
|
|
|
|
ReferencedImageRealWorldValueMappingSequence => { GRP => "0040", ELEM => "9094", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1449
|
|
|
|
|
|
|
RealWorldValueMappingSequence => { GRP => "0040", ELEM => "9096", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1450
|
|
|
|
|
|
|
PixelValueMappingCodeSequence => { GRP => "0040", ELEM => "9098", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1451
|
|
|
|
|
|
|
LUTLabel => { GRP => "0040", ELEM => "9210", VR => "SH", VM => "1", VERSION => "DICOM_2009"}, |
|
1452
|
|
|
|
|
|
|
RealWorldValueLastValueMapped => { GRP => "0040", ELEM => "9211", VR => "xs", VM => "1", VERSION => "DICOM_2009"}, |
|
1453
|
|
|
|
|
|
|
RealWorldValueLUTData => { GRP => "0040", ELEM => "9212", VR => "FD", VM => "1-n", VERSION => "DICOM_2009"}, |
|
1454
|
|
|
|
|
|
|
RealWorldValueFirstValueMapped => { GRP => "0040", ELEM => "9216", VR => "xs", VM => "1", VERSION => "DICOM_2009"}, |
|
1455
|
|
|
|
|
|
|
RealWorldValueIntercept => { GRP => "0040", ELEM => "9224", VR => "FD", VM => "1", VERSION => "DICOM_2009"}, |
|
1456
|
|
|
|
|
|
|
RealWorldValueSlope => { GRP => "0040", ELEM => "9225", VR => "FD", VM => "1", VERSION => "DICOM_2009"}, |
|
1457
|
|
|
|
|
|
|
RelationshipType => { GRP => "0040", ELEM => "A010", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1458
|
|
|
|
|
|
|
VerifyingOrganization => { GRP => "0040", ELEM => "A027", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
1459
|
|
|
|
|
|
|
VerificationDateTime => { GRP => "0040", ELEM => "A030", VR => "DT", VM => "1", VERSION => "DICOM_2009"}, |
|
1460
|
|
|
|
|
|
|
ObservationDateTime => { GRP => "0040", ELEM => "A032", VR => "DT", VM => "1", VERSION => "DICOM_2009"}, |
|
1461
|
|
|
|
|
|
|
ValueType => { GRP => "0040", ELEM => "A040", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1462
|
|
|
|
|
|
|
ConceptNameCodeSequence => { GRP => "0040", ELEM => "A043", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1463
|
|
|
|
|
|
|
ContinuityOfContent => { GRP => "0040", ELEM => "A050", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1464
|
|
|
|
|
|
|
VerifyingObserverSequence => { GRP => "0040", ELEM => "A073", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1465
|
|
|
|
|
|
|
VerifyingObserverName => { GRP => "0040", ELEM => "A075", VR => "PN", VM => "1", VERSION => "DICOM_2009"}, |
|
1466
|
|
|
|
|
|
|
AuthorObserverSequence => { GRP => "0040", ELEM => "A078", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1467
|
|
|
|
|
|
|
ParticipantSequence => { GRP => "0040", ELEM => "A07A", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1468
|
|
|
|
|
|
|
CustodialOrganizationSequence => { GRP => "0040", ELEM => "A07C", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1469
|
|
|
|
|
|
|
ParticipationType => { GRP => "0040", ELEM => "A080", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1470
|
|
|
|
|
|
|
ParticipationDateTime => { GRP => "0040", ELEM => "A082", VR => "DT", VM => "1", VERSION => "DICOM_2009"}, |
|
1471
|
|
|
|
|
|
|
ObserverType => { GRP => "0040", ELEM => "A084", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1472
|
|
|
|
|
|
|
VerifyingObserverIdentificationCodeSequence => { GRP => "0040", ELEM => "A088", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1473
|
|
|
|
|
|
|
ReferencedWaveformChannels => { GRP => "0040", ELEM => "A0B0", VR => "US", VM => "2-2n", VERSION => "DICOM_2009"}, |
|
1474
|
|
|
|
|
|
|
DateTime => { GRP => "0040", ELEM => "A120", VR => "DT", VM => "1", VERSION => "DICOM_2009"}, |
|
1475
|
|
|
|
|
|
|
Date => { GRP => "0040", ELEM => "A121", VR => "DA", VM => "1", VERSION => "DICOM_2009"}, |
|
1476
|
|
|
|
|
|
|
Time => { GRP => "0040", ELEM => "A122", VR => "TM", VM => "1", VERSION => "DICOM_2009"}, |
|
1477
|
|
|
|
|
|
|
PersonName => { GRP => "0040", ELEM => "A123", VR => "PN", VM => "1", VERSION => "DICOM_2009"}, |
|
1478
|
|
|
|
|
|
|
UID => { GRP => "0040", ELEM => "A124", VR => "UI", VM => "1", VERSION => "DICOM_2009"}, |
|
1479
|
|
|
|
|
|
|
TemporalRangeType => { GRP => "0040", ELEM => "A130", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1480
|
|
|
|
|
|
|
ReferencedSamplePositions => { GRP => "0040", ELEM => "A132", VR => "UL", VM => "1-n", VERSION => "DICOM_2009"}, |
|
1481
|
|
|
|
|
|
|
ReferencedFrameNumbers => { GRP => "0040", ELEM => "A136", VR => "US", VM => "1-n", VERSION => "DICOM_2009"}, |
|
1482
|
|
|
|
|
|
|
ReferencedTimeOffsets => { GRP => "0040", ELEM => "A138", VR => "DS", VM => "1-n", VERSION => "DICOM_2009"}, |
|
1483
|
|
|
|
|
|
|
ReferencedDateTime => { GRP => "0040", ELEM => "A13A", VR => "DT", VM => "1-n", VERSION => "DICOM_2009"}, |
|
1484
|
|
|
|
|
|
|
TextValue => { GRP => "0040", ELEM => "A160", VR => "UT", VM => "1", VERSION => "DICOM_2009"}, |
|
1485
|
|
|
|
|
|
|
ConceptCodeSequence => { GRP => "0040", ELEM => "A168", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1486
|
|
|
|
|
|
|
PurposeOfReferenceCodeSequence => { GRP => "0040", ELEM => "A170", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1487
|
|
|
|
|
|
|
AnnotationGroupNumber => { GRP => "0040", ELEM => "A180", VR => "US", VM => "1", VERSION => "DICOM_2009"}, |
|
1488
|
|
|
|
|
|
|
ModifierCodeSequence => { GRP => "0040", ELEM => "A195", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1489
|
|
|
|
|
|
|
MeasuredValueSequence => { GRP => "0040", ELEM => "A300", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1490
|
|
|
|
|
|
|
NumericValueQualifierCodeSequence => { GRP => "0040", ELEM => "A301", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1491
|
|
|
|
|
|
|
NumericValue => { GRP => "0040", ELEM => "A30A", VR => "DS", VM => "1-n", VERSION => "DICOM_2009"}, |
|
1492
|
|
|
|
|
|
|
PredecessorDocumentsSequence => { GRP => "0040", ELEM => "A360", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1493
|
|
|
|
|
|
|
ReferencedRequestSequence => { GRP => "0040", ELEM => "A370", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1494
|
|
|
|
|
|
|
PerformedProcedureCodeSequence => { GRP => "0040", ELEM => "A372", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1495
|
|
|
|
|
|
|
CurrentRequestedProcedureEvidenceSequence => { GRP => "0040", ELEM => "A375", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1496
|
|
|
|
|
|
|
PertinentOtherEvidenceSequence => { GRP => "0040", ELEM => "A385", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1497
|
|
|
|
|
|
|
HL7StructuredDocumentReferenceSequence => { GRP => "0040", ELEM => "A390", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1498
|
|
|
|
|
|
|
CompletionFlag => { GRP => "0040", ELEM => "A491", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1499
|
|
|
|
|
|
|
CompletionFlagDescription => { GRP => "0040", ELEM => "A492", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
1500
|
|
|
|
|
|
|
VerificationFlag => { GRP => "0040", ELEM => "A493", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1501
|
|
|
|
|
|
|
ArchiveRequested => { GRP => "0040", ELEM => "A494", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1502
|
|
|
|
|
|
|
PreliminaryFlag => { GRP => "0040", ELEM => "A496", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1503
|
|
|
|
|
|
|
ContentTemplateSequence => { GRP => "0040", ELEM => "A504", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1504
|
|
|
|
|
|
|
IdenticalDocumentsSequence => { GRP => "0040", ELEM => "A525", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1505
|
|
|
|
|
|
|
ContentSequence => { GRP => "0040", ELEM => "A730", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1506
|
|
|
|
|
|
|
WaveformAnnotationSequence => { GRP => "0040", ELEM => "B020", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1507
|
|
|
|
|
|
|
TemplateIdentifier => { GRP => "0040", ELEM => "DB00", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1508
|
|
|
|
|
|
|
ReferencedContentItemIdentifier => { GRP => "0040", ELEM => "DB73", VR => "UL", VM => "1-n", VERSION => "DICOM_2009"}, |
|
1509
|
|
|
|
|
|
|
HL7InstanceIdentifier => { GRP => "0040", ELEM => "E001", VR => "ST", VM => "1", VERSION => "DICOM_2009"}, |
|
1510
|
|
|
|
|
|
|
HL7DocumentEffectiveTime => { GRP => "0040", ELEM => "E004", VR => "DT", VM => "1", VERSION => "DICOM_2009"}, |
|
1511
|
|
|
|
|
|
|
HL7DocumentTypeCodeSequence => { GRP => "0040", ELEM => "E006", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1512
|
|
|
|
|
|
|
RetrieveURI => { GRP => "0040", ELEM => "E010", VR => "UT", VM => "1", VERSION => "DICOM_2009"}, |
|
1513
|
|
|
|
|
|
|
RetrieveLocationUID => { GRP => "0040", ELEM => "E011", VR => "UI", VM => "1", VERSION => "DICOM_2009"}, |
|
1514
|
|
|
|
|
|
|
DocumentTitle => { GRP => "0042", ELEM => "0010", VR => "ST", VM => "1", VERSION => "DICOM_2009"}, |
|
1515
|
|
|
|
|
|
|
EncapsulatedDocument => { GRP => "0042", ELEM => "0011", VR => "OB", VM => "1", VERSION => "DICOM_2009"}, |
|
1516
|
|
|
|
|
|
|
MIMETypeOfEncapsulatedDocument => { GRP => "0042", ELEM => "0012", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
1517
|
|
|
|
|
|
|
SourceInstanceSequence => { GRP => "0042", ELEM => "0013", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1518
|
|
|
|
|
|
|
ListOfMIMETypes => { GRP => "0042", ELEM => "0014", VR => "LO", VM => "1-n", VERSION => "DICOM_2009"}, |
|
1519
|
|
|
|
|
|
|
ProductPackageIdentifier => { GRP => "0044", ELEM => "0001", VR => "ST", VM => "1", VERSION => "DICOM_2009"}, |
|
1520
|
|
|
|
|
|
|
SubstanceAdministrationApproval => { GRP => "0044", ELEM => "0002", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1521
|
|
|
|
|
|
|
ApprovalStatusFurtherDescription => { GRP => "0044", ELEM => "0003", VR => "LT", VM => "1", VERSION => "DICOM_2009"}, |
|
1522
|
|
|
|
|
|
|
ApprovalStatusDateTime => { GRP => "0044", ELEM => "0004", VR => "DT", VM => "1", VERSION => "DICOM_2009"}, |
|
1523
|
|
|
|
|
|
|
ProductTypeCodeSequence => { GRP => "0044", ELEM => "0007", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1524
|
|
|
|
|
|
|
ProductName => { GRP => "0044", ELEM => "0008", VR => "LO", VM => "1-n", VERSION => "DICOM_2009"}, |
|
1525
|
|
|
|
|
|
|
ProductDescription => { GRP => "0044", ELEM => "0009", VR => "LT", VM => "1", VERSION => "DICOM_2009"}, |
|
1526
|
|
|
|
|
|
|
ProductLotIdentifier => { GRP => "0044", ELEM => "000A", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
1527
|
|
|
|
|
|
|
ProductExpirationDateTime => { GRP => "0044", ELEM => "000B", VR => "DT", VM => "1", VERSION => "DICOM_2009"}, |
|
1528
|
|
|
|
|
|
|
SubstanceAdministrationDateTime => { GRP => "0044", ELEM => "0010", VR => "DT", VM => "1", VERSION => "DICOM_2009"}, |
|
1529
|
|
|
|
|
|
|
SubstanceAdministrationNotes => { GRP => "0044", ELEM => "0011", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
1530
|
|
|
|
|
|
|
SubstanceAdministrationDeviceID => { GRP => "0044", ELEM => "0012", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
1531
|
|
|
|
|
|
|
ProductParameterSequence => { GRP => "0044", ELEM => "0013", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1532
|
|
|
|
|
|
|
SubstanceAdministrationParameterSequence => { GRP => "0044", ELEM => "0019", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1533
|
|
|
|
|
|
|
LensDescription => { GRP => "0046", ELEM => "0012", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
1534
|
|
|
|
|
|
|
RightLensSequence => { GRP => "0046", ELEM => "0014", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1535
|
|
|
|
|
|
|
LeftLensSequence => { GRP => "0046", ELEM => "0015", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1536
|
|
|
|
|
|
|
UnspecifiedLateralityLensSequence => { GRP => "0046", ELEM => "0016", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1537
|
|
|
|
|
|
|
CylinderSequence => { GRP => "0046", ELEM => "0018", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1538
|
|
|
|
|
|
|
PrismSequence => { GRP => "0046", ELEM => "0028", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1539
|
|
|
|
|
|
|
HorizontalPrismPower => { GRP => "0046", ELEM => "0030", VR => "FD", VM => "1", VERSION => "DICOM_2009"}, |
|
1540
|
|
|
|
|
|
|
HorizontalPrismBase => { GRP => "0046", ELEM => "0032", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1541
|
|
|
|
|
|
|
VerticalPrismPower => { GRP => "0046", ELEM => "0034", VR => "FD", VM => "1", VERSION => "DICOM_2009"}, |
|
1542
|
|
|
|
|
|
|
VerticalPrismBase => { GRP => "0046", ELEM => "0036", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1543
|
|
|
|
|
|
|
LensSegmentType => { GRP => "0046", ELEM => "0038", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1544
|
|
|
|
|
|
|
OpticalTransmittance => { GRP => "0046", ELEM => "0040", VR => "FD", VM => "1", VERSION => "DICOM_2009"}, |
|
1545
|
|
|
|
|
|
|
ChannelWidth => { GRP => "0046", ELEM => "0042", VR => "FD", VM => "1", VERSION => "DICOM_2009"}, |
|
1546
|
|
|
|
|
|
|
PupilSize => { GRP => "0046", ELEM => "0044", VR => "FD", VM => "1", VERSION => "DICOM_2009"}, |
|
1547
|
|
|
|
|
|
|
CornealSize => { GRP => "0046", ELEM => "0046", VR => "FD", VM => "1", VERSION => "DICOM_2009"}, |
|
1548
|
|
|
|
|
|
|
AutorefractionRightEyeSequence => { GRP => "0046", ELEM => "0050", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1549
|
|
|
|
|
|
|
AutorefractionLeftEyeSequence => { GRP => "0046", ELEM => "0052", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1550
|
|
|
|
|
|
|
DistancePupillaryDistance => { GRP => "0046", ELEM => "0060", VR => "FD", VM => "1", VERSION => "DICOM_2009"}, |
|
1551
|
|
|
|
|
|
|
NearPupillaryDistance => { GRP => "0046", ELEM => "0062", VR => "FD", VM => "1", VERSION => "DICOM_2009"}, |
|
1552
|
|
|
|
|
|
|
IntermediatePupillaryDistance => { GRP => "0046", ELEM => "0063", VR => "FD", VM => "1", VERSION => "DICOM_2009"}, |
|
1553
|
|
|
|
|
|
|
OtherPupillaryDistance => { GRP => "0046", ELEM => "0064", VR => "FD", VM => "1", VERSION => "DICOM_2009"}, |
|
1554
|
|
|
|
|
|
|
KeratometryRightEyeSequence => { GRP => "0046", ELEM => "0070", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1555
|
|
|
|
|
|
|
KeratometryLeftEyeSequence => { GRP => "0046", ELEM => "0071", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1556
|
|
|
|
|
|
|
SteepKeratometricAxisSequence => { GRP => "0046", ELEM => "0074", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1557
|
|
|
|
|
|
|
RadiusOfCurvature => { GRP => "0046", ELEM => "0075", VR => "FD", VM => "1", VERSION => "DICOM_2009"}, |
|
1558
|
|
|
|
|
|
|
KeratometricPower => { GRP => "0046", ELEM => "0076", VR => "FD", VM => "1", VERSION => "DICOM_2009"}, |
|
1559
|
|
|
|
|
|
|
KeratometricAxis => { GRP => "0046", ELEM => "0077", VR => "FD", VM => "1", VERSION => "DICOM_2009"}, |
|
1560
|
|
|
|
|
|
|
FlatKeratometricAxisSequence => { GRP => "0046", ELEM => "0080", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1561
|
|
|
|
|
|
|
BackgroundColor => { GRP => "0046", ELEM => "0092", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1562
|
|
|
|
|
|
|
Optotype => { GRP => "0046", ELEM => "0094", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1563
|
|
|
|
|
|
|
OptotypePresentation => { GRP => "0046", ELEM => "0095", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1564
|
|
|
|
|
|
|
SubjectiveRefractionRightEyeSequence => { GRP => "0046", ELEM => "0097", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1565
|
|
|
|
|
|
|
SubjectiveRefractionLeftEyeSequence => { GRP => "0046", ELEM => "0098", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1566
|
|
|
|
|
|
|
AddNearSequence => { GRP => "0046", ELEM => "0100", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1567
|
|
|
|
|
|
|
AddIntermediateSequence => { GRP => "0046", ELEM => "0101", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1568
|
|
|
|
|
|
|
AddOtherSequence => { GRP => "0046", ELEM => "0102", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1569
|
|
|
|
|
|
|
AddPower => { GRP => "0046", ELEM => "0104", VR => "FD", VM => "1", VERSION => "DICOM_2009"}, |
|
1570
|
|
|
|
|
|
|
ViewingDistance => { GRP => "0046", ELEM => "0106", VR => "FD", VM => "1", VERSION => "DICOM_2009"}, |
|
1571
|
|
|
|
|
|
|
VisualAcuityTypeCodeSequence => { GRP => "0046", ELEM => "0121", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1572
|
|
|
|
|
|
|
VisualAcuityRightEyeSequence => { GRP => "0046", ELEM => "0122", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1573
|
|
|
|
|
|
|
VisualAcuityLeftEyeSequence => { GRP => "0046", ELEM => "0123", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1574
|
|
|
|
|
|
|
VisualAcuityBothEyesOpenSequence => { GRP => "0046", ELEM => "0124", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1575
|
|
|
|
|
|
|
ViewingDistanceType => { GRP => "0046", ELEM => "0125", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1576
|
|
|
|
|
|
|
VisualAcuityModifiers => { GRP => "0046", ELEM => "0135", VR => "SS", VM => "2", VERSION => "DICOM_2009"}, |
|
1577
|
|
|
|
|
|
|
DecimalVisualAcuity => { GRP => "0046", ELEM => "0137", VR => "FD", VM => "1", VERSION => "DICOM_2009"}, |
|
1578
|
|
|
|
|
|
|
OptotypeDetailedDefinition => { GRP => "0046", ELEM => "0139", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
1579
|
|
|
|
|
|
|
ReferencedRefractiveMeasurementsSequence => { GRP => "0046", ELEM => "0145", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1580
|
|
|
|
|
|
|
SpherePower => { GRP => "0046", ELEM => "0146", VR => "FD", VM => "1", VERSION => "DICOM_2009"}, |
|
1581
|
|
|
|
|
|
|
CylinderPower => { GRP => "0046", ELEM => "0147", VR => "FD", VM => "1", VERSION => "DICOM_2009"}, |
|
1582
|
|
|
|
|
|
|
CalibrationImage => { GRP => "0050", ELEM => "0004", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1583
|
|
|
|
|
|
|
DeviceSequence => { GRP => "0050", ELEM => "0010", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1584
|
|
|
|
|
|
|
ContainerComponentTypeCodeSequence => { GRP => "0050", ELEM => "0012", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1585
|
|
|
|
|
|
|
ContainerComponentThickness => { GRP => "0050", ELEM => "0013", VR => "FD", VM => "1", VERSION => "DICOM_2009"}, |
|
1586
|
|
|
|
|
|
|
DeviceLength => { GRP => "0050", ELEM => "0014", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
1587
|
|
|
|
|
|
|
ContainerComponentWidth => { GRP => "0050", ELEM => "0015", VR => "FD", VM => "1", VERSION => "DICOM_2009"}, |
|
1588
|
|
|
|
|
|
|
DeviceDiameter => { GRP => "0050", ELEM => "0016", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
1589
|
|
|
|
|
|
|
DeviceDiameterUnits => { GRP => "0050", ELEM => "0017", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1590
|
|
|
|
|
|
|
DeviceVolume => { GRP => "0050", ELEM => "0018", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
1591
|
|
|
|
|
|
|
InterMarkerDistance => { GRP => "0050", ELEM => "0019", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
1592
|
|
|
|
|
|
|
ContainerComponentMaterial => { GRP => "0050", ELEM => "001A", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1593
|
|
|
|
|
|
|
ContainerComponentID => { GRP => "0050", ELEM => "001B", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
1594
|
|
|
|
|
|
|
ContainerComponentLength => { GRP => "0050", ELEM => "001C", VR => "FD", VM => "1", VERSION => "DICOM_2009"}, |
|
1595
|
|
|
|
|
|
|
ContainerComponentDiameter => { GRP => "0050", ELEM => "001D", VR => "FD", VM => "1", VERSION => "DICOM_2009"}, |
|
1596
|
|
|
|
|
|
|
ContainerComponentDescription => { GRP => "0050", ELEM => "001E", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
1597
|
|
|
|
|
|
|
DeviceDescription => { GRP => "0050", ELEM => "0020", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
1598
|
|
|
|
|
|
|
EnergyWindowVector => { GRP => "0054", ELEM => "0010", VR => "US", VM => "1-n", VERSION => "DICOM_2009"}, |
|
1599
|
|
|
|
|
|
|
NumberOfEnergyWindows => { GRP => "0054", ELEM => "0011", VR => "US", VM => "1", VERSION => "DICOM_2009"}, |
|
1600
|
|
|
|
|
|
|
EnergyWindowInformationSequence => { GRP => "0054", ELEM => "0012", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1601
|
|
|
|
|
|
|
EnergyWindowRangeSequence => { GRP => "0054", ELEM => "0013", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1602
|
|
|
|
|
|
|
EnergyWindowLowerLimit => { GRP => "0054", ELEM => "0014", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
1603
|
|
|
|
|
|
|
EnergyWindowUpperLimit => { GRP => "0054", ELEM => "0015", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
1604
|
|
|
|
|
|
|
RadiopharmaceuticalInformationSequence => { GRP => "0054", ELEM => "0016", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1605
|
|
|
|
|
|
|
ResidualSyringeCounts => { GRP => "0054", ELEM => "0017", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
1606
|
|
|
|
|
|
|
EnergyWindowName => { GRP => "0054", ELEM => "0018", VR => "SH", VM => "1", VERSION => "DICOM_2009"}, |
|
1607
|
|
|
|
|
|
|
DetectorVector => { GRP => "0054", ELEM => "0020", VR => "US", VM => "1-n", VERSION => "DICOM_2009"}, |
|
1608
|
|
|
|
|
|
|
NumberOfDetectors => { GRP => "0054", ELEM => "0021", VR => "US", VM => "1", VERSION => "DICOM_2009"}, |
|
1609
|
|
|
|
|
|
|
DetectorInformationSequence => { GRP => "0054", ELEM => "0022", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1610
|
|
|
|
|
|
|
PhaseVector => { GRP => "0054", ELEM => "0030", VR => "US", VM => "1-n", VERSION => "DICOM_2009"}, |
|
1611
|
|
|
|
|
|
|
NumberOfPhases => { GRP => "0054", ELEM => "0031", VR => "US", VM => "1", VERSION => "DICOM_2009"}, |
|
1612
|
|
|
|
|
|
|
PhaseInformationSequence => { GRP => "0054", ELEM => "0032", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1613
|
|
|
|
|
|
|
NumberOfFramesInPhase => { GRP => "0054", ELEM => "0033", VR => "US", VM => "1", VERSION => "DICOM_2009"}, |
|
1614
|
|
|
|
|
|
|
PhaseDelay => { GRP => "0054", ELEM => "0036", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
1615
|
|
|
|
|
|
|
PauseBetweenFrames => { GRP => "0054", ELEM => "0038", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
1616
|
|
|
|
|
|
|
PhaseDescription => { GRP => "0054", ELEM => "0039", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1617
|
|
|
|
|
|
|
RotationVector => { GRP => "0054", ELEM => "0050", VR => "US", VM => "1-n", VERSION => "DICOM_2009"}, |
|
1618
|
|
|
|
|
|
|
NumberOfRotations => { GRP => "0054", ELEM => "0051", VR => "US", VM => "1", VERSION => "DICOM_2009"}, |
|
1619
|
|
|
|
|
|
|
RotationInformationSequence => { GRP => "0054", ELEM => "0052", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1620
|
|
|
|
|
|
|
NumberOfFramesInRotation => { GRP => "0054", ELEM => "0053", VR => "US", VM => "1", VERSION => "DICOM_2009"}, |
|
1621
|
|
|
|
|
|
|
RRIntervalVector => { GRP => "0054", ELEM => "0060", VR => "US", VM => "1-n", VERSION => "DICOM_2009"}, |
|
1622
|
|
|
|
|
|
|
NumberOfRRIntervals => { GRP => "0054", ELEM => "0061", VR => "US", VM => "1", VERSION => "DICOM_2009"}, |
|
1623
|
|
|
|
|
|
|
GatedInformationSequence => { GRP => "0054", ELEM => "0062", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1624
|
|
|
|
|
|
|
DataInformationSequence => { GRP => "0054", ELEM => "0063", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1625
|
|
|
|
|
|
|
TimeSlotVector => { GRP => "0054", ELEM => "0070", VR => "US", VM => "1-n", VERSION => "DICOM_2009"}, |
|
1626
|
|
|
|
|
|
|
NumberOfTimeSlots => { GRP => "0054", ELEM => "0071", VR => "US", VM => "1", VERSION => "DICOM_2009"}, |
|
1627
|
|
|
|
|
|
|
TimeSlotInformationSequence => { GRP => "0054", ELEM => "0072", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1628
|
|
|
|
|
|
|
TimeSlotTime => { GRP => "0054", ELEM => "0073", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
1629
|
|
|
|
|
|
|
SliceVector => { GRP => "0054", ELEM => "0080", VR => "US", VM => "1-n", VERSION => "DICOM_2009"}, |
|
1630
|
|
|
|
|
|
|
NumberOfSlices => { GRP => "0054", ELEM => "0081", VR => "US", VM => "1", VERSION => "DICOM_2009"}, |
|
1631
|
|
|
|
|
|
|
AngularViewVector => { GRP => "0054", ELEM => "0090", VR => "US", VM => "1-n", VERSION => "DICOM_2009"}, |
|
1632
|
|
|
|
|
|
|
TimeSliceVector => { GRP => "0054", ELEM => "0100", VR => "US", VM => "1-n", VERSION => "DICOM_2009"}, |
|
1633
|
|
|
|
|
|
|
NumberOfTimeSlices => { GRP => "0054", ELEM => "0101", VR => "US", VM => "1", VERSION => "DICOM_2009"}, |
|
1634
|
|
|
|
|
|
|
StartAngle => { GRP => "0054", ELEM => "0200", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
1635
|
|
|
|
|
|
|
TypeOfDetectorMotion => { GRP => "0054", ELEM => "0202", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1636
|
|
|
|
|
|
|
TriggerVector => { GRP => "0054", ELEM => "0210", VR => "IS", VM => "1-n", VERSION => "DICOM_2009"}, |
|
1637
|
|
|
|
|
|
|
NumberOfTriggersInPhase => { GRP => "0054", ELEM => "0211", VR => "US", VM => "1", VERSION => "DICOM_2009"}, |
|
1638
|
|
|
|
|
|
|
ViewCodeSequence => { GRP => "0054", ELEM => "0220", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1639
|
|
|
|
|
|
|
ViewModifierCodeSequence => { GRP => "0054", ELEM => "0222", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1640
|
|
|
|
|
|
|
RadionuclideCodeSequence => { GRP => "0054", ELEM => "0300", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1641
|
|
|
|
|
|
|
AdministrationRouteCodeSequence => { GRP => "0054", ELEM => "0302", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1642
|
|
|
|
|
|
|
RadiopharmaceuticalCodeSequence => { GRP => "0054", ELEM => "0304", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1643
|
|
|
|
|
|
|
CalibrationDataSequence => { GRP => "0054", ELEM => "0306", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1644
|
|
|
|
|
|
|
EnergyWindowNumber => { GRP => "0054", ELEM => "0308", VR => "US", VM => "1", VERSION => "DICOM_2009"}, |
|
1645
|
|
|
|
|
|
|
ImageID => { GRP => "0054", ELEM => "0400", VR => "SH", VM => "1", VERSION => "DICOM_2009"}, |
|
1646
|
|
|
|
|
|
|
PatientOrientationCodeSequence => { GRP => "0054", ELEM => "0410", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1647
|
|
|
|
|
|
|
PatientOrientationModifierCodeSequence => { GRP => "0054", ELEM => "0412", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1648
|
|
|
|
|
|
|
PatientGantryRelationshipCodeSequence => { GRP => "0054", ELEM => "0414", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1649
|
|
|
|
|
|
|
SliceProgressionDirection => { GRP => "0054", ELEM => "0500", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1650
|
|
|
|
|
|
|
SeriesType => { GRP => "0054", ELEM => "1000", VR => "CS", VM => "2", VERSION => "DICOM_2009"}, |
|
1651
|
|
|
|
|
|
|
Units => { GRP => "0054", ELEM => "1001", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1652
|
|
|
|
|
|
|
CountsSource => { GRP => "0054", ELEM => "1002", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1653
|
|
|
|
|
|
|
ReprojectionMethod => { GRP => "0054", ELEM => "1004", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1654
|
|
|
|
|
|
|
RandomsCorrectionMethod => { GRP => "0054", ELEM => "1100", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1655
|
|
|
|
|
|
|
AttenuationCorrectionMethod => { GRP => "0054", ELEM => "1101", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
1656
|
|
|
|
|
|
|
DecayCorrection => { GRP => "0054", ELEM => "1102", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1657
|
|
|
|
|
|
|
ReconstructionMethod => { GRP => "0054", ELEM => "1103", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
1658
|
|
|
|
|
|
|
DetectorLinesOfResponseUsed => { GRP => "0054", ELEM => "1104", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
1659
|
|
|
|
|
|
|
ScatterCorrectionMethod => { GRP => "0054", ELEM => "1105", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
1660
|
|
|
|
|
|
|
AxialAcceptance => { GRP => "0054", ELEM => "1200", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
1661
|
|
|
|
|
|
|
AxialMash => { GRP => "0054", ELEM => "1201", VR => "IS", VM => "2", VERSION => "DICOM_2009"}, |
|
1662
|
|
|
|
|
|
|
TransverseMash => { GRP => "0054", ELEM => "1202", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
1663
|
|
|
|
|
|
|
DetectorElementSize => { GRP => "0054", ELEM => "1203", VR => "DS", VM => "2", VERSION => "DICOM_2009"}, |
|
1664
|
|
|
|
|
|
|
CoincidenceWindowWidth => { GRP => "0054", ELEM => "1210", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
1665
|
|
|
|
|
|
|
SecondaryCountsType => { GRP => "0054", ELEM => "1220", VR => "CS", VM => "1-n", VERSION => "DICOM_2009"}, |
|
1666
|
|
|
|
|
|
|
FrameReferenceTime => { GRP => "0054", ELEM => "1300", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
1667
|
|
|
|
|
|
|
PrimaryPromptsCountsAccumulated => { GRP => "0054", ELEM => "1310", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
1668
|
|
|
|
|
|
|
SecondaryCountsAccumulated => { GRP => "0054", ELEM => "1311", VR => "IS", VM => "1-n", VERSION => "DICOM_2009"}, |
|
1669
|
|
|
|
|
|
|
SliceSensitivityFactor => { GRP => "0054", ELEM => "1320", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
1670
|
|
|
|
|
|
|
DecayFactor => { GRP => "0054", ELEM => "1321", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
1671
|
|
|
|
|
|
|
DoseCalibrationFactor => { GRP => "0054", ELEM => "1322", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
1672
|
|
|
|
|
|
|
ScatterFractionFactor => { GRP => "0054", ELEM => "1323", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
1673
|
|
|
|
|
|
|
DeadTimeFactor => { GRP => "0054", ELEM => "1324", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
1674
|
|
|
|
|
|
|
ImageIndex => { GRP => "0054", ELEM => "1330", VR => "US", VM => "1", VERSION => "DICOM_2009"}, |
|
1675
|
|
|
|
|
|
|
HistogramSequence => { GRP => "0060", ELEM => "3000", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1676
|
|
|
|
|
|
|
HistogramNumberOfBins => { GRP => "0060", ELEM => "3002", VR => "US", VM => "1", VERSION => "DICOM_2009"}, |
|
1677
|
|
|
|
|
|
|
HistogramFirstBinValue => { GRP => "0060", ELEM => "3004", VR => "xs", VM => "1", VERSION => "DICOM_2009"}, |
|
1678
|
|
|
|
|
|
|
HistogramLastBinValue => { GRP => "0060", ELEM => "3006", VR => "xs", VM => "1", VERSION => "DICOM_2009"}, |
|
1679
|
|
|
|
|
|
|
HistogramBinWidth => { GRP => "0060", ELEM => "3008", VR => "US", VM => "1", VERSION => "DICOM_2009"}, |
|
1680
|
|
|
|
|
|
|
HistogramExplanation => { GRP => "0060", ELEM => "3010", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
1681
|
|
|
|
|
|
|
HistogramData => { GRP => "0060", ELEM => "3020", VR => "UL", VM => "1-n", VERSION => "DICOM_2009"}, |
|
1682
|
|
|
|
|
|
|
SegmentationType => { GRP => "0062", ELEM => "0001", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1683
|
|
|
|
|
|
|
SegmentSequence => { GRP => "0062", ELEM => "0002", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1684
|
|
|
|
|
|
|
SegmentedPropertyCategoryCodeSequence => { GRP => "0062", ELEM => "0003", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1685
|
|
|
|
|
|
|
SegmentNumber => { GRP => "0062", ELEM => "0004", VR => "US", VM => "1", VERSION => "DICOM_2009"}, |
|
1686
|
|
|
|
|
|
|
SegmentLabel => { GRP => "0062", ELEM => "0005", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
1687
|
|
|
|
|
|
|
SegmentDescription => { GRP => "0062", ELEM => "0006", VR => "ST", VM => "1", VERSION => "DICOM_2009"}, |
|
1688
|
|
|
|
|
|
|
SegmentAlgorithmType => { GRP => "0062", ELEM => "0008", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1689
|
|
|
|
|
|
|
SegmentAlgorithmName => { GRP => "0062", ELEM => "0009", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
1690
|
|
|
|
|
|
|
SegmentIdentificationSequence => { GRP => "0062", ELEM => "000A", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1691
|
|
|
|
|
|
|
ReferencedSegmentNumber => { GRP => "0062", ELEM => "000B", VR => "US", VM => "1-n", VERSION => "DICOM_2009"}, |
|
1692
|
|
|
|
|
|
|
RecommendedDisplayGrayscaleValue => { GRP => "0062", ELEM => "000C", VR => "US", VM => "1", VERSION => "DICOM_2009"}, |
|
1693
|
|
|
|
|
|
|
RecommendedDisplayCIELabValue => { GRP => "0062", ELEM => "000D", VR => "US", VM => "3", VERSION => "DICOM_2009"}, |
|
1694
|
|
|
|
|
|
|
MaximumFractionalValue => { GRP => "0062", ELEM => "000E", VR => "US", VM => "1", VERSION => "DICOM_2009"}, |
|
1695
|
|
|
|
|
|
|
SegmentedPropertyTypeCodeSequence => { GRP => "0062", ELEM => "000F", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1696
|
|
|
|
|
|
|
SegmentationFractionalType => { GRP => "0062", ELEM => "0010", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1697
|
|
|
|
|
|
|
DeformableRegistrationSequence => { GRP => "0064", ELEM => "0002", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1698
|
|
|
|
|
|
|
SourceFrameOfReferenceUID => { GRP => "0064", ELEM => "0003", VR => "UI", VM => "1", VERSION => "DICOM_2009"}, |
|
1699
|
|
|
|
|
|
|
DeformableRegistrationGridSequence => { GRP => "0064", ELEM => "0005", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1700
|
|
|
|
|
|
|
GridDimensions => { GRP => "0064", ELEM => "0007", VR => "UL", VM => "3", VERSION => "DICOM_2009"}, |
|
1701
|
|
|
|
|
|
|
GridResolution => { GRP => "0064", ELEM => "0008", VR => "FD", VM => "3", VERSION => "DICOM_2009"}, |
|
1702
|
|
|
|
|
|
|
VectorGridData => { GRP => "0064", ELEM => "0009", VR => "OF", VM => "1", VERSION => "DICOM_2009"}, |
|
1703
|
|
|
|
|
|
|
PreDeformationMatrixRegistrationSequence => { GRP => "0064", ELEM => "000F", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1704
|
|
|
|
|
|
|
PostDeformationMatrixRegistrationSequence => { GRP => "0064", ELEM => "0010", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1705
|
|
|
|
|
|
|
NumberOfSurfaces => { GRP => "0066", ELEM => "0001", VR => "UL", VM => "1", VERSION => "DICOM_2009"}, |
|
1706
|
|
|
|
|
|
|
SurfaceSequence => { GRP => "0066", ELEM => "0002", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1707
|
|
|
|
|
|
|
SurfaceNumber => { GRP => "0066", ELEM => "0003", VR => "UL", VM => "1", VERSION => "DICOM_2009"}, |
|
1708
|
|
|
|
|
|
|
SurfaceComments => { GRP => "0066", ELEM => "0004", VR => "LT", VM => "1", VERSION => "DICOM_2009"}, |
|
1709
|
|
|
|
|
|
|
SurfaceProcessing => { GRP => "0066", ELEM => "0009", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1710
|
|
|
|
|
|
|
SurfaceProcessingRatio => { GRP => "0066", ELEM => "000A", VR => "FL", VM => "1", VERSION => "DICOM_2009"}, |
|
1711
|
|
|
|
|
|
|
SurfaceProcessingDescription => { GRP => "0066", ELEM => "000B", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
1712
|
|
|
|
|
|
|
RecommendedPresentationOpacity => { GRP => "0066", ELEM => "000C", VR => "FL", VM => "1", VERSION => "DICOM_2009"}, |
|
1713
|
|
|
|
|
|
|
RecommendedPresentationType => { GRP => "0066", ELEM => "000D", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1714
|
|
|
|
|
|
|
FiniteVolume => { GRP => "0066", ELEM => "000E", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1715
|
|
|
|
|
|
|
Manifold => { GRP => "0066", ELEM => "0010", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1716
|
|
|
|
|
|
|
SurfacePointsSequence => { GRP => "0066", ELEM => "0011", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1717
|
|
|
|
|
|
|
SurfacePointsNormalsSequence => { GRP => "0066", ELEM => "0012", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1718
|
|
|
|
|
|
|
SurfaceMeshPrimitivesSequence => { GRP => "0066", ELEM => "0013", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1719
|
|
|
|
|
|
|
NumberOfSurfacePoints => { GRP => "0066", ELEM => "0015", VR => "UL", VM => "1", VERSION => "DICOM_2009"}, |
|
1720
|
|
|
|
|
|
|
PointCoordinatesData => { GRP => "0066", ELEM => "0016", VR => "OF", VM => "1", VERSION => "DICOM_2009"}, |
|
1721
|
|
|
|
|
|
|
PointPositionAccuracy => { GRP => "0066", ELEM => "0017", VR => "FL", VM => "3", VERSION => "DICOM_2009"}, |
|
1722
|
|
|
|
|
|
|
MeanPointDistance => { GRP => "0066", ELEM => "0018", VR => "FL", VM => "1", VERSION => "DICOM_2009"}, |
|
1723
|
|
|
|
|
|
|
MaximumPointDistance => { GRP => "0066", ELEM => "0019", VR => "FL", VM => "1", VERSION => "DICOM_2009"}, |
|
1724
|
|
|
|
|
|
|
PointsBoundingBoxCoordinates => { GRP => "0066", ELEM => "001A", VR => "FL", VM => "6", VERSION => "DICOM_2009"}, |
|
1725
|
|
|
|
|
|
|
AxisOfRotation => { GRP => "0066", ELEM => "001B", VR => "FL", VM => "3", VERSION => "DICOM_2009"}, |
|
1726
|
|
|
|
|
|
|
CenterOfRotation => { GRP => "0066", ELEM => "001C", VR => "FL", VM => "3", VERSION => "DICOM_2009"}, |
|
1727
|
|
|
|
|
|
|
NumberOfVectors => { GRP => "0066", ELEM => "001E", VR => "UL", VM => "1", VERSION => "DICOM_2009"}, |
|
1728
|
|
|
|
|
|
|
VectorDimensionality => { GRP => "0066", ELEM => "001F", VR => "US", VM => "1", VERSION => "DICOM_2009"}, |
|
1729
|
|
|
|
|
|
|
VectorAccuracy => { GRP => "0066", ELEM => "0020", VR => "FL", VM => "1-n", VERSION => "DICOM_2009"}, |
|
1730
|
|
|
|
|
|
|
VectorCoordinateData => { GRP => "0066", ELEM => "0021", VR => "OF", VM => "1", VERSION => "DICOM_2009"}, |
|
1731
|
|
|
|
|
|
|
TrianglePointIndexList => { GRP => "0066", ELEM => "0023", VR => "OW", VM => "1", VERSION => "DICOM_2009"}, |
|
1732
|
|
|
|
|
|
|
EdgePointIndexList => { GRP => "0066", ELEM => "0024", VR => "OW", VM => "1", VERSION => "DICOM_2009"}, |
|
1733
|
|
|
|
|
|
|
VertexPointIndexList => { GRP => "0066", ELEM => "0025", VR => "OW", VM => "1", VERSION => "DICOM_2009"}, |
|
1734
|
|
|
|
|
|
|
TriangleStripSequence => { GRP => "0066", ELEM => "0026", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1735
|
|
|
|
|
|
|
TriangleFanSequence => { GRP => "0066", ELEM => "0027", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1736
|
|
|
|
|
|
|
LineSequence => { GRP => "0066", ELEM => "0028", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1737
|
|
|
|
|
|
|
PrimitivePointIndexList => { GRP => "0066", ELEM => "0029", VR => "OW", VM => "1", VERSION => "DICOM_2009"}, |
|
1738
|
|
|
|
|
|
|
SurfaceCount => { GRP => "0066", ELEM => "002A", VR => "UL", VM => "1", VERSION => "DICOM_2009"}, |
|
1739
|
|
|
|
|
|
|
ReferencedSurfaceSequence => { GRP => "0066", ELEM => "002B", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1740
|
|
|
|
|
|
|
ReferencedSurfaceNumber => { GRP => "0066", ELEM => "002C", VR => "UL", VM => "1", VERSION => "DICOM_2009"}, |
|
1741
|
|
|
|
|
|
|
SegmentSurfaceGenerationAlgorithmIdentificationSequence => { GRP => "0066", ELEM => "002D", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1742
|
|
|
|
|
|
|
SegmentSurfaceSourceInstanceSequence => { GRP => "0066", ELEM => "002E", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1743
|
|
|
|
|
|
|
AlgorithmFamilyCodeSequence => { GRP => "0066", ELEM => "002F", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1744
|
|
|
|
|
|
|
AlgorithmNameCodeSequence => { GRP => "0066", ELEM => "0030", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1745
|
|
|
|
|
|
|
AlgorithmVersion => { GRP => "0066", ELEM => "0031", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
1746
|
|
|
|
|
|
|
AlgorithmParameters => { GRP => "0066", ELEM => "0032", VR => "LT", VM => "1", VERSION => "DICOM_2009"}, |
|
1747
|
|
|
|
|
|
|
FacetSequence => { GRP => "0066", ELEM => "0034", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1748
|
|
|
|
|
|
|
SurfaceProcessingAlgorithmIdentificationSequence => { GRP => "0066", ELEM => "0035", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1749
|
|
|
|
|
|
|
AlgorithmName => { GRP => "0066", ELEM => "0036", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
1750
|
|
|
|
|
|
|
GraphicAnnotationSequence => { GRP => "0070", ELEM => "0001", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1751
|
|
|
|
|
|
|
GraphicLayer => { GRP => "0070", ELEM => "0002", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1752
|
|
|
|
|
|
|
BoundingBoxAnnotationUnits => { GRP => "0070", ELEM => "0003", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1753
|
|
|
|
|
|
|
AnchorPointAnnotationUnits => { GRP => "0070", ELEM => "0004", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1754
|
|
|
|
|
|
|
GraphicAnnotationUnits => { GRP => "0070", ELEM => "0005", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1755
|
|
|
|
|
|
|
UnformattedTextValue => { GRP => "0070", ELEM => "0006", VR => "ST", VM => "1", VERSION => "DICOM_2009"}, |
|
1756
|
|
|
|
|
|
|
TextObjectSequence => { GRP => "0070", ELEM => "0008", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1757
|
|
|
|
|
|
|
GraphicObjectSequence => { GRP => "0070", ELEM => "0009", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1758
|
|
|
|
|
|
|
BoundingBoxTopLeftHandCorner => { GRP => "0070", ELEM => "0010", VR => "FL", VM => "2", VERSION => "DICOM_2009"}, |
|
1759
|
|
|
|
|
|
|
BoundingBoxBottomRightHandCorner => { GRP => "0070", ELEM => "0011", VR => "FL", VM => "2", VERSION => "DICOM_2009"}, |
|
1760
|
|
|
|
|
|
|
BoundingBoxTextHorizontalJustification => { GRP => "0070", ELEM => "0012", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1761
|
|
|
|
|
|
|
AnchorPoint => { GRP => "0070", ELEM => "0014", VR => "FL", VM => "2", VERSION => "DICOM_2009"}, |
|
1762
|
|
|
|
|
|
|
AnchorPointVisibility => { GRP => "0070", ELEM => "0015", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1763
|
|
|
|
|
|
|
GraphicDimensions => { GRP => "0070", ELEM => "0020", VR => "US", VM => "1", VERSION => "DICOM_2009"}, |
|
1764
|
|
|
|
|
|
|
NumberOfGraphicPoints => { GRP => "0070", ELEM => "0021", VR => "US", VM => "1", VERSION => "DICOM_2009"}, |
|
1765
|
|
|
|
|
|
|
GraphicData => { GRP => "0070", ELEM => "0022", VR => "FL", VM => "2-n", VERSION => "DICOM_2009"}, |
|
1766
|
|
|
|
|
|
|
GraphicType => { GRP => "0070", ELEM => "0023", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1767
|
|
|
|
|
|
|
GraphicFilled => { GRP => "0070", ELEM => "0024", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1768
|
|
|
|
|
|
|
ImageHorizontalFlip => { GRP => "0070", ELEM => "0041", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1769
|
|
|
|
|
|
|
ImageRotation => { GRP => "0070", ELEM => "0042", VR => "US", VM => "1", VERSION => "DICOM_2009"}, |
|
1770
|
|
|
|
|
|
|
DisplayedAreaTopLeftHandCorner => { GRP => "0070", ELEM => "0052", VR => "SL", VM => "2", VERSION => "DICOM_2009"}, |
|
1771
|
|
|
|
|
|
|
DisplayedAreaBottomRightHandCorner => { GRP => "0070", ELEM => "0053", VR => "SL", VM => "2", VERSION => "DICOM_2009"}, |
|
1772
|
|
|
|
|
|
|
DisplayedAreaSelectionSequence => { GRP => "0070", ELEM => "005A", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1773
|
|
|
|
|
|
|
GraphicLayerSequence => { GRP => "0070", ELEM => "0060", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1774
|
|
|
|
|
|
|
GraphicLayerOrder => { GRP => "0070", ELEM => "0062", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
1775
|
|
|
|
|
|
|
GraphicLayerRecommendedDisplayGrayscaleValue => { GRP => "0070", ELEM => "0066", VR => "US", VM => "1", VERSION => "DICOM_2009"}, |
|
1776
|
|
|
|
|
|
|
GraphicLayerDescription => { GRP => "0070", ELEM => "0068", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
1777
|
|
|
|
|
|
|
ContentLabel => { GRP => "0070", ELEM => "0080", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1778
|
|
|
|
|
|
|
ContentDescription => { GRP => "0070", ELEM => "0081", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
1779
|
|
|
|
|
|
|
PresentationCreationDate => { GRP => "0070", ELEM => "0082", VR => "DA", VM => "1", VERSION => "DICOM_2009"}, |
|
1780
|
|
|
|
|
|
|
PresentationCreationTime => { GRP => "0070", ELEM => "0083", VR => "TM", VM => "1", VERSION => "DICOM_2009"}, |
|
1781
|
|
|
|
|
|
|
ContentCreatorName => { GRP => "0070", ELEM => "0084", VR => "PN", VM => "1", VERSION => "DICOM_2009"}, |
|
1782
|
|
|
|
|
|
|
ContentCreatorIdentificationCodeSequence => { GRP => "0070", ELEM => "0086", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1783
|
|
|
|
|
|
|
AlternateContentDescriptionSequence => { GRP => "0070", ELEM => "0087", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1784
|
|
|
|
|
|
|
PresentationSizeMode => { GRP => "0070", ELEM => "0100", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1785
|
|
|
|
|
|
|
PresentationPixelSpacing => { GRP => "0070", ELEM => "0101", VR => "DS", VM => "2", VERSION => "DICOM_2009"}, |
|
1786
|
|
|
|
|
|
|
PresentationPixelAspectRatio => { GRP => "0070", ELEM => "0102", VR => "IS", VM => "2", VERSION => "DICOM_2009"}, |
|
1787
|
|
|
|
|
|
|
PresentationPixelMagnificationRatio => { GRP => "0070", ELEM => "0103", VR => "FL", VM => "1", VERSION => "DICOM_2009"}, |
|
1788
|
|
|
|
|
|
|
ShapeType => { GRP => "0070", ELEM => "0306", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1789
|
|
|
|
|
|
|
RegistrationSequence => { GRP => "0070", ELEM => "0308", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1790
|
|
|
|
|
|
|
MatrixRegistrationSequence => { GRP => "0070", ELEM => "0309", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1791
|
|
|
|
|
|
|
MatrixSequence => { GRP => "0070", ELEM => "030A", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1792
|
|
|
|
|
|
|
FrameOfReferenceTransformationMatrixType => { GRP => "0070", ELEM => "030C", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1793
|
|
|
|
|
|
|
RegistrationTypeCodeSequence => { GRP => "0070", ELEM => "030D", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1794
|
|
|
|
|
|
|
FiducialDescription => { GRP => "0070", ELEM => "030F", VR => "ST", VM => "1", VERSION => "DICOM_2009"}, |
|
1795
|
|
|
|
|
|
|
FiducialIdentifier => { GRP => "0070", ELEM => "0310", VR => "SH", VM => "1", VERSION => "DICOM_2009"}, |
|
1796
|
|
|
|
|
|
|
FiducialIdentifierCodeSequence => { GRP => "0070", ELEM => "0311", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1797
|
|
|
|
|
|
|
ContourUncertaintyRadius => { GRP => "0070", ELEM => "0312", VR => "FD", VM => "1", VERSION => "DICOM_2009"}, |
|
1798
|
|
|
|
|
|
|
UsedFiducialsSequence => { GRP => "0070", ELEM => "0314", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1799
|
|
|
|
|
|
|
GraphicCoordinatesDataSequence => { GRP => "0070", ELEM => "0318", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1800
|
|
|
|
|
|
|
FiducialUID => { GRP => "0070", ELEM => "031A", VR => "UI", VM => "1", VERSION => "DICOM_2009"}, |
|
1801
|
|
|
|
|
|
|
FiducialSetSequence => { GRP => "0070", ELEM => "031C", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1802
|
|
|
|
|
|
|
FiducialSequence => { GRP => "0070", ELEM => "031E", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1803
|
|
|
|
|
|
|
GraphicLayerRecommendedDisplayCIELabValue => { GRP => "0070", ELEM => "0401", VR => "US", VM => "3", VERSION => "DICOM_2009"}, |
|
1804
|
|
|
|
|
|
|
BlendingSequence => { GRP => "0070", ELEM => "0402", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1805
|
|
|
|
|
|
|
RelativeOpacity => { GRP => "0070", ELEM => "0403", VR => "FL", VM => "1", VERSION => "DICOM_2009"}, |
|
1806
|
|
|
|
|
|
|
ReferencedSpatialRegistrationSequence => { GRP => "0070", ELEM => "0404", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1807
|
|
|
|
|
|
|
BlendingPosition => { GRP => "0070", ELEM => "0405", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1808
|
|
|
|
|
|
|
HangingProtocolName => { GRP => "0072", ELEM => "0002", VR => "SH", VM => "1", VERSION => "DICOM_2009"}, |
|
1809
|
|
|
|
|
|
|
HangingProtocolDescription => { GRP => "0072", ELEM => "0004", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
1810
|
|
|
|
|
|
|
HangingProtocolLevel => { GRP => "0072", ELEM => "0006", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1811
|
|
|
|
|
|
|
HangingProtocolCreator => { GRP => "0072", ELEM => "0008", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
1812
|
|
|
|
|
|
|
HangingProtocolCreationDateTime => { GRP => "0072", ELEM => "000A", VR => "DT", VM => "1", VERSION => "DICOM_2009"}, |
|
1813
|
|
|
|
|
|
|
HangingProtocolDefinitionSequence => { GRP => "0072", ELEM => "000C", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1814
|
|
|
|
|
|
|
HangingProtocolUserIdentificationCodeSequence => { GRP => "0072", ELEM => "000E", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1815
|
|
|
|
|
|
|
HangingProtocolUserGroupName => { GRP => "0072", ELEM => "0010", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
1816
|
|
|
|
|
|
|
SourceHangingProtocolSequence => { GRP => "0072", ELEM => "0012", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1817
|
|
|
|
|
|
|
NumberOfPriorsReferenced => { GRP => "0072", ELEM => "0014", VR => "US", VM => "1", VERSION => "DICOM_2009"}, |
|
1818
|
|
|
|
|
|
|
ImageSetsSequence => { GRP => "0072", ELEM => "0020", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1819
|
|
|
|
|
|
|
ImageSetSelectorSequence => { GRP => "0072", ELEM => "0022", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1820
|
|
|
|
|
|
|
ImageSetSelectorUsageFlag => { GRP => "0072", ELEM => "0024", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1821
|
|
|
|
|
|
|
SelectorAttribute => { GRP => "0072", ELEM => "0026", VR => "AT", VM => "1", VERSION => "DICOM_2009"}, |
|
1822
|
|
|
|
|
|
|
SelectorValueNumber => { GRP => "0072", ELEM => "0028", VR => "US", VM => "1", VERSION => "DICOM_2009"}, |
|
1823
|
|
|
|
|
|
|
TimeBasedImageSetsSequence => { GRP => "0072", ELEM => "0030", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1824
|
|
|
|
|
|
|
ImageSetNumber => { GRP => "0072", ELEM => "0032", VR => "US", VM => "1", VERSION => "DICOM_2009"}, |
|
1825
|
|
|
|
|
|
|
ImageSetSelectorCategory => { GRP => "0072", ELEM => "0034", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1826
|
|
|
|
|
|
|
RelativeTime => { GRP => "0072", ELEM => "0038", VR => "US", VM => "2", VERSION => "DICOM_2009"}, |
|
1827
|
|
|
|
|
|
|
RelativeTimeUnits => { GRP => "0072", ELEM => "003A", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1828
|
|
|
|
|
|
|
AbstractPriorValue => { GRP => "0072", ELEM => "003C", VR => "SS", VM => "2", VERSION => "DICOM_2009"}, |
|
1829
|
|
|
|
|
|
|
AbstractPriorCodeSequence => { GRP => "0072", ELEM => "003E", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1830
|
|
|
|
|
|
|
ImageSetLabel => { GRP => "0072", ELEM => "0040", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
1831
|
|
|
|
|
|
|
SelectorAttributeVR => { GRP => "0072", ELEM => "0050", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1832
|
|
|
|
|
|
|
SelectorSequencePointer => { GRP => "0072", ELEM => "0052", VR => "AT", VM => "1", VERSION => "DICOM_2009"}, |
|
1833
|
|
|
|
|
|
|
SelectorSequencePointerPrivateCreator => { GRP => "0072", ELEM => "0054", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
1834
|
|
|
|
|
|
|
SelectorAttributePrivateCreator => { GRP => "0072", ELEM => "0056", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
1835
|
|
|
|
|
|
|
SelectorATValue => { GRP => "0072", ELEM => "0060", VR => "AT", VM => "1-n", VERSION => "DICOM_2009"}, |
|
1836
|
|
|
|
|
|
|
SelectorCSValue => { GRP => "0072", ELEM => "0062", VR => "CS", VM => "1-n", VERSION => "DICOM_2009"}, |
|
1837
|
|
|
|
|
|
|
SelectorISValue => { GRP => "0072", ELEM => "0064", VR => "IS", VM => "1-n", VERSION => "DICOM_2009"}, |
|
1838
|
|
|
|
|
|
|
SelectorLOValue => { GRP => "0072", ELEM => "0066", VR => "LO", VM => "1-n", VERSION => "DICOM_2009"}, |
|
1839
|
|
|
|
|
|
|
SelectorLTValue => { GRP => "0072", ELEM => "0068", VR => "LT", VM => "1", VERSION => "DICOM_2009"}, |
|
1840
|
|
|
|
|
|
|
SelectorPNValue => { GRP => "0072", ELEM => "006A", VR => "PN", VM => "1-n", VERSION => "DICOM_2009"}, |
|
1841
|
|
|
|
|
|
|
SelectorSHValue => { GRP => "0072", ELEM => "006C", VR => "SH", VM => "1-n", VERSION => "DICOM_2009"}, |
|
1842
|
|
|
|
|
|
|
SelectorSTValue => { GRP => "0072", ELEM => "006E", VR => "ST", VM => "1", VERSION => "DICOM_2009"}, |
|
1843
|
|
|
|
|
|
|
SelectorUTValue => { GRP => "0072", ELEM => "0070", VR => "UT", VM => "1", VERSION => "DICOM_2009"}, |
|
1844
|
|
|
|
|
|
|
SelectorDSValue => { GRP => "0072", ELEM => "0072", VR => "DS", VM => "1-n", VERSION => "DICOM_2009"}, |
|
1845
|
|
|
|
|
|
|
SelectorFDValue => { GRP => "0072", ELEM => "0074", VR => "FD", VM => "1-n", VERSION => "DICOM_2009"}, |
|
1846
|
|
|
|
|
|
|
SelectorFLValue => { GRP => "0072", ELEM => "0076", VR => "FL", VM => "1-n", VERSION => "DICOM_2009"}, |
|
1847
|
|
|
|
|
|
|
SelectorULValue => { GRP => "0072", ELEM => "0078", VR => "UL", VM => "1-n", VERSION => "DICOM_2009"}, |
|
1848
|
|
|
|
|
|
|
SelectorUSValue => { GRP => "0072", ELEM => "007A", VR => "US", VM => "1-n", VERSION => "DICOM_2009"}, |
|
1849
|
|
|
|
|
|
|
SelectorSLValue => { GRP => "0072", ELEM => "007C", VR => "SL", VM => "1-n", VERSION => "DICOM_2009"}, |
|
1850
|
|
|
|
|
|
|
SelectorSSValue => { GRP => "0072", ELEM => "007E", VR => "SS", VM => "1-n", VERSION => "DICOM_2009"}, |
|
1851
|
|
|
|
|
|
|
SelectorCodeSequenceValue => { GRP => "0072", ELEM => "0080", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1852
|
|
|
|
|
|
|
NumberOfScreens => { GRP => "0072", ELEM => "0100", VR => "US", VM => "1", VERSION => "DICOM_2009"}, |
|
1853
|
|
|
|
|
|
|
NominalScreenDefinitionSequence => { GRP => "0072", ELEM => "0102", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1854
|
|
|
|
|
|
|
NumberOfVerticalPixels => { GRP => "0072", ELEM => "0104", VR => "US", VM => "1", VERSION => "DICOM_2009"}, |
|
1855
|
|
|
|
|
|
|
NumberOfHorizontalPixels => { GRP => "0072", ELEM => "0106", VR => "US", VM => "1", VERSION => "DICOM_2009"}, |
|
1856
|
|
|
|
|
|
|
DisplayEnvironmentSpatialPosition => { GRP => "0072", ELEM => "0108", VR => "FD", VM => "4", VERSION => "DICOM_2009"}, |
|
1857
|
|
|
|
|
|
|
ScreenMinimumGrayscaleBitDepth => { GRP => "0072", ELEM => "010A", VR => "US", VM => "1", VERSION => "DICOM_2009"}, |
|
1858
|
|
|
|
|
|
|
ScreenMinimumColorBitDepth => { GRP => "0072", ELEM => "010C", VR => "US", VM => "1", VERSION => "DICOM_2009"}, |
|
1859
|
|
|
|
|
|
|
ApplicationMaximumRepaintTime => { GRP => "0072", ELEM => "010E", VR => "US", VM => "1", VERSION => "DICOM_2009"}, |
|
1860
|
|
|
|
|
|
|
DisplaySetsSequence => { GRP => "0072", ELEM => "0200", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1861
|
|
|
|
|
|
|
DisplaySetNumber => { GRP => "0072", ELEM => "0202", VR => "US", VM => "1", VERSION => "DICOM_2009"}, |
|
1862
|
|
|
|
|
|
|
DisplaySetLabel => { GRP => "0072", ELEM => "0203", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
1863
|
|
|
|
|
|
|
DisplaySetPresentationGroup => { GRP => "0072", ELEM => "0204", VR => "US", VM => "1", VERSION => "DICOM_2009"}, |
|
1864
|
|
|
|
|
|
|
DisplaySetPresentationGroupDescription => { GRP => "0072", ELEM => "0206", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
1865
|
|
|
|
|
|
|
PartialDataDisplayHandling => { GRP => "0072", ELEM => "0208", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1866
|
|
|
|
|
|
|
SynchronizedScrollingSequence => { GRP => "0072", ELEM => "0210", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1867
|
|
|
|
|
|
|
DisplaySetScrollingGroup => { GRP => "0072", ELEM => "0212", VR => "US", VM => "2-n", VERSION => "DICOM_2009"}, |
|
1868
|
|
|
|
|
|
|
NavigationIndicatorSequence => { GRP => "0072", ELEM => "0214", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1869
|
|
|
|
|
|
|
NavigationDisplaySet => { GRP => "0072", ELEM => "0216", VR => "US", VM => "1", VERSION => "DICOM_2009"}, |
|
1870
|
|
|
|
|
|
|
ReferenceDisplaySets => { GRP => "0072", ELEM => "0218", VR => "US", VM => "1-n", VERSION => "DICOM_2009"}, |
|
1871
|
|
|
|
|
|
|
ImageBoxesSequence => { GRP => "0072", ELEM => "0300", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1872
|
|
|
|
|
|
|
ImageBoxNumber => { GRP => "0072", ELEM => "0302", VR => "US", VM => "1", VERSION => "DICOM_2009"}, |
|
1873
|
|
|
|
|
|
|
ImageBoxLayoutType => { GRP => "0072", ELEM => "0304", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1874
|
|
|
|
|
|
|
ImageBoxTileHorizontalDimension => { GRP => "0072", ELEM => "0306", VR => "US", VM => "1", VERSION => "DICOM_2009"}, |
|
1875
|
|
|
|
|
|
|
ImageBoxTileVerticalDimension => { GRP => "0072", ELEM => "0308", VR => "US", VM => "1", VERSION => "DICOM_2009"}, |
|
1876
|
|
|
|
|
|
|
ImageBoxScrollDirection => { GRP => "0072", ELEM => "0310", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1877
|
|
|
|
|
|
|
ImageBoxSmallScrollType => { GRP => "0072", ELEM => "0312", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1878
|
|
|
|
|
|
|
ImageBoxSmallScrollAmount => { GRP => "0072", ELEM => "0314", VR => "US", VM => "1", VERSION => "DICOM_2009"}, |
|
1879
|
|
|
|
|
|
|
ImageBoxLargeScrollType => { GRP => "0072", ELEM => "0316", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1880
|
|
|
|
|
|
|
ImageBoxLargeScrollAmount => { GRP => "0072", ELEM => "0318", VR => "US", VM => "1", VERSION => "DICOM_2009"}, |
|
1881
|
|
|
|
|
|
|
ImageBoxOverlapPriority => { GRP => "0072", ELEM => "0320", VR => "US", VM => "1", VERSION => "DICOM_2009"}, |
|
1882
|
|
|
|
|
|
|
CineRelativeToRealTime => { GRP => "0072", ELEM => "0330", VR => "FD", VM => "1", VERSION => "DICOM_2009"}, |
|
1883
|
|
|
|
|
|
|
FilterOperationsSequence => { GRP => "0072", ELEM => "0400", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1884
|
|
|
|
|
|
|
FilterByCategory => { GRP => "0072", ELEM => "0402", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1885
|
|
|
|
|
|
|
FilterByAttributePresence => { GRP => "0072", ELEM => "0404", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1886
|
|
|
|
|
|
|
FilterByOperator => { GRP => "0072", ELEM => "0406", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1887
|
|
|
|
|
|
|
StructuredDisplayBackgroundCIELabValue => { GRP => "0072", ELEM => "0420", VR => "US", VM => "3", VERSION => "DICOM_2009"}, |
|
1888
|
|
|
|
|
|
|
EmptyImageBoxCIELabValue => { GRP => "0072", ELEM => "0421", VR => "US", VM => "3", VERSION => "DICOM_2009"}, |
|
1889
|
|
|
|
|
|
|
StructuredDisplayImageBoxSequence => { GRP => "0072", ELEM => "0422", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1890
|
|
|
|
|
|
|
StructuredDisplayTextBoxSequence => { GRP => "0072", ELEM => "0424", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1891
|
|
|
|
|
|
|
ReferencedFirstFrameSequence => { GRP => "0072", ELEM => "0427", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1892
|
|
|
|
|
|
|
ImageBoxSynchronizationSequence => { GRP => "0072", ELEM => "0430", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1893
|
|
|
|
|
|
|
SynchronizedImageBoxList => { GRP => "0072", ELEM => "0432", VR => "US", VM => "2-n", VERSION => "DICOM_2009"}, |
|
1894
|
|
|
|
|
|
|
TypeOfSynchronization => { GRP => "0072", ELEM => "0434", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1895
|
|
|
|
|
|
|
BlendingOperationType => { GRP => "0072", ELEM => "0500", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1896
|
|
|
|
|
|
|
ReformattingOperationType => { GRP => "0072", ELEM => "0510", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1897
|
|
|
|
|
|
|
ReformattingThickness => { GRP => "0072", ELEM => "0512", VR => "FD", VM => "1", VERSION => "DICOM_2009"}, |
|
1898
|
|
|
|
|
|
|
ReformattingInterval => { GRP => "0072", ELEM => "0514", VR => "FD", VM => "1", VERSION => "DICOM_2009"}, |
|
1899
|
|
|
|
|
|
|
ReformattingOperationInitialViewDirection => { GRP => "0072", ELEM => "0516", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1900
|
|
|
|
|
|
|
ThreeDRenderingType => { GRP => "0072", ELEM => "0520", VR => "CS", VM => "1-n", VERSION => "DICOM_2009"}, |
|
1901
|
|
|
|
|
|
|
SortingOperationsSequence => { GRP => "0072", ELEM => "0600", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1902
|
|
|
|
|
|
|
SortByCategory => { GRP => "0072", ELEM => "0602", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1903
|
|
|
|
|
|
|
SortingDirection => { GRP => "0072", ELEM => "0604", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1904
|
|
|
|
|
|
|
DisplaySetPatientOrientation => { GRP => "0072", ELEM => "0700", VR => "CS", VM => "2", VERSION => "DICOM_2009"}, |
|
1905
|
|
|
|
|
|
|
VOIType => { GRP => "0072", ELEM => "0702", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1906
|
|
|
|
|
|
|
PseudoColorType => { GRP => "0072", ELEM => "0704", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1907
|
|
|
|
|
|
|
ShowGrayscaleInverted => { GRP => "0072", ELEM => "0706", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1908
|
|
|
|
|
|
|
ShowImageTrueSizeFlag => { GRP => "0072", ELEM => "0710", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1909
|
|
|
|
|
|
|
ShowGraphicAnnotationFlag => { GRP => "0072", ELEM => "0712", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1910
|
|
|
|
|
|
|
ShowPatientDemographicsFlag => { GRP => "0072", ELEM => "0714", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1911
|
|
|
|
|
|
|
ShowAcquisitionTechniquesFlag => { GRP => "0072", ELEM => "0716", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1912
|
|
|
|
|
|
|
DisplaySetHorizontalJustification => { GRP => "0072", ELEM => "0717", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1913
|
|
|
|
|
|
|
DisplaySetVerticalJustification => { GRP => "0072", ELEM => "0718", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1914
|
|
|
|
|
|
|
UnifiedProcedureStepState => { GRP => "0074", ELEM => "1000", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1915
|
|
|
|
|
|
|
UnifiedProcedureStepProgressInformationSequence => { GRP => "0074", ELEM => "1002", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1916
|
|
|
|
|
|
|
UnifiedProcedureStepProgress => { GRP => "0074", ELEM => "1004", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
1917
|
|
|
|
|
|
|
UnifiedProcedureStepProgressDescription => { GRP => "0074", ELEM => "1006", VR => "ST", VM => "1", VERSION => "DICOM_2009"}, |
|
1918
|
|
|
|
|
|
|
UnifiedProcedureStepCommunicationsURISequence => { GRP => "0074", ELEM => "1008", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1919
|
|
|
|
|
|
|
ContactURI => { GRP => "0074", ELEM => "100A", VR => "ST", VM => "1", VERSION => "DICOM_2009"}, |
|
1920
|
|
|
|
|
|
|
ContactDisplayName => { GRP => "0074", ELEM => "100C", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
1921
|
|
|
|
|
|
|
UnifiedProcedureStepDiscontinuationReasonCodeSequence => { GRP => "0074", ELEM => "100E", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1922
|
|
|
|
|
|
|
BeamTaskSequence => { GRP => "0074", ELEM => "1020", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1923
|
|
|
|
|
|
|
BeamTaskType => { GRP => "0074", ELEM => "1022", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1924
|
|
|
|
|
|
|
BeamOrderIndex => { GRP => "0074", ELEM => "1024", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
1925
|
|
|
|
|
|
|
DeliveryVerificationImageSequence => { GRP => "0074", ELEM => "1030", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1926
|
|
|
|
|
|
|
VerificationImageTiming => { GRP => "0074", ELEM => "1032", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1927
|
|
|
|
|
|
|
DoubleExposureFlag => { GRP => "0074", ELEM => "1034", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1928
|
|
|
|
|
|
|
DoubleExposureOrdering => { GRP => "0074", ELEM => "1036", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1929
|
|
|
|
|
|
|
DoubleExposureMeterset => { GRP => "0074", ELEM => "1038", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
1930
|
|
|
|
|
|
|
DoubleExposureFieldDelta => { GRP => "0074", ELEM => "103A", VR => "DS", VM => "4", VERSION => "DICOM_2009"}, |
|
1931
|
|
|
|
|
|
|
RelatedReferenceRTImageSequence => { GRP => "0074", ELEM => "1040", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1932
|
|
|
|
|
|
|
GeneralMachineVerificationSequence => { GRP => "0074", ELEM => "1042", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1933
|
|
|
|
|
|
|
ConventionalMachineVerificationSequence => { GRP => "0074", ELEM => "1044", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1934
|
|
|
|
|
|
|
IonMachineVerificationSequence => { GRP => "0074", ELEM => "1046", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1935
|
|
|
|
|
|
|
FailedAttributesSequence => { GRP => "0074", ELEM => "1048", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1936
|
|
|
|
|
|
|
OverriddenAttributesSequence => { GRP => "0074", ELEM => "104A", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1937
|
|
|
|
|
|
|
ConventionalControlPointVerificationSequence => { GRP => "0074", ELEM => "104C", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1938
|
|
|
|
|
|
|
IonControlPointVerificationSequence => { GRP => "0074", ELEM => "104E", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1939
|
|
|
|
|
|
|
AttributeOccurrenceSequence => { GRP => "0074", ELEM => "1050", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1940
|
|
|
|
|
|
|
AttributeOccurrencePointer => { GRP => "0074", ELEM => "1052", VR => "AT", VM => "1", VERSION => "DICOM_2009"}, |
|
1941
|
|
|
|
|
|
|
AttributeItemSelector => { GRP => "0074", ELEM => "1054", VR => "UL", VM => "1", VERSION => "DICOM_2009"}, |
|
1942
|
|
|
|
|
|
|
AttributeOccurrencePrivateCreator => { GRP => "0074", ELEM => "1056", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
1943
|
|
|
|
|
|
|
ScheduledProcedureStepPriority => { GRP => "0074", ELEM => "1200", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1944
|
|
|
|
|
|
|
WorklistLabel => { GRP => "0074", ELEM => "1202", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
1945
|
|
|
|
|
|
|
ProcedureStepLabel => { GRP => "0074", ELEM => "1204", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
1946
|
|
|
|
|
|
|
ScheduledProcessingParametersSequence => { GRP => "0074", ELEM => "1210", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1947
|
|
|
|
|
|
|
PerformedProcessingParametersSequence => { GRP => "0074", ELEM => "1212", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1948
|
|
|
|
|
|
|
UnifiedProcedureStepPerformedProcedureSequence => { GRP => "0074", ELEM => "1216", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1949
|
|
|
|
|
|
|
RelatedProcedureStepSequence => { GRP => "0074", ELEM => "1220", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1950
|
|
|
|
|
|
|
ProcedureStepRelationshipType => { GRP => "0074", ELEM => "1222", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
1951
|
|
|
|
|
|
|
DeletionLock => { GRP => "0074", ELEM => "1230", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
1952
|
|
|
|
|
|
|
ReceivingAE => { GRP => "0074", ELEM => "1234", VR => "AE", VM => "1", VERSION => "DICOM_2009"}, |
|
1953
|
|
|
|
|
|
|
RequestingAE => { GRP => "0074", ELEM => "1236", VR => "AE", VM => "1", VERSION => "DICOM_2009"}, |
|
1954
|
|
|
|
|
|
|
ReasonForCancellation => { GRP => "0074", ELEM => "1238", VR => "LT", VM => "1", VERSION => "DICOM_2009"}, |
|
1955
|
|
|
|
|
|
|
SCPStatus => { GRP => "0074", ELEM => "1242", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1956
|
|
|
|
|
|
|
SubscriptionListStatus => { GRP => "0074", ELEM => "1244", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1957
|
|
|
|
|
|
|
UnifiedProcedureStepListStatus => { GRP => "0074", ELEM => "1246", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1958
|
|
|
|
|
|
|
StorageMediaFileSetID => { GRP => "0088", ELEM => "0130", VR => "SH", VM => "1", VERSION => "DICOM_2009"}, |
|
1959
|
|
|
|
|
|
|
StorageMediaFileSetUID => { GRP => "0088", ELEM => "0140", VR => "UI", VM => "1", VERSION => "DICOM_2009"}, |
|
1960
|
|
|
|
|
|
|
IconImageSequence => { GRP => "0088", ELEM => "0200", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1961
|
|
|
|
|
|
|
SOPInstanceStatus => { GRP => "0100", ELEM => "0410", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1962
|
|
|
|
|
|
|
SOPAuthorizationDateTime => { GRP => "0100", ELEM => "0420", VR => "DT", VM => "1", VERSION => "DICOM_2009"}, |
|
1963
|
|
|
|
|
|
|
SOPAuthorizationComment => { GRP => "0100", ELEM => "0424", VR => "LT", VM => "1", VERSION => "DICOM_2009"}, |
|
1964
|
|
|
|
|
|
|
AuthorizationEquipmentCertificationNumber => { GRP => "0100", ELEM => "0426", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
1965
|
|
|
|
|
|
|
MACIDNumber => { GRP => "0400", ELEM => "0005", VR => "US", VM => "1", VERSION => "DICOM_2009"}, |
|
1966
|
|
|
|
|
|
|
MACCalculationTransferSyntaxUID => { GRP => "0400", ELEM => "0010", VR => "UI", VM => "1", VERSION => "DICOM_2009"}, |
|
1967
|
|
|
|
|
|
|
MACAlgorithm => { GRP => "0400", ELEM => "0015", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1968
|
|
|
|
|
|
|
DataElementsSigned => { GRP => "0400", ELEM => "0020", VR => "AT", VM => "1-n", VERSION => "DICOM_2009"}, |
|
1969
|
|
|
|
|
|
|
DigitalSignatureUID => { GRP => "0400", ELEM => "0100", VR => "UI", VM => "1", VERSION => "DICOM_2009"}, |
|
1970
|
|
|
|
|
|
|
DigitalSignatureDateTime => { GRP => "0400", ELEM => "0105", VR => "DT", VM => "1", VERSION => "DICOM_2009"}, |
|
1971
|
|
|
|
|
|
|
CertificateType => { GRP => "0400", ELEM => "0110", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1972
|
|
|
|
|
|
|
CertificateOfSigner => { GRP => "0400", ELEM => "0115", VR => "OB", VM => "1", VERSION => "DICOM_2009"}, |
|
1973
|
|
|
|
|
|
|
Signature => { GRP => "0400", ELEM => "0120", VR => "OB", VM => "1", VERSION => "DICOM_2009"}, |
|
1974
|
|
|
|
|
|
|
CertifiedTimestampType => { GRP => "0400", ELEM => "0305", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1975
|
|
|
|
|
|
|
CertifiedTimestamp => { GRP => "0400", ELEM => "0310", VR => "OB", VM => "1", VERSION => "DICOM_2009"}, |
|
1976
|
|
|
|
|
|
|
DigitalSignaturePurposeCodeSequence => { GRP => "0400", ELEM => "0401", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1977
|
|
|
|
|
|
|
ReferencedDigitalSignatureSequence => { GRP => "0400", ELEM => "0402", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1978
|
|
|
|
|
|
|
ReferencedSOPInstanceMACSequence => { GRP => "0400", ELEM => "0403", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1979
|
|
|
|
|
|
|
MAC => { GRP => "0400", ELEM => "0404", VR => "OB", VM => "1", VERSION => "DICOM_2009"}, |
|
1980
|
|
|
|
|
|
|
EncryptedAttributesSequence => { GRP => "0400", ELEM => "0500", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1981
|
|
|
|
|
|
|
EncryptedContentTransferSyntaxUID => { GRP => "0400", ELEM => "0510", VR => "UI", VM => "1", VERSION => "DICOM_2009"}, |
|
1982
|
|
|
|
|
|
|
EncryptedContent => { GRP => "0400", ELEM => "0520", VR => "OB", VM => "1", VERSION => "DICOM_2009"}, |
|
1983
|
|
|
|
|
|
|
ModifiedAttributesSequence => { GRP => "0400", ELEM => "0550", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1984
|
|
|
|
|
|
|
OriginalAttributesSequence => { GRP => "0400", ELEM => "0561", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1985
|
|
|
|
|
|
|
AttributeModificationDateTime => { GRP => "0400", ELEM => "0562", VR => "DT", VM => "1", VERSION => "DICOM_2009"}, |
|
1986
|
|
|
|
|
|
|
ModifyingSystem => { GRP => "0400", ELEM => "0563", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
1987
|
|
|
|
|
|
|
SourceOfPreviousValues => { GRP => "0400", ELEM => "0564", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
1988
|
|
|
|
|
|
|
ReasonForTheAttributeModification => { GRP => "0400", ELEM => "0565", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1989
|
|
|
|
|
|
|
NumberOfCopies => { GRP => "2000", ELEM => "0010", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
1990
|
|
|
|
|
|
|
PrinterConfigurationSequence => { GRP => "2000", ELEM => "001E", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
1991
|
|
|
|
|
|
|
PrintPriority => { GRP => "2000", ELEM => "0020", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1992
|
|
|
|
|
|
|
MediumType => { GRP => "2000", ELEM => "0030", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1993
|
|
|
|
|
|
|
FilmDestination => { GRP => "2000", ELEM => "0040", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
1994
|
|
|
|
|
|
|
FilmSessionLabel => { GRP => "2000", ELEM => "0050", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
1995
|
|
|
|
|
|
|
MemoryAllocation => { GRP => "2000", ELEM => "0060", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
1996
|
|
|
|
|
|
|
MaximumMemoryAllocation => { GRP => "2000", ELEM => "0061", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
1997
|
|
|
|
|
|
|
MemoryBitDepth => { GRP => "2000", ELEM => "00A0", VR => "US", VM => "1", VERSION => "DICOM_2009"}, |
|
1998
|
|
|
|
|
|
|
PrintingBitDepth => { GRP => "2000", ELEM => "00A1", VR => "US", VM => "1", VERSION => "DICOM_2009"}, |
|
1999
|
|
|
|
|
|
|
MediaInstalledSequence => { GRP => "2000", ELEM => "00A2", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
2000
|
|
|
|
|
|
|
OtherMediaAvailableSequence => { GRP => "2000", ELEM => "00A4", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
2001
|
|
|
|
|
|
|
SupportedImageDisplayFormatsSequence => { GRP => "2000", ELEM => "00A8", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
2002
|
|
|
|
|
|
|
ReferencedFilmBoxSequence => { GRP => "2000", ELEM => "0500", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
2003
|
|
|
|
|
|
|
ImageDisplayFormat => { GRP => "2010", ELEM => "0010", VR => "ST", VM => "1", VERSION => "DICOM_2009"}, |
|
2004
|
|
|
|
|
|
|
AnnotationDisplayFormatID => { GRP => "2010", ELEM => "0030", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
2005
|
|
|
|
|
|
|
FilmOrientation => { GRP => "2010", ELEM => "0040", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
2006
|
|
|
|
|
|
|
FilmSizeID => { GRP => "2010", ELEM => "0050", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
2007
|
|
|
|
|
|
|
PrinterResolutionID => { GRP => "2010", ELEM => "0052", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
2008
|
|
|
|
|
|
|
DefaultPrinterResolutionID => { GRP => "2010", ELEM => "0054", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
2009
|
|
|
|
|
|
|
MagnificationType => { GRP => "2010", ELEM => "0060", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
2010
|
|
|
|
|
|
|
SmoothingType => { GRP => "2010", ELEM => "0080", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
2011
|
|
|
|
|
|
|
DefaultMagnificationType => { GRP => "2010", ELEM => "00A6", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
2012
|
|
|
|
|
|
|
OtherMagnificationTypesAvailable => { GRP => "2010", ELEM => "00A7", VR => "CS", VM => "1-n", VERSION => "DICOM_2009"}, |
|
2013
|
|
|
|
|
|
|
DefaultSmoothingType => { GRP => "2010", ELEM => "00A8", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
2014
|
|
|
|
|
|
|
OtherSmoothingTypesAvailable => { GRP => "2010", ELEM => "00A9", VR => "CS", VM => "1-n", VERSION => "DICOM_2009"}, |
|
2015
|
|
|
|
|
|
|
BorderDensity => { GRP => "2010", ELEM => "0100", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
2016
|
|
|
|
|
|
|
EmptyImageDensity => { GRP => "2010", ELEM => "0110", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
2017
|
|
|
|
|
|
|
MinDensity => { GRP => "2010", ELEM => "0120", VR => "US", VM => "1", VERSION => "DICOM_2009"}, |
|
2018
|
|
|
|
|
|
|
MaxDensity => { GRP => "2010", ELEM => "0130", VR => "US", VM => "1", VERSION => "DICOM_2009"}, |
|
2019
|
|
|
|
|
|
|
Trim => { GRP => "2010", ELEM => "0140", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
2020
|
|
|
|
|
|
|
ConfigurationInformation => { GRP => "2010", ELEM => "0150", VR => "ST", VM => "1", VERSION => "DICOM_2009"}, |
|
2021
|
|
|
|
|
|
|
ConfigurationInformationDescription => { GRP => "2010", ELEM => "0152", VR => "LT", VM => "1", VERSION => "DICOM_2009"}, |
|
2022
|
|
|
|
|
|
|
MaximumCollatedFilms => { GRP => "2010", ELEM => "0154", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
2023
|
|
|
|
|
|
|
Illumination => { GRP => "2010", ELEM => "015E", VR => "US", VM => "1", VERSION => "DICOM_2009"}, |
|
2024
|
|
|
|
|
|
|
ReflectedAmbientLight => { GRP => "2010", ELEM => "0160", VR => "US", VM => "1", VERSION => "DICOM_2009"}, |
|
2025
|
|
|
|
|
|
|
PrinterPixelSpacing => { GRP => "2010", ELEM => "0376", VR => "DS", VM => "2", VERSION => "DICOM_2009"}, |
|
2026
|
|
|
|
|
|
|
ReferencedFilmSessionSequence => { GRP => "2010", ELEM => "0500", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
2027
|
|
|
|
|
|
|
ReferencedImageBoxSequence => { GRP => "2010", ELEM => "0510", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
2028
|
|
|
|
|
|
|
ReferencedBasicAnnotationBoxSequence => { GRP => "2010", ELEM => "0520", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
2029
|
|
|
|
|
|
|
ImageBoxPosition => { GRP => "2020", ELEM => "0010", VR => "US", VM => "1", VERSION => "DICOM_2009"}, |
|
2030
|
|
|
|
|
|
|
Polarity => { GRP => "2020", ELEM => "0020", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
2031
|
|
|
|
|
|
|
RequestedImageSize => { GRP => "2020", ELEM => "0030", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
2032
|
|
|
|
|
|
|
RequestedDecimateCropBehavior => { GRP => "2020", ELEM => "0040", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
2033
|
|
|
|
|
|
|
RequestedResolutionID => { GRP => "2020", ELEM => "0050", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
2034
|
|
|
|
|
|
|
RequestedImageSizeFlag => { GRP => "2020", ELEM => "00A0", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
2035
|
|
|
|
|
|
|
DecimateCropResult => { GRP => "2020", ELEM => "00A2", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
2036
|
|
|
|
|
|
|
BasicGrayscaleImageSequence => { GRP => "2020", ELEM => "0110", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
2037
|
|
|
|
|
|
|
BasicColorImageSequence => { GRP => "2020", ELEM => "0111", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
2038
|
|
|
|
|
|
|
AnnotationPosition => { GRP => "2030", ELEM => "0010", VR => "US", VM => "1", VERSION => "DICOM_2009"}, |
|
2039
|
|
|
|
|
|
|
TextString => { GRP => "2030", ELEM => "0020", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
2040
|
|
|
|
|
|
|
PresentationLUTSequence => { GRP => "2050", ELEM => "0010", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
2041
|
|
|
|
|
|
|
PresentationLUTShape => { GRP => "2050", ELEM => "0020", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
2042
|
|
|
|
|
|
|
ReferencedPresentationLUTSequence => { GRP => "2050", ELEM => "0500", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
2043
|
|
|
|
|
|
|
ExecutionStatus => { GRP => "2100", ELEM => "0020", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
2044
|
|
|
|
|
|
|
ExecutionStatusInfo => { GRP => "2100", ELEM => "0030", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
2045
|
|
|
|
|
|
|
CreationDate => { GRP => "2100", ELEM => "0040", VR => "DA", VM => "1", VERSION => "DICOM_2009"}, |
|
2046
|
|
|
|
|
|
|
CreationTime => { GRP => "2100", ELEM => "0050", VR => "TM", VM => "1", VERSION => "DICOM_2009"}, |
|
2047
|
|
|
|
|
|
|
Originator => { GRP => "2100", ELEM => "0070", VR => "AE", VM => "1", VERSION => "DICOM_2009"}, |
|
2048
|
|
|
|
|
|
|
OwnerID => { GRP => "2100", ELEM => "0160", VR => "SH", VM => "1", VERSION => "DICOM_2009"}, |
|
2049
|
|
|
|
|
|
|
NumberOfFilms => { GRP => "2100", ELEM => "0170", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
2050
|
|
|
|
|
|
|
PrinterStatus => { GRP => "2110", ELEM => "0010", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
2051
|
|
|
|
|
|
|
PrinterStatusInfo => { GRP => "2110", ELEM => "0020", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
2052
|
|
|
|
|
|
|
PrinterName => { GRP => "2110", ELEM => "0030", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
2053
|
|
|
|
|
|
|
LabelUsingInformationExtractedFromInstances => { GRP => "2200", ELEM => "0001", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
2054
|
|
|
|
|
|
|
LabelText => { GRP => "2200", ELEM => "0002", VR => "UT", VM => "1", VERSION => "DICOM_2009"}, |
|
2055
|
|
|
|
|
|
|
LabelStyleSelection => { GRP => "2200", ELEM => "0003", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
2056
|
|
|
|
|
|
|
MediaDisposition => { GRP => "2200", ELEM => "0004", VR => "LT", VM => "1", VERSION => "DICOM_2009"}, |
|
2057
|
|
|
|
|
|
|
BarcodeValue => { GRP => "2200", ELEM => "0005", VR => "LT", VM => "1", VERSION => "DICOM_2009"}, |
|
2058
|
|
|
|
|
|
|
BarcodeSymbology => { GRP => "2200", ELEM => "0006", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
2059
|
|
|
|
|
|
|
AllowMediaSplitting => { GRP => "2200", ELEM => "0007", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
2060
|
|
|
|
|
|
|
IncludeNonDICOMObjects => { GRP => "2200", ELEM => "0008", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
2061
|
|
|
|
|
|
|
IncludeDisplayApplication => { GRP => "2200", ELEM => "0009", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
2062
|
|
|
|
|
|
|
PreserveCompositeInstancesAfterMediaCreation => { GRP => "2200", ELEM => "000A", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
2063
|
|
|
|
|
|
|
TotalNumberOfPiecesOfMediaCreated => { GRP => "2200", ELEM => "000B", VR => "US", VM => "1", VERSION => "DICOM_2009"}, |
|
2064
|
|
|
|
|
|
|
RequestedMediaApplicationProfile => { GRP => "2200", ELEM => "000C", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
2065
|
|
|
|
|
|
|
ReferencedStorageMediaSequence => { GRP => "2200", ELEM => "000D", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
2066
|
|
|
|
|
|
|
FailureAttributes => { GRP => "2200", ELEM => "000E", VR => "AT", VM => "1-n", VERSION => "DICOM_2009"}, |
|
2067
|
|
|
|
|
|
|
AllowLossyCompression => { GRP => "2200", ELEM => "000F", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
2068
|
|
|
|
|
|
|
RequestPriority => { GRP => "2200", ELEM => "0020", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
2069
|
|
|
|
|
|
|
RTImageLabel => { GRP => "3002", ELEM => "0002", VR => "SH", VM => "1", VERSION => "DICOM_2009"}, |
|
2070
|
|
|
|
|
|
|
RTImageName => { GRP => "3002", ELEM => "0003", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
2071
|
|
|
|
|
|
|
RTImageDescription => { GRP => "3002", ELEM => "0004", VR => "ST", VM => "1", VERSION => "DICOM_2009"}, |
|
2072
|
|
|
|
|
|
|
ReportedValuesOrigin => { GRP => "3002", ELEM => "000A", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
2073
|
|
|
|
|
|
|
RTImagePlane => { GRP => "3002", ELEM => "000C", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
2074
|
|
|
|
|
|
|
XRayImageReceptorTranslation => { GRP => "3002", ELEM => "000D", VR => "DS", VM => "3", VERSION => "DICOM_2009"}, |
|
2075
|
|
|
|
|
|
|
XRayImageReceptorAngle => { GRP => "3002", ELEM => "000E", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
2076
|
|
|
|
|
|
|
RTImageOrientation => { GRP => "3002", ELEM => "0010", VR => "DS", VM => "6", VERSION => "DICOM_2009"}, |
|
2077
|
|
|
|
|
|
|
ImagePlanePixelSpacing => { GRP => "3002", ELEM => "0011", VR => "DS", VM => "2", VERSION => "DICOM_2009"}, |
|
2078
|
|
|
|
|
|
|
RTImagePosition => { GRP => "3002", ELEM => "0012", VR => "DS", VM => "2", VERSION => "DICOM_2009"}, |
|
2079
|
|
|
|
|
|
|
RadiationMachineName => { GRP => "3002", ELEM => "0020", VR => "SH", VM => "1", VERSION => "DICOM_2009"}, |
|
2080
|
|
|
|
|
|
|
|
|
2081
|
|
|
|
|
|
|
RadiationMachineSAD => { GRP => "3002", ELEM => "0022", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
2082
|
|
|
|
|
|
|
RadiationMachineSSD => { GRP => "3002", ELEM => "0024", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
2083
|
|
|
|
|
|
|
RTImageSID => { GRP => "3002", ELEM => "0026", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
2084
|
|
|
|
|
|
|
SourceToReferenceObjectDistance => { GRP => "3002", ELEM => "0028", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
2085
|
|
|
|
|
|
|
FractionNumber => { GRP => "3002", ELEM => "0029", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
2086
|
|
|
|
|
|
|
ExposureSequence => { GRP => "3002", ELEM => "0030", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
2087
|
|
|
|
|
|
|
MetersetExposure => { GRP => "3002", ELEM => "0032", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
2088
|
|
|
|
|
|
|
DiaphragmPosition => { GRP => "3002", ELEM => "0034", VR => "DS", VM => "4", VERSION => "DICOM_2009"}, |
|
2089
|
|
|
|
|
|
|
FluenceMapSequence => { GRP => "3002", ELEM => "0040", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
2090
|
|
|
|
|
|
|
FluenceDataSource => { GRP => "3002", ELEM => "0041", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
2091
|
|
|
|
|
|
|
FluenceDataScale => { GRP => "3002", ELEM => "0042", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
2092
|
|
|
|
|
|
|
PrimaryFluenceModeSequence => { GRP => "3002", ELEM => "0050", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
2093
|
|
|
|
|
|
|
FluenceMode => { GRP => "3002", ELEM => "0051", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
2094
|
|
|
|
|
|
|
FluenceModeID => { GRP => "3002", ELEM => "0052", VR => "SH", VM => "1", VERSION => "DICOM_2009"}, |
|
2095
|
|
|
|
|
|
|
DVHType => { GRP => "3004", ELEM => "0001", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
2096
|
|
|
|
|
|
|
DoseUnits => { GRP => "3004", ELEM => "0002", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
2097
|
|
|
|
|
|
|
DoseType => { GRP => "3004", ELEM => "0004", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
2098
|
|
|
|
|
|
|
DoseComment => { GRP => "3004", ELEM => "0006", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
2099
|
|
|
|
|
|
|
NormalizationPoint => { GRP => "3004", ELEM => "0008", VR => "DS", VM => "3", VERSION => "DICOM_2009"}, |
|
2100
|
|
|
|
|
|
|
DoseSummationType => { GRP => "3004", ELEM => "000A", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
2101
|
|
|
|
|
|
|
GridFrameOffsetVector => { GRP => "3004", ELEM => "000C", VR => "DS", VM => "2-n", VERSION => "DICOM_2009"}, |
|
2102
|
|
|
|
|
|
|
DoseGridScaling => { GRP => "3004", ELEM => "000E", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
2103
|
|
|
|
|
|
|
RTDoseROISequence => { GRP => "3004", ELEM => "0010", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
2104
|
|
|
|
|
|
|
DoseValue => { GRP => "3004", ELEM => "0012", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
2105
|
|
|
|
|
|
|
TissueHeterogeneityCorrection => { GRP => "3004", ELEM => "0014", VR => "CS", VM => "1-3", VERSION => "DICOM_2009"}, |
|
2106
|
|
|
|
|
|
|
DVHNormalizationPoint => { GRP => "3004", ELEM => "0040", VR => "DS", VM => "3", VERSION => "DICOM_2009"}, |
|
2107
|
|
|
|
|
|
|
DVHNormalizationDoseValue => { GRP => "3004", ELEM => "0042", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
2108
|
|
|
|
|
|
|
DVHSequence => { GRP => "3004", ELEM => "0050", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
2109
|
|
|
|
|
|
|
DVHDoseScaling => { GRP => "3004", ELEM => "0052", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
2110
|
|
|
|
|
|
|
DVHVolumeUnits => { GRP => "3004", ELEM => "0054", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
2111
|
|
|
|
|
|
|
DVHNumberOfBins => { GRP => "3004", ELEM => "0056", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
2112
|
|
|
|
|
|
|
DVHData => { GRP => "3004", ELEM => "0058", VR => "DS", VM => "2-2n", VERSION => "DICOM_2009"}, |
|
2113
|
|
|
|
|
|
|
DVHReferencedROISequence => { GRP => "3004", ELEM => "0060", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
2114
|
|
|
|
|
|
|
DVHROIContributionType => { GRP => "3004", ELEM => "0062", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
2115
|
|
|
|
|
|
|
DVHMinimumDose => { GRP => "3004", ELEM => "0070", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
2116
|
|
|
|
|
|
|
DVHMaximumDose => { GRP => "3004", ELEM => "0072", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
2117
|
|
|
|
|
|
|
DVHMeanDose => { GRP => "3004", ELEM => "0074", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
2118
|
|
|
|
|
|
|
StructureSetLabel => { GRP => "3006", ELEM => "0002", VR => "SH", VM => "1", VERSION => "DICOM_2009"}, |
|
2119
|
|
|
|
|
|
|
StructureSetName => { GRP => "3006", ELEM => "0004", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
2120
|
|
|
|
|
|
|
StructureSetDescription => { GRP => "3006", ELEM => "0006", VR => "ST", VM => "1", VERSION => "DICOM_2009"}, |
|
2121
|
|
|
|
|
|
|
StructureSetDate => { GRP => "3006", ELEM => "0008", VR => "DA", VM => "1", VERSION => "DICOM_2009"}, |
|
2122
|
|
|
|
|
|
|
StructureSetTime => { GRP => "3006", ELEM => "0009", VR => "TM", VM => "1", VERSION => "DICOM_2009"}, |
|
2123
|
|
|
|
|
|
|
ReferencedFrameOfReferenceSequence => { GRP => "3006", ELEM => "0010", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
2124
|
|
|
|
|
|
|
RTReferencedStudySequence => { GRP => "3006", ELEM => "0012", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
2125
|
|
|
|
|
|
|
RTReferencedSeriesSequence => { GRP => "3006", ELEM => "0014", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
2126
|
|
|
|
|
|
|
ContourImageSequence => { GRP => "3006", ELEM => "0016", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
2127
|
|
|
|
|
|
|
StructureSetROISequence => { GRP => "3006", ELEM => "0020", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
2128
|
|
|
|
|
|
|
ROINumber => { GRP => "3006", ELEM => "0022", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
2129
|
|
|
|
|
|
|
ReferencedFrameOfReferenceUID => { GRP => "3006", ELEM => "0024", VR => "UI", VM => "1", VERSION => "DICOM_2009"}, |
|
2130
|
|
|
|
|
|
|
ROIName => { GRP => "3006", ELEM => "0026", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
2131
|
|
|
|
|
|
|
ROIDescription => { GRP => "3006", ELEM => "0028", VR => "ST", VM => "1", VERSION => "DICOM_2009"}, |
|
2132
|
|
|
|
|
|
|
ROIDisplayColor => { GRP => "3006", ELEM => "002A", VR => "IS", VM => "3", VERSION => "DICOM_2009"}, |
|
2133
|
|
|
|
|
|
|
ROIVolume => { GRP => "3006", ELEM => "002C", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
2134
|
|
|
|
|
|
|
RTRelatedROISequence => { GRP => "3006", ELEM => "0030", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
2135
|
|
|
|
|
|
|
RTROIRelationship => { GRP => "3006", ELEM => "0033", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
2136
|
|
|
|
|
|
|
ROIGenerationAlgorithm => { GRP => "3006", ELEM => "0036", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
2137
|
|
|
|
|
|
|
ROIGenerationDescription => { GRP => "3006", ELEM => "0038", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
2138
|
|
|
|
|
|
|
ROIContourSequence => { GRP => "3006", ELEM => "0039", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
2139
|
|
|
|
|
|
|
ContourSequence => { GRP => "3006", ELEM => "0040", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
2140
|
|
|
|
|
|
|
ContourGeometricType => { GRP => "3006", ELEM => "0042", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
2141
|
|
|
|
|
|
|
ContourSlabThickness => { GRP => "3006", ELEM => "0044", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
2142
|
|
|
|
|
|
|
ContourOffsetVector => { GRP => "3006", ELEM => "0045", VR => "DS", VM => "3", VERSION => "DICOM_2009"}, |
|
2143
|
|
|
|
|
|
|
NumberOfContourPoints => { GRP => "3006", ELEM => "0046", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
2144
|
|
|
|
|
|
|
ContourNumber => { GRP => "3006", ELEM => "0048", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
2145
|
|
|
|
|
|
|
AttachedContours => { GRP => "3006", ELEM => "0049", VR => "IS", VM => "1-n", VERSION => "DICOM_2009"}, |
|
2146
|
|
|
|
|
|
|
ContourData => { GRP => "3006", ELEM => "0050", VR => "DS", VM => "3-3n", VERSION => "DICOM_2009"}, |
|
2147
|
|
|
|
|
|
|
RTROIObservationsSequence => { GRP => "3006", ELEM => "0080", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
2148
|
|
|
|
|
|
|
ObservationNumber => { GRP => "3006", ELEM => "0082", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
2149
|
|
|
|
|
|
|
ReferencedROINumber => { GRP => "3006", ELEM => "0084", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
2150
|
|
|
|
|
|
|
ROIObservationLabel => { GRP => "3006", ELEM => "0085", VR => "SH", VM => "1", VERSION => "DICOM_2009"}, |
|
2151
|
|
|
|
|
|
|
RTROIIdentificationCodeSequence => { GRP => "3006", ELEM => "0086", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
2152
|
|
|
|
|
|
|
ROIObservationDescription => { GRP => "3006", ELEM => "0088", VR => "ST", VM => "1", VERSION => "DICOM_2009"}, |
|
2153
|
|
|
|
|
|
|
RelatedRTROIObservationsSequence => { GRP => "3006", ELEM => "00A0", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
2154
|
|
|
|
|
|
|
RTROIInterpretedType => { GRP => "3006", ELEM => "00A4", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
2155
|
|
|
|
|
|
|
ROIInterpreter => { GRP => "3006", ELEM => "00A6", VR => "PN", VM => "1", VERSION => "DICOM_2009"}, |
|
2156
|
|
|
|
|
|
|
ROIPhysicalPropertiesSequence => { GRP => "3006", ELEM => "00B0", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
2157
|
|
|
|
|
|
|
ROIPhysicalProperty => { GRP => "3006", ELEM => "00B2", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
2158
|
|
|
|
|
|
|
ROIPhysicalPropertyValue => { GRP => "3006", ELEM => "00B4", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
2159
|
|
|
|
|
|
|
ROIElementalCompositionSequence => { GRP => "3006", ELEM => "00B6", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
2160
|
|
|
|
|
|
|
ROIElementalCompositionAtomicNumber => { GRP => "3006", ELEM => "00B7", VR => "US", VM => "1", VERSION => "DICOM_2009"}, |
|
2161
|
|
|
|
|
|
|
ROIElementalCompositionAtomicMassFraction => { GRP => "3006", ELEM => "00B8", VR => "FL", VM => "1", VERSION => "DICOM_2009"}, |
|
2162
|
|
|
|
|
|
|
FrameOfReferenceRelationshipSequence => { GRP => "3006", ELEM => "00C0", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
2163
|
|
|
|
|
|
|
RelatedFrameOfReferenceUID => { GRP => "3006", ELEM => "00C2", VR => "UI", VM => "1", VERSION => "DICOM_2009"}, |
|
2164
|
|
|
|
|
|
|
FrameOfReferenceTransformationType => { GRP => "3006", ELEM => "00C4", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
2165
|
|
|
|
|
|
|
FrameOfReferenceTransformationMatrix => { GRP => "3006", ELEM => "00C6", VR => "DS", VM => "16", VERSION => "DICOM_2009"}, |
|
2166
|
|
|
|
|
|
|
FrameOfReferenceTransformationComment => { GRP => "3006", ELEM => "00C8", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
2167
|
|
|
|
|
|
|
MeasuredDoseReferenceSequence => { GRP => "3008", ELEM => "0010", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
2168
|
|
|
|
|
|
|
MeasuredDoseDescription => { GRP => "3008", ELEM => "0012", VR => "ST", VM => "1", VERSION => "DICOM_2009"}, |
|
2169
|
|
|
|
|
|
|
MeasuredDoseType => { GRP => "3008", ELEM => "0014", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
2170
|
|
|
|
|
|
|
MeasuredDoseValue => { GRP => "3008", ELEM => "0016", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
2171
|
|
|
|
|
|
|
TreatmentSessionBeamSequence => { GRP => "3008", ELEM => "0020", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
2172
|
|
|
|
|
|
|
TreatmentSessionIonBeamSequence => { GRP => "3008", ELEM => "0021", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
2173
|
|
|
|
|
|
|
CurrentFractionNumber => { GRP => "3008", ELEM => "0022", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
2174
|
|
|
|
|
|
|
TreatmentControlPointDate => { GRP => "3008", ELEM => "0024", VR => "DA", VM => "1", VERSION => "DICOM_2009"}, |
|
2175
|
|
|
|
|
|
|
TreatmentControlPointTime => { GRP => "3008", ELEM => "0025", VR => "TM", VM => "1", VERSION => "DICOM_2009"}, |
|
2176
|
|
|
|
|
|
|
TreatmentTerminationStatus => { GRP => "3008", ELEM => "002A", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
2177
|
|
|
|
|
|
|
TreatmentTerminationCode => { GRP => "3008", ELEM => "002B", VR => "SH", VM => "1", VERSION => "DICOM_2009"}, |
|
2178
|
|
|
|
|
|
|
TreatmentVerificationStatus => { GRP => "3008", ELEM => "002C", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
2179
|
|
|
|
|
|
|
ReferencedTreatmentRecordSequence => { GRP => "3008", ELEM => "0030", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
2180
|
|
|
|
|
|
|
SpecifiedPrimaryMeterset => { GRP => "3008", ELEM => "0032", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
2181
|
|
|
|
|
|
|
SpecifiedSecondaryMeterset => { GRP => "3008", ELEM => "0033", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
2182
|
|
|
|
|
|
|
DeliveredPrimaryMeterset => { GRP => "3008", ELEM => "0036", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
2183
|
|
|
|
|
|
|
DeliveredSecondaryMeterset => { GRP => "3008", ELEM => "0037", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
2184
|
|
|
|
|
|
|
SpecifiedTreatmentTime => { GRP => "3008", ELEM => "003A", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
2185
|
|
|
|
|
|
|
DeliveredTreatmentTime => { GRP => "3008", ELEM => "003B", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
2186
|
|
|
|
|
|
|
ControlPointDeliverySequence => { GRP => "3008", ELEM => "0040", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
2187
|
|
|
|
|
|
|
IonControlPointDeliverySequence => { GRP => "3008", ELEM => "0041", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
2188
|
|
|
|
|
|
|
SpecifiedMeterset => { GRP => "3008", ELEM => "0042", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
2189
|
|
|
|
|
|
|
DeliveredMeterset => { GRP => "3008", ELEM => "0044", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
2190
|
|
|
|
|
|
|
MetersetRateSet => { GRP => "3008", ELEM => "0045", VR => "FL", VM => "1", VERSION => "DICOM_2009"}, |
|
2191
|
|
|
|
|
|
|
MetersetRateDelivered => { GRP => "3008", ELEM => "0046", VR => "FL", VM => "1", VERSION => "DICOM_2009"}, |
|
2192
|
|
|
|
|
|
|
ScanSpotMetersetsDelivered => { GRP => "3008", ELEM => "0047", VR => "FL", VM => "1-n", VERSION => "DICOM_2009"}, |
|
2193
|
|
|
|
|
|
|
DoseRateDelivered => { GRP => "3008", ELEM => "0048", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
2194
|
|
|
|
|
|
|
TreatmentSummaryCalculatedDoseReferenceSequence => { GRP => "3008", ELEM => "0050", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
2195
|
|
|
|
|
|
|
CumulativeDoseToDoseReference => { GRP => "3008", ELEM => "0052", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
2196
|
|
|
|
|
|
|
FirstTreatmentDate => { GRP => "3008", ELEM => "0054", VR => "DA", VM => "1", VERSION => "DICOM_2009"}, |
|
2197
|
|
|
|
|
|
|
MostRecentTreatmentDate => { GRP => "3008", ELEM => "0056", VR => "DA", VM => "1", VERSION => "DICOM_2009"}, |
|
2198
|
|
|
|
|
|
|
NumberOfFractionsDelivered => { GRP => "3008", ELEM => "005A", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
2199
|
|
|
|
|
|
|
OverrideSequence => { GRP => "3008", ELEM => "0060", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
2200
|
|
|
|
|
|
|
ParameterSequencePointer => { GRP => "3008", ELEM => "0061", VR => "AT", VM => "1", VERSION => "DICOM_2009"}, |
|
2201
|
|
|
|
|
|
|
OverrideParameterPointer => { GRP => "3008", ELEM => "0062", VR => "AT", VM => "1", VERSION => "DICOM_2009"}, |
|
2202
|
|
|
|
|
|
|
ParameterItemIndex => { GRP => "3008", ELEM => "0063", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
2203
|
|
|
|
|
|
|
MeasuredDoseReferenceNumber => { GRP => "3008", ELEM => "0064", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
2204
|
|
|
|
|
|
|
ParameterPointer => { GRP => "3008", ELEM => "0065", VR => "AT", VM => "1", VERSION => "DICOM_2009"}, |
|
2205
|
|
|
|
|
|
|
OverrideReason => { GRP => "3008", ELEM => "0066", VR => "ST", VM => "1", VERSION => "DICOM_2009"}, |
|
2206
|
|
|
|
|
|
|
CorrectedParameterSequence => { GRP => "3008", ELEM => "0068", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
2207
|
|
|
|
|
|
|
CorrectionValue => { GRP => "3008", ELEM => "006A", VR => "FL", VM => "1", VERSION => "DICOM_2009"}, |
|
2208
|
|
|
|
|
|
|
CalculatedDoseReferenceSequence => { GRP => "3008", ELEM => "0070", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
2209
|
|
|
|
|
|
|
CalculatedDoseReferenceNumber => { GRP => "3008", ELEM => "0072", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
2210
|
|
|
|
|
|
|
CalculatedDoseReferenceDescription => { GRP => "3008", ELEM => "0074", VR => "ST", VM => "1", VERSION => "DICOM_2009"}, |
|
2211
|
|
|
|
|
|
|
CalculatedDoseReferenceDoseValue => { GRP => "3008", ELEM => "0076", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
2212
|
|
|
|
|
|
|
StartMeterset => { GRP => "3008", ELEM => "0078", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
2213
|
|
|
|
|
|
|
EndMeterset => { GRP => "3008", ELEM => "007A", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
2214
|
|
|
|
|
|
|
ReferencedMeasuredDoseReferenceSequence => { GRP => "3008", ELEM => "0080", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
2215
|
|
|
|
|
|
|
ReferencedMeasuredDoseReferenceNumber => { GRP => "3008", ELEM => "0082", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
2216
|
|
|
|
|
|
|
ReferencedCalculatedDoseReferenceSequence => { GRP => "3008", ELEM => "0090", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
2217
|
|
|
|
|
|
|
ReferencedCalculatedDoseReferenceNumber => { GRP => "3008", ELEM => "0092", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
2218
|
|
|
|
|
|
|
BeamLimitingDeviceLeafPairsSequence => { GRP => "3008", ELEM => "00A0", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
2219
|
|
|
|
|
|
|
RecordedWedgeSequence => { GRP => "3008", ELEM => "00B0", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
2220
|
|
|
|
|
|
|
RecordedCompensatorSequence => { GRP => "3008", ELEM => "00C0", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
2221
|
|
|
|
|
|
|
RecordedBlockSequence => { GRP => "3008", ELEM => "00D0", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
2222
|
|
|
|
|
|
|
TreatmentSummaryMeasuredDoseReferenceSequence => { GRP => "3008", ELEM => "00E0", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
2223
|
|
|
|
|
|
|
RecordedSnoutSequence => { GRP => "3008", ELEM => "00F0", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
2224
|
|
|
|
|
|
|
RecordedRangeShifterSequence => { GRP => "3008", ELEM => "00F2", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
2225
|
|
|
|
|
|
|
RecordedLateralSpreadingDeviceSequence => { GRP => "3008", ELEM => "00F4", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
2226
|
|
|
|
|
|
|
RecordedRangeModulatorSequence => { GRP => "3008", ELEM => "00F6", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
2227
|
|
|
|
|
|
|
RecordedSourceSequence => { GRP => "3008", ELEM => "0100", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
2228
|
|
|
|
|
|
|
SourceSerialNumber => { GRP => "3008", ELEM => "0105", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
2229
|
|
|
|
|
|
|
TreatmentSessionApplicationSetupSequence => { GRP => "3008", ELEM => "0110", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
2230
|
|
|
|
|
|
|
ApplicationSetupCheck => { GRP => "3008", ELEM => "0116", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
2231
|
|
|
|
|
|
|
RecordedBrachyAccessoryDeviceSequence => { GRP => "3008", ELEM => "0120", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
2232
|
|
|
|
|
|
|
ReferencedBrachyAccessoryDeviceNumber => { GRP => "3008", ELEM => "0122", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
2233
|
|
|
|
|
|
|
RecordedChannelSequence => { GRP => "3008", ELEM => "0130", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
2234
|
|
|
|
|
|
|
SpecifiedChannelTotalTime => { GRP => "3008", ELEM => "0132", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
2235
|
|
|
|
|
|
|
DeliveredChannelTotalTime => { GRP => "3008", ELEM => "0134", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
2236
|
|
|
|
|
|
|
SpecifiedNumberOfPulses => { GRP => "3008", ELEM => "0136", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
2237
|
|
|
|
|
|
|
DeliveredNumberOfPulses => { GRP => "3008", ELEM => "0138", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
2238
|
|
|
|
|
|
|
SpecifiedPulseRepetitionInterval => { GRP => "3008", ELEM => "013A", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
2239
|
|
|
|
|
|
|
DeliveredPulseRepetitionInterval => { GRP => "3008", ELEM => "013C", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
2240
|
|
|
|
|
|
|
RecordedSourceApplicatorSequence => { GRP => "3008", ELEM => "0140", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
2241
|
|
|
|
|
|
|
ReferencedSourceApplicatorNumber => { GRP => "3008", ELEM => "0142", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
2242
|
|
|
|
|
|
|
RecordedChannelShieldSequence => { GRP => "3008", ELEM => "0150", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
2243
|
|
|
|
|
|
|
ReferencedChannelShieldNumber => { GRP => "3008", ELEM => "0152", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
2244
|
|
|
|
|
|
|
BrachyControlPointDeliveredSequence => { GRP => "3008", ELEM => "0160", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
2245
|
|
|
|
|
|
|
SafePositionExitDate => { GRP => "3008", ELEM => "0162", VR => "DA", VM => "1", VERSION => "DICOM_2009"}, |
|
2246
|
|
|
|
|
|
|
SafePositionExitTime => { GRP => "3008", ELEM => "0164", VR => "TM", VM => "1", VERSION => "DICOM_2009"}, |
|
2247
|
|
|
|
|
|
|
SafePositionReturnDate => { GRP => "3008", ELEM => "0166", VR => "DA", VM => "1", VERSION => "DICOM_2009"}, |
|
2248
|
|
|
|
|
|
|
SafePositionReturnTime => { GRP => "3008", ELEM => "0168", VR => "TM", VM => "1", VERSION => "DICOM_2009"}, |
|
2249
|
|
|
|
|
|
|
CurrentTreatmentStatus => { GRP => "3008", ELEM => "0200", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
2250
|
|
|
|
|
|
|
TreatmentStatusComment => { GRP => "3008", ELEM => "0202", VR => "ST", VM => "1", VERSION => "DICOM_2009"}, |
|
2251
|
|
|
|
|
|
|
FractionGroupSummarySequence => { GRP => "3008", ELEM => "0220", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
2252
|
|
|
|
|
|
|
ReferencedFractionNumber => { GRP => "3008", ELEM => "0223", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
2253
|
|
|
|
|
|
|
FractionGroupType => { GRP => "3008", ELEM => "0224", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
2254
|
|
|
|
|
|
|
BeamStopperPosition => { GRP => "3008", ELEM => "0230", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
2255
|
|
|
|
|
|
|
FractionStatusSummarySequence => { GRP => "3008", ELEM => "0240", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
2256
|
|
|
|
|
|
|
TreatmentDate => { GRP => "3008", ELEM => "0250", VR => "DA", VM => "1", VERSION => "DICOM_2009"}, |
|
2257
|
|
|
|
|
|
|
TreatmentTime => { GRP => "3008", ELEM => "0251", VR => "TM", VM => "1", VERSION => "DICOM_2009"}, |
|
2258
|
|
|
|
|
|
|
RTPlanLabel => { GRP => "300A", ELEM => "0002", VR => "SH", VM => "1", VERSION => "DICOM_2009"}, |
|
2259
|
|
|
|
|
|
|
RTPlanName => { GRP => "300A", ELEM => "0003", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
2260
|
|
|
|
|
|
|
RTPlanDescription => { GRP => "300A", ELEM => "0004", VR => "ST", VM => "1", VERSION => "DICOM_2009"}, |
|
2261
|
|
|
|
|
|
|
RTPlanDate => { GRP => "300A", ELEM => "0006", VR => "DA", VM => "1", VERSION => "DICOM_2009"}, |
|
2262
|
|
|
|
|
|
|
RTPlanTime => { GRP => "300A", ELEM => "0007", VR => "TM", VM => "1", VERSION => "DICOM_2009"}, |
|
2263
|
|
|
|
|
|
|
TreatmentProtocols => { GRP => "300A", ELEM => "0009", VR => "LO", VM => "1-n", VERSION => "DICOM_2009"}, |
|
2264
|
|
|
|
|
|
|
PlanIntent => { GRP => "300A", ELEM => "000A", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
2265
|
|
|
|
|
|
|
TreatmentSites => { GRP => "300A", ELEM => "000B", VR => "LO", VM => "1-n", VERSION => "DICOM_2009"}, |
|
2266
|
|
|
|
|
|
|
RTPlanGeometry => { GRP => "300A", ELEM => "000C", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
2267
|
|
|
|
|
|
|
PrescriptionDescription => { GRP => "300A", ELEM => "000E", VR => "ST", VM => "1", VERSION => "DICOM_2009"}, |
|
2268
|
|
|
|
|
|
|
DoseReferenceSequence => { GRP => "300A", ELEM => "0010", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
2269
|
|
|
|
|
|
|
DoseReferenceNumber => { GRP => "300A", ELEM => "0012", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
2270
|
|
|
|
|
|
|
DoseReferenceUID => { GRP => "300A", ELEM => "0013", VR => "UI", VM => "1", VERSION => "DICOM_2009"}, |
|
2271
|
|
|
|
|
|
|
DoseReferenceStructureType => { GRP => "300A", ELEM => "0014", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
2272
|
|
|
|
|
|
|
NominalBeamEnergyUnit => { GRP => "300A", ELEM => "0015", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
2273
|
|
|
|
|
|
|
DoseReferenceDescription => { GRP => "300A", ELEM => "0016", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
2274
|
|
|
|
|
|
|
DoseReferencePointCoordinates => { GRP => "300A", ELEM => "0018", VR => "DS", VM => "3", VERSION => "DICOM_2009"}, |
|
2275
|
|
|
|
|
|
|
NominalPriorDose => { GRP => "300A", ELEM => "001A", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
2276
|
|
|
|
|
|
|
DoseReferenceType => { GRP => "300A", ELEM => "0020", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
2277
|
|
|
|
|
|
|
ConstraintWeight => { GRP => "300A", ELEM => "0021", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
2278
|
|
|
|
|
|
|
DeliveryWarningDose => { GRP => "300A", ELEM => "0022", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
2279
|
|
|
|
|
|
|
DeliveryMaximumDose => { GRP => "300A", ELEM => "0023", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
2280
|
|
|
|
|
|
|
TargetMinimumDose => { GRP => "300A", ELEM => "0025", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
2281
|
|
|
|
|
|
|
TargetPrescriptionDose => { GRP => "300A", ELEM => "0026", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
2282
|
|
|
|
|
|
|
TargetMaximumDose => { GRP => "300A", ELEM => "0027", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
2283
|
|
|
|
|
|
|
TargetUnderdoseVolumeFraction => { GRP => "300A", ELEM => "0028", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
2284
|
|
|
|
|
|
|
OrganAtRiskFullVolumeDose => { GRP => "300A", ELEM => "002A", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
2285
|
|
|
|
|
|
|
OrganAtRiskLimitDose => { GRP => "300A", ELEM => "002B", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
2286
|
|
|
|
|
|
|
OrganAtRiskMaximumDose => { GRP => "300A", ELEM => "002C", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
2287
|
|
|
|
|
|
|
OrganAtRiskOverdoseVolumeFraction => { GRP => "300A", ELEM => "002D", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
2288
|
|
|
|
|
|
|
ToleranceTableSequence => { GRP => "300A", ELEM => "0040", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
2289
|
|
|
|
|
|
|
ToleranceTableNumber => { GRP => "300A", ELEM => "0042", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
2290
|
|
|
|
|
|
|
ToleranceTableLabel => { GRP => "300A", ELEM => "0043", VR => "SH", VM => "1", VERSION => "DICOM_2009"}, |
|
2291
|
|
|
|
|
|
|
GantryAngleTolerance => { GRP => "300A", ELEM => "0044", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
2292
|
|
|
|
|
|
|
BeamLimitingDeviceAngleTolerance => { GRP => "300A", ELEM => "0046", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
2293
|
|
|
|
|
|
|
BeamLimitingDeviceToleranceSequence => { GRP => "300A", ELEM => "0048", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
2294
|
|
|
|
|
|
|
BeamLimitingDevicePositionTolerance => { GRP => "300A", ELEM => "004A", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
2295
|
|
|
|
|
|
|
SnoutPositionTolerance => { GRP => "300A", ELEM => "004B", VR => "FL", VM => "1", VERSION => "DICOM_2009"}, |
|
2296
|
|
|
|
|
|
|
PatientSupportAngleTolerance => { GRP => "300A", ELEM => "004C", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
2297
|
|
|
|
|
|
|
TableTopEccentricAngleTolerance => { GRP => "300A", ELEM => "004E", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
2298
|
|
|
|
|
|
|
TableTopPitchAngleTolerance => { GRP => "300A", ELEM => "004F", VR => "FL", VM => "1", VERSION => "DICOM_2009"}, |
|
2299
|
|
|
|
|
|
|
TableTopRollAngleTolerance => { GRP => "300A", ELEM => "0050", VR => "FL", VM => "1", VERSION => "DICOM_2009"}, |
|
2300
|
|
|
|
|
|
|
TableTopVerticalPositionTolerance => { GRP => "300A", ELEM => "0051", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
2301
|
|
|
|
|
|
|
TableTopLongitudinalPositionTolerance => { GRP => "300A", ELEM => "0052", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
2302
|
|
|
|
|
|
|
TableTopLateralPositionTolerance => { GRP => "300A", ELEM => "0053", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
2303
|
|
|
|
|
|
|
RTPlanRelationship => { GRP => "300A", ELEM => "0055", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
2304
|
|
|
|
|
|
|
FractionGroupSequence => { GRP => "300A", ELEM => "0070", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
2305
|
|
|
|
|
|
|
FractionGroupNumber => { GRP => "300A", ELEM => "0071", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
2306
|
|
|
|
|
|
|
FractionGroupDescription => { GRP => "300A", ELEM => "0072", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
2307
|
|
|
|
|
|
|
NumberOfFractionsPlanned => { GRP => "300A", ELEM => "0078", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
2308
|
|
|
|
|
|
|
NumberOfFractionPatternDigitsPerDay => { GRP => "300A", ELEM => "0079", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
2309
|
|
|
|
|
|
|
RepeatFractionCycleLength => { GRP => "300A", ELEM => "007A", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
2310
|
|
|
|
|
|
|
FractionPattern => { GRP => "300A", ELEM => "007B", VR => "LT", VM => "1", VERSION => "DICOM_2009"}, |
|
2311
|
|
|
|
|
|
|
NumberOfBeams => { GRP => "300A", ELEM => "0080", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
2312
|
|
|
|
|
|
|
BeamDoseSpecificationPoint => { GRP => "300A", ELEM => "0082", VR => "DS", VM => "3", VERSION => "DICOM_2009"}, |
|
2313
|
|
|
|
|
|
|
BeamDose => { GRP => "300A", ELEM => "0084", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
2314
|
|
|
|
|
|
|
BeamMeterset => { GRP => "300A", ELEM => "0086", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
2315
|
|
|
|
|
|
|
BeamDosePointDepth => { GRP => "300A", ELEM => "0088", VR => "FL", VM => "1", VERSION => "DICOM_2009"}, |
|
2316
|
|
|
|
|
|
|
BeamDosePointEquivalentDepth => { GRP => "300A", ELEM => "0089", VR => "FL", VM => "1", VERSION => "DICOM_2009"}, |
|
2317
|
|
|
|
|
|
|
BeamDosePointSSD => { GRP => "300A", ELEM => "008A", VR => "FL", VM => "1", VERSION => "DICOM_2009"}, |
|
2318
|
|
|
|
|
|
|
NumberOfBrachyApplicationSetups => { GRP => "300A", ELEM => "00A0", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
2319
|
|
|
|
|
|
|
BrachyApplicationSetupDoseSpecificationPoint => { GRP => "300A", ELEM => "00A2", VR => "DS", VM => "3", VERSION => "DICOM_2009"}, |
|
2320
|
|
|
|
|
|
|
BrachyApplicationSetupDose => { GRP => "300A", ELEM => "00A4", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
2321
|
|
|
|
|
|
|
BeamSequence => { GRP => "300A", ELEM => "00B0", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
2322
|
|
|
|
|
|
|
TreatmentMachineName => { GRP => "300A", ELEM => "00B2", VR => "SH", VM => "1", VERSION => "DICOM_2009"}, |
|
2323
|
|
|
|
|
|
|
PrimaryDosimeterUnit => { GRP => "300A", ELEM => "00B3", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
2324
|
|
|
|
|
|
|
SourceAxisDistance => { GRP => "300A", ELEM => "00B4", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
2325
|
|
|
|
|
|
|
BeamLimitingDeviceSequence => { GRP => "300A", ELEM => "00B6", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
2326
|
|
|
|
|
|
|
RTBeamLimitingDeviceType => { GRP => "300A", ELEM => "00B8", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
2327
|
|
|
|
|
|
|
SourceToBeamLimitingDeviceDistance => { GRP => "300A", ELEM => "00BA", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
2328
|
|
|
|
|
|
|
IsocenterToBeamLimitingDeviceDistance => { GRP => "300A", ELEM => "00BB", VR => "FL", VM => "1", VERSION => "DICOM_2009"}, |
|
2329
|
|
|
|
|
|
|
NumberOfLeafJawPairs => { GRP => "300A", ELEM => "00BC", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
2330
|
|
|
|
|
|
|
LeafPositionBoundaries => { GRP => "300A", ELEM => "00BE", VR => "DS", VM => "3-n", VERSION => "DICOM_2009"}, |
|
2331
|
|
|
|
|
|
|
BeamNumber => { GRP => "300A", ELEM => "00C0", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
2332
|
|
|
|
|
|
|
BeamName => { GRP => "300A", ELEM => "00C2", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
2333
|
|
|
|
|
|
|
BeamDescription => { GRP => "300A", ELEM => "00C3", VR => "ST", VM => "1", VERSION => "DICOM_2009"}, |
|
2334
|
|
|
|
|
|
|
BeamType => { GRP => "300A", ELEM => "00C4", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
2335
|
|
|
|
|
|
|
RadiationType => { GRP => "300A", ELEM => "00C6", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
2336
|
|
|
|
|
|
|
HighDoseTechniqueType => { GRP => "300A", ELEM => "00C7", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
2337
|
|
|
|
|
|
|
ReferenceImageNumber => { GRP => "300A", ELEM => "00C8", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
2338
|
|
|
|
|
|
|
PlannedVerificationImageSequence => { GRP => "300A", ELEM => "00CA", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
2339
|
|
|
|
|
|
|
ImagingDeviceSpecificAcquisitionParameters => { GRP => "300A", ELEM => "00CC", VR => "LO", VM => "1-n", VERSION => "DICOM_2009"}, |
|
2340
|
|
|
|
|
|
|
TreatmentDeliveryType => { GRP => "300A", ELEM => "00CE", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
2341
|
|
|
|
|
|
|
NumberOfWedges => { GRP => "300A", ELEM => "00D0", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
2342
|
|
|
|
|
|
|
WedgeSequence => { GRP => "300A", ELEM => "00D1", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
2343
|
|
|
|
|
|
|
WedgeNumber => { GRP => "300A", ELEM => "00D2", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
2344
|
|
|
|
|
|
|
WedgeType => { GRP => "300A", ELEM => "00D3", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
2345
|
|
|
|
|
|
|
WedgeID => { GRP => "300A", ELEM => "00D4", VR => "SH", VM => "1", VERSION => "DICOM_2009"}, |
|
2346
|
|
|
|
|
|
|
WedgeAngle => { GRP => "300A", ELEM => "00D5", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
2347
|
|
|
|
|
|
|
WedgeFactor => { GRP => "300A", ELEM => "00D6", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
2348
|
|
|
|
|
|
|
TotalWedgeTrayWaterEquivalentThickness => { GRP => "300A", ELEM => "00D7", VR => "FL", VM => "1", VERSION => "DICOM_2009"}, |
|
2349
|
|
|
|
|
|
|
WedgeOrientation => { GRP => "300A", ELEM => "00D8", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
2350
|
|
|
|
|
|
|
IsocenterToWedgeTrayDistance => { GRP => "300A", ELEM => "00D9", VR => "FL", VM => "1", VERSION => "DICOM_2009"}, |
|
2351
|
|
|
|
|
|
|
SourceToWedgeTrayDistance => { GRP => "300A", ELEM => "00DA", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
2352
|
|
|
|
|
|
|
WedgeThinEdgePosition => { GRP => "300A", ELEM => "00DB", VR => "FL", VM => "1", VERSION => "DICOM_2009"}, |
|
2353
|
|
|
|
|
|
|
BolusID => { GRP => "300A", ELEM => "00DC", VR => "SH", VM => "1", VERSION => "DICOM_2009"}, |
|
2354
|
|
|
|
|
|
|
BolusDescription => { GRP => "300A", ELEM => "00DD", VR => "ST", VM => "1", VERSION => "DICOM_2009"}, |
|
2355
|
|
|
|
|
|
|
NumberOfCompensators => { GRP => "300A", ELEM => "00E0", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
2356
|
|
|
|
|
|
|
MaterialID => { GRP => "300A", ELEM => "00E1", VR => "SH", VM => "1", VERSION => "DICOM_2009"}, |
|
2357
|
|
|
|
|
|
|
TotalCompensatorTrayFactor => { GRP => "300A", ELEM => "00E2", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
2358
|
|
|
|
|
|
|
CompensatorSequence => { GRP => "300A", ELEM => "00E3", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
2359
|
|
|
|
|
|
|
CompensatorNumber => { GRP => "300A", ELEM => "00E4", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
2360
|
|
|
|
|
|
|
CompensatorID => { GRP => "300A", ELEM => "00E5", VR => "SH", VM => "1", VERSION => "DICOM_2009"}, |
|
2361
|
|
|
|
|
|
|
SourceToCompensatorTrayDistance => { GRP => "300A", ELEM => "00E6", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
2362
|
|
|
|
|
|
|
CompensatorRows => { GRP => "300A", ELEM => "00E7", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
2363
|
|
|
|
|
|
|
CompensatorColumns => { GRP => "300A", ELEM => "00E8", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
2364
|
|
|
|
|
|
|
CompensatorPixelSpacing => { GRP => "300A", ELEM => "00E9", VR => "DS", VM => "2", VERSION => "DICOM_2009"}, |
|
2365
|
|
|
|
|
|
|
CompensatorPosition => { GRP => "300A", ELEM => "00EA", VR => "DS", VM => "2", VERSION => "DICOM_2009"}, |
|
2366
|
|
|
|
|
|
|
CompensatorTransmissionData => { GRP => "300A", ELEM => "00EB", VR => "DS", VM => "1-n", VERSION => "DICOM_2009"}, |
|
2367
|
|
|
|
|
|
|
CompensatorThicknessData => { GRP => "300A", ELEM => "00EC", VR => "DS", VM => "1-n", VERSION => "DICOM_2009"}, |
|
2368
|
|
|
|
|
|
|
NumberOfBoli => { GRP => "300A", ELEM => "00ED", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
2369
|
|
|
|
|
|
|
CompensatorType => { GRP => "300A", ELEM => "00EE", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
2370
|
|
|
|
|
|
|
NumberOfBlocks => { GRP => "300A", ELEM => "00F0", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
2371
|
|
|
|
|
|
|
TotalBlockTrayFactor => { GRP => "300A", ELEM => "00F2", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
2372
|
|
|
|
|
|
|
TotalBlockTrayWaterEquivalentThickness => { GRP => "300A", ELEM => "00F3", VR => "FL", VM => "1", VERSION => "DICOM_2009"}, |
|
2373
|
|
|
|
|
|
|
BlockSequence => { GRP => "300A", ELEM => "00F4", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
2374
|
|
|
|
|
|
|
BlockTrayID => { GRP => "300A", ELEM => "00F5", VR => "SH", VM => "1", VERSION => "DICOM_2009"}, |
|
2375
|
|
|
|
|
|
|
SourceToBlockTrayDistance => { GRP => "300A", ELEM => "00F6", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
2376
|
|
|
|
|
|
|
IsocenterToBlockTrayDistance => { GRP => "300A", ELEM => "00F7", VR => "FL", VM => "1", VERSION => "DICOM_2009"}, |
|
2377
|
|
|
|
|
|
|
BlockType => { GRP => "300A", ELEM => "00F8", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
2378
|
|
|
|
|
|
|
AccessoryCode => { GRP => "300A", ELEM => "00F9", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
2379
|
|
|
|
|
|
|
BlockDivergence => { GRP => "300A", ELEM => "00FA", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
2380
|
|
|
|
|
|
|
BlockMountingPosition => { GRP => "300A", ELEM => "00FB", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
2381
|
|
|
|
|
|
|
BlockNumber => { GRP => "300A", ELEM => "00FC", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
2382
|
|
|
|
|
|
|
BlockName => { GRP => "300A", ELEM => "00FE", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
2383
|
|
|
|
|
|
|
BlockThickness => { GRP => "300A", ELEM => "0100", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
2384
|
|
|
|
|
|
|
BlockTransmission => { GRP => "300A", ELEM => "0102", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
2385
|
|
|
|
|
|
|
BlockNumberOfPoints => { GRP => "300A", ELEM => "0104", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
2386
|
|
|
|
|
|
|
BlockData => { GRP => "300A", ELEM => "0106", VR => "DS", VM => "2-2n", VERSION => "DICOM_2009"}, |
|
2387
|
|
|
|
|
|
|
ApplicatorSequence => { GRP => "300A", ELEM => "0107", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
2388
|
|
|
|
|
|
|
ApplicatorID => { GRP => "300A", ELEM => "0108", VR => "SH", VM => "1", VERSION => "DICOM_2009"}, |
|
2389
|
|
|
|
|
|
|
ApplicatorType => { GRP => "300A", ELEM => "0109", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
2390
|
|
|
|
|
|
|
ApplicatorDescription => { GRP => "300A", ELEM => "010A", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
2391
|
|
|
|
|
|
|
CumulativeDoseReferenceCoefficient => { GRP => "300A", ELEM => "010C", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
2392
|
|
|
|
|
|
|
FinalCumulativeMetersetWeight => { GRP => "300A", ELEM => "010E", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
2393
|
|
|
|
|
|
|
NumberOfControlPoints => { GRP => "300A", ELEM => "0110", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
2394
|
|
|
|
|
|
|
ControlPointSequence => { GRP => "300A", ELEM => "0111", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
2395
|
|
|
|
|
|
|
ControlPointIndex => { GRP => "300A", ELEM => "0112", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
2396
|
|
|
|
|
|
|
NominalBeamEnergy => { GRP => "300A", ELEM => "0114", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
2397
|
|
|
|
|
|
|
DoseRateSet => { GRP => "300A", ELEM => "0115", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
2398
|
|
|
|
|
|
|
WedgePositionSequence => { GRP => "300A", ELEM => "0116", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
2399
|
|
|
|
|
|
|
WedgePosition => { GRP => "300A", ELEM => "0118", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
2400
|
|
|
|
|
|
|
BeamLimitingDevicePositionSequence => { GRP => "300A", ELEM => "011A", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
2401
|
|
|
|
|
|
|
LeafJawPositions => { GRP => "300A", ELEM => "011C", VR => "DS", VM => "2-2n", VERSION => "DICOM_2009"}, |
|
2402
|
|
|
|
|
|
|
GantryAngle => { GRP => "300A", ELEM => "011E", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
2403
|
|
|
|
|
|
|
GantryRotationDirection => { GRP => "300A", ELEM => "011F", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
2404
|
|
|
|
|
|
|
BeamLimitingDeviceAngle => { GRP => "300A", ELEM => "0120", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
2405
|
|
|
|
|
|
|
BeamLimitingDeviceRotationDirection => { GRP => "300A", ELEM => "0121", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
2406
|
|
|
|
|
|
|
PatientSupportAngle => { GRP => "300A", ELEM => "0122", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
2407
|
|
|
|
|
|
|
PatientSupportRotationDirection => { GRP => "300A", ELEM => "0123", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
2408
|
|
|
|
|
|
|
TableTopEccentricAxisDistance => { GRP => "300A", ELEM => "0124", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
2409
|
|
|
|
|
|
|
TableTopEccentricAngle => { GRP => "300A", ELEM => "0125", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
2410
|
|
|
|
|
|
|
TableTopEccentricRotationDirection => { GRP => "300A", ELEM => "0126", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
2411
|
|
|
|
|
|
|
TableTopVerticalPosition => { GRP => "300A", ELEM => "0128", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
2412
|
|
|
|
|
|
|
TableTopLongitudinalPosition => { GRP => "300A", ELEM => "0129", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
2413
|
|
|
|
|
|
|
TableTopLateralPosition => { GRP => "300A", ELEM => "012A", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
2414
|
|
|
|
|
|
|
IsocenterPosition => { GRP => "300A", ELEM => "012C", VR => "DS", VM => "3", VERSION => "DICOM_2009"}, |
|
2415
|
|
|
|
|
|
|
SurfaceEntryPoint => { GRP => "300A", ELEM => "012E", VR => "DS", VM => "3", VERSION => "DICOM_2009"}, |
|
2416
|
|
|
|
|
|
|
SourceToSurfaceDistance => { GRP => "300A", ELEM => "0130", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
2417
|
|
|
|
|
|
|
CumulativeMetersetWeight => { GRP => "300A", ELEM => "0134", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
2418
|
|
|
|
|
|
|
TableTopPitchAngle => { GRP => "300A", ELEM => "0140", VR => "FL", VM => "1", VERSION => "DICOM_2009"}, |
|
2419
|
|
|
|
|
|
|
TableTopPitchRotationDirection => { GRP => "300A", ELEM => "0142", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
2420
|
|
|
|
|
|
|
TableTopRollAngle => { GRP => "300A", ELEM => "0144", VR => "FL", VM => "1", VERSION => "DICOM_2009"}, |
|
2421
|
|
|
|
|
|
|
TableTopRollRotationDirection => { GRP => "300A", ELEM => "0146", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
2422
|
|
|
|
|
|
|
HeadFixationAngle => { GRP => "300A", ELEM => "0148", VR => "FL", VM => "1", VERSION => "DICOM_2009"}, |
|
2423
|
|
|
|
|
|
|
GantryPitchAngle => { GRP => "300A", ELEM => "014A", VR => "FL", VM => "1", VERSION => "DICOM_2009"}, |
|
2424
|
|
|
|
|
|
|
GantryPitchRotationDirection => { GRP => "300A", ELEM => "014C", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
2425
|
|
|
|
|
|
|
GantryPitchAngleTolerance => { GRP => "300A", ELEM => "014E", VR => "FL", VM => "1", VERSION => "DICOM_2009"}, |
|
2426
|
|
|
|
|
|
|
PatientSetupSequence => { GRP => "300A", ELEM => "0180", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
2427
|
|
|
|
|
|
|
PatientSetupNumber => { GRP => "300A", ELEM => "0182", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
2428
|
|
|
|
|
|
|
PatientSetupLabel => { GRP => "300A", ELEM => "0183", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
2429
|
|
|
|
|
|
|
PatientAdditionalPosition => { GRP => "300A", ELEM => "0184", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
2430
|
|
|
|
|
|
|
FixationDeviceSequence => { GRP => "300A", ELEM => "0190", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
2431
|
|
|
|
|
|
|
FixationDeviceType => { GRP => "300A", ELEM => "0192", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
2432
|
|
|
|
|
|
|
FixationDeviceLabel => { GRP => "300A", ELEM => "0194", VR => "SH", VM => "1", VERSION => "DICOM_2009"}, |
|
2433
|
|
|
|
|
|
|
FixationDeviceDescription => { GRP => "300A", ELEM => "0196", VR => "ST", VM => "1", VERSION => "DICOM_2009"}, |
|
2434
|
|
|
|
|
|
|
FixationDevicePosition => { GRP => "300A", ELEM => "0198", VR => "SH", VM => "1", VERSION => "DICOM_2009"}, |
|
2435
|
|
|
|
|
|
|
FixationDevicePitchAngle => { GRP => "300A", ELEM => "0199", VR => "FL", VM => "1", VERSION => "DICOM_2009"}, |
|
2436
|
|
|
|
|
|
|
FixationDeviceRollAngle => { GRP => "300A", ELEM => "019A", VR => "FL", VM => "1", VERSION => "DICOM_2009"}, |
|
2437
|
|
|
|
|
|
|
ShieldingDeviceSequence => { GRP => "300A", ELEM => "01A0", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
2438
|
|
|
|
|
|
|
ShieldingDeviceType => { GRP => "300A", ELEM => "01A2", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
2439
|
|
|
|
|
|
|
ShieldingDeviceLabel => { GRP => "300A", ELEM => "01A4", VR => "SH", VM => "1", VERSION => "DICOM_2009"}, |
|
2440
|
|
|
|
|
|
|
ShieldingDeviceDescription => { GRP => "300A", ELEM => "01A6", VR => "ST", VM => "1", VERSION => "DICOM_2009"}, |
|
2441
|
|
|
|
|
|
|
ShieldingDevicePosition => { GRP => "300A", ELEM => "01A8", VR => "SH", VM => "1", VERSION => "DICOM_2009"}, |
|
2442
|
|
|
|
|
|
|
SetupTechnique => { GRP => "300A", ELEM => "01B0", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
2443
|
|
|
|
|
|
|
SetupTechniqueDescription => { GRP => "300A", ELEM => "01B2", VR => "ST", VM => "1", VERSION => "DICOM_2009"}, |
|
2444
|
|
|
|
|
|
|
SetupDeviceSequence => { GRP => "300A", ELEM => "01B4", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
2445
|
|
|
|
|
|
|
SetupDeviceType => { GRP => "300A", ELEM => "01B6", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
2446
|
|
|
|
|
|
|
SetupDeviceLabel => { GRP => "300A", ELEM => "01B8", VR => "SH", VM => "1", VERSION => "DICOM_2009"}, |
|
2447
|
|
|
|
|
|
|
SetupDeviceDescription => { GRP => "300A", ELEM => "01BA", VR => "ST", VM => "1", VERSION => "DICOM_2009"}, |
|
2448
|
|
|
|
|
|
|
SetupDeviceParameter => { GRP => "300A", ELEM => "01BC", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
2449
|
|
|
|
|
|
|
SetupReferenceDescription => { GRP => "300A", ELEM => "01D0", VR => "ST", VM => "1", VERSION => "DICOM_2009"}, |
|
2450
|
|
|
|
|
|
|
TableTopVerticalSetupDisplacement => { GRP => "300A", ELEM => "01D2", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
2451
|
|
|
|
|
|
|
TableTopLongitudinalSetupDisplacement => { GRP => "300A", ELEM => "01D4", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
2452
|
|
|
|
|
|
|
TableTopLateralSetupDisplacement => { GRP => "300A", ELEM => "01D6", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
2453
|
|
|
|
|
|
|
BrachyTreatmentTechnique => { GRP => "300A", ELEM => "0200", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
2454
|
|
|
|
|
|
|
BrachyTreatmentType => { GRP => "300A", ELEM => "0202", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
2455
|
|
|
|
|
|
|
TreatmentMachineSequence => { GRP => "300A", ELEM => "0206", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
2456
|
|
|
|
|
|
|
SourceSequence => { GRP => "300A", ELEM => "0210", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
2457
|
|
|
|
|
|
|
SourceNumber => { GRP => "300A", ELEM => "0212", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
2458
|
|
|
|
|
|
|
SourceType => { GRP => "300A", ELEM => "0214", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
2459
|
|
|
|
|
|
|
SourceManufacturer => { GRP => "300A", ELEM => "0216", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
2460
|
|
|
|
|
|
|
ActiveSourceDiameter => { GRP => "300A", ELEM => "0218", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
2461
|
|
|
|
|
|
|
ActiveSourceLength => { GRP => "300A", ELEM => "021A", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
2462
|
|
|
|
|
|
|
SourceEncapsulationNominalThickness => { GRP => "300A", ELEM => "0222", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
2463
|
|
|
|
|
|
|
SourceEncapsulationNominalTransmission => { GRP => "300A", ELEM => "0224", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
2464
|
|
|
|
|
|
|
SourceIsotopeName => { GRP => "300A", ELEM => "0226", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
2465
|
|
|
|
|
|
|
SourceIsotopeHalfLife => { GRP => "300A", ELEM => "0228", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
2466
|
|
|
|
|
|
|
SourceStrengthUnits => { GRP => "300A", ELEM => "0229", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
2467
|
|
|
|
|
|
|
ReferenceAirKermaRate => { GRP => "300A", ELEM => "022A", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
2468
|
|
|
|
|
|
|
SourceStrength => { GRP => "300A", ELEM => "022B", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
2469
|
|
|
|
|
|
|
SourceStrengthReferenceDate => { GRP => "300A", ELEM => "022C", VR => "DA", VM => "1", VERSION => "DICOM_2009"}, |
|
2470
|
|
|
|
|
|
|
SourceStrengthReferenceTime => { GRP => "300A", ELEM => "022E", VR => "TM", VM => "1", VERSION => "DICOM_2009"}, |
|
2471
|
|
|
|
|
|
|
ApplicationSetupSequence => { GRP => "300A", ELEM => "0230", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
2472
|
|
|
|
|
|
|
ApplicationSetupType => { GRP => "300A", ELEM => "0232", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
2473
|
|
|
|
|
|
|
ApplicationSetupNumber => { GRP => "300A", ELEM => "0234", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
2474
|
|
|
|
|
|
|
ApplicationSetupName => { GRP => "300A", ELEM => "0236", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
2475
|
|
|
|
|
|
|
ApplicationSetupManufacturer => { GRP => "300A", ELEM => "0238", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
2476
|
|
|
|
|
|
|
TemplateNumber => { GRP => "300A", ELEM => "0240", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
2477
|
|
|
|
|
|
|
TemplateType => { GRP => "300A", ELEM => "0242", VR => "SH", VM => "1", VERSION => "DICOM_2009"}, |
|
2478
|
|
|
|
|
|
|
TemplateName => { GRP => "300A", ELEM => "0244", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
2479
|
|
|
|
|
|
|
TotalReferenceAirKerma => { GRP => "300A", ELEM => "0250", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
2480
|
|
|
|
|
|
|
BrachyAccessoryDeviceSequence => { GRP => "300A", ELEM => "0260", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
2481
|
|
|
|
|
|
|
BrachyAccessoryDeviceNumber => { GRP => "300A", ELEM => "0262", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
2482
|
|
|
|
|
|
|
BrachyAccessoryDeviceID => { GRP => "300A", ELEM => "0263", VR => "SH", VM => "1", VERSION => "DICOM_2009"}, |
|
2483
|
|
|
|
|
|
|
BrachyAccessoryDeviceType => { GRP => "300A", ELEM => "0264", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
2484
|
|
|
|
|
|
|
BrachyAccessoryDeviceName => { GRP => "300A", ELEM => "0266", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
2485
|
|
|
|
|
|
|
BrachyAccessoryDeviceNominalThickness => { GRP => "300A", ELEM => "026A", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
2486
|
|
|
|
|
|
|
BrachyAccessoryDeviceNominalTransmission => { GRP => "300A", ELEM => "026C", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
2487
|
|
|
|
|
|
|
ChannelSequence => { GRP => "300A", ELEM => "0280", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
2488
|
|
|
|
|
|
|
ChannelNumber => { GRP => "300A", ELEM => "0282", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
2489
|
|
|
|
|
|
|
ChannelLength => { GRP => "300A", ELEM => "0284", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
2490
|
|
|
|
|
|
|
ChannelTotalTime => { GRP => "300A", ELEM => "0286", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
2491
|
|
|
|
|
|
|
SourceMovementType => { GRP => "300A", ELEM => "0288", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
2492
|
|
|
|
|
|
|
NumberOfPulses => { GRP => "300A", ELEM => "028A", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
2493
|
|
|
|
|
|
|
PulseRepetitionInterval => { GRP => "300A", ELEM => "028C", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
2494
|
|
|
|
|
|
|
SourceApplicatorNumber => { GRP => "300A", ELEM => "0290", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
2495
|
|
|
|
|
|
|
SourceApplicatorID => { GRP => "300A", ELEM => "0291", VR => "SH", VM => "1", VERSION => "DICOM_2009"}, |
|
2496
|
|
|
|
|
|
|
SourceApplicatorType => { GRP => "300A", ELEM => "0292", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
2497
|
|
|
|
|
|
|
SourceApplicatorName => { GRP => "300A", ELEM => "0294", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
2498
|
|
|
|
|
|
|
SourceApplicatorLength => { GRP => "300A", ELEM => "0296", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
2499
|
|
|
|
|
|
|
SourceApplicatorManufacturer => { GRP => "300A", ELEM => "0298", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
2500
|
|
|
|
|
|
|
SourceApplicatorWallNominalThickness => { GRP => "300A", ELEM => "029C", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
2501
|
|
|
|
|
|
|
SourceApplicatorWallNominalTransmission => { GRP => "300A", ELEM => "029E", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
2502
|
|
|
|
|
|
|
SourceApplicatorStepSize => { GRP => "300A", ELEM => "02A0", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
2503
|
|
|
|
|
|
|
TransferTubeNumber => { GRP => "300A", ELEM => "02A2", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
2504
|
|
|
|
|
|
|
TransferTubeLength => { GRP => "300A", ELEM => "02A4", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
2505
|
|
|
|
|
|
|
ChannelShieldSequence => { GRP => "300A", ELEM => "02B0", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
2506
|
|
|
|
|
|
|
ChannelShieldNumber => { GRP => "300A", ELEM => "02B2", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
2507
|
|
|
|
|
|
|
ChannelShieldID => { GRP => "300A", ELEM => "02B3", VR => "SH", VM => "1", VERSION => "DICOM_2009"}, |
|
2508
|
|
|
|
|
|
|
ChannelShieldName => { GRP => "300A", ELEM => "02B4", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
2509
|
|
|
|
|
|
|
ChannelShieldNominalThickness => { GRP => "300A", ELEM => "02B8", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
2510
|
|
|
|
|
|
|
ChannelShieldNominalTransmission => { GRP => "300A", ELEM => "02BA", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
2511
|
|
|
|
|
|
|
FinalCumulativeTimeWeight => { GRP => "300A", ELEM => "02C8", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
2512
|
|
|
|
|
|
|
BrachyControlPointSequence => { GRP => "300A", ELEM => "02D0", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
2513
|
|
|
|
|
|
|
ControlPointRelativePosition => { GRP => "300A", ELEM => "02D2", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
2514
|
|
|
|
|
|
|
ControlPoint3DPosition => { GRP => "300A", ELEM => "02D4", VR => "DS", VM => "3", VERSION => "DICOM_2009"}, |
|
2515
|
|
|
|
|
|
|
CumulativeTimeWeight => { GRP => "300A", ELEM => "02D6", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
2516
|
|
|
|
|
|
|
CompensatorDivergence => { GRP => "300A", ELEM => "02E0", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
2517
|
|
|
|
|
|
|
CompensatorMountingPosition => { GRP => "300A", ELEM => "02E1", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
2518
|
|
|
|
|
|
|
SourceToCompensatorDistance => { GRP => "300A", ELEM => "02E2", VR => "DS", VM => "1-n", VERSION => "DICOM_2009"}, |
|
2519
|
|
|
|
|
|
|
TotalCompensatorTrayWaterEquivalentThickness => { GRP => "300A", ELEM => "02E3", VR => "FL", VM => "1", VERSION => "DICOM_2009"}, |
|
2520
|
|
|
|
|
|
|
IsocenterToCompensatorTrayDistance => { GRP => "300A", ELEM => "02E4", VR => "FL", VM => "1", VERSION => "DICOM_2009"}, |
|
2521
|
|
|
|
|
|
|
CompensatorColumnOffset => { GRP => "300A", ELEM => "02E5", VR => "FL", VM => "1", VERSION => "DICOM_2009"}, |
|
2522
|
|
|
|
|
|
|
IsocenterToCompensatorDistances => { GRP => "300A", ELEM => "02E6", VR => "FL", VM => "1-n", VERSION => "DICOM_2009"}, |
|
2523
|
|
|
|
|
|
|
CompensatorRelativeStoppingPowerRatio => { GRP => "300A", ELEM => "02E7", VR => "FL", VM => "1", VERSION => "DICOM_2009"}, |
|
2524
|
|
|
|
|
|
|
CompensatorMillingToolDiameter => { GRP => "300A", ELEM => "02E8", VR => "FL", VM => "1", VERSION => "DICOM_2009"}, |
|
2525
|
|
|
|
|
|
|
IonRangeCompensatorSequence => { GRP => "300A", ELEM => "02EA", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
2526
|
|
|
|
|
|
|
CompensatorDescription => { GRP => "300A", ELEM => "02EB", VR => "LT", VM => "1", VERSION => "DICOM_2009"}, |
|
2527
|
|
|
|
|
|
|
RadiationMassNumber => { GRP => "300A", ELEM => "0302", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
2528
|
|
|
|
|
|
|
RadiationAtomicNumber => { GRP => "300A", ELEM => "0304", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
2529
|
|
|
|
|
|
|
RadiationChargeState => { GRP => "300A", ELEM => "0306", VR => "SS", VM => "1", VERSION => "DICOM_2009"}, |
|
2530
|
|
|
|
|
|
|
ScanMode => { GRP => "300A", ELEM => "0308", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
2531
|
|
|
|
|
|
|
VirtualSourceAxisDistances => { GRP => "300A", ELEM => "030A", VR => "FL", VM => "2", VERSION => "DICOM_2009"}, |
|
2532
|
|
|
|
|
|
|
SnoutSequence => { GRP => "300A", ELEM => "030C", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
2533
|
|
|
|
|
|
|
SnoutPosition => { GRP => "300A", ELEM => "030D", VR => "FL", VM => "1", VERSION => "DICOM_2009"}, |
|
2534
|
|
|
|
|
|
|
SnoutID => { GRP => "300A", ELEM => "030F", VR => "SH", VM => "1", VERSION => "DICOM_2009"}, |
|
2535
|
|
|
|
|
|
|
NumberOfRangeShifters => { GRP => "300A", ELEM => "0312", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
2536
|
|
|
|
|
|
|
RangeShifterSequence => { GRP => "300A", ELEM => "0314", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
2537
|
|
|
|
|
|
|
RangeShifterNumber => { GRP => "300A", ELEM => "0316", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
2538
|
|
|
|
|
|
|
RangeShifterID => { GRP => "300A", ELEM => "0318", VR => "SH", VM => "1", VERSION => "DICOM_2009"}, |
|
2539
|
|
|
|
|
|
|
RangeShifterType => { GRP => "300A", ELEM => "0320", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
2540
|
|
|
|
|
|
|
RangeShifterDescription => { GRP => "300A", ELEM => "0322", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
2541
|
|
|
|
|
|
|
NumberOfLateralSpreadingDevices => { GRP => "300A", ELEM => "0330", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
2542
|
|
|
|
|
|
|
LateralSpreadingDeviceSequence => { GRP => "300A", ELEM => "0332", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
2543
|
|
|
|
|
|
|
LateralSpreadingDeviceNumber => { GRP => "300A", ELEM => "0334", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
2544
|
|
|
|
|
|
|
LateralSpreadingDeviceID => { GRP => "300A", ELEM => "0336", VR => "SH", VM => "1", VERSION => "DICOM_2009"}, |
|
2545
|
|
|
|
|
|
|
LateralSpreadingDeviceType => { GRP => "300A", ELEM => "0338", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
2546
|
|
|
|
|
|
|
LateralSpreadingDeviceDescription => { GRP => "300A", ELEM => "033A", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
2547
|
|
|
|
|
|
|
LateralSpreadingDeviceWaterEquivalentThickness => { GRP => "300A", ELEM => "033C", VR => "FL", VM => "1", VERSION => "DICOM_2009"}, |
|
2548
|
|
|
|
|
|
|
NumberOfRangeModulators => { GRP => "300A", ELEM => "0340", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
2549
|
|
|
|
|
|
|
RangeModulatorSequence => { GRP => "300A", ELEM => "0342", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
2550
|
|
|
|
|
|
|
RangeModulatorNumber => { GRP => "300A", ELEM => "0344", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
2551
|
|
|
|
|
|
|
RangeModulatorID => { GRP => "300A", ELEM => "0346", VR => "SH", VM => "1", VERSION => "DICOM_2009"}, |
|
2552
|
|
|
|
|
|
|
RangeModulatorType => { GRP => "300A", ELEM => "0348", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
2553
|
|
|
|
|
|
|
RangeModulatorDescription => { GRP => "300A", ELEM => "034A", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
2554
|
|
|
|
|
|
|
BeamCurrentModulationID => { GRP => "300A", ELEM => "034C", VR => "SH", VM => "1", VERSION => "DICOM_2009"}, |
|
2555
|
|
|
|
|
|
|
PatientSupportType => { GRP => "300A", ELEM => "0350", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
2556
|
|
|
|
|
|
|
PatientSupportID => { GRP => "300A", ELEM => "0352", VR => "SH", VM => "1", VERSION => "DICOM_2009"}, |
|
2557
|
|
|
|
|
|
|
PatientSupportAccessoryCode => { GRP => "300A", ELEM => "0354", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
2558
|
|
|
|
|
|
|
FixationLightAzimuthalAngle => { GRP => "300A", ELEM => "0356", VR => "FL", VM => "1", VERSION => "DICOM_2009"}, |
|
2559
|
|
|
|
|
|
|
FixationLightPolarAngle => { GRP => "300A", ELEM => "0358", VR => "FL", VM => "1", VERSION => "DICOM_2009"}, |
|
2560
|
|
|
|
|
|
|
MetersetRate => { GRP => "300A", ELEM => "035A", VR => "FL", VM => "1", VERSION => "DICOM_2009"}, |
|
2561
|
|
|
|
|
|
|
RangeShifterSettingsSequence => { GRP => "300A", ELEM => "0360", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
2562
|
|
|
|
|
|
|
RangeShifterSetting => { GRP => "300A", ELEM => "0362", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
2563
|
|
|
|
|
|
|
IsocenterToRangeShifterDistance => { GRP => "300A", ELEM => "0364", VR => "FL", VM => "1", VERSION => "DICOM_2009"}, |
|
2564
|
|
|
|
|
|
|
RangeShifterWaterEquivalentThickness => { GRP => "300A", ELEM => "0366", VR => "FL", VM => "1", VERSION => "DICOM_2009"}, |
|
2565
|
|
|
|
|
|
|
LateralSpreadingDeviceSettingsSequence => { GRP => "300A", ELEM => "0370", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
2566
|
|
|
|
|
|
|
LateralSpreadingDeviceSetting => { GRP => "300A", ELEM => "0372", VR => "LO", VM => "1", VERSION => "DICOM_2009"}, |
|
2567
|
|
|
|
|
|
|
IsocenterToLateralSpreadingDeviceDistance => { GRP => "300A", ELEM => "0374", VR => "FL", VM => "1", VERSION => "DICOM_2009"}, |
|
2568
|
|
|
|
|
|
|
RangeModulatorSettingsSequence => { GRP => "300A", ELEM => "0380", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
2569
|
|
|
|
|
|
|
RangeModulatorGatingStartValue => { GRP => "300A", ELEM => "0382", VR => "FL", VM => "1", VERSION => "DICOM_2009"}, |
|
2570
|
|
|
|
|
|
|
RangeModulatorGatingStopValue => { GRP => "300A", ELEM => "0384", VR => "FL", VM => "1", VERSION => "DICOM_2009"}, |
|
2571
|
|
|
|
|
|
|
RangeModulatorGatingStartWaterEquivalentThickness => { GRP => "300A", ELEM => "0386", VR => "FL", VM => "1", VERSION => "DICOM_2009"}, |
|
2572
|
|
|
|
|
|
|
RangeModulatorGatingStopWaterEquivalentThickness => { GRP => "300A", ELEM => "0388", VR => "FL", VM => "1", VERSION => "DICOM_2009"}, |
|
2573
|
|
|
|
|
|
|
IsocenterToRangeModulatorDistance => { GRP => "300A", ELEM => "038A", VR => "FL", VM => "1", VERSION => "DICOM_2009"}, |
|
2574
|
|
|
|
|
|
|
ScanSpotTuneID => { GRP => "300A", ELEM => "0390", VR => "SH", VM => "1", VERSION => "DICOM_2009"}, |
|
2575
|
|
|
|
|
|
|
NumberOfScanSpotPositions => { GRP => "300A", ELEM => "0392", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
2576
|
|
|
|
|
|
|
ScanSpotPositionMap => { GRP => "300A", ELEM => "0394", VR => "FL", VM => "1-n", VERSION => "DICOM_2009"}, |
|
2577
|
|
|
|
|
|
|
ScanSpotMetersetWeights => { GRP => "300A", ELEM => "0396", VR => "FL", VM => "1-n", VERSION => "DICOM_2009"}, |
|
2578
|
|
|
|
|
|
|
ScanningSpotSize => { GRP => "300A", ELEM => "0398", VR => "FL", VM => "2", VERSION => "DICOM_2009"}, |
|
2579
|
|
|
|
|
|
|
NumberOfPaintings => { GRP => "300A", ELEM => "039A", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
2580
|
|
|
|
|
|
|
IonToleranceTableSequence => { GRP => "300A", ELEM => "03A0", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
2581
|
|
|
|
|
|
|
IonBeamSequence => { GRP => "300A", ELEM => "03A2", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
2582
|
|
|
|
|
|
|
IonBeamLimitingDeviceSequence => { GRP => "300A", ELEM => "03A4", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
2583
|
|
|
|
|
|
|
IonBlockSequence => { GRP => "300A", ELEM => "03A6", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
2584
|
|
|
|
|
|
|
IonControlPointSequence => { GRP => "300A", ELEM => "03A8", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
2585
|
|
|
|
|
|
|
IonWedgeSequence => { GRP => "300A", ELEM => "03AA", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
2586
|
|
|
|
|
|
|
IonWedgePositionSequence => { GRP => "300A", ELEM => "03AC", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
2587
|
|
|
|
|
|
|
ReferencedSetupImageSequence => { GRP => "300A", ELEM => "0401", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
2588
|
|
|
|
|
|
|
SetupImageComment => { GRP => "300A", ELEM => "0402", VR => "ST", VM => "1", VERSION => "DICOM_2009"}, |
|
2589
|
|
|
|
|
|
|
MotionSynchronizationSequence => { GRP => "300A", ELEM => "0410", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
2590
|
|
|
|
|
|
|
ControlPointOrientation => { GRP => "300A", ELEM => "0412", VR => "FL", VM => "3", VERSION => "DICOM_2009"}, |
|
2591
|
|
|
|
|
|
|
GeneralAccessorySequence => { GRP => "300A", ELEM => "0420", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
2592
|
|
|
|
|
|
|
GeneralAccessoryID => { GRP => "300A", ELEM => "0421", VR => "SH", VM => "1", VERSION => "DICOM_2009"}, |
|
2593
|
|
|
|
|
|
|
GeneralAccessoryDescription => { GRP => "300A", ELEM => "0422", VR => "ST", VM => "1", VERSION => "DICOM_2009"}, |
|
2594
|
|
|
|
|
|
|
GeneralAccessoryType => { GRP => "300A", ELEM => "0423", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
2595
|
|
|
|
|
|
|
GeneralAccessoryNumber => { GRP => "300A", ELEM => "0424", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
2596
|
|
|
|
|
|
|
ReferencedRTPlanSequence => { GRP => "300C", ELEM => "0002", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
2597
|
|
|
|
|
|
|
ReferencedBeamSequence => { GRP => "300C", ELEM => "0004", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
2598
|
|
|
|
|
|
|
ReferencedBeamNumber => { GRP => "300C", ELEM => "0006", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
2599
|
|
|
|
|
|
|
ReferencedReferenceImageNumber => { GRP => "300C", ELEM => "0007", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
2600
|
|
|
|
|
|
|
StartCumulativeMetersetWeight => { GRP => "300C", ELEM => "0008", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
2601
|
|
|
|
|
|
|
EndCumulativeMetersetWeight => { GRP => "300C", ELEM => "0009", VR => "DS", VM => "1", VERSION => "DICOM_2009"}, |
|
2602
|
|
|
|
|
|
|
ReferencedBrachyApplicationSetupSequence => { GRP => "300C", ELEM => "000A", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
2603
|
|
|
|
|
|
|
ReferencedBrachyApplicationSetupNumber => { GRP => "300C", ELEM => "000C", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
2604
|
|
|
|
|
|
|
ReferencedSourceNumber => { GRP => "300C", ELEM => "000E", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
2605
|
|
|
|
|
|
|
ReferencedFractionGroupSequence => { GRP => "300C", ELEM => "0020", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
2606
|
|
|
|
|
|
|
ReferencedFractionGroupNumber => { GRP => "300C", ELEM => "0022", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
2607
|
|
|
|
|
|
|
ReferencedVerificationImageSequence => { GRP => "300C", ELEM => "0040", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
2608
|
|
|
|
|
|
|
ReferencedReferenceImageSequence => { GRP => "300C", ELEM => "0042", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
2609
|
|
|
|
|
|
|
ReferencedDoseReferenceSequence => { GRP => "300C", ELEM => "0050", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
2610
|
|
|
|
|
|
|
ReferencedDoseReferenceNumber => { GRP => "300C", ELEM => "0051", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
2611
|
|
|
|
|
|
|
BrachyReferencedDoseReferenceSequence => { GRP => "300C", ELEM => "0055", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
2612
|
|
|
|
|
|
|
ReferencedStructureSetSequence => { GRP => "300C", ELEM => "0060", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
2613
|
|
|
|
|
|
|
ReferencedPatientSetupNumber => { GRP => "300C", ELEM => "006A", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
2614
|
|
|
|
|
|
|
ReferencedDoseSequence => { GRP => "300C", ELEM => "0080", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
2615
|
|
|
|
|
|
|
ReferencedToleranceTableNumber => { GRP => "300C", ELEM => "00A0", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
2616
|
|
|
|
|
|
|
ReferencedBolusSequence => { GRP => "300C", ELEM => "00B0", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
2617
|
|
|
|
|
|
|
ReferencedWedgeNumber => { GRP => "300C", ELEM => "00C0", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
2618
|
|
|
|
|
|
|
ReferencedCompensatorNumber => { GRP => "300C", ELEM => "00D0", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
2619
|
|
|
|
|
|
|
ReferencedBlockNumber => { GRP => "300C", ELEM => "00E0", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
2620
|
|
|
|
|
|
|
ReferencedControlPointIndex => { GRP => "300C", ELEM => "00F0", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
2621
|
|
|
|
|
|
|
ReferencedControlPointSequence => { GRP => "300C", ELEM => "00F2", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
2622
|
|
|
|
|
|
|
ReferencedStartControlPointIndex => { GRP => "300C", ELEM => "00F4", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
2623
|
|
|
|
|
|
|
ReferencedStopControlPointIndex => { GRP => "300C", ELEM => "00F6", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
2624
|
|
|
|
|
|
|
ReferencedRangeShifterNumber => { GRP => "300C", ELEM => "0100", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
2625
|
|
|
|
|
|
|
ReferencedLateralSpreadingDeviceNumber => { GRP => "300C", ELEM => "0102", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
2626
|
|
|
|
|
|
|
ReferencedRangeModulatorNumber => { GRP => "300C", ELEM => "0104", VR => "IS", VM => "1", VERSION => "DICOM_2009"}, |
|
2627
|
|
|
|
|
|
|
ApprovalStatus => { GRP => "300E", ELEM => "0002", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
2628
|
|
|
|
|
|
|
ReviewDate => { GRP => "300E", ELEM => "0004", VR => "DA", VM => "1", VERSION => "DICOM_2009"}, |
|
2629
|
|
|
|
|
|
|
ReviewTime => { GRP => "300E", ELEM => "0005", VR => "TM", VM => "1", VERSION => "DICOM_2009"}, |
|
2630
|
|
|
|
|
|
|
ReviewerName => { GRP => "300E", ELEM => "0008", VR => "PN", VM => "1", VERSION => "DICOM_2009"}, |
|
2631
|
|
|
|
|
|
|
MACParametersSequence => { GRP => "4FFE", ELEM => "0001", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
2632
|
|
|
|
|
|
|
SharedFunctionalGroupsSequence => { GRP => "5200", ELEM => "9229", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
2633
|
|
|
|
|
|
|
PerFrameFunctionalGroupsSequence => { GRP => "5200", ELEM => "9230", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
2634
|
|
|
|
|
|
|
WaveformSequence => { GRP => "5400", ELEM => "0100", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
2635
|
|
|
|
|
|
|
ChannelMinimumValue => { GRP => "5400", ELEM => "0110", VR => "ox", VM => "1", VERSION => "DICOM_2009"}, |
|
2636
|
|
|
|
|
|
|
ChannelMaximumValue => { GRP => "5400", ELEM => "0112", VR => "ox", VM => "1", VERSION => "DICOM_2009"}, |
|
2637
|
|
|
|
|
|
|
WaveformBitsAllocated => { GRP => "5400", ELEM => "1004", VR => "US", VM => "1", VERSION => "DICOM_2009"}, |
|
2638
|
|
|
|
|
|
|
WaveformSampleInterpretation => { GRP => "5400", ELEM => "1006", VR => "CS", VM => "1", VERSION => "DICOM_2009"}, |
|
2639
|
|
|
|
|
|
|
WaveformPaddingValue => { GRP => "5400", ELEM => "100A", VR => "ox", VM => "1", VERSION => "DICOM_2009"}, |
|
2640
|
|
|
|
|
|
|
WaveformData => { GRP => "5400", ELEM => "1010", VR => "ox", VM => "1", VERSION => "DICOM_2009"}, |
|
2641
|
|
|
|
|
|
|
FirstOrderPhaseCorrectionAngle => { GRP => "5600", ELEM => "0010", VR => "OF", VM => "1", VERSION => "DICOM_2009"}, |
|
2642
|
|
|
|
|
|
|
SpectroscopyData => { GRP => "5600", ELEM => "0020", VR => "OF", VM => "1", VERSION => "DICOM_2009"}, |
|
2643
|
|
|
|
|
|
|
PixelData => { GRP => "7FE0", ELEM => "0010", VR => "ox", VM => "1", VERSION => "DICOM_2009"}, |
|
2644
|
|
|
|
|
|
|
DigitalSignaturesSequence => { GRP => "FFFA", ELEM => "FFFA", VR => "SQ", VM => "1", VERSION => "DICOM_2009"}, |
|
2645
|
|
|
|
|
|
|
DataSetTrailingPadding => { GRP => "FFFC", ELEM => "FFFC", VR => "OB", VM => "1", VERSION => "DICOM_2009"}, |
|
2646
|
|
|
|
|
|
|
Item => { GRP => "FFFE", ELEM => "E000", VR => "na", VM => "1", VERSION => "DICOM_2009"}, |
|
2647
|
|
|
|
|
|
|
ItemDelimitationItem => { GRP => "FFFE", ELEM => "E00D", VR => "na", VM => "1", VERSION => "DICOM_2009"}, |
|
2648
|
|
|
|
|
|
|
SequenceDelimitationItem => { GRP => "FFFE", ELEM => "E0DD", VR => "na", VM => "1", VERSION => "DICOM_2009"}, |
|
2649
|
|
|
|
|
|
|
GraphicGroupLabel => { GRP => "0070", ELEM => "0207", VR => "LO", VM => "1", VERSION => "Supplement_120"}, |
|
2650
|
|
|
|
|
|
|
GraphicGroupDescription => { GRP => "0070", ELEM => "0208", VR => "ST", VM => "1", VERSION => "Supplement_120"}, |
|
2651
|
|
|
|
|
|
|
CompoundGraphicSequence => { GRP => "0070", ELEM => "0209", VR => "SQ", VM => "1", VERSION => "Supplement_120"}, |
|
2652
|
|
|
|
|
|
|
CompoundGraphicInstanceID => { GRP => "0070", ELEM => "0226", VR => "UL", VM => "1", VERSION => "Supplement_120"}, |
|
2653
|
|
|
|
|
|
|
FontName => { GRP => "0070", ELEM => "0227", VR => "LO", VM => "1", VERSION => "Supplement_120"}, |
|
2654
|
|
|
|
|
|
|
FontNameType => { GRP => "0070", ELEM => "0228", VR => "CS", VM => "1", VERSION => "Supplement_120"}, |
|
2655
|
|
|
|
|
|
|
CSSFontName => { GRP => "0070", ELEM => "0229", VR => "LO", VM => "1", VERSION => "Supplement_120"}, |
|
2656
|
|
|
|
|
|
|
RotationAngle => { GRP => "0070", ELEM => "0230", VR => "FD", VM => "1", VERSION => "Supplement_120"}, |
|
2657
|
|
|
|
|
|
|
TextStyleSequence => { GRP => "0070", ELEM => "0231", VR => "SQ", VM => "1", VERSION => "Supplement_120"}, |
|
2658
|
|
|
|
|
|
|
LineStyleSequence => { GRP => "0070", ELEM => "0232", VR => "SQ", VM => "1", VERSION => "Supplement_120"}, |
|
2659
|
|
|
|
|
|
|
FillStyleSequence => { GRP => "0070", ELEM => "0233", VR => "SQ", VM => "1", VERSION => "Supplement_120"}, |
|
2660
|
|
|
|
|
|
|
GraphicGroupSequence => { GRP => "0070", ELEM => "0234", VR => "SQ", VM => "1", VERSION => "Supplement_120"}, |
|
2661
|
|
|
|
|
|
|
TextColorCIELabValue => { GRP => "0070", ELEM => "0241", VR => "US", VM => "3", VERSION => "Supplement_120"}, |
|
2662
|
|
|
|
|
|
|
HorizontalAlignment => { GRP => "0070", ELEM => "0242", VR => "CS", VM => "1", VERSION => "Supplement_120"}, |
|
2663
|
|
|
|
|
|
|
VerticalAlignment => { GRP => "0070", ELEM => "0243", VR => "CS", VM => "1", VERSION => "Supplement_120"}, |
|
2664
|
|
|
|
|
|
|
ShadowStyle => { GRP => "0070", ELEM => "0244", VR => "CS", VM => "1", VERSION => "Supplement_120"}, |
|
2665
|
|
|
|
|
|
|
ShadowOffsetX => { GRP => "0070", ELEM => "0245", VR => "FL", VM => "1", VERSION => "Supplement_120"}, |
|
2666
|
|
|
|
|
|
|
ShadowOffsetY => { GRP => "0070", ELEM => "0246", VR => "FL", VM => "1", VERSION => "Supplement_120"}, |
|
2667
|
|
|
|
|
|
|
ShadowColorCIELabValue => { GRP => "0070", ELEM => "0247", VR => "US", VM => "3", VERSION => "Supplement_120"}, |
|
2668
|
|
|
|
|
|
|
Underlined => { GRP => "0070", ELEM => "0248", VR => "CS", VM => "1", VERSION => "Supplement_120"}, |
|
2669
|
|
|
|
|
|
|
Bold => { GRP => "0070", ELEM => "0249", VR => "CS", VM => "1", VERSION => "Supplement_120"}, |
|
2670
|
|
|
|
|
|
|
Italic => { GRP => "0070", ELEM => "0250", VR => "CS", VM => "1", VERSION => "Supplement_120"}, |
|
2671
|
|
|
|
|
|
|
PatternOnColorCIELabValue => { GRP => "0070", ELEM => "0251", VR => "US", VM => "3", VERSION => "Supplement_120"}, |
|
2672
|
|
|
|
|
|
|
PatternOffColorCIELabValue => { GRP => "0070", ELEM => "0252", VR => "US", VM => "3", VERSION => "Supplement_120"}, |
|
2673
|
|
|
|
|
|
|
LineThickness => { GRP => "0070", ELEM => "0253", VR => "FL", VM => "1", VERSION => "Supplement_120"}, |
|
2674
|
|
|
|
|
|
|
LineDashingStyle => { GRP => "0070", ELEM => "0254", VR => "CS", VM => "1", VERSION => "Supplement_120"}, |
|
2675
|
|
|
|
|
|
|
LinePattern => { GRP => "0070", ELEM => "0255", VR => "UL", VM => "1", VERSION => "Supplement_120"}, |
|
2676
|
|
|
|
|
|
|
FillPattern => { GRP => "0070", ELEM => "0256", VR => "OB", VM => "1", VERSION => "Supplement_120"}, |
|
2677
|
|
|
|
|
|
|
FillMode => { GRP => "0070", ELEM => "0257", VR => "CS", VM => "1", VERSION => "Supplement_120"}, |
|
2678
|
|
|
|
|
|
|
ShadowOpacity => { GRP => "0070", ELEM => "0258", VR => "FL", VM => "1", VERSION => "Supplement_120"}, |
|
2679
|
|
|
|
|
|
|
GapLength => { GRP => "0070", ELEM => "0261", VR => "FL", VM => "1", VERSION => "Supplement_120"}, |
|
2680
|
|
|
|
|
|
|
DiameterOfVisibility => { GRP => "0070", ELEM => "0262", VR => "FL", VM => "1", VERSION => "Supplement_120"}, |
|
2681
|
|
|
|
|
|
|
RotationPoint => { GRP => "0070", ELEM => "0273", VR => "FL", VM => "2", VERSION => "Supplement_120"}, |
|
2682
|
|
|
|
|
|
|
TickAlignment => { GRP => "0070", ELEM => "0274", VR => "CS", VM => "1", VERSION => "Supplement_120"}, |
|
2683
|
|
|
|
|
|
|
ShowTickLabel => { GRP => "0070", ELEM => "0278", VR => "CS", VM => "1", VERSION => "Supplement_120"}, |
|
2684
|
|
|
|
|
|
|
TickLabelAlignment => { GRP => "0070", ELEM => "0279", VR => "CS", VM => "1", VERSION => "Supplement_120"}, |
|
2685
|
|
|
|
|
|
|
CompoundGraphicUnits => { GRP => "0070", ELEM => "0282", VR => "CS", VM => "1", VERSION => "Supplement_120"}, |
|
2686
|
|
|
|
|
|
|
PatternOnOpacity => { GRP => "0070", ELEM => "0284", VR => "FL", VM => "1", VERSION => "Supplement_120"}, |
|
2687
|
|
|
|
|
|
|
PatternOffOpacity => { GRP => "0070", ELEM => "0285", VR => "FL", VM => "1", VERSION => "Supplement_120"}, |
|
2688
|
|
|
|
|
|
|
MajorTicksSequence => { GRP => "0070", ELEM => "0287", VR => "SQ", VM => "1", VERSION => "Supplement_120"}, |
|
2689
|
|
|
|
|
|
|
TickPosition => { GRP => "0070", ELEM => "0288", VR => "FL", VM => "1", VERSION => "Supplement_120"}, |
|
2690
|
|
|
|
|
|
|
TickLabel => { GRP => "0070", ELEM => "0289", VR => "SH", VM => "1", VERSION => "Supplement_120"}, |
|
2691
|
|
|
|
|
|
|
CompoundGraphicType => { GRP => "0070", ELEM => "0294", VR => "CS", VM => "1", VERSION => "Supplement_120"}, |
|
2692
|
|
|
|
|
|
|
GraphicGroupID => { GRP => "0070", ELEM => "0295", VR => "UL", VM => "1", VERSION => "Supplement_120"}, |
|
2693
|
|
|
|
|
|
|
ImplantSize => { GRP => "0068", ELEM => "6210", VR => "LO", VM => "1", VERSION => "Supplement_131"}, |
|
2694
|
|
|
|
|
|
|
ImplantTemplateVersion => { GRP => "0068", ELEM => "6221", VR => "LO", VM => "1", VERSION => "Supplement_131"}, |
|
2695
|
|
|
|
|
|
|
ReplacedImplantTemplateSequence => { GRP => "0068", ELEM => "6222", VR => "SQ", VM => "1", VERSION => "Supplement_131"}, |
|
2696
|
|
|
|
|
|
|
ImplantType => { GRP => "0068", ELEM => "6223", VR => "CS", VM => "1", VERSION => "Supplement_131"}, |
|
2697
|
|
|
|
|
|
|
DerivationImplantTemplateSequence => { GRP => "0068", ELEM => "6224", VR => "SQ", VM => "1", VERSION => "Supplement_131"}, |
|
2698
|
|
|
|
|
|
|
OriginalImplantTemplateSequence => { GRP => "0068", ELEM => "6225", VR => "SQ", VM => "1", VERSION => "Supplement_131"}, |
|
2699
|
|
|
|
|
|
|
EffectiveDateTime => { GRP => "0068", ELEM => "6226", VR => "DT", VM => "1", VERSION => "Supplement_131"}, |
|
2700
|
|
|
|
|
|
|
ImplantTargetAnatomySequence => { GRP => "0068", ELEM => "6230", VR => "SQ", VM => "1", VERSION => "Supplement_131"}, |
|
2701
|
|
|
|
|
|
|
InformationFromManufacturerSequence => { GRP => "0068", ELEM => "6260", VR => "SQ", VM => "1", VERSION => "Supplement_131"}, |
|
2702
|
|
|
|
|
|
|
NotificationFromManufacturerSequence => { GRP => "0068", ELEM => "6265", VR => "SQ", VM => "1", VERSION => "Supplement_131"}, |
|
2703
|
|
|
|
|
|
|
InformationIssueDateTime => { GRP => "0068", ELEM => "6270", VR => "DT", VM => "1", VERSION => "Supplement_131"}, |
|
2704
|
|
|
|
|
|
|
InformationSummary => { GRP => "0068", ELEM => "6280", VR => "ST", VM => "1", VERSION => "Supplement_131"}, |
|
2705
|
|
|
|
|
|
|
ImplantRegulatoryDisapprovalCodeSequence => { GRP => "0068", ELEM => "62A0", VR => "SQ", VM => "1", VERSION => "Supplement_131"}, |
|
2706
|
|
|
|
|
|
|
OverallTemplateSpatialTolerance => { GRP => "0068", ELEM => "62A5", VR => "FD", VM => "1", VERSION => "Supplement_131"}, |
|
2707
|
|
|
|
|
|
|
HPGLDocumentSequence => { GRP => "0068", ELEM => "62C0", VR => "SQ", VM => "1", VERSION => "Supplement_131"}, |
|
2708
|
|
|
|
|
|
|
HPGLDocumentID => { GRP => "0068", ELEM => "62D0", VR => "US", VM => "1", VERSION => "Supplement_131"}, |
|
2709
|
|
|
|
|
|
|
HPGLDocumentLabel => { GRP => "0068", ELEM => "62D5", VR => "LO", VM => "1", VERSION => "Supplement_131"}, |
|
2710
|
|
|
|
|
|
|
ViewOrientationCodeSequence => { GRP => "0068", ELEM => "62E0", VR => "SQ", VM => "1", VERSION => "Supplement_131"}, |
|
2711
|
|
|
|
|
|
|
ViewOrientationModifier => { GRP => "0068", ELEM => "62F0", VR => "FD", VM => "9", VERSION => "Supplement_131"}, |
|
2712
|
|
|
|
|
|
|
HPGLDocumentScaling => { GRP => "0068", ELEM => "62F2", VR => "FD", VM => "1", VERSION => "Supplement_131"}, |
|
2713
|
|
|
|
|
|
|
HPGLDocument => { GRP => "0068", ELEM => "6300", VR => "OB", VM => "1", VERSION => "Supplement_131"}, |
|
2714
|
|
|
|
|
|
|
HPGLContourPenNumber => { GRP => "0068", ELEM => "6310", VR => "US", VM => "1", VERSION => "Supplement_131"}, |
|
2715
|
|
|
|
|
|
|
HPGLPenSequence => { GRP => "0068", ELEM => "6320", VR => "SQ", VM => "1", VERSION => "Supplement_131"}, |
|
2716
|
|
|
|
|
|
|
HPGLPenNumber => { GRP => "0068", ELEM => "6330", VR => "US", VM => "1", VERSION => "Supplement_131"}, |
|
2717
|
|
|
|
|
|
|
HPGLPenLabel => { GRP => "0068", ELEM => "6340", VR => "LO", VM => "1", VERSION => "Supplement_131"}, |
|
2718
|
|
|
|
|
|
|
HPGLPenDescription => { GRP => "0068", ELEM => "6345", VR => "ST", VM => "1", VERSION => "Supplement_131"}, |
|
2719
|
|
|
|
|
|
|
RecommendedRotationPoint => { GRP => "0068", ELEM => "6346", VR => "FD", VM => "2", VERSION => "Supplement_131"}, |
|
2720
|
|
|
|
|
|
|
BoundingRectangle => { GRP => "0068", ELEM => "6347", VR => "FD", VM => "4", VERSION => "Supplement_131"}, |
|
2721
|
|
|
|
|
|
|
ImplantTemplate3DModelSurfaceNumber => { GRP => "0068", ELEM => "6350", VR => "US", VM => "1-n", VERSION => "Supplement_131"}, |
|
2722
|
|
|
|
|
|
|
SurfaceModelDescriptionSequence => { GRP => "0068", ELEM => "6360", VR => "SQ", VM => "1", VERSION => "Supplement_131"}, |
|
2723
|
|
|
|
|
|
|
SurfaceModelLabel => { GRP => "0068", ELEM => "6380", VR => "LO", VM => "1", VERSION => "Supplement_131"}, |
|
2724
|
|
|
|
|
|
|
SurfaceModelScalingFactor => { GRP => "0068", ELEM => "6390", VR => "FD", VM => "1", VERSION => "Supplement_131"}, |
|
2725
|
|
|
|
|
|
|
MaterialsCodeSequence => { GRP => "0068", ELEM => "63A0", VR => "SQ", VM => "1", VERSION => "Supplement_131"}, |
|
2726
|
|
|
|
|
|
|
CoatingMaterialsCodeSequence => { GRP => "0068", ELEM => "63A4", VR => "SQ", VM => "1", VERSION => "Supplement_131"}, |
|
2727
|
|
|
|
|
|
|
ImplantTypeCodeSequence => { GRP => "0068", ELEM => "63A8", VR => "SQ", VM => "1", VERSION => "Supplement_131"}, |
|
2728
|
|
|
|
|
|
|
FixationMethodCodeSequence => { GRP => "0068", ELEM => "63AC", VR => "SQ", VM => "1", VERSION => "Supplement_131"}, |
|
2729
|
|
|
|
|
|
|
MatingFeatureSetsSequence => { GRP => "0068", ELEM => "63B0", VR => "SQ", VM => "1", VERSION => "Supplement_131"}, |
|
2730
|
|
|
|
|
|
|
MatingFeatureSetID => { GRP => "0068", ELEM => "63C0", VR => "US", VM => "1", VERSION => "Supplement_131"}, |
|
2731
|
|
|
|
|
|
|
MatingFeatureSetLabel => { GRP => "0068", ELEM => "63D0", VR => "LO", VM => "1", VERSION => "Supplement_131"}, |
|
2732
|
|
|
|
|
|
|
MatingFeatureSequence => { GRP => "0068", ELEM => "63E0", VR => "SQ", VM => "1", VERSION => "Supplement_131"}, |
|
2733
|
|
|
|
|
|
|
MatingFeatureID => { GRP => "0068", ELEM => "63F0", VR => "US", VM => "1", VERSION => "Supplement_131"}, |
|
2734
|
|
|
|
|
|
|
MatingFeatureDegreeOfFreedomSequence => { GRP => "0068", ELEM => "6400", VR => "SQ", VM => "1", VERSION => "Supplement_131"}, |
|
2735
|
|
|
|
|
|
|
DegreeOfFreedomID => { GRP => "0068", ELEM => "6410", VR => "US", VM => "1", VERSION => "Supplement_131"}, |
|
2736
|
|
|
|
|
|
|
DegreeOfFreedomType => { GRP => "0068", ELEM => "6420", VR => "CS", VM => "1", VERSION => "Supplement_131"}, |
|
2737
|
|
|
|
|
|
|
TwoDMatingFeatureCoordinatesSequence => { GRP => "0068", ELEM => "6430", VR => "SQ", VM => "1", VERSION => "Supplement_131"}, |
|
2738
|
|
|
|
|
|
|
ReferencedHPGLDocumentID => { GRP => "0068", ELEM => "6440", VR => "US", VM => "1", VERSION => "Supplement_131"}, |
|
2739
|
|
|
|
|
|
|
TwoDMatingPoint => { GRP => "0068", ELEM => "6450", VR => "FD", VM => "2", VERSION => "Supplement_131"}, |
|
2740
|
|
|
|
|
|
|
TwoDMatingAxes => { GRP => "0068", ELEM => "6460", VR => "FD", VM => "4", VERSION => "Supplement_131"}, |
|
2741
|
|
|
|
|
|
|
TwoDDegreeOfFreedomSequence => { GRP => "0068", ELEM => "6470", VR => "SQ", VM => "1", VERSION => "Supplement_131"}, |
|
2742
|
|
|
|
|
|
|
ThreeDDegreeOfFreedomAxis => { GRP => "0068", ELEM => "6490", VR => "FD", VM => "3", VERSION => "Supplement_131"}, |
|
2743
|
|
|
|
|
|
|
RangeOfFreedom => { GRP => "0068", ELEM => "64A0", VR => "FD", VM => "2", VERSION => "Supplement_131"}, |
|
2744
|
|
|
|
|
|
|
ThreeDMatingPoint => { GRP => "0068", ELEM => "64C0", VR => "FD", VM => "3", VERSION => "Supplement_131"}, |
|
2745
|
|
|
|
|
|
|
ThreeDMatingAxes => { GRP => "0068", ELEM => "64D0", VR => "FD", VM => "9", VERSION => "Supplement_131"}, |
|
2746
|
|
|
|
|
|
|
TwoDDegreeOfFreedomAxis => { GRP => "0068", ELEM => "64F0", VR => "FD", VM => "3", VERSION => "Supplement_131"}, |
|
2747
|
|
|
|
|
|
|
PlanningLandmarkPointSequence => { GRP => "0068", ELEM => "6500", VR => "SQ", VM => "1", VERSION => "Supplement_131"}, |
|
2748
|
|
|
|
|
|
|
PlanningLandmarkLineSequence => { GRP => "0068", ELEM => "6510", VR => "SQ", VM => "1", VERSION => "Supplement_131"}, |
|
2749
|
|
|
|
|
|
|
PlanningLandmarkPlaneSequence => { GRP => "0068", ELEM => "6520", VR => "SQ", VM => "1", VERSION => "Supplement_131"}, |
|
2750
|
|
|
|
|
|
|
PlanningLandmarkID => { GRP => "0068", ELEM => "6530", VR => "US", VM => "1", VERSION => "Supplement_131"}, |
|
2751
|
|
|
|
|
|
|
PlanningLandmarkDescription => { GRP => "0068", ELEM => "6540", VR => "LO", VM => "1", VERSION => "Supplement_131"}, |
|
2752
|
|
|
|
|
|
|
PlanningLandmarkIdentificationCodeSequence => { GRP => "0068", ELEM => "6545", VR => "SQ", VM => "1", VERSION => "Supplement_131"}, |
|
2753
|
|
|
|
|
|
|
TwoDPointCoordinatesSequence => { GRP => "0068", ELEM => "6550", VR => "SQ", VM => "1", VERSION => "Supplement_131"}, |
|
2754
|
|
|
|
|
|
|
TwoDPointCoordinates => { GRP => "0068", ELEM => "6560", VR => "FD", VM => "2", VERSION => "Supplement_131"}, |
|
2755
|
|
|
|
|
|
|
ThreeDPointCoordinates => { GRP => "0068", ELEM => "6590", VR => "FD", VM => "3", VERSION => "Supplement_131"}, |
|
2756
|
|
|
|
|
|
|
TwoDLineCoordinatesSequence => { GRP => "0068", ELEM => "65A0", VR => "SQ", VM => "1", VERSION => "Supplement_131"}, |
|
2757
|
|
|
|
|
|
|
TwoDLineCoordinates => { GRP => "0068", ELEM => "65B0", VR => "FD", VM => "4", VERSION => "Supplement_131"}, |
|
2758
|
|
|
|
|
|
|
ThreeDLineCoordinates => { GRP => "0068", ELEM => "65D0", VR => "FD", VM => "6", VERSION => "Supplement_131"}, |
|
2759
|
|
|
|
|
|
|
TwoDPlaneCoordinatesSequence => { GRP => "0068", ELEM => "65E0", VR => "SQ", VM => "1", VERSION => "Supplement_131"}, |
|
2760
|
|
|
|
|
|
|
TwoDPlaneIntersection => { GRP => "0068", ELEM => "65F0", VR => "FD", VM => "4", VERSION => "Supplement_131"}, |
|
2761
|
|
|
|
|
|
|
ThreeDPlaneOrigin => { GRP => "0068", ELEM => "6610", VR => "FD", VM => "3", VERSION => "Supplement_131"}, |
|
2762
|
|
|
|
|
|
|
ThreeDPlaneNormal => { GRP => "0068", ELEM => "6620", VR => "FD", VM => "3", VERSION => "Supplement_131"}, |
|
2763
|
|
|
|
|
|
|
ImplantAssemblyTemplateName => { GRP => "0076", ELEM => "0001", VR => "LO", VM => "1", VERSION => "Supplement_131"}, |
|
2764
|
|
|
|
|
|
|
ImplantAssemblyTemplateIssuer => { GRP => "0076", ELEM => "0003", VR => "LO", VM => "1", VERSION => "Supplement_131"}, |
|
2765
|
|
|
|
|
|
|
ImplantAssemblyTemplateVersion => { GRP => "0076", ELEM => "0006", VR => "LO", VM => "1", VERSION => "Supplement_131"}, |
|
2766
|
|
|
|
|
|
|
ReplacedImplantAssemblyTemplateSequence => { GRP => "0076", ELEM => "0008", VR => "SQ", VM => "1", VERSION => "Supplement_131"}, |
|
2767
|
|
|
|
|
|
|
ImplantAssemblyTemplateType => { GRP => "0076", ELEM => "000A", VR => "CS", VM => "1", VERSION => "Supplement_131"}, |
|
2768
|
|
|
|
|
|
|
OriginalImplantAssemblyTemplateSequence => { GRP => "0076", ELEM => "000C", VR => "SQ", VM => "1", VERSION => "Supplement_131"}, |
|
2769
|
|
|
|
|
|
|
DerivationImplantAssemblyTemplateSequence => { GRP => "0076", ELEM => "000E", VR => "SQ", VM => "1", VERSION => "Supplement_131"}, |
|
2770
|
|
|
|
|
|
|
ImplantAssemblyTemplateTargetAnatomySequence => { GRP => "0076", ELEM => "0010", VR => "SQ", VM => "1", VERSION => "Supplement_131"}, |
|
2771
|
|
|
|
|
|
|
ProcedureTypeCodeSequence => { GRP => "0076", ELEM => "0020", VR => "SQ", VM => "1", VERSION => "Supplement_131"}, |
|
2772
|
|
|
|
|
|
|
SurgicalTechnique => { GRP => "0076", ELEM => "0030", VR => "LO", VM => "1", VERSION => "Supplement_131"}, |
|
2773
|
|
|
|
|
|
|
ComponentTypesSequence => { GRP => "0076", ELEM => "0032", VR => "SQ", VM => "1", VERSION => "Supplement_131"}, |
|
2774
|
|
|
|
|
|
|
ComponentTypeCodeSequence => { GRP => "0076", ELEM => "0034", VR => "CS", VM => "1", VERSION => "Supplement_131"}, |
|
2775
|
|
|
|
|
|
|
ExclusiveComponentType => { GRP => "0076", ELEM => "0036", VR => "CS", VM => "1", VERSION => "Supplement_131"}, |
|
2776
|
|
|
|
|
|
|
MandatoryComponentType => { GRP => "0076", ELEM => "0038", VR => "CS", VM => "1", VERSION => "Supplement_131"}, |
|
2777
|
|
|
|
|
|
|
ComponentSequence => { GRP => "0076", ELEM => "0040", VR => "SQ", VM => "1", VERSION => "Supplement_131"}, |
|
2778
|
|
|
|
|
|
|
ComponentID => { GRP => "0076", ELEM => "0055", VR => "US", VM => "1", VERSION => "Supplement_131"}, |
|
2779
|
|
|
|
|
|
|
ComponentAssemblySequence => { GRP => "0076", ELEM => "0060", VR => "SQ", VM => "1", VERSION => "Supplement_131"}, |
|
2780
|
|
|
|
|
|
|
Component1ReferencedID => { GRP => "0076", ELEM => "0070", VR => "US", VM => "1", VERSION => "Supplement_131"}, |
|
2781
|
|
|
|
|
|
|
Component1ReferencedMatingFeatureSetID => { GRP => "0076", ELEM => "0080", VR => "US", VM => "1", VERSION => "Supplement_131"}, |
|
2782
|
|
|
|
|
|
|
Component1ReferencedMatingFeatureID => { GRP => "0076", ELEM => "0090", VR => "US", VM => "1", VERSION => "Supplement_131"}, |
|
2783
|
|
|
|
|
|
|
Component2ReferencedID => { GRP => "0076", ELEM => "00A0", VR => "US", VM => "1", VERSION => "Supplement_131"}, |
|
2784
|
|
|
|
|
|
|
Component2ReferencedMatingFeatureSetID => { GRP => "0076", ELEM => "00B0", VR => "US", VM => "1", VERSION => "Supplement_131"}, |
|
2785
|
|
|
|
|
|
|
Component2ReferencedMatingFeatureID => { GRP => "0076", ELEM => "00C0", VR => "US", VM => "1", VERSION => "Supplement_131"}, |
|
2786
|
|
|
|
|
|
|
ImplantTemplateGroupName => { GRP => "0078", ELEM => "0000", VR => "LO", VM => "1", VERSION => "Supplement_131"}, |
|
2787
|
|
|
|
|
|
|
ImplantTemplateGroupDescription => { GRP => "0078", ELEM => "0010", VR => "ST", VM => "1", VERSION => "Supplement_131"}, |
|
2788
|
|
|
|
|
|
|
ImplantTemplateGroupIssuer => { GRP => "0078", ELEM => "0020", VR => "LO", VM => "1", VERSION => "Supplement_131"}, |
|
2789
|
|
|
|
|
|
|
ImplantTemplateGroupVersion => { GRP => "0078", ELEM => "0024", VR => "LO", VM => "1", VERSION => "Supplement_131"}, |
|
2790
|
|
|
|
|
|
|
ReplacedImplantTemplateGroupSequence => { GRP => "0078", ELEM => "0026", VR => "SQ", VM => "1", VERSION => "Supplement_131"}, |
|
2791
|
|
|
|
|
|
|
ImplantTemplateGroupTargetAnatomySequence => { GRP => "0078", ELEM => "0028", VR => "SQ", VM => "1", VERSION => "Supplement_131"}, |
|
2792
|
|
|
|
|
|
|
ImplantTemplateGroupMembersSequence => { GRP => "0078", ELEM => "002A", VR => "SQ", VM => "1", VERSION => "Supplement_131"}, |
|
2793
|
|
|
|
|
|
|
ImplantTemplateGroupMemberID => { GRP => "0078", ELEM => "002E", VR => "US", VM => "1", VERSION => "Supplement_131"}, |
|
2794
|
|
|
|
|
|
|
ThreeDImplantTemplateGroupMemberMatchingPoint => { GRP => "0078", ELEM => "0050", VR => "FD", VM => "3", VERSION => "Supplement_131"}, |
|
2795
|
|
|
|
|
|
|
ThreeDImplantTemplateGroupMemberMatchingAxes => { GRP => "0078", ELEM => "0060", VR => "FD", VM => "9", VERSION => "Supplement_131"}, |
|
2796
|
|
|
|
|
|
|
ImplantTemplateGroupMemberMatching2DCoordinatesSequence => { GRP => "0078", ELEM => "0070", VR => "SQ", VM => "1", VERSION => "Supplement_131"}, |
|
2797
|
|
|
|
|
|
|
TwoDImplantTemplateGroupMemberMatchingPoint => { GRP => "0078", ELEM => "0090", VR => "FD", VM => "2", VERSION => "Supplement_131"}, |
|
2798
|
|
|
|
|
|
|
TwoDImplantTemplateGroupMemberMatchingAxes => { GRP => "0078", ELEM => "00A0", VR => "FD", VM => "4", VERSION => "Supplement_131"}, |
|
2799
|
|
|
|
|
|
|
ImplantTemplateGroupVariationDimensionSequence => { GRP => "0078", ELEM => "00B0", VR => "SQ", VM => "1", VERSION => "Supplement_131"}, |
|
2800
|
|
|
|
|
|
|
ImplantTemplateGroupVariationDimensionName => { GRP => "0078", ELEM => "00B2", VR => "LO", VM => "1", VERSION => "Supplement_131"}, |
|
2801
|
|
|
|
|
|
|
ImplantTemplateGroupVariationDimensionRankSequence => { GRP => "0078", ELEM => "00B4", VR => "SQ", VM => "1", VERSION => "Supplement_131"}, |
|
2802
|
|
|
|
|
|
|
ReferencedImplantTemplateGroupMemberID => { GRP => "0078", ELEM => "00B6", VR => "US", VM => "1", VERSION => "Supplement_131"}, |
|
2803
|
|
|
|
|
|
|
ImplantTemplateGroupVariationDimensionRank => { GRP => "0078", ELEM => "00B8", VR => "US", VM => "1", VERSION => "Supplement_131"}, |
|
2804
|
|
|
|
|
|
|
OphthalmicAxialMeasurementsRightEyeSequence => { GRP => "0022", ELEM => "1007", VR => "SQ", VM => "1", VERSION => "Supplement_144"}, |
|
2805
|
|
|
|
|
|
|
OphthalmicAxialMeasurementsLeftEyeSequence => { GRP => "0022", ELEM => "1008", VR => "SQ", VM => "1", VERSION => "Supplement_144"}, |
|
2806
|
|
|
|
|
|
|
OphthalmicAxialMeasurementsDeviceType => { GRP => "0022", ELEM => "1009", VR => "CS", VM => "1", VERSION => "Supplement_144"}, |
|
2807
|
|
|
|
|
|
|
OphthalmicAxialLengthMeasurementsType => { GRP => "0022", ELEM => "1010", VR => "CS", VM => "1", VERSION => "Supplement_144"}, |
|
2808
|
|
|
|
|
|
|
OphthalmicAxialLengthSequence => { GRP => "0022", ELEM => "1012", VR => "SQ", VM => "1", VERSION => "Supplement_144"}, |
|
2809
|
|
|
|
|
|
|
OphthalmicAxialLength => { GRP => "0022", ELEM => "1019", VR => "FL", VM => "1", VERSION => "Supplement_144"}, |
|
2810
|
|
|
|
|
|
|
LensStatusCodeSequence => { GRP => "0022", ELEM => "1024", VR => "SQ", VM => "1", VERSION => "Supplement_144"}, |
|
2811
|
|
|
|
|
|
|
VitreousStatusCodeSequence => { GRP => "0022", ELEM => "1025", VR => "SQ", VM => "1", VERSION => "Supplement_144"}, |
|
2812
|
|
|
|
|
|
|
IOLFormulaCodeSequence => { GRP => "0022", ELEM => "1028", VR => "SQ", VM => "1", VERSION => "Supplement_144"}, |
|
2813
|
|
|
|
|
|
|
IOLFormulaDetail => { GRP => "0022", ELEM => "1029", VR => "LO", VM => "1", VERSION => "Supplement_144"}, |
|
2814
|
|
|
|
|
|
|
KeratometerIndex => { GRP => "0022", ELEM => "1033", VR => "FL", VM => "1", VERSION => "Supplement_144"}, |
|
2815
|
|
|
|
|
|
|
SourceofOphthalmicAxialLengthCodeSequence => { GRP => "0022", ELEM => "1035", VR => "SQ", VM => "1", VERSION => "Supplement_144"}, |
|
2816
|
|
|
|
|
|
|
TargetRefraction => { GRP => "0022", ELEM => "1037", VR => "FL", VM => "1", VERSION => "Supplement_144"}, |
|
2817
|
|
|
|
|
|
|
RefractiveProcedureOccurred => { GRP => "0022", ELEM => "1039", VR => "CS", VM => "1", VERSION => "Supplement_144"}, |
|
2818
|
|
|
|
|
|
|
RefractiveSurgeryTypeCodeSequence => { GRP => "0022", ELEM => "1040", VR => "SQ", VM => "1", VERSION => "Supplement_144"}, |
|
2819
|
|
|
|
|
|
|
OphthalmicUltrasoundMethodCodeSequence => { GRP => "0022", ELEM => "1044", VR => "SQ", VM => "1", VERSION => "Supplement_144"}, |
|
2820
|
|
|
|
|
|
|
OphthalmicAxialLengthMeasurementsSequence => { GRP => "0022", ELEM => "1050", VR => "SQ", VM => "1", VERSION => "Supplement_144"}, |
|
2821
|
|
|
|
|
|
|
IOLPower => { GRP => "0022", ELEM => "1053", VR => "FL", VM => "1", VERSION => "Supplement_144"}, |
|
2822
|
|
|
|
|
|
|
PredictedRefractiveError => { GRP => "0022", ELEM => "1054", VR => "FL", VM => "1", VERSION => "Supplement_144"}, |
|
2823
|
|
|
|
|
|
|
OphthalmicAxialLengthVelocity => { GRP => "0022", ELEM => "1059", VR => "FL", VM => "1", VERSION => "Supplement_144"}, |
|
2824
|
|
|
|
|
|
|
LensStatusDescription => { GRP => "0022", ELEM => "1065", VR => "LO", VM => "1", VERSION => "Supplement_144"}, |
|
2825
|
|
|
|
|
|
|
VitreousStatusDescription => { GRP => "0022", ELEM => "1066", VR => "LO", VM => "1", VERSION => "Supplement_144"}, |
|
2826
|
|
|
|
|
|
|
IOLPowerSequence => { GRP => "0022", ELEM => "1090", VR => "SQ", VM => "1", VERSION => "Supplement_144"}, |
|
2827
|
|
|
|
|
|
|
LensConstantSequence => { GRP => "0022", ELEM => "1092", VR => "SQ", VM => "1", VERSION => "Supplement_144"}, |
|
2828
|
|
|
|
|
|
|
IOLManufacturer => { GRP => "0022", ELEM => "1093", VR => "LO", VM => "1", VERSION => "Supplement_144"}, |
|
2829
|
|
|
|
|
|
|
ImplantName => { GRP => "0022", ELEM => "1095", VR => "LO", VM => "1", VERSION => "Supplement_144"}, |
|
2830
|
|
|
|
|
|
|
KeratometryMeasurementTypeCodeSequence => { GRP => "0022", ELEM => "1096", VR => "SQ", VM => "1", VERSION => "Supplement_144"}, |
|
2831
|
|
|
|
|
|
|
ImplantPartNumber => { GRP => "0022", ELEM => "1097", VR => "LO", VM => "1", VERSION => "Supplement_144"}, |
|
2832
|
|
|
|
|
|
|
ReferencedOphthalmicAxialMeasurementsSequence => { GRP => "0022", ELEM => "1100", VR => "SQ", VM => "1", VERSION => "Supplement_144"}, |
|
2833
|
|
|
|
|
|
|
OphthalmicAxialLengthMeasurementsSegmentNameCodeSequence => { GRP => "0022", ELEM => "1101", VR => "SQ", VM => "1", VERSION => "Supplement_144"}, |
|
2834
|
|
|
|
|
|
|
RefractiveErrorBeforeRefractiveSurgeryCodeSequence => { GRP => "0022", ELEM => "1103", VR => "SQ", VM => "1", VERSION => "Supplement_144"}, |
|
2835
|
|
|
|
|
|
|
IOLPowerForExactEmmetropia => { GRP => "0022", ELEM => "1121", VR => "FL", VM => "1", VERSION => "Supplement_144"}, |
|
2836
|
|
|
|
|
|
|
IOLPowerForExactTargetRefraction => { GRP => "0022", ELEM => "1122", VR => "FL", VM => "1", VERSION => "Supplement_144"}, |
|
2837
|
|
|
|
|
|
|
AnteriorChamberDepthDefinitionCodeSequence => { GRP => "0022", ELEM => "1125", VR => "SQ", VM => "1", VERSION => "Supplement_144"}, |
|
2838
|
|
|
|
|
|
|
LensThicknessSequence => { GRP => "0022", ELEM => "1127", VR => "SQ", VM => "1", VERSION => "Supplement_144"}, |
|
2839
|
|
|
|
|
|
|
AnteriorChamberDepthSequence => { GRP => "0022", ELEM => "1128", VR => "SQ", VM => "1", VERSION => "Supplement_144"}, |
|
2840
|
|
|
|
|
|
|
LensThickness => { GRP => "0022", ELEM => "1130", VR => "FL", VM => "1", VERSION => "Supplement_144"}, |
|
2841
|
|
|
|
|
|
|
AnteriorChamberDepth => { GRP => "0022", ELEM => "1131", VR => "FL", VM => "1", VERSION => "Supplement_144"}, |
|
2842
|
|
|
|
|
|
|
SourceofLensThicknessDataCodeSequence => { GRP => "0022", ELEM => "1132", VR => "SQ", VM => "1", VERSION => "Supplement_144"}, |
|
2843
|
|
|
|
|
|
|
SourceofAnteriorChamberDepthDataCodeSequence => { GRP => "0022", ELEM => "1133", VR => "SQ", VM => "1", VERSION => "Supplement_144"}, |
|
2844
|
|
|
|
|
|
|
SourceofRefractiveMeasurementsSequence => { GRP => "0022", ELEM => "1134", VR => "SQ", VM => "1", VERSION => "Supplement_144"}, |
|
2845
|
|
|
|
|
|
|
SourceofRefractiveMeasurementsCodeSequence => { GRP => "0022", ELEM => "1135", VR => "SQ", VM => "1", VERSION => "Supplement_144"}, |
|
2846
|
|
|
|
|
|
|
OphthalmicAxialLengthMeasurementModified => { GRP => "0022", ELEM => "1140", VR => "CS", VM => "1", VERSION => "Supplement_144"}, |
|
2847
|
|
|
|
|
|
|
OphthalmicAxialLengthDataSourceCodeSequence => { GRP => "0022", ELEM => "1150", VR => "SQ", VM => "1", VERSION => "Supplement_144"}, |
|
2848
|
|
|
|
|
|
|
SignaltoNoiseRatio => { GRP => "0022", ELEM => "1155", VR => "FL", VM => "1", VERSION => "Supplement_144"}, |
|
2849
|
|
|
|
|
|
|
OphthalmicAxialLengthDataSourceDescription => { GRP => "0022", ELEM => "1159", VR => "LO", VM => "1", VERSION => "Supplement_144"}, |
|
2850
|
|
|
|
|
|
|
OphthalmicAxialLengthMeasurementsTotalLengthSequence => { GRP => "0022", ELEM => "1210", VR => "SQ", VM => "1", VERSION => "Supplement_144"}, |
|
2851
|
|
|
|
|
|
|
OphthalmicAxialLengthMeasurementsSegmentalLengthSequence => { GRP => "0022", ELEM => "1211", VR => "SQ", VM => "1", VERSION => "Supplement_144"}, |
|
2852
|
|
|
|
|
|
|
OphthalmicAxialLengthMeasurementsLengthSummationSequence => { GRP => "0022", ELEM => "1212", VR => "SQ", VM => "1", VERSION => "Supplement_144"}, |
|
2853
|
|
|
|
|
|
|
UltrasoundOphthalmicAxialLengthMeasurementsSequence => { GRP => "0022", ELEM => "1220", VR => "SQ", VM => "1", VERSION => "Supplement_144"}, |
|
2854
|
|
|
|
|
|
|
OpticalOphthalmicAxialLengthMeasurementsSequence => { GRP => "0022", ELEM => "1225", VR => "SQ", VM => "1", VERSION => "Supplement_144"}, |
|
2855
|
|
|
|
|
|
|
UltrasoundSelectedOphthalmicAxialLengthSequence => { GRP => "0022", ELEM => "1230", VR => "SQ", VM => "1", VERSION => "Supplement_144"}, |
|
2856
|
|
|
|
|
|
|
OphthalmicAxialLengthSelectionMethodCodeSequence => { GRP => "0022", ELEM => "1250", VR => "SQ", VM => "1", VERSION => "Supplement_144"}, |
|
2857
|
|
|
|
|
|
|
OpticalSelectedOphthalmicAxialLengthSequence => { GRP => "0022", ELEM => "1255", VR => "SQ", VM => "1", VERSION => "Supplement_144"}, |
|
2858
|
|
|
|
|
|
|
SelectedSegmentalOphthalmicAxialLengthSequence => { GRP => "0022", ELEM => "1257", VR => "SQ", VM => "1", VERSION => "Supplement_144"}, |
|
2859
|
|
|
|
|
|
|
SelectedTotalOphthalmicAxialLengthSequence => { GRP => "0022", ELEM => "1260", VR => "SQ", VM => "1", VERSION => "Supplement_144"}, |
|
2860
|
|
|
|
|
|
|
OphthalmicAxialLengthQualityMetricSequence => { GRP => "0022", ELEM => "1262", VR => "SQ", VM => "1", VERSION => "Supplement_144"}, |
|
2861
|
|
|
|
|
|
|
OphthalmicAxialLengthQualityMetricTypeCodeSequence => { GRP => "0022", ELEM => "1265", VR => "SQ", VM => "1", VERSION => "Supplement_144"}, |
|
2862
|
|
|
|
|
|
|
IntraocularLensCalculationsRightEyeSequence => { GRP => "0022", ELEM => "1300", VR => "SQ", VM => "1", VERSION => "Supplement_144"}, |
|
2863
|
|
|
|
|
|
|
IntraocularLensCalculationsLeftEyeSequence => { GRP => "0022", ELEM => "1310", VR => "SQ", VM => "1", VERSION => "Supplement_144"}, |
|
2864
|
|
|
|
|
|
|
ReferencedOphthalmicAxialLengthMeasurementQCImageSequence => { GRP => "0022", ELEM => "1330", VR => "SQ", VM => "1", VERSION => "Supplement_144"}, |
|
2865
|
|
|
|
|
|
|
RETIRED_PixelSpacingSequence => { GRP => "0040", ELEM => "08D8", VR => "SQ", VM => "1", VERSION => "Supplement_145/retired"}, |
|
2866
|
|
|
|
|
|
|
RETIRED_CoordinateSystemAxisCodeSequence => { GRP => "0040", ELEM => "08DA", VR => "SQ", VM => "1", VERSION => "Supplement_145/retired"}, |
|
2867
|
|
|
|
|
|
|
ImagedVolumeWidth => { GRP => "0048", ELEM => "0001", VR => "FL", VM => "1", VERSION => "Supplement_145"}, |
|
2868
|
|
|
|
|
|
|
ImagedVolumeHeight => { GRP => "0048", ELEM => "0002", VR => "FL", VM => "1", VERSION => "Supplement_145"}, |
|
2869
|
|
|
|
|
|
|
ImagedVolumeDepth => { GRP => "0048", ELEM => "0003", VR => "FL", VM => "1", VERSION => "Supplement_145"}, |
|
2870
|
|
|
|
|
|
|
TotalPixelMatrixColumns => { GRP => "0048", ELEM => "0006", VR => "UL", VM => "1", VERSION => "Supplement_145"}, |
|
2871
|
|
|
|
|
|
|
TotalPixelMatrixRows => { GRP => "0048", ELEM => "0007", VR => "UL", VM => "1", VERSION => "Supplement_145"}, |
|
2872
|
|
|
|
|
|
|
TotalPixelMatrixOriginSequence => { GRP => "0048", ELEM => "0008", VR => "SQ", VM => "1", VERSION => "Supplement_145"}, |
|
2873
|
|
|
|
|
|
|
SpecimenLabelInImage => { GRP => "0048", ELEM => "0010", VR => "CS", VM => "1", VERSION => "Supplement_145"}, |
|
2874
|
|
|
|
|
|
|
FocusMethod => { GRP => "0048", ELEM => "0011", VR => "CS", VM => "1", VERSION => "Supplement_145"}, |
|
2875
|
|
|
|
|
|
|
ExtendedDepthOfField => { GRP => "0048", ELEM => "0012", VR => "CS", VM => "1", VERSION => "Supplement_145"}, |
|
2876
|
|
|
|
|
|
|
NumberOfFocalPlanes => { GRP => "0048", ELEM => "0013", VR => "US", VM => "1", VERSION => "Supplement_145"}, |
|
2877
|
|
|
|
|
|
|
DistanceBetweenFocalPlanes => { GRP => "0048", ELEM => "0014", VR => "FL", VM => "1", VERSION => "Supplement_145"}, |
|
2878
|
|
|
|
|
|
|
RecommendedAbsentPixelCIELabValue => { GRP => "0048", ELEM => "0015", VR => "US", VM => "3", VERSION => "Supplement_145"}, |
|
2879
|
|
|
|
|
|
|
IlluminatorTypeCodeSequence => { GRP => "0048", ELEM => "0100", VR => "SQ", VM => "1", VERSION => "Supplement_145"}, |
|
2880
|
|
|
|
|
|
|
ImageOrientationSlide => { GRP => "0048", ELEM => "0102", VR => "DS", VM => "6", VERSION => "Supplement_145"}, |
|
2881
|
|
|
|
|
|
|
OpticalPathSequence => { GRP => "0048", ELEM => "0105", VR => "SQ", VM => "1", VERSION => "Supplement_145"}, |
|
2882
|
|
|
|
|
|
|
OpticalPathIdentifier => { GRP => "0048", ELEM => "0106", VR => "SH", VM => "1", VERSION => "Supplement_145"}, |
|
2883
|
|
|
|
|
|
|
OpticalPathDescription => { GRP => "0048", ELEM => "0107", VR => "ST", VM => "1", VERSION => "Supplement_145"}, |
|
2884
|
|
|
|
|
|
|
IlluminationColorCodeSequence => { GRP => "0048", ELEM => "0108", VR => "SQ", VM => "1", VERSION => "Supplement_145"}, |
|
2885
|
|
|
|
|
|
|
SpecimenReferenceSequence => { GRP => "0048", ELEM => "0110", VR => "SQ", VM => "1", VERSION => "Supplement_145"}, |
|
2886
|
|
|
|
|
|
|
CondenserLensPower => { GRP => "0048", ELEM => "0111", VR => "DS", VM => "1", VERSION => "Supplement_145"}, |
|
2887
|
|
|
|
|
|
|
ObjectiveLensPower => { GRP => "0048", ELEM => "0112", VR => "DS", VM => "1", VERSION => "Supplement_145"}, |
|
2888
|
|
|
|
|
|
|
ObjectiveLensNumericalAperture => { GRP => "0048", ELEM => "0113", VR => "DS", VM => "1", VERSION => "Supplement_145"}, |
|
2889
|
|
|
|
|
|
|
PaletteColorLookupTableSequence => { GRP => "0048", ELEM => "0120", VR => "SQ", VM => "1", VERSION => "Supplement_145"}, |
|
2890
|
|
|
|
|
|
|
ReferencedImageNavigationSequence => { GRP => "0048", ELEM => "0200", VR => "SQ", VM => "1", VERSION => "Supplement_145"}, |
|
2891
|
|
|
|
|
|
|
TopLeftHandCornerOfLocalizerArea => { GRP => "0048", ELEM => "0201", VR => "US", VM => "2", VERSION => "Supplement_145"}, |
|
2892
|
|
|
|
|
|
|
BottomRightHandCornerOfLocalizerArea => { GRP => "0048", ELEM => "0202", VR => "US", VM => "2", VERSION => "Supplement_145"}, |
|
2893
|
|
|
|
|
|
|
OpticalPathIdentificationSequence => { GRP => "0048", ELEM => "0207", VR => "SQ", VM => "1", VERSION => "Supplement_145"}, |
|
2894
|
|
|
|
|
|
|
PlanePositionSlideSequence => { GRP => "0048", ELEM => "021A", VR => "SQ", VM => "1", VERSION => "Supplement_145"}, |
|
2895
|
|
|
|
|
|
|
ColumnPositionInTotalImagePixelMatrix => { GRP => "0048", ELEM => "021E", VR => "SL", VM => "1", VERSION => "Supplement_145"}, |
|
2896
|
|
|
|
|
|
|
RowPositionInTotalImagePixelMatrix => { GRP => "0048", ELEM => "021F", VR => "SL", VM => "1", VERSION => "Supplement_145"}, |
|
2897
|
|
|
|
|
|
|
PixelOriginInterpretation => { GRP => "0048", ELEM => "0301", VR => "CS", VM => "1", VERSION => "Supplement_145"}, |
|
2898
|
|
|
|
|
|
|
VisualFieldHorizontalExtent => { GRP => "0024", ELEM => "0010", VR => "FL", VM => "1", VERSION => "Supplement_146"}, |
|
2899
|
|
|
|
|
|
|
VisualFieldVerticalExtent => { GRP => "0024", ELEM => "0011", VR => "FL", VM => "1", VERSION => "Supplement_146"}, |
|
2900
|
|
|
|
|
|
|
VisualFieldShape => { GRP => "0024", ELEM => "0012", VR => "CS", VM => "1", VERSION => "Supplement_146"}, |
|
2901
|
|
|
|
|
|
|
ScreeningTestModeCodeSequence => { GRP => "0024", ELEM => "0016", VR => "SQ", VM => "1", VERSION => "Supplement_146"}, |
|
2902
|
|
|
|
|
|
|
MaximumStimulusLuminance => { GRP => "0024", ELEM => "0018", VR => "FL", VM => "1", VERSION => "Supplement_146"}, |
|
2903
|
|
|
|
|
|
|
BackgroundLuminance => { GRP => "0024", ELEM => "0020", VR => "FL", VM => "1", VERSION => "Supplement_146"}, |
|
2904
|
|
|
|
|
|
|
StimulusColorCodeSequence => { GRP => "0024", ELEM => "0021", VR => "SQ", VM => "1", VERSION => "Supplement_146"}, |
|
2905
|
|
|
|
|
|
|
BackgroundIlluminationColorCodeSequence => { GRP => "0024", ELEM => "0024", VR => "SQ", VM => "1", VERSION => "Supplement_146"}, |
|
2906
|
|
|
|
|
|
|
StimulusArea => { GRP => "0024", ELEM => "0025", VR => "FL", VM => "1", VERSION => "Supplement_146"}, |
|
2907
|
|
|
|
|
|
|
StimulusPresentationTime => { GRP => "0024", ELEM => "0028", VR => "FL", VM => "1", VERSION => "Supplement_146"}, |
|
2908
|
|
|
|
|
|
|
FixationSequence => { GRP => "0024", ELEM => "0032", VR => "SQ", VM => "1", VERSION => "Supplement_146"}, |
|
2909
|
|
|
|
|
|
|
FixationMonitoringCodeSequence => { GRP => "0024", ELEM => "0033", VR => "SQ", VM => "1", VERSION => "Supplement_146"}, |
|
2910
|
|
|
|
|
|
|
VisualFieldCatchTrialSequence => { GRP => "0024", ELEM => "0034", VR => "SQ", VM => "1", VERSION => "Supplement_146"}, |
|
2911
|
|
|
|
|
|
|
FixationCheckedQuantity => { GRP => "0024", ELEM => "0035", VR => "US", VM => "1", VERSION => "Supplement_146"}, |
|
2912
|
|
|
|
|
|
|
PatientNotProperlyFixatedQuantity => { GRP => "0024", ELEM => "0036", VR => "US", VM => "1", VERSION => "Supplement_146"}, |
|
2913
|
|
|
|
|
|
|
PresentedVisualStimuliDataFlag => { GRP => "0024", ELEM => "0037", VR => "CS", VM => "1", VERSION => "Supplement_146"}, |
|
2914
|
|
|
|
|
|
|
NumberOfVisualStimuli => { GRP => "0024", ELEM => "0038", VR => "US", VM => "1", VERSION => "Supplement_146"}, |
|
2915
|
|
|
|
|
|
|
ExcessiveFixationLossesDataFlag => { GRP => "0024", ELEM => "0039", VR => "CS", VM => "1", VERSION => "Supplement_146"}, |
|
2916
|
|
|
|
|
|
|
ExcessiveFixationLosses => { GRP => "0024", ELEM => "0040", VR => "CS", VM => "1", VERSION => "Supplement_146"}, |
|
2917
|
|
|
|
|
|
|
StimuliRetestingQuantity => { GRP => "0024", ELEM => "0042", VR => "US", VM => "1", VERSION => "Supplement_146"}, |
|
2918
|
|
|
|
|
|
|
CommentsOnPatientPerformanceOfVisualField => { GRP => "0024", ELEM => "0044", VR => "LT", VM => "1", VERSION => "Supplement_146"}, |
|
2919
|
|
|
|
|
|
|
FalseNegativesEstimateFlag => { GRP => "0024", ELEM => "0045", VR => "CS", VM => "1", VERSION => "Supplement_146"}, |
|
2920
|
|
|
|
|
|
|
FalseNegativesEstimate => { GRP => "0024", ELEM => "0046", VR => "FL", VM => "1", VERSION => "Supplement_146"}, |
|
2921
|
|
|
|
|
|
|
NegativeCatchTrialsQuantity => { GRP => "0024", ELEM => "0048", VR => "US", VM => "1", VERSION => "Supplement_146"}, |
|
2922
|
|
|
|
|
|
|
FalseNegativesQuantity => { GRP => "0024", ELEM => "0050", VR => "US", VM => "1", VERSION => "Supplement_146"}, |
|
2923
|
|
|
|
|
|
|
ExcessiveFalseNegativesDataFlag => { GRP => "0024", ELEM => "0051", VR => "CS", VM => "1", VERSION => "Supplement_146"}, |
|
2924
|
|
|
|
|
|
|
ExcessiveFalseNegatives => { GRP => "0024", ELEM => "0052", VR => "CS", VM => "1", VERSION => "Supplement_146"}, |
|
2925
|
|
|
|
|
|
|
FalsePositivesEstimateFlag => { GRP => "0024", ELEM => "0053", VR => "CS", VM => "1", VERSION => "Supplement_146"}, |
|
2926
|
|
|
|
|
|
|
FalsePositivesEstimate => { GRP => "0024", ELEM => "0054", VR => "FL", VM => "1", VERSION => "Supplement_146"}, |
|
2927
|
|
|
|
|
|
|
CatchTrialsDataFlag => { GRP => "0024", ELEM => "0055", VR => "CS", VM => "1", VERSION => "Supplement_146"}, |
|
2928
|
|
|
|
|
|
|
PositiveCatchTrialsQuantity => { GRP => "0024", ELEM => "0056", VR => "US", VM => "1", VERSION => "Supplement_146"}, |
|
2929
|
|
|
|
|
|
|
TestPointNormalsDataFlag => { GRP => "0024", ELEM => "0057", VR => "CS", VM => "1", VERSION => "Supplement_146"}, |
|
2930
|
|
|
|
|
|
|
TestPointNormalsSequence => { GRP => "0024", ELEM => "0058", VR => "SQ", VM => "1", VERSION => "Supplement_146"}, |
|
2931
|
|
|
|
|
|
|
GlobalDeviationProbabilityNormalsFlag => { GRP => "0024", ELEM => "0059", VR => "CS", VM => "1", VERSION => "Supplement_146"}, |
|
2932
|
|
|
|
|
|
|
FalsePositivesQuantity => { GRP => "0024", ELEM => "0060", VR => "US", VM => "1", VERSION => "Supplement_146"}, |
|
2933
|
|
|
|
|
|
|
ExcessiveFalsePositivesDataFlag => { GRP => "0024", ELEM => "0061", VR => "CS", VM => "1", VERSION => "Supplement_146"}, |
|
2934
|
|
|
|
|
|
|
ExcessiveFalsePositives => { GRP => "0024", ELEM => "0062", VR => "CS", VM => "1", VERSION => "Supplement_146"}, |
|
2935
|
|
|
|
|
|
|
VisualFieldTestNormalsFlag => { GRP => "0024", ELEM => "0063", VR => "CS", VM => "1", VERSION => "Supplement_146"}, |
|
2936
|
|
|
|
|
|
|
ResultsNormalsSequence => { GRP => "0024", ELEM => "0064", VR => "SQ", VM => "1", VERSION => "Supplement_146"}, |
|
2937
|
|
|
|
|
|
|
AgeCorrectedSensitivityDeviationAlgorithmSequence => { GRP => "0024", ELEM => "0065", VR => "SQ", VM => "1", VERSION => "Supplement_146"}, |
|
2938
|
|
|
|
|
|
|
GlobalDeviationFromNormal => { GRP => "0024", ELEM => "0066", VR => "FL", VM => "1", VERSION => "Supplement_146"}, |
|
2939
|
|
|
|
|
|
|
GeneralizedDefectSensitivityDeviationAlgorithmSequence => { GRP => "0024", ELEM => "0067", VR => "SQ", VM => "1", VERSION => "Supplement_146"}, |
|
2940
|
|
|
|
|
|
|
LocalizedDeviationfromNormal => { GRP => "0024", ELEM => "0068", VR => "FL", VM => "1", VERSION => "Supplement_146"}, |
|
2941
|
|
|
|
|
|
|
PatientReliabilityIndicator => { GRP => "0024", ELEM => "0069", VR => "LO", VM => "1", VERSION => "Supplement_146"}, |
|
2942
|
|
|
|
|
|
|
VisualFieldMeanSensitivity => { GRP => "0024", ELEM => "0070", VR => "FL", VM => "1", VERSION => "Supplement_146"}, |
|
2943
|
|
|
|
|
|
|
GlobalDeviationProbability => { GRP => "0024", ELEM => "0071", VR => "FL", VM => "1", VERSION => "Supplement_146"}, |
|
2944
|
|
|
|
|
|
|
LocalDeviationProbabilityNormalsFlag => { GRP => "0024", ELEM => "0072", VR => "CS", VM => "1", VERSION => "Supplement_146"}, |
|
2945
|
|
|
|
|
|
|
LocalizedDeviationProbability => { GRP => "0024", ELEM => "0073", VR => "FL", VM => "1", VERSION => "Supplement_146"}, |
|
2946
|
|
|
|
|
|
|
ShortTermFluctuationCalculated => { GRP => "0024", ELEM => "0074", VR => "CS", VM => "1", VERSION => "Supplement_146"}, |
|
2947
|
|
|
|
|
|
|
ShortTermFluctuation => { GRP => "0024", ELEM => "0075", VR => "FL", VM => "1", VERSION => "Supplement_146"}, |
|
2948
|
|
|
|
|
|
|
ShortTermFluctuationProbabilityCalculated => { GRP => "0024", ELEM => "0076", VR => "CS", VM => "1", VERSION => "Supplement_146"}, |
|
2949
|
|
|
|
|
|
|
ShortTermFluctuationProbability => { GRP => "0024", ELEM => "0077", VR => "FL", VM => "1", VERSION => "Supplement_146"}, |
|
2950
|
|
|
|
|
|
|
CorrectedLocalizedDeviationFromNormalCalculated => { GRP => "0024", ELEM => "0078", VR => "CS", VM => "1", VERSION => "Supplement_146"}, |
|
2951
|
|
|
|
|
|
|
CorrectedLocalizedDeviationFromNormal => { GRP => "0024", ELEM => "0079", VR => "FL", VM => "1", VERSION => "Supplement_146"}, |
|
2952
|
|
|
|
|
|
|
CorrectedLocalizedDeviationFromNormalProbabilityCalculated => { GRP => "0024", ELEM => "0080", VR => "CS", VM => "1", VERSION => "Supplement_146"}, |
|
2953
|
|
|
|
|
|
|
CorrectedLocalizedDeviationFromNormalProbability => { GRP => "0024", ELEM => "0081", VR => "FL", VM => "1", VERSION => "Supplement_146"}, |
|
2954
|
|
|
|
|
|
|
GlobalDeviationProbabilitySequence => { GRP => "0024", ELEM => "0083", VR => "SQ", VM => "1", VERSION => "Supplement_146"}, |
|
2955
|
|
|
|
|
|
|
LocalizedDeviationProbabilitySequence => { GRP => "0024", ELEM => "0085", VR => "SQ", VM => "1", VERSION => "Supplement_146"}, |
|
2956
|
|
|
|
|
|
|
FovealSensitivityMeasured => { GRP => "0024", ELEM => "0086", VR => "CS", VM => "1", VERSION => "Supplement_146"}, |
|
2957
|
|
|
|
|
|
|
FovealSensitivity => { GRP => "0024", ELEM => "0087", VR => "FL", VM => "1", VERSION => "Supplement_146"}, |
|
2958
|
|
|
|
|
|
|
VisualFieldTestDuration => { GRP => "0024", ELEM => "0088", VR => "FL", VM => "1", VERSION => "Supplement_146"}, |
|
2959
|
|
|
|
|
|
|
VisualFieldTestPointSequence => { GRP => "0024", ELEM => "0089", VR => "SQ", VM => "1", VERSION => "Supplement_146"}, |
|
2960
|
|
|
|
|
|
|
VisualFieldTestPointXCoordinate => { GRP => "0024", ELEM => "0090", VR => "FL", VM => "1", VERSION => "Supplement_146"}, |
|
2961
|
|
|
|
|
|
|
VisualFieldTestPointYCoordinate => { GRP => "0024", ELEM => "0091", VR => "FL", VM => "1", VERSION => "Supplement_146"}, |
|
2962
|
|
|
|
|
|
|
AgeCorrectedSensitivityDeviationValue => { GRP => "0024", ELEM => "0092", VR => "FL", VM => "1", VERSION => "Supplement_146"}, |
|
2963
|
|
|
|
|
|
|
StimulusResults => { GRP => "0024", ELEM => "0093", VR => "CS", VM => "1", VERSION => "Supplement_146"}, |
|
2964
|
|
|
|
|
|
|
SensitivityValue => { GRP => "0024", ELEM => "0094", VR => "FL", VM => "1", VERSION => "Supplement_146"}, |
|
2965
|
|
|
|
|
|
|
RetestStimulusSeen => { GRP => "0024", ELEM => "0095", VR => "CS", VM => "1", VERSION => "Supplement_146"}, |
|
2966
|
|
|
|
|
|
|
RetestSensitivityValue => { GRP => "0024", ELEM => "0096", VR => "FL", VM => "1", VERSION => "Supplement_146"}, |
|
2967
|
|
|
|
|
|
|
VisualFieldTestPointNormalsSequence => { GRP => "0024", ELEM => "0097", VR => "SQ", VM => "1", VERSION => "Supplement_146"}, |
|
2968
|
|
|
|
|
|
|
QuantifiedDefect => { GRP => "0024", ELEM => "0098", VR => "FL", VM => "1", VERSION => "Supplement_146"}, |
|
2969
|
|
|
|
|
|
|
GeneralizedDefectCorrectedSensitivityDeviationFlag => { GRP => "0024", ELEM => "0102", VR => "CS", VM => "1", VERSION => "Supplement_146"}, |
|
2970
|
|
|
|
|
|
|
GeneralizedDefectCorrectedSensitivityDeviationValue => { GRP => "0024", ELEM => "0103", VR => "FL", VM => "1", VERSION => "Supplement_146"}, |
|
2971
|
|
|
|
|
|
|
GeneralizedDefectCorrectedSensitivityDeviationProbabilityValue => { GRP => "0024", ELEM => "0104", VR => "FL", VM => "1", VERSION => "Supplement_146"}, |
|
2972
|
|
|
|
|
|
|
MinimumSensitivityValue => { GRP => "0024", ELEM => "0105", VR => "FL", VM => "1", VERSION => "Supplement_146"}, |
|
2973
|
|
|
|
|
|
|
BlindSpotLocalized => { GRP => "0024", ELEM => "0106", VR => "CS", VM => "1", VERSION => "Supplement_146"}, |
|
2974
|
|
|
|
|
|
|
BlindSpotXCoordinate => { GRP => "0024", ELEM => "0107", VR => "FL", VM => "1", VERSION => "Supplement_146"}, |
|
2975
|
|
|
|
|
|
|
BlindSpotYCoordinate => { GRP => "0024", ELEM => "0108", VR => "FL", VM => "1", VERSION => "Supplement_146"}, |
|
2976
|
|
|
|
|
|
|
VisualAcuityMeasurementSequence => { GRP => "0024", ELEM => "0110", VR => "SQ", VM => "1", VERSION => "Supplement_146"}, |
|
2977
|
|
|
|
|
|
|
RefractiveParametersUsedOnPatientSequence => { GRP => "0024", ELEM => "0112", VR => "SQ", VM => "1", VERSION => "Supplement_146"}, |
|
2978
|
|
|
|
|
|
|
MeasurementLaterality => { GRP => "0024", ELEM => "0113", VR => "CS", VM => "1", VERSION => "Supplement_146"}, |
|
2979
|
|
|
|
|
|
|
OphthalmicPatientClinicalInformationLeftEyeSequence => { GRP => "0024", ELEM => "0114", VR => "SQ", VM => "1", VERSION => "Supplement_146"}, |
|
2980
|
|
|
|
|
|
|
OphthalmicPatientClinicalInformationRightEyeSequence => { GRP => "0024", ELEM => "0115", VR => "SQ", VM => "1", VERSION => "Supplement_146"}, |
|
2981
|
|
|
|
|
|
|
FovealPointNormativeDataFlag => { GRP => "0024", ELEM => "0117", VR => "CS", VM => "1", VERSION => "Supplement_146"}, |
|
2982
|
|
|
|
|
|
|
FovealPointProbabilityValue => { GRP => "0024", ELEM => "0118", VR => "FL", VM => "1", VERSION => "Supplement_146"}, |
|
2983
|
|
|
|
|
|
|
ScreeningBaselineMeasured => { GRP => "0024", ELEM => "0120", VR => "CS", VM => "1", VERSION => "Supplement_146"}, |
|
2984
|
|
|
|
|
|
|
ScreeningBaselineMeasuredSequence => { GRP => "0024", ELEM => "0122", VR => "SQ", VM => "1", VERSION => "Supplement_146"}, |
|
2985
|
|
|
|
|
|
|
ScreeningBaselineType => { GRP => "0024", ELEM => "0124", VR => "CS", VM => "1", VERSION => "Supplement_146"}, |
|
2986
|
|
|
|
|
|
|
ScreeningBaselineValue => { GRP => "0024", ELEM => "0126", VR => "FL", VM => "1", VERSION => "Supplement_146"}, |
|
2987
|
|
|
|
|
|
|
AlgorithmSource => { GRP => "0024", ELEM => "0202", VR => "LO", VM => "1", VERSION => "Supplement_146"}, |
|
2988
|
|
|
|
|
|
|
DataSetName => { GRP => "0024", ELEM => "0306", VR => "LO", VM => "1", VERSION => "Supplement_146"}, |
|
2989
|
|
|
|
|
|
|
DataSetVersion => { GRP => "0024", ELEM => "0307", VR => "LO", VM => "1", VERSION => "Supplement_146"}, |
|
2990
|
|
|
|
|
|
|
DataSetSource => { GRP => "0024", ELEM => "0308", VR => "LO", VM => "1", VERSION => "Supplement_146"}, |
|
2991
|
|
|
|
|
|
|
DataSetDescription => { GRP => "0024", ELEM => "0309", VR => "LO", VM => "1", VERSION => "Supplement_146"}, |
|
2992
|
|
|
|
|
|
|
VisualFieldTestReliabilityGlobalIndexSequence => { GRP => "0024", ELEM => "0317", VR => "SQ", VM => "1", VERSION => "Supplement_146"}, |
|
2993
|
|
|
|
|
|
|
VisualFieldGlobalResultsIndexSequence => { GRP => "0024", ELEM => "0320", VR => "SQ", VM => "1", VERSION => "Supplement_146"}, |
|
2994
|
|
|
|
|
|
|
DataObservationSequence => { GRP => "0024", ELEM => "0325", VR => "SQ", VM => "1", VERSION => "Supplement_146"}, |
|
2995
|
|
|
|
|
|
|
IndexNormalsFlag => { GRP => "0024", ELEM => "0338", VR => "CS", VM => "1", VERSION => "Supplement_146"}, |
|
2996
|
|
|
|
|
|
|
IndexProbability => { GRP => "0024", ELEM => "0341", VR => "FL", VM => "1", VERSION => "Supplement_146"}, |
|
2997
|
|
|
|
|
|
|
IndexProbabilitySequence => { GRP => "0024", ELEM => "0344", VR => "SQ", VM => "1", VERSION => "Supplement_146"}, |
|
2998
|
|
|
|
|
|
|
PatientSizeCodeSequence => { GRP => "0010", ELEM => "1021", VR => "SQ", VM => "1", VERSION => "CP_650"}, |
|
2999
|
|
|
|
|
|
|
VelocityEncodingAcquisitionSequence => { GRP => "0018", ELEM => "9092", VR => "SQ", VM => "1", VERSION => "CP_988"}, |
|
3000
|
|
|
|
|
|
|
ApplicatorGeometrySequence => { GRP => "300A", ELEM => "0431", VR => "SQ", VM => "1", VERSION => "CP_1010"}, |
|
3001
|
|
|
|
|
|
|
ApplicatorApertureShape => { GRP => "300A", ELEM => "0432", VR => "CS", VM => "1", VERSION => "CP_1010"}, |
|
3002
|
|
|
|
|
|
|
ApplicatorOpening => { GRP => "300A", ELEM => "0433", VR => "FL", VM => "1", VERSION => "CP_1010"}, |
|
3003
|
|
|
|
|
|
|
ApplicatorOpeningX => { GRP => "300A", ELEM => "0434", VR => "FL", VM => "1", VERSION => "CP_1010"}, |
|
3004
|
|
|
|
|
|
|
ApplicatorOpeningY => { GRP => "300A", ELEM => "0435", VR => "FL", VM => "1", VERSION => "CP_1010"}, |
|
3005
|
|
|
|
|
|
|
SourceToApplicatorMountingPositionDistance => { GRP => "300A", ELEM => "0436", VR => "FL", VM => "1", VERSION => "CP_1010"}, |
|
3006
|
|
|
|
|
|
|
ExposureIndex => { GRP => "0018", ELEM => "1411", VR => "DS", VM => "1", VERSION => "CP_1024"}, |
|
3007
|
|
|
|
|
|
|
TargetExposureIndex => { GRP => "0018", ELEM => "1412", VR => "DS", VM => "1", VERSION => "CP_1024"}, |
|
3008
|
|
|
|
|
|
|
DeviationIndex => { GRP => "0018", ELEM => "1413", VR => "DS", VM => "1", VERSION => "CP_1024"}, |
|
3009
|
|
|
|
|
|
|
RETIRED_CommandLengthToEnd => { GRP => "0000", ELEM => "0001", VR => "UL", VM => "1", VERSION => "DICOM/retired"}, |
|
3010
|
|
|
|
|
|
|
RETIRED_CommandRecognitionCode => { GRP => "0000", ELEM => "0010", VR => "CS", VM => "1", VERSION => "DICOM/retired"}, |
|
3011
|
|
|
|
|
|
|
RETIRED_Initiator => { GRP => "0000", ELEM => "0200", VR => "AE", VM => "1", VERSION => "DICOM/retired"}, |
|
3012
|
|
|
|
|
|
|
RETIRED_Receiver => { GRP => "0000", ELEM => "0300", VR => "AE", VM => "1", VERSION => "DICOM/retired"}, |
|
3013
|
|
|
|
|
|
|
RETIRED_FindLocation => { GRP => "0000", ELEM => "0400", VR => "AE", VM => "1", VERSION => "DICOM/retired"}, |
|
3014
|
|
|
|
|
|
|
RETIRED_NumberOfMatches => { GRP => "0000", ELEM => "0850", VR => "US", VM => "1", VERSION => "DICOM/retired"}, |
|
3015
|
|
|
|
|
|
|
RETIRED_ResponseSequenceNumber => { GRP => "0000", ELEM => "0860", VR => "US", VM => "1", VERSION => "DICOM/retired"}, |
|
3016
|
|
|
|
|
|
|
RETIRED_DialogReceiver => { GRP => "0000", ELEM => "4000", VR => "AT", VM => "1", VERSION => "DICOM/retired"}, |
|
3017
|
|
|
|
|
|
|
RETIRED_TerminalType => { GRP => "0000", ELEM => "4010", VR => "AT", VM => "1", VERSION => "DICOM/retired"}, |
|
3018
|
|
|
|
|
|
|
RETIRED_MessageSetID => { GRP => "0000", ELEM => "5010", VR => "SH", VM => "1", VERSION => "DICOM/retired"}, |
|
3019
|
|
|
|
|
|
|
RETIRED_EndMessageID => { GRP => "0000", ELEM => "5020", VR => "SH", VM => "1", VERSION => "DICOM/retired"}, |
|
3020
|
|
|
|
|
|
|
RETIRED_DisplayFormat => { GRP => "0000", ELEM => "5110", VR => "AT", VM => "1", VERSION => "DICOM/retired"}, |
|
3021
|
|
|
|
|
|
|
RETIRED_PagePositionID => { GRP => "0000", ELEM => "5120", VR => "AT", VM => "1", VERSION => "DICOM/retired"}, |
|
3022
|
|
|
|
|
|
|
RETIRED_TextFormatID => { GRP => "0000", ELEM => "5130", VR => "CS", VM => "1", VERSION => "DICOM/retired"}, |
|
3023
|
|
|
|
|
|
|
RETIRED_NormalReverse => { GRP => "0000", ELEM => "5140", VR => "CS", VM => "1", VERSION => "DICOM/retired"}, |
|
3024
|
|
|
|
|
|
|
RETIRED_AddGrayScale => { GRP => "0000", ELEM => "5150", VR => "CS", VM => "1", VERSION => "DICOM/retired"}, |
|
3025
|
|
|
|
|
|
|
RETIRED_Borders => { GRP => "0000", ELEM => "5160", VR => "CS", VM => "1", VERSION => "DICOM/retired"}, |
|
3026
|
|
|
|
|
|
|
RETIRED_Copies => { GRP => "0000", ELEM => "5170", VR => "IS", VM => "1", VERSION => "DICOM/retired"}, |
|
3027
|
|
|
|
|
|
|
RETIRED_CommandMagnificationType => { GRP => "0000", ELEM => "5180", VR => "CS", VM => "1", VERSION => "DICOM/retired"}, |
|
3028
|
|
|
|
|
|
|
RETIRED_Erase => { GRP => "0000", ELEM => "5190", VR => "CS", VM => "1", VERSION => "DICOM/retired"}, |
|
3029
|
|
|
|
|
|
|
RETIRED_Print => { GRP => "0000", ELEM => "51A0", VR => "CS", VM => "1", VERSION => "DICOM/retired"}, |
|
3030
|
|
|
|
|
|
|
RETIRED_Overlays => { GRP => "0000", ELEM => "51B0", VR => "US", VM => "1-n", VERSION => "DICOM/retired"}, |
|
3031
|
|
|
|
|
|
|
RETIRED_MRDRDirectoryRecordOffset => { GRP => "0004", ELEM => "1504", VR => "up", VM => "1", VERSION => "DICOM/retired"}, |
|
3032
|
|
|
|
|
|
|
RETIRED_NumberOfReferences => { GRP => "0004", ELEM => "1600", VR => "UL", VM => "1", VERSION => "DICOM/retired"}, |
|
3033
|
|
|
|
|
|
|
RETIRED_LengthToEnd => { GRP => "0008", ELEM => "0001", VR => "UL", VM => "1", VERSION => "DICOM/retired"}, |
|
3034
|
|
|
|
|
|
|
RETIRED_RecognitionCode => { GRP => "0008", ELEM => "0010", VR => "CS", VM => "1", VERSION => "DICOM/retired"}, |
|
3035
|
|
|
|
|
|
|
RETIRED_OverlayDate => { GRP => "0008", ELEM => "0024", VR => "DA", VM => "1", VERSION => "DICOM/retired"}, |
|
3036
|
|
|
|
|
|
|
RETIRED_CurveDate => { GRP => "0008", ELEM => "0025", VR => "DA", VM => "1", VERSION => "DICOM/retired"}, |
|
3037
|
|
|
|
|
|
|
RETIRED_OverlayTime => { GRP => "0008", ELEM => "0034", VR => "TM", VM => "1", VERSION => "DICOM/retired"}, |
|
3038
|
|
|
|
|
|
|
RETIRED_CurveTime => { GRP => "0008", ELEM => "0035", VR => "TM", VM => "1", VERSION => "DICOM/retired"}, |
|
3039
|
|
|
|
|
|
|
RETIRED_DataSetType => { GRP => "0008", ELEM => "0040", VR => "US", VM => "1", VERSION => "DICOM/retired"}, |
|
3040
|
|
|
|
|
|
|
RETIRED_DataSetSubtype => { GRP => "0008", ELEM => "0041", VR => "LO", VM => "1", VERSION => "DICOM/retired"}, |
|
3041
|
|
|
|
|
|
|
RETIRED_NuclearMedicineSeriesType => { GRP => "0008", ELEM => "0042", VR => "CS", VM => "1", VERSION => "DICOM/retired"}, |
|
3042
|
|
|
|
|
|
|
RETIRED_NetworkID => { GRP => "0008", ELEM => "1000", VR => "AE", VM => "1", VERSION => "DICOM/retired"}, |
|
3043
|
|
|
|
|
|
|
RETIRED_ReferencedResultsSequence => { GRP => "0008", ELEM => "1100", VR => "SQ", VM => "1", VERSION => "DICOM/retired"}, |
|
3044
|
|
|
|
|
|
|
RETIRED_ReferencedOverlaySequence => { GRP => "0008", ELEM => "1130", VR => "SQ", VM => "1", VERSION => "DICOM/retired"}, |
|
3045
|
|
|
|
|
|
|
RETIRED_ReferencedCurveSequence => { GRP => "0008", ELEM => "1145", VR => "SQ", VM => "1", VERSION => "DICOM/retired"}, |
|
3046
|
|
|
|
|
|
|
RETIRED_LossyImageCompressionRetired => { GRP => "0008", ELEM => "2110", VR => "CS", VM => "1", VERSION => "DICOM/retired"}, |
|
3047
|
|
|
|
|
|
|
RETIRED_TransducerPosition => { GRP => "0008", ELEM => "2200", VR => "CS", VM => "1", VERSION => "DICOM/retired"}, |
|
3048
|
|
|
|
|
|
|
RETIRED_TransducerOrientation => { GRP => "0008", ELEM => "2204", VR => "CS", VM => "1", VERSION => "DICOM/retired"}, |
|
3049
|
|
|
|
|
|
|
RETIRED_AnatomicStructure => { GRP => "0008", ELEM => "2208", VR => "CS", VM => "1", VERSION => "DICOM/retired"}, |
|
3050
|
|
|
|
|
|
|
RETIRED_TransducerPositionSequence => { GRP => "0008", ELEM => "2240", VR => "SQ", VM => "1", VERSION => "DICOM/retired"}, |
|
3051
|
|
|
|
|
|
|
RETIRED_TransducerPositionModifierSequence => { GRP => "0008", ELEM => "2242", VR => "SQ", VM => "1", VERSION => "DICOM/retired"}, |
|
3052
|
|
|
|
|
|
|
RETIRED_TransducerOrientationSequence => { GRP => "0008", ELEM => "2244", VR => "SQ", VM => "1", VERSION => "DICOM/retired"}, |
|
3053
|
|
|
|
|
|
|
RETIRED_TransducerOrientationModifierSequence => { GRP => "0008", ELEM => "2246", VR => "SQ", VM => "1", VERSION => "DICOM/retired"}, |
|
3054
|
|
|
|
|
|
|
RETIRED_AnatomicStructureSpaceOrRegionCodeSequenceTrial => { GRP => "0008", ELEM => "2251", VR => "SQ", VM => "1", VERSION => "DICOM/retired"}, |
|
3055
|
|
|
|
|
|
|
RETIRED_AnatomicPortalOfEntranceCodeSequenceTrial => { GRP => "0008", ELEM => "2253", VR => "SQ", VM => "1", VERSION => "DICOM/retired"}, |
|
3056
|
|
|
|
|
|
|
RETIRED_AnatomicApproachDirectionCodeSequenceTrial => { GRP => "0008", ELEM => "2255", VR => "SQ", VM => "1", VERSION => "DICOM/retired"}, |
|
3057
|
|
|
|
|
|
|
RETIRED_AnatomicPerspectiveDescriptionTrial => { GRP => "0008", ELEM => "2256", VR => "ST", VM => "1", VERSION => "DICOM/retired"}, |
|
3058
|
|
|
|
|
|
|
RETIRED_AnatomicPerspectiveCodeSequenceTrial => { GRP => "0008", ELEM => "2257", VR => "SQ", VM => "1", VERSION => "DICOM/retired"}, |
|
3059
|
|
|
|
|
|
|
RETIRED_AnatomicLocationOfExaminingInstrumentDescriptionTrial => { GRP => "0008", ELEM => "2258", VR => "ST", VM => "1", VERSION => "DICOM/retired"}, |
|
3060
|
|
|
|
|
|
|
RETIRED_AnatomicLocationOfExaminingInstrumentCodeSequenceTrial => { GRP => "0008", ELEM => "2259", VR => "SQ", VM => "1", VERSION => "DICOM/retired"}, |
|
3061
|
|
|
|
|
|
|
RETIRED_AnatomicStructureSpaceOrRegionModifierCodeSequenceTrial => { GRP => "0008", ELEM => "225A", VR => "SQ", VM => "1", VERSION => "DICOM/retired"}, |
|
3062
|
|
|
|
|
|
|
RETIRED_OnAxisBackgroundAnatomicStructureCodeSequenceTrial => { GRP => "0008", ELEM => "225C", VR => "SQ", VM => "1", VERSION => "DICOM/retired"}, |
|
3063
|
|
|
|
|
|
|
RETIRED_IdentifyingComments => { GRP => "0008", ELEM => "4000", VR => "LT", VM => "1", VERSION => "DICOM/retired"}, |
|
3064
|
|
|
|
|
|
|
RETIRED_InsurancePlanIdentification => { GRP => "0010", ELEM => "1050", VR => "LO", VM => "1-n", VERSION => "DICOM/retired"}, |
|
3065
|
|
|
|
|
|
|
RETIRED_Radionuclide => { GRP => "0018", ELEM => "0030", VR => "LO", VM => "1-n", VERSION => "DICOM/retired"}, |
|
3066
|
|
|
|
|
|
|
RETIRED_EnergyWindowCenterline => { GRP => "0018", ELEM => "0032", VR => "DS", VM => "1", VERSION => "DICOM/retired"}, |
|
3067
|
|
|
|
|
|
|
RETIRED_EnergyWindowTotalWidth => { GRP => "0018", ELEM => "0033", VR => "DS", VM => "1-n", VERSION => "DICOM/retired"}, |
|
3068
|
|
|
|
|
|
|
RETIRED_TherapyType => { GRP => "0018", ELEM => "0037", VR => "CS", VM => "1", VERSION => "DICOM/retired"}, |
|
3069
|
|
|
|
|
|
|
RETIRED_TherapyDescription => { GRP => "0018", ELEM => "0039", VR => "CS", VM => "1", VERSION => "DICOM/retired"}, |
|
3070
|
|
|
|
|
|
|
RETIRED_HardcopyCreationDeviceID => { GRP => "0018", ELEM => "1011", VR => "LO", VM => "1", VERSION => "DICOM/retired"}, |
|
3071
|
|
|
|
|
|
|
RETIRED_HardcopyDeviceManufacturer => { GRP => "0018", ELEM => "1017", VR => "LO", VM => "1", VERSION => "DICOM/retired"}, |
|
3072
|
|
|
|
|
|
|
RETIRED_HardcopyDeviceSoftwareVersion => { GRP => "0018", ELEM => "101A", VR => "LO", VM => "1-n", VERSION => "DICOM/retired"}, |
|
3073
|
|
|
|
|
|
|
RETIRED_HardcopyDeviceManufacturerModelName => { GRP => "0018", ELEM => "101B", VR => "LO", VM => "1", VERSION => "DICOM/retired"}, |
|
3074
|
|
|
|
|
|
|
RETIRED_AngularPosition => { GRP => "0018", ELEM => "1141", VR => "DS", VM => "1", VERSION => "DICOM/retired"}, |
|
3075
|
|
|
|
|
|
|
RETIRED_RotationOffset => { GRP => "0018", ELEM => "1146", VR => "DS", VM => "1-n", VERSION => "DICOM/retired"}, |
|
3076
|
|
|
|
|
|
|
RETIRED_UpperLowerPixelValues => { GRP => "0018", ELEM => "1240", VR => "IS", VM => "1-n", VERSION => "DICOM/retired"}, |
|
3077
|
|
|
|
|
|
|
RETIRED_AcquisitionComments => { GRP => "0018", ELEM => "4000", VR => "LT", VM => "1", VERSION => "DICOM/retired"}, |
|
3078
|
|
|
|
|
|
|
RETIRED_PostprocessingFunction => { GRP => "0018", ELEM => "5021", VR => "LO", VM => "1", VERSION => "DICOM/retired"}, |
|
3079
|
|
|
|
|
|
|
RETIRED_DynamicRange => { GRP => "0018", ELEM => "5030", VR => "DS", VM => "1", VERSION => "DICOM/retired"}, |
|
3080
|
|
|
|
|
|
|
RETIRED_TotalGain => { GRP => "0018", ELEM => "5040", VR => "DS", VM => "1", VERSION => "DICOM/retired"}, |
|
3081
|
|
|
|
|
|
|
RETIRED_ImageTransformationMatrix => { GRP => "0018", ELEM => "5210", VR => "DS", VM => "6", VERSION => "DICOM/retired"}, |
|
3082
|
|
|
|
|
|
|
RETIRED_ImageTranslationVector => { GRP => "0018", ELEM => "5212", VR => "DS", VM => "3", VERSION => "DICOM/retired"}, |
|
3083
|
|
|
|
|
|
|
RETIRED_DopplerSampleVolumeXPositionRetired => { GRP => "0018", ELEM => "6038", VR => "UL", VM => "1", VERSION => "DICOM/retired"}, |
|
3084
|
|
|
|
|
|
|
RETIRED_DopplerSampleVolumeYPositionRetired => { GRP => "0018", ELEM => "603A", VR => "UL", VM => "1", VERSION => "DICOM/retired"}, |
|
3085
|
|
|
|
|
|
|
RETIRED_TMLinePositionX0Retired => { GRP => "0018", ELEM => "603C", VR => "UL", VM => "1", VERSION => "DICOM/retired"}, |
|
3086
|
|
|
|
|
|
|
RETIRED_TMLinePositionY0Retired => { GRP => "0018", ELEM => "603E", VR => "UL", VM => "1", VERSION => "DICOM/retired"}, |
|
3087
|
|
|
|
|
|
|
RETIRED_TMLinePositionX1Retired => { GRP => "0018", ELEM => "6040", VR => "UL", VM => "1", VERSION => "DICOM/retired"}, |
|
3088
|
|
|
|
|
|
|
RETIRED_TMLinePositionY1Retired => { GRP => "0018", ELEM => "6042", VR => "UL", VM => "1", VERSION => "DICOM/retired"}, |
|
3089
|
|
|
|
|
|
|
RETIRED_ParallelReductionFactorInPlaneRetired => { GRP => "0018", ELEM => "9096", VR => "FD", VM => "1", VERSION => "DICOM/retired"}, |
|
3090
|
|
|
|
|
|
|
RETIRED_BulkMotionStatus => { GRP => "0018", ELEM => "9166", VR => "CS", VM => "1", VERSION => "DICOM/retired"}, |
|
3091
|
|
|
|
|
|
|
RETIRED_ChemicalShiftMinimumIntegrationLimitInHz => { GRP => "0018", ELEM => "9195", VR => "FD", VM => "1", VERSION => "DICOM/retired"}, |
|
3092
|
|
|
|
|
|
|
RETIRED_ChemicalShiftMaximumIntegrationLimitInHz => { GRP => "0018", ELEM => "9196", VR => "FD", VM => "1", VERSION => "DICOM/retired"}, |
|
3093
|
|
|
|
|
|
|
RETIRED_IsotopeNumber => { GRP => "0020", ELEM => "0014", VR => "IS", VM => "1", VERSION => "DICOM/retired"}, |
|
3094
|
|
|
|
|
|
|
RETIRED_PhaseNumber => { GRP => "0020", ELEM => "0015", VR => "IS", VM => "1", VERSION => "DICOM/retired"}, |
|
3095
|
|
|
|
|
|
|
RETIRED_IntervalNumber => { GRP => "0020", ELEM => "0016", VR => "IS", VM => "1", VERSION => "DICOM/retired"}, |
|
3096
|
|
|
|
|
|
|
RETIRED_TimeSlotNumber => { GRP => "0020", ELEM => "0017", VR => "IS", VM => "1", VERSION => "DICOM/retired"}, |
|
3097
|
|
|
|
|
|
|
RETIRED_AngleNumber => { GRP => "0020", ELEM => "0018", VR => "IS", VM => "1", VERSION => "DICOM/retired"}, |
|
3098
|
|
|
|
|
|
|
RETIRED_OverlayNumber => { GRP => "0020", ELEM => "0022", VR => "IS", VM => "1", VERSION => "DICOM/retired"}, |
|
3099
|
|
|
|
|
|
|
RETIRED_CurveNumber => { GRP => "0020", ELEM => "0024", VR => "IS", VM => "1", VERSION => "DICOM/retired"}, |
|
3100
|
|
|
|
|
|
|
RETIRED_LUTNumber => { GRP => "0020", ELEM => "0026", VR => "IS", VM => "1", VERSION => "DICOM/retired"}, |
|
3101
|
|
|
|
|
|
|
RETIRED_ImagePosition => { GRP => "0020", ELEM => "0030", VR => "DS", VM => "3", VERSION => "DICOM/retired"}, |
|
3102
|
|
|
|
|
|
|
RETIRED_ImageOrientation => { GRP => "0020", ELEM => "0035", VR => "DS", VM => "6", VERSION => "DICOM/retired"}, |
|
3103
|
|
|
|
|
|
|
RETIRED_Location => { GRP => "0020", ELEM => "0050", VR => "DS", VM => "1", VERSION => "DICOM/retired"}, |
|
3104
|
|
|
|
|
|
|
RETIRED_ImageGeometryType => { GRP => "0020", ELEM => "0070", VR => "LO", VM => "1", VERSION => "DICOM/retired"}, |
|
3105
|
|
|
|
|
|
|
RETIRED_MaskingImage => { GRP => "0020", ELEM => "0080", VR => "CS", VM => "1-n", VERSION => "DICOM/retired"}, |
|
3106
|
|
|
|
|
|
|
RETIRED_SeriesInStudy => { GRP => "0020", ELEM => "1000", VR => "IS", VM => "1", VERSION => "DICOM/retired"}, |
|
3107
|
|
|
|
|
|
|
RETIRED_AcquisitionsInSeries => { GRP => "0020", ELEM => "1001", VR => "IS", VM => "1", VERSION => "DICOM/retired"}, |
|
3108
|
|
|
|
|
|
|
RETIRED_ImagesInSeries => { GRP => "0020", ELEM => "1003", VR => "IS", VM => "1", VERSION => "DICOM/retired"}, |
|
3109
|
|
|
|
|
|
|
RETIRED_AcquisitionsInStudy => { GRP => "0020", ELEM => "1004", VR => "IS", VM => "1", VERSION => "DICOM/retired"}, |
|
3110
|
|
|
|
|
|
|
RETIRED_ImagesInStudy => { GRP => "0020", ELEM => "1005", VR => "IS", VM => "1", VERSION => "DICOM/retired"}, |
|
3111
|
|
|
|
|
|
|
RETIRED_Reference => { GRP => "0020", ELEM => "1020", VR => "CS", VM => "1-n", VERSION => "DICOM/retired"}, |
|
3112
|
|
|
|
|
|
|
RETIRED_OtherStudyNumbers => { GRP => "0020", ELEM => "1070", VR => "IS", VM => "1-n", VERSION => "DICOM/retired"}, |
|
3113
|
|
|
|
|
|
|
RETIRED_ModifyingDeviceID => { GRP => "0020", ELEM => "3401", VR => "CS", VM => "1", VERSION => "DICOM/retired"}, |
|
3114
|
|
|
|
|
|
|
RETIRED_ModifiedImageID => { GRP => "0020", ELEM => "3402", VR => "CS", VM => "1", VERSION => "DICOM/retired"}, |
|
3115
|
|
|
|
|
|
|
RETIRED_ModifiedImageDate => { GRP => "0020", ELEM => "3403", VR => "DA", VM => "1", VERSION => "DICOM/retired"}, |
|
3116
|
|
|
|
|
|
|
RETIRED_ModifyingDeviceManufacturer => { GRP => "0020", ELEM => "3404", VR => "LO", VM => "1", VERSION => "DICOM/retired"}, |
|
3117
|
|
|
|
|
|
|
RETIRED_ModifiedImageTime => { GRP => "0020", ELEM => "3405", VR => "TM", VM => "1", VERSION => "DICOM/retired"}, |
|
3118
|
|
|
|
|
|
|
RETIRED_ModifiedImageDescription => { GRP => "0020", ELEM => "3406", VR => "LO", VM => "1", VERSION => "DICOM/retired"}, |
|
3119
|
|
|
|
|
|
|
RETIRED_OriginalImageIdentification => { GRP => "0020", ELEM => "5000", VR => "AT", VM => "1-n", VERSION => "DICOM/retired"}, |
|
3120
|
|
|
|
|
|
|
RETIRED_OriginalImageIdentificationNomenclature => { GRP => "0020", ELEM => "5002", VR => "CS", VM => "1-n", VERSION => "DICOM/retired"}, |
|
3121
|
|
|
|
|
|
|
RETIRED_ImageDimensions => { GRP => "0028", ELEM => "0005", VR => "US", VM => "1", VERSION => "DICOM/retired"}, |
|
3122
|
|
|
|
|
|
|
RETIRED_Planes => { GRP => "0028", ELEM => "0012", VR => "US", VM => "1", VERSION => "DICOM/retired"}, |
|
3123
|
|
|
|
|
|
|
RETIRED_ImageFormat => { GRP => "0028", ELEM => "0040", VR => "CS", VM => "1", VERSION => "DICOM/retired"}, |
|
3124
|
|
|
|
|
|
|
RETIRED_ManipulatedImage => { GRP => "0028", ELEM => "0050", VR => "LO", VM => "1-n", VERSION => "DICOM/retired"}, |
|
3125
|
|
|
|
|
|
|
RETIRED_CompressionRecognitionCode => { GRP => "0028", ELEM => "005F", VR => "LO", VM => "1", VERSION => "DICOM/retired"}, |
|
3126
|
|
|
|
|
|
|
RETIRED_CompressionCode => { GRP => "0028", ELEM => "0060", VR => "CS", VM => "1", VERSION => "DICOM/retired"}, |
|
3127
|
|
|
|
|
|
|
RETIRED_CompressionOriginator => { GRP => "0028", ELEM => "0061", VR => "SH", VM => "1", VERSION => "DICOM/retired"}, |
|
3128
|
|
|
|
|
|
|
RETIRED_CompressionLabel => { GRP => "0028", ELEM => "0062", VR => "LO", VM => "1", VERSION => "DICOM/retired"}, |
|
3129
|
|
|
|
|
|
|
RETIRED_CompressionDescription => { GRP => "0028", ELEM => "0063", VR => "SH", VM => "1", VERSION => "DICOM/retired"}, |
|
3130
|
|
|
|
|
|
|
RETIRED_CompressionSequence => { GRP => "0028", ELEM => "0065", VR => "CS", VM => "1-n", VERSION => "DICOM/retired"}, |
|
3131
|
|
|
|
|
|
|
RETIRED_CompressionStepPointers => { GRP => "0028", ELEM => "0066", VR => "AT", VM => "1-n", VERSION => "DICOM/retired"}, |
|
3132
|
|
|
|
|
|
|
RETIRED_RepeatInterval => { GRP => "0028", ELEM => "0068", VR => "US", VM => "1", VERSION => "DICOM/retired"}, |
|
3133
|
|
|
|
|
|
|
RETIRED_BitsGrouped => { GRP => "0028", ELEM => "0069", VR => "US", VM => "1", VERSION => "DICOM/retired"}, |
|
3134
|
|
|
|
|
|
|
RETIRED_PerimeterTable => { GRP => "0028", ELEM => "0070", VR => "US", VM => "1-n", VERSION => "DICOM/retired"}, |
|
3135
|
|
|
|
|
|
|
RETIRED_PerimeterValue => { GRP => "0028", ELEM => "0071", VR => "xs", VM => "1", VERSION => "DICOM/retired"}, |
|
3136
|
|
|
|
|
|
|
RETIRED_PredictorRows => { GRP => "0028", ELEM => "0080", VR => "US", VM => "1", VERSION => "DICOM/retired"}, |
|
3137
|
|
|
|
|
|
|
RETIRED_PredictorColumns => { GRP => "0028", ELEM => "0081", VR => "US", VM => "1", VERSION => "DICOM/retired"}, |
|
3138
|
|
|
|
|
|
|
RETIRED_PredictorConstants => { GRP => "0028", ELEM => "0082", VR => "US", VM => "1-n", VERSION => "DICOM/retired"}, |
|
3139
|
|
|
|
|
|
|
RETIRED_BlockedPixels => { GRP => "0028", ELEM => "0090", VR => "CS", VM => "1", VERSION => "DICOM/retired"}, |
|
3140
|
|
|
|
|
|
|
RETIRED_BlockRows => { GRP => "0028", ELEM => "0091", VR => "US", VM => "1", VERSION => "DICOM/retired"}, |
|
3141
|
|
|
|
|
|
|
RETIRED_BlockColumns => { GRP => "0028", ELEM => "0092", VR => "US", VM => "1", VERSION => "DICOM/retired"}, |
|
3142
|
|
|
|
|
|
|
RETIRED_RowOverlap => { GRP => "0028", ELEM => "0093", VR => "US", VM => "1", VERSION => "DICOM/retired"}, |
|
3143
|
|
|
|
|
|
|
RETIRED_ColumnOverlap => { GRP => "0028", ELEM => "0094", VR => "US", VM => "1", VERSION => "DICOM/retired"}, |
|
3144
|
|
|
|
|
|
|
RETIRED_SmallestValidPixelValue => { GRP => "0028", ELEM => "0104", VR => "xs", VM => "1", VERSION => "DICOM/retired"}, |
|
3145
|
|
|
|
|
|
|
RETIRED_LargestValidPixelValue => { GRP => "0028", ELEM => "0105", VR => "xs", VM => "1", VERSION => "DICOM/retired"}, |
|
3146
|
|
|
|
|
|
|
RETIRED_SmallestImagePixelValueInPlane => { GRP => "0028", ELEM => "0110", VR => "xs", VM => "1", VERSION => "DICOM/retired"}, |
|
3147
|
|
|
|
|
|
|
RETIRED_LargestImagePixelValueInPlane => { GRP => "0028", ELEM => "0111", VR => "xs", VM => "1", VERSION => "DICOM/retired"}, |
|
3148
|
|
|
|
|
|
|
RETIRED_ImageLocation => { GRP => "0028", ELEM => "0200", VR => "US", VM => "1", VERSION => "DICOM/retired"}, |
|
3149
|
|
|
|
|
|
|
RETIRED_TransformLabel => { GRP => "0028", ELEM => "0400", VR => "LO", VM => "1", VERSION => "DICOM/retired"}, |
|
3150
|
|
|
|
|
|
|
RETIRED_TransformVersionNumber => { GRP => "0028", ELEM => "0401", VR => "LO", VM => "1", VERSION => "DICOM/retired"}, |
|
3151
|
|
|
|
|
|
|
RETIRED_NumberOfTransformSteps => { GRP => "0028", ELEM => "0402", VR => "US", VM => "1", VERSION => "DICOM/retired"}, |
|
3152
|
|
|
|
|
|
|
RETIRED_SequenceOfCompressedData => { GRP => "0028", ELEM => "0403", VR => "LO", VM => "1-n", VERSION => "DICOM/retired"}, |
|
3153
|
|
|
|
|
|
|
RETIRED_DetailsOfCoefficients => { GRP => "0028", ELEM => "0404", VR => "AT", VM => "1-n", VERSION => "DICOM/retired"}, |
|
3154
|
|
|
|
|
|
|
RETIRED_DCTLabel => { GRP => "0028", ELEM => "0700", VR => "LO", VM => "1", VERSION => "DICOM/retired"}, |
|
3155
|
|
|
|
|
|
|
RETIRED_DataBlockDescription => { GRP => "0028", ELEM => "0701", VR => "CS", VM => "1-n", VERSION => "DICOM/retired"}, |
|
3156
|
|
|
|
|
|
|
RETIRED_DataBlock => { GRP => "0028", ELEM => "0702", VR => "AT", VM => "1-n", VERSION => "DICOM/retired"}, |
|
3157
|
|
|
|
|
|
|
RETIRED_NormalizationFactorFormat => { GRP => "0028", ELEM => "0710", VR => "US", VM => "1", VERSION => "DICOM/retired"}, |
|
3158
|
|
|
|
|
|
|
RETIRED_ZonalMapNumberFormat => { GRP => "0028", ELEM => "0720", VR => "US", VM => "1", VERSION => "DICOM/retired"}, |
|
3159
|
|
|
|
|
|
|
RETIRED_ZonalMapLocation => { GRP => "0028", ELEM => "0721", VR => "AT", VM => "1-n", VERSION => "DICOM/retired"}, |
|
3160
|
|
|
|
|
|
|
RETIRED_ZonalMapFormat => { GRP => "0028", ELEM => "0722", VR => "US", VM => "1", VERSION => "DICOM/retired"}, |
|
3161
|
|
|
|
|
|
|
RETIRED_AdaptiveMapFormat => { GRP => "0028", ELEM => "0730", VR => "US", VM => "1", VERSION => "DICOM/retired"}, |
|
3162
|
|
|
|
|
|
|
RETIRED_CodeNumberFormat => { GRP => "0028", ELEM => "0740", VR => "US", VM => "1", VERSION => "DICOM/retired"}, |
|
3163
|
|
|
|
|
|
|
RETIRED_GrayScale => { GRP => "0028", ELEM => "1080", VR => "CS", VM => "1", VERSION => "DICOM/retired"}, |
|
3164
|
|
|
|
|
|
|
RETIRED_GrayLookupTableDescriptor => { GRP => "0028", ELEM => "1100", VR => "xs", VM => "3", VERSION => "DICOM/retired"}, |
|
3165
|
|
|
|
|
|
|
RETIRED_LargeRedPaletteColorLookupTableDescriptor => { GRP => "0028", ELEM => "1111", VR => "xs", VM => "4", VERSION => "DICOM/retired"}, |
|
3166
|
|
|
|
|
|
|
RETIRED_LargeGreenPaletteColorLookupTableDescriptor => { GRP => "0028", ELEM => "1112", VR => "xs", VM => "4", VERSION => "DICOM/retired"}, |
|
3167
|
|
|
|
|
|
|
RETIRED_LargeBluePaletteColorLookupTableDescriptor => { GRP => "0028", ELEM => "1113", VR => "xs", VM => "4", VERSION => "DICOM/retired"}, |
|
3168
|
|
|
|
|
|
|
RETIRED_GrayLookupTableData => { GRP => "0028", ELEM => "1200", VR => "lt", VM => "1-n", VERSION => "DICOM/retired"}, |
|
3169
|
|
|
|
|
|
|
RETIRED_LargeRedPaletteColorLookupTableData => { GRP => "0028", ELEM => "1211", VR => "OW", VM => "1", VERSION => "DICOM/retired"}, |
|
3170
|
|
|
|
|
|
|
RETIRED_LargeGreenPaletteColorLookupTableData => { GRP => "0028", ELEM => "1212", VR => "OW", VM => "1", VERSION => "DICOM/retired"}, |
|
3171
|
|
|
|
|
|
|
RETIRED_LargeBluePaletteColorLookupTableData => { GRP => "0028", ELEM => "1213", VR => "OW", VM => "1", VERSION => "DICOM/retired"}, |
|
3172
|
|
|
|
|
|
|
RETIRED_LargePaletteColorLookupTableUID => { GRP => "0028", ELEM => "1214", VR => "UI", VM => "1", VERSION => "DICOM/retired"}, |
|
3173
|
|
|
|
|
|
|
RETIRED_ImagePresentationComments => { GRP => "0028", ELEM => "4000", VR => "LT", VM => "1", VERSION => "DICOM/retired"}, |
|
3174
|
|
|
|
|
|
|
RETIRED_BiPlaneAcquisitionSequence => { GRP => "0028", ELEM => "5000", VR => "SQ", VM => "1", VERSION => "DICOM/retired"}, |
|
3175
|
|
|
|
|
|
|
RETIRED_MaskPointers => { GRP => "0028", ELEM => "6030", VR => "US", VM => "1-n", VERSION => "DICOM/retired"}, |
|
3176
|
|
|
|
|
|
|
RETIRED_LargestMonochromePixelValue => { GRP => "0028", ELEM => "9099", VR => "US", VM => "1", VERSION => "DICOM/retired"}, |
|
3177
|
|
|
|
|
|
|
RETIRED_StudyStatusID => { GRP => "0032", ELEM => "000A", VR => "CS", VM => "1", VERSION => "DICOM/retired"}, |
|
3178
|
|
|
|
|
|
|
RETIRED_StudyPriorityID => { GRP => "0032", ELEM => "000C", VR => "CS", VM => "1", VERSION => "DICOM/retired"}, |
|
3179
|
|
|
|
|
|
|
RETIRED_StudyIDIssuer => { GRP => "0032", ELEM => "0012", VR => "LO", VM => "1", VERSION => "DICOM/retired"}, |
|
3180
|
|
|
|
|
|
|
RETIRED_StudyVerifiedDate => { GRP => "0032", ELEM => "0032", VR => "DA", VM => "1", VERSION => "DICOM/retired"}, |
|
3181
|
|
|
|
|
|
|
RETIRED_StudyVerifiedTime => { GRP => "0032", ELEM => "0033", VR => "TM", VM => "1", VERSION => "DICOM/retired"}, |
|
3182
|
|
|
|
|
|
|
RETIRED_StudyReadDate => { GRP => "0032", ELEM => "0034", VR => "DA", VM => "1", VERSION => "DICOM/retired"}, |
|
3183
|
|
|
|
|
|
|
RETIRED_StudyReadTime => { GRP => "0032", ELEM => "0035", VR => "TM", VM => "1", VERSION => "DICOM/retired"}, |
|
3184
|
|
|
|
|
|
|
RETIRED_ScheduledStudyStartDate => { GRP => "0032", ELEM => "1000", VR => "DA", VM => "1", VERSION => "DICOM/retired"}, |
|
3185
|
|
|
|
|
|
|
RETIRED_ScheduledStudyStartTime => { GRP => "0032", ELEM => "1001", VR => "TM", VM => "1", VERSION => "DICOM/retired"}, |
|
3186
|
|
|
|
|
|
|
RETIRED_ScheduledStudyStopDate => { GRP => "0032", ELEM => "1010", VR => "DA", VM => "1", VERSION => "DICOM/retired"}, |
|
3187
|
|
|
|
|
|
|
RETIRED_ScheduledStudyStopTime => { GRP => "0032", ELEM => "1011", VR => "TM", VM => "1", VERSION => "DICOM/retired"}, |
|
3188
|
|
|
|
|
|
|
RETIRED_ScheduledStudyLocation => { GRP => "0032", ELEM => "1020", VR => "LO", VM => "1", VERSION => "DICOM/retired"}, |
|
3189
|
|
|
|
|
|
|
RETIRED_ScheduledStudyLocationAETitle => { GRP => "0032", ELEM => "1021", VR => "AE", VM => "1-n", VERSION => "DICOM/retired"}, |
|
3190
|
|
|
|
|
|
|
RETIRED_ReasonForStudy => { GRP => "0032", ELEM => "1030", VR => "LO", VM => "1", VERSION => "DICOM/retired"}, |
|
3191
|
|
|
|
|
|
|
RETIRED_StudyArrivalDate => { GRP => "0032", ELEM => "1040", VR => "DA", VM => "1", VERSION => "DICOM/retired"}, |
|
3192
|
|
|
|
|
|
|
RETIRED_StudyArrivalTime => { GRP => "0032", ELEM => "1041", VR => "TM", VM => "1", VERSION => "DICOM/retired"}, |
|
3193
|
|
|
|
|
|
|
RETIRED_StudyCompletionDate => { GRP => "0032", ELEM => "1050", VR => "DA", VM => "1", VERSION => "DICOM/retired"}, |
|
3194
|
|
|
|
|
|
|
RETIRED_StudyCompletionTime => { GRP => "0032", ELEM => "1051", VR => "TM", VM => "1", VERSION => "DICOM/retired"}, |
|
3195
|
|
|
|
|
|
|
RETIRED_StudyComponentStatusID => { GRP => "0032", ELEM => "1055", VR => "CS", VM => "1", VERSION => "DICOM/retired"}, |
|
3196
|
|
|
|
|
|
|
RETIRED_StudyComments => { GRP => "0032", ELEM => "4000", VR => "LT", VM => "1", VERSION => "DICOM/retired"}, |
|
3197
|
|
|
|
|
|
|
RETIRED_IssuerOfAdmissionID => { GRP => "0038", ELEM => "0011", VR => "LO", VM => "1", VERSION => "DICOM/retired"}, |
|
3198
|
|
|
|
|
|
|
RETIRED_ScheduledAdmissionDate => { GRP => "0038", ELEM => "001A", VR => "DA", VM => "1", VERSION => "DICOM/retired"}, |
|
3199
|
|
|
|
|
|
|
RETIRED_ScheduledAdmissionTime => { GRP => "0038", ELEM => "001B", VR => "TM", VM => "1", VERSION => "DICOM/retired"}, |
|
3200
|
|
|
|
|
|
|
RETIRED_ScheduledDischargeDate => { GRP => "0038", ELEM => "001C", VR => "DA", VM => "1", VERSION => "DICOM/retired"}, |
|
3201
|
|
|
|
|
|
|
RETIRED_ScheduledDischargeTime => { GRP => "0038", ELEM => "001D", VR => "TM", VM => "1", VERSION => "DICOM/retired"}, |
|
3202
|
|
|
|
|
|
|
RETIRED_ScheduledPatientInstitutionResidence => { GRP => "0038", ELEM => "001E", VR => "LO", VM => "1", VERSION => "DICOM/retired"}, |
|
3203
|
|
|
|
|
|
|
RETIRED_DischargeDate => { GRP => "0038", ELEM => "0030", VR => "DA", VM => "1", VERSION => "DICOM/retired"}, |
|
3204
|
|
|
|
|
|
|
RETIRED_DischargeTime => { GRP => "0038", ELEM => "0032", VR => "TM", VM => "1", VERSION => "DICOM/retired"}, |
|
3205
|
|
|
|
|
|
|
RETIRED_DischargeDiagnosisDescription => { GRP => "0038", ELEM => "0040", VR => "LO", VM => "1", VERSION => "DICOM/retired"}, |
|
3206
|
|
|
|
|
|
|
RETIRED_DischargeDiagnosisCodeSequence => { GRP => "0038", ELEM => "0044", VR => "SQ", VM => "1", VERSION => "DICOM/retired"}, |
|
3207
|
|
|
|
|
|
|
RETIRED_IssuerOfServiceEpisodeID => { GRP => "0038", ELEM => "0061", VR => "LO", VM => "1", VERSION => "DICOM/retired"}, |
|
3208
|
|
|
|
|
|
|
RETIRED_DistanceSourceToSupport => { GRP => "0040", ELEM => "0307", VR => "DS", VM => "1", VERSION => "DICOM/retired"}, |
|
3209
|
|
|
|
|
|
|
RETIRED_ReferencedProcedureStepSequence => { GRP => "0040", ELEM => "0330", VR => "SQ", VM => "1", VERSION => "DICOM/retired"}, |
|
3210
|
|
|
|
|
|
|
RETIRED_SpecimenAccessionNumber => { GRP => "0040", ELEM => "050A", VR => "LO", VM => "1", VERSION => "DICOM/retired"}, |
|
3211
|
|
|
|
|
|
|
RETIRED_SpecimenSequence => { GRP => "0040", ELEM => "0550", VR => "SQ", VM => "1", VERSION => "DICOM/retired"}, |
|
3212
|
|
|
|
|
|
|
RETIRED_SpecimenDescriptionSequenceTrial => { GRP => "0040", ELEM => "0552", VR => "SQ", VM => "1", VERSION => "DICOM/retired"}, |
|
3213
|
|
|
|
|
|
|
RETIRED_SpecimenDescriptionTrial => { GRP => "0040", ELEM => "0553", VR => "ST", VM => "1", VERSION => "DICOM/retired"}, |
|
3214
|
|
|
|
|
|
|
RETIRED_SlideIdentifier => { GRP => "0040", ELEM => "06FA", VR => "LO", VM => "1", VERSION => "DICOM/retired"}, |
|
3215
|
|
|
|
|
|
|
RETIRED_VitalStainCodeSequenceTrial => { GRP => "0040", ELEM => "09F8", VR => "SQ", VM => "1", VERSION => "DICOM/retired"}, |
|
3216
|
|
|
|
|
|
|
RETIRED_PlacerOrderNumberProcedure => { GRP => "0040", ELEM => "1006", VR => "SH", VM => "1", VERSION => "DICOM/retired"}, |
|
3217
|
|
|
|
|
|
|
RETIRED_FillerOrderNumberProcedure => { GRP => "0040", ELEM => "1007", VR => "SH", VM => "1", VERSION => "DICOM/retired"}, |
|
3218
|
|
|
|
|
|
|
RETIRED_ReasonForTheImagingServiceRequest => { GRP => "0040", ELEM => "2001", VR => "LO", VM => "1", VERSION => "DICOM/retired"}, |
|
3219
|
|
|
|
|
|
|
RETIRED_PlacerOrderNumberImagingServiceRequestRetired => { GRP => "0040", ELEM => "2006", VR => "SH", VM => "1", VERSION => "DICOM/retired"}, |
|
3220
|
|
|
|
|
|
|
RETIRED_FillerOrderNumberImagingServiceRequestRetired => { GRP => "0040", ELEM => "2007", VR => "SH", VM => "1", VERSION => "DICOM/retired"}, |
|
3221
|
|
|
|
|
|
|
RETIRED_EquivalentCDADocumentSequence => { GRP => "0040", ELEM => "A090", VR => "SQ", VM => "1", VERSION => "DICOM/retired"}, |
|
3222
|
|
|
|
|
|
|
RETIRED_AddressTrial => { GRP => "0040", ELEM => "A353", VR => "ST", VM => "1", VERSION => "DICOM/retired"}, |
|
3223
|
|
|
|
|
|
|
RETIRED_TelephoneNumberTrial => { GRP => "0040", ELEM => "A354", VR => "LO", VM => "1", VERSION => "DICOM/retired"}, |
|
3224
|
|
|
|
|
|
|
RETIRED_TemplateVersion => { GRP => "0040", ELEM => "DB06", VR => "DT", VM => "1", VERSION => "DICOM/retired"}, |
|
3225
|
|
|
|
|
|
|
RETIRED_TemplateLocalVersion => { GRP => "0040", ELEM => "DB07", VR => "DT", VM => "1", VERSION => "DICOM/retired"}, |
|
3226
|
|
|
|
|
|
|
RETIRED_TemplateExtensionFlag => { GRP => "0040", ELEM => "DB0B", VR => "CS", VM => "1", VERSION => "DICOM/retired"}, |
|
3227
|
|
|
|
|
|
|
RETIRED_TemplateExtensionOrganizationUID => { GRP => "0040", ELEM => "DB0C", VR => "UI", VM => "1", VERSION => "DICOM/retired"}, |
|
3228
|
|
|
|
|
|
|
RETIRED_TemplateExtensionCreatorUID => { GRP => "0040", ELEM => "DB0D", VR => "UI", VM => "1", VERSION => "DICOM/retired"}, |
|
3229
|
|
|
|
|
|
|
RETIRED_CountsIncluded => { GRP => "0054", ELEM => "1400", VR => "CS", VM => "1-n", VERSION => "DICOM/retired"}, |
|
3230
|
|
|
|
|
|
|
RETIRED_DeadTimeCorrectionFlag => { GRP => "0054", ELEM => "1401", VR => "CS", VM => "1", VERSION => "DICOM/retired"}, |
|
3231
|
|
|
|
|
|
|
RETIRED_ImageRotationRetired => { GRP => "0070", ELEM => "0040", VR => "IS", VM => "1", VERSION => "DICOM/retired"}, |
|
3232
|
|
|
|
|
|
|
RETIRED_DisplayedAreaTopLeftHandCornerTrial => { GRP => "0070", ELEM => "0050", VR => "US", VM => "2", VERSION => "DICOM/retired"}, |
|
3233
|
|
|
|
|
|
|
RETIRED_DisplayedAreaBottomRightHandCornerTrial => { GRP => "0070", ELEM => "0051", VR => "US", VM => "2", VERSION => "DICOM/retired"}, |
|
3234
|
|
|
|
|
|
|
RETIRED_GraphicLayerRecommendedDisplayRGBValue => { GRP => "0070", ELEM => "0067", VR => "US", VM => "3", VERSION => "DICOM/retired"}, |
|
3235
|
|
|
|
|
|
|
RETIRED_TopicTitle => { GRP => "0088", ELEM => "0904", VR => "LO", VM => "1", VERSION => "DICOM/retired"}, |
|
3236
|
|
|
|
|
|
|
RETIRED_TopicSubject => { GRP => "0088", ELEM => "0906", VR => "ST", VM => "1", VERSION => "DICOM/retired"}, |
|
3237
|
|
|
|
|
|
|
RETIRED_TopicAuthor => { GRP => "0088", ELEM => "0910", VR => "LO", VM => "1", VERSION => "DICOM/retired"}, |
|
3238
|
|
|
|
|
|
|
RETIRED_TopicKeywords => { GRP => "0088", ELEM => "0912", VR => "LO", VM => "1-32", VERSION => "DICOM/retired"}, |
|
3239
|
|
|
|
|
|
|
RETIRED_ColorImagePrintingFlag => { GRP => "2000", ELEM => "0062", VR => "CS", VM => "1", VERSION => "DICOM/retired"}, |
|
3240
|
|
|
|
|
|
|
RETIRED_CollationFlag => { GRP => "2000", ELEM => "0063", VR => "CS", VM => "1", VERSION => "DICOM/retired"}, |
|
3241
|
|
|
|
|
|
|
RETIRED_AnnotationFlag => { GRP => "2000", ELEM => "0065", VR => "CS", VM => "1", VERSION => "DICOM/retired"}, |
|
3242
|
|
|
|
|
|
|
RETIRED_ImageOverlayFlag => { GRP => "2000", ELEM => "0067", VR => "CS", VM => "1", VERSION => "DICOM/retired"}, |
|
3243
|
|
|
|
|
|
|
RETIRED_PresentationLUTFlag => { GRP => "2000", ELEM => "0069", VR => "CS", VM => "1", VERSION => "DICOM/retired"}, |
|
3244
|
|
|
|
|
|
|
RETIRED_ImageBoxPresentationLUTFlag => { GRP => "2000", ELEM => "006A", VR => "CS", VM => "1", VERSION => "DICOM/retired"}, |
|
3245
|
|
|
|
|
|
|
RETIRED_ReferencedStoredPrintSequence => { GRP => "2000", ELEM => "0510", VR => "SQ", VM => "1", VERSION => "DICOM/retired"}, |
|
3246
|
|
|
|
|
|
|
RETIRED_ReferencedImageOverlayBoxSequence => { GRP => "2020", ELEM => "0130", VR => "SQ", VM => "1", VERSION => "DICOM/retired"}, |
|
3247
|
|
|
|
|
|
|
RETIRED_ReferencedVOILUTBoxSequence => { GRP => "2020", ELEM => "0140", VR => "SQ", VM => "1", VERSION => "DICOM/retired"}, |
|
3248
|
|
|
|
|
|
|
RETIRED_ReferencedOverlayPlaneSequence => { GRP => "2040", ELEM => "0010", VR => "SQ", VM => "1", VERSION => "DICOM/retired"}, |
|
3249
|
|
|
|
|
|
|
RETIRED_ReferencedOverlayPlaneGroups => { GRP => "2040", ELEM => "0011", VR => "US", VM => "1-99", VERSION => "DICOM/retired"}, |
|
3250
|
|
|
|
|
|
|
RETIRED_OverlayPixelDataSequence => { GRP => "2040", ELEM => "0020", VR => "SQ", VM => "1", VERSION => "DICOM/retired"}, |
|
3251
|
|
|
|
|
|
|
RETIRED_OverlayMagnificationType => { GRP => "2040", ELEM => "0060", VR => "CS", VM => "1", VERSION => "DICOM/retired"}, |
|
3252
|
|
|
|
|
|
|
RETIRED_OverlaySmoothingType => { GRP => "2040", ELEM => "0070", VR => "CS", VM => "1", VERSION => "DICOM/retired"}, |
|
3253
|
|
|
|
|
|
|
RETIRED_OverlayOrImageMagnification => { GRP => "2040", ELEM => "0072", VR => "CS", VM => "1", VERSION => "DICOM/retired"}, |
|
3254
|
|
|
|
|
|
|
RETIRED_MagnifyToNumberOfColumns => { GRP => "2040", ELEM => "0074", VR => "US", VM => "1", VERSION => "DICOM/retired"}, |
|
3255
|
|
|
|
|
|
|
RETIRED_OverlayForegroundDensity => { GRP => "2040", ELEM => "0080", VR => "CS", VM => "1", VERSION => "DICOM/retired"}, |
|
3256
|
|
|
|
|
|
|
RETIRED_OverlayBackgroundDensity => { GRP => "2040", ELEM => "0082", VR => "CS", VM => "1", VERSION => "DICOM/retired"}, |
|
3257
|
|
|
|
|
|
|
RETIRED_OverlayMode => { GRP => "2040", ELEM => "0090", VR => "CS", VM => "1", VERSION => "DICOM/retired"}, |
|
3258
|
|
|
|
|
|
|
RETIRED_ThresholdDensity => { GRP => "2040", ELEM => "0100", VR => "CS", VM => "1", VERSION => "DICOM/retired"}, |
|
3259
|
|
|
|
|
|
|
RETIRED_ReferencedImageBoxSequenceRetired => { GRP => "2040", ELEM => "0500", VR => "SQ", VM => "1", VERSION => "DICOM/retired"}, |
|
3260
|
|
|
|
|
|
|
RETIRED_PrintJobID => { GRP => "2100", ELEM => "0010", VR => "SH", VM => "1", VERSION => "DICOM/retired"}, |
|
3261
|
|
|
|
|
|
|
RETIRED_DestinationAE => { GRP => "2100", ELEM => "0140", VR => "AE", VM => "1", VERSION => "DICOM/retired"}, |
|
3262
|
|
|
|
|
|
|
RETIRED_ReferencedPrintJobSequencePullStoredPrint => { GRP => "2100", ELEM => "0500", VR => "SQ", VM => "1", VERSION => "DICOM/retired"}, |
|
3263
|
|
|
|
|
|
|
RETIRED_PrintQueueID => { GRP => "2110", ELEM => "0099", VR => "SH", VM => "1", VERSION => "DICOM/retired"}, |
|
3264
|
|
|
|
|
|
|
RETIRED_QueueStatus => { GRP => "2120", ELEM => "0010", VR => "CS", VM => "1", VERSION => "DICOM/retired"}, |
|
3265
|
|
|
|
|
|
|
RETIRED_PrintJobDescriptionSequence => { GRP => "2120", ELEM => "0050", VR => "SQ", VM => "1", VERSION => "DICOM/retired"}, |
|
3266
|
|
|
|
|
|
|
RETIRED_ReferencedPrintJobSequence => { GRP => "2120", ELEM => "0070", VR => "SQ", VM => "1", VERSION => "DICOM/retired"}, |
|
3267
|
|
|
|
|
|
|
RETIRED_PrintManagementCapabilitiesSequence => { GRP => "2130", ELEM => "0010", VR => "SQ", VM => "1", VERSION => "DICOM/retired"}, |
|
3268
|
|
|
|
|
|
|
RETIRED_PrinterCharacteristicsSequence => { GRP => "2130", ELEM => "0015", VR => "SQ", VM => "1", VERSION => "DICOM/retired"}, |
|
3269
|
|
|
|
|
|
|
RETIRED_FilmBoxContentSequence => { GRP => "2130", ELEM => "0030", VR => "SQ", VM => "1", VERSION => "DICOM/retired"}, |
|
3270
|
|
|
|
|
|
|
RETIRED_ImageBoxContentSequence => { GRP => "2130", ELEM => "0040", VR => "SQ", VM => "1", VERSION => "DICOM/retired"}, |
|
3271
|
|
|
|
|
|
|
RETIRED_AnnotationContentSequence => { GRP => "2130", ELEM => "0050", VR => "SQ", VM => "1", VERSION => "DICOM/retired"}, |
|
3272
|
|
|
|
|
|
|
RETIRED_ImageOverlayBoxContentSequence => { GRP => "2130", ELEM => "0060", VR => "SQ", VM => "1", VERSION => "DICOM/retired"}, |
|
3273
|
|
|
|
|
|
|
RETIRED_PresentationLUTContentSequence => { GRP => "2130", ELEM => "0080", VR => "SQ", VM => "1", VERSION => "DICOM/retired"}, |
|
3274
|
|
|
|
|
|
|
RETIRED_ProposedStudySequence => { GRP => "2130", ELEM => "00A0", VR => "SQ", VM => "1", VERSION => "DICOM/retired"}, |
|
3275
|
|
|
|
|
|
|
RETIRED_OriginalImageSequence => { GRP => "2130", ELEM => "00C0", VR => "SQ", VM => "1", VERSION => "DICOM/retired"}, |
|
3276
|
|
|
|
|
|
|
RETIRED_Arbitrary => { GRP => "4000", ELEM => "0010", VR => "LT", VM => "1", VERSION => "DICOM/retired"}, |
|
3277
|
|
|
|
|
|
|
RETIRED_TextComments => { GRP => "4000", ELEM => "4000", VR => "LT", VM => "1", VERSION => "DICOM/retired"}, |
|
3278
|
|
|
|
|
|
|
RETIRED_ResultsID => { GRP => "4008", ELEM => "0040", VR => "SH", VM => "1", VERSION => "DICOM/retired"}, |
|
3279
|
|
|
|
|
|
|
RETIRED_ResultsIDIssuer => { GRP => "4008", ELEM => "0042", VR => "LO", VM => "1", VERSION => "DICOM/retired"}, |
|
3280
|
|
|
|
|
|
|
RETIRED_ReferencedInterpretationSequence => { GRP => "4008", ELEM => "0050", VR => "SQ", VM => "1", VERSION => "DICOM/retired"}, |
|
3281
|
|
|
|
|
|
|
RETIRED_InterpretationRecordedDate => { GRP => "4008", ELEM => "0100", VR => "DA", VM => "1", VERSION => "DICOM/retired"}, |
|
3282
|
|
|
|
|
|
|
RETIRED_InterpretationRecordedTime => { GRP => "4008", ELEM => "0101", VR => "TM", VM => "1", VERSION => "DICOM/retired"}, |
|
3283
|
|
|
|
|
|
|
RETIRED_InterpretationRecorder => { GRP => "4008", ELEM => "0102", VR => "PN", VM => "1", VERSION => "DICOM/retired"}, |
|
3284
|
|
|
|
|
|
|
RETIRED_ReferenceToRecordedSound => { GRP => "4008", ELEM => "0103", VR => "LO", VM => "1", VERSION => "DICOM/retired"}, |
|
3285
|
|
|
|
|
|
|
RETIRED_InterpretationTranscriptionDate => { GRP => "4008", ELEM => "0108", VR => "DA", VM => "1", VERSION => "DICOM/retired"}, |
|
3286
|
|
|
|
|
|
|
RETIRED_InterpretationTranscriptionTime => { GRP => "4008", ELEM => "0109", VR => "TM", VM => "1", VERSION => "DICOM/retired"}, |
|
3287
|
|
|
|
|
|
|
RETIRED_InterpretationTranscriber => { GRP => "4008", ELEM => "010A", VR => "PN", VM => "1", VERSION => "DICOM/retired"}, |
|
3288
|
|
|
|
|
|
|
RETIRED_InterpretationText => { GRP => "4008", ELEM => "010B", VR => "ST", VM => "1", VERSION => "DICOM/retired"}, |
|
3289
|
|
|
|
|
|
|
RETIRED_InterpretationAuthor => { GRP => "4008", ELEM => "010C", VR => "PN", VM => "1", VERSION => "DICOM/retired"}, |
|
3290
|
|
|
|
|
|
|
RETIRED_InterpretationApproverSequence => { GRP => "4008", ELEM => "0111", VR => "SQ", VM => "1", VERSION => "DICOM/retired"}, |
|
3291
|
|
|
|
|
|
|
RETIRED_InterpretationApprovalDate => { GRP => "4008", ELEM => "0112", VR => "DA", VM => "1", VERSION => "DICOM/retired"}, |
|
3292
|
|
|
|
|
|
|
RETIRED_InterpretationApprovalTime => { GRP => "4008", ELEM => "0113", VR => "TM", VM => "1", VERSION => "DICOM/retired"}, |
|
3293
|
|
|
|
|
|
|
RETIRED_PhysicianApprovingInterpretation => { GRP => "4008", ELEM => "0114", VR => "PN", VM => "1", VERSION => "DICOM/retired"}, |
|
3294
|
|
|
|
|
|
|
RETIRED_InterpretationDiagnosisDescription => { GRP => "4008", ELEM => "0115", VR => "LT", VM => "1", VERSION => "DICOM/retired"}, |
|
3295
|
|
|
|
|
|
|
RETIRED_InterpretationDiagnosisCodeSequence => { GRP => "4008", ELEM => "0117", VR => "SQ", VM => "1", VERSION => "DICOM/retired"}, |
|
3296
|
|
|
|
|
|
|
RETIRED_ResultsDistributionListSequence => { GRP => "4008", ELEM => "0118", VR => "SQ", VM => "1", VERSION => "DICOM/retired"}, |
|
3297
|
|
|
|
|
|
|
RETIRED_DistributionName => { GRP => "4008", ELEM => "0119", VR => "PN", VM => "1", VERSION => "DICOM/retired"}, |
|
3298
|
|
|
|
|
|
|
RETIRED_DistributionAddress => { GRP => "4008", ELEM => "011A", VR => "LO", VM => "1", VERSION => "DICOM/retired"}, |
|
3299
|
|
|
|
|
|
|
RETIRED_InterpretationID => { GRP => "4008", ELEM => "0200", VR => "SH", VM => "1", VERSION => "DICOM/retired"}, |
|
3300
|
|
|
|
|
|
|
RETIRED_InterpretationIDIssuer => { GRP => "4008", ELEM => "0202", VR => "LO", VM => "1", VERSION => "DICOM/retired"}, |
|
3301
|
|
|
|
|
|
|
RETIRED_InterpretationTypeID => { GRP => "4008", ELEM => "0210", VR => "CS", VM => "1", VERSION => "DICOM/retired"}, |
|
3302
|
|
|
|
|
|
|
RETIRED_InterpretationStatusID => { GRP => "4008", ELEM => "0212", VR => "CS", VM => "1", VERSION => "DICOM/retired"}, |
|
3303
|
|
|
|
|
|
|
RETIRED_Impressions => { GRP => "4008", ELEM => "0300", VR => "ST", VM => "1", VERSION => "DICOM/retired"}, |
|
3304
|
|
|
|
|
|
|
RETIRED_ResultsComments => { GRP => "4008", ELEM => "4000", VR => "ST", VM => "1", VERSION => "DICOM/retired"}, |
|
3305
|
|
|
|
|
|
|
RETIRED_CoefficientsSDVN => { GRP => "7FE0", ELEM => "0020", VR => "OW", VM => "1", VERSION => "DICOM/retired"}, |
|
3306
|
|
|
|
|
|
|
RETIRED_CoefficientsSDHN => { GRP => "7FE0", ELEM => "0030", VR => "OW", VM => "1", VERSION => "DICOM/retired"}, |
|
3307
|
|
|
|
|
|
|
RETIRED_CoefficientsSDDN => { GRP => "7FE0", ELEM => "0040", VR => "OW", VM => "1", VERSION => "DICOM/retired"}, |
|
3308
|
|
|
|
|
|
|
ACR_NEMA_CommandGroupLengthToEnd => { GRP => "0000", ELEM => "0001", VR => "UL", VM => "1", VERSION => "ACR/NEMA2"}, |
|
3309
|
|
|
|
|
|
|
ACR_NEMA_CommandRecognitionCode => { GRP => "0000", ELEM => "0010", VR => "CS", VM => "1", VERSION => "ACR/NEMA2"}, |
|
3310
|
|
|
|
|
|
|
ACR_NEMA_Initiator => { GRP => "0000", ELEM => "0200", VR => "LO", VM => "1", VERSION => "ACR/NEMA2"}, |
|
3311
|
|
|
|
|
|
|
ACR_NEMA_Receiver => { GRP => "0000", ELEM => "0300", VR => "LO", VM => "1", VERSION => "ACR/NEMA2"}, |
|
3312
|
|
|
|
|
|
|
ACR_NEMA_FindLocation => { GRP => "0000", ELEM => "0400", VR => "LO", VM => "1", VERSION => "ACR/NEMA2"}, |
|
3313
|
|
|
|
|
|
|
ACR_NEMA_NumberOfMatches => { GRP => "0000", ELEM => "0850", VR => "US", VM => "1", VERSION => "ACR/NEMA2"}, |
|
3314
|
|
|
|
|
|
|
ACR_NEMA_ResponseSequenceNumber => { GRP => "0000", ELEM => "0860", VR => "US", VM => "1", VERSION => "ACR/NEMA2"}, |
|
3315
|
|
|
|
|
|
|
ACR_NEMA_DialogReceiver => { GRP => "0000", ELEM => "4000", VR => "LO", VM => "1", VERSION => "ACR/NEMA2"}, |
|
3316
|
|
|
|
|
|
|
ACR_NEMA_TerminalType => { GRP => "0000", ELEM => "4010", VR => "LO", VM => "1", VERSION => "ACR/NEMA2"}, |
|
3317
|
|
|
|
|
|
|
ACR_NEMA_MessageSetID => { GRP => "0000", ELEM => "5010", VR => "LO", VM => "1", VERSION => "ACR/NEMA2"}, |
|
3318
|
|
|
|
|
|
|
ACR_NEMA_EndMessageSet => { GRP => "0000", ELEM => "5020", VR => "LO", VM => "1", VERSION => "ACR/NEMA2"}, |
|
3319
|
|
|
|
|
|
|
ACR_NEMA_DisplayFormat => { GRP => "0000", ELEM => "5110", VR => "LO", VM => "1", VERSION => "ACR/NEMA2"}, |
|
3320
|
|
|
|
|
|
|
ACR_NEMA_PagePositionID => { GRP => "0000", ELEM => "5120", VR => "LO", VM => "1", VERSION => "ACR/NEMA2"}, |
|
3321
|
|
|
|
|
|
|
ACR_NEMA_TextFormatID => { GRP => "0000", ELEM => "5130", VR => "LO", VM => "1", VERSION => "ACR/NEMA2"}, |
|
3322
|
|
|
|
|
|
|
ACR_NEMA_NormalReverse => { GRP => "0000", ELEM => "5140", VR => "CS", VM => "1", VERSION => "ACR/NEMA2"}, |
|
3323
|
|
|
|
|
|
|
ACR_NEMA_AddGrayScale => { GRP => "0000", ELEM => "5150", VR => "CS", VM => "1", VERSION => "ACR/NEMA2"}, |
|
3324
|
|
|
|
|
|
|
ACR_NEMA_Borders => { GRP => "0000", ELEM => "5160", VR => "CS", VM => "1", VERSION => "ACR/NEMA2"}, |
|
3325
|
|
|
|
|
|
|
ACR_NEMA_Copies => { GRP => "0000", ELEM => "5170", VR => "IS", VM => "1", VERSION => "ACR/NEMA2"}, |
|
3326
|
|
|
|
|
|
|
ACR_NEMA_MagnificationType => { GRP => "0000", ELEM => "5180", VR => "LO", VM => "1", VERSION => "ACR/NEMA2"}, |
|
3327
|
|
|
|
|
|
|
ACR_NEMA_Erase => { GRP => "0000", ELEM => "5190", VR => "LO", VM => "1-n", VERSION => "ACR/NEMA2"}, |
|
3328
|
|
|
|
|
|
|
ACR_NEMA_Print => { GRP => "0000", ELEM => "51A0", VR => "CS", VM => "1", VERSION => "ACR/NEMA2"}, |
|
3329
|
|
|
|
|
|
|
ACR_NEMA_Overlays => { GRP => "0000", ELEM => "51B0", VR => "US", VM => "1-n", VERSION => "ACR/NEMA2"}, |
|
3330
|
|
|
|
|
|
|
ACR_NEMA_IdentifyingGroupLengthToEnd => { GRP => "0008", ELEM => "0001", VR => "UL", VM => "1", VERSION => "ACR/NEMA2"}, |
|
3331
|
|
|
|
|
|
|
ACR_NEMA_RecognitionCode => { GRP => "0008", ELEM => "0010", VR => "LO", VM => "1", VERSION => "ACR/NEMA2"}, |
|
3332
|
|
|
|
|
|
|
ACR_NEMA_OldDataSetType => { GRP => "0008", ELEM => "0040", VR => "US", VM => "1", VERSION => "ACR/NEMA2"}, |
|
3333
|
|
|
|
|
|
|
ACR_NEMA_DataSetSubtype => { GRP => "0008", ELEM => "0041", VR => "LO", VM => "1", VERSION => "ACR/NEMA2"}, |
|
3334
|
|
|
|
|
|
|
ACR_NEMA_NetworkID => { GRP => "0008", ELEM => "1000", VR => "LO", VM => "1", VERSION => "ACR/NEMA2"}, |
|
3335
|
|
|
|
|
|
|
ACR_NEMA_IdentifyingComments => { GRP => "0008", ELEM => "4000", VR => "LT", VM => "1-n", VERSION => "ACR/NEMA2"}, |
|
3336
|
|
|
|
|
|
|
ACR_NEMA_InsurancePlanIdentification => { GRP => "0010", ELEM => "1050", VR => "LT", VM => "1-n", VERSION => "ACR/NEMA2"}, |
|
3337
|
|
|
|
|
|
|
ACR_NEMA_UpperLowerPixelValues => { GRP => "0018", ELEM => "1240", VR => "IS", VM => "1-n", VERSION => "ACR/NEMA2"}, |
|
3338
|
|
|
|
|
|
|
ACR_NEMA_AcquisitionComments => { GRP => "0018", ELEM => "4000", VR => "LT", VM => "1-n", VERSION => "ACR/NEMA2"}, |
|
3339
|
|
|
|
|
|
|
ACR_NEMA_DynamicRange => { GRP => "0018", ELEM => "5030", VR => "DS", VM => "1", VERSION => "ACR/NEMA2"}, |
|
3340
|
|
|
|
|
|
|
ACR_NEMA_TotalGain => { GRP => "0018", ELEM => "5040", VR => "DS", VM => "1", VERSION => "ACR/NEMA2"}, |
|
3341
|
|
|
|
|
|
|
ACR_NEMA_ImagePosition => { GRP => "0020", ELEM => "0030", VR => "DS", VM => "3", VERSION => "ACR/NEMA2"}, |
|
3342
|
|
|
|
|
|
|
ACR_NEMA_ImageOrientation => { GRP => "0020", ELEM => "0035", VR => "DS", VM => "6", VERSION => "ACR/NEMA2"}, |
|
3343
|
|
|
|
|
|
|
ACR_NEMA_Location => { GRP => "0020", ELEM => "0050", VR => "DS", VM => "1", VERSION => "ACR/NEMA2"}, |
|
3344
|
|
|
|
|
|
|
ACR_NEMA_ImageGeometryType => { GRP => "0020", ELEM => "0070", VR => "LO", VM => "1", VERSION => "ACR/NEMA2"}, |
|
3345
|
|
|
|
|
|
|
ACR_NEMA_MaskingImage => { GRP => "0020", ELEM => "0080", VR => "LO", VM => "1-n", VERSION => "ACR/NEMA2"}, |
|
3346
|
|
|
|
|
|
|
ACR_NEMA_AcquisitionsInSeries => { GRP => "0020", ELEM => "1001", VR => "IS", VM => "1", VERSION => "ACR/NEMA2"}, |
|
3347
|
|
|
|
|
|
|
ACR_NEMA_ImagesInSeries => { GRP => "0020", ELEM => "1003", VR => "IS", VM => "1", VERSION => "ACR/NEMA2"}, |
|
3348
|
|
|
|
|
|
|
ACR_NEMA_ImagesInStudy => { GRP => "0020", ELEM => "1005", VR => "IS", VM => "1", VERSION => "ACR/NEMA2"}, |
|
3349
|
|
|
|
|
|
|
ACR_NEMA_Reference => { GRP => "0020", ELEM => "1020", VR => "LO", VM => "1-n", VERSION => "ACR/NEMA2"}, |
|
3350
|
|
|
|
|
|
|
ACR_NEMA_ModifyingDeviceID => { GRP => "0020", ELEM => "3401", VR => "LO", VM => "1", VERSION => "ACR/NEMA2"}, |
|
3351
|
|
|
|
|
|
|
ACR_NEMA_ModifiedImageID => { GRP => "0020", ELEM => "3402", VR => "LO", VM => "1", VERSION => "ACR/NEMA2"}, |
|
3352
|
|
|
|
|
|
|
ACR_NEMA_ModifiedImageDate => { GRP => "0020", ELEM => "3403", VR => "DA", VM => "1", VERSION => "ACR/NEMA2"}, |
|
3353
|
|
|
|
|
|
|
ACR_NEMA_ModifyingDeviceManufacturer => { GRP => "0020", ELEM => "3404", VR => "LO", VM => "1", VERSION => "ACR/NEMA2"}, |
|
3354
|
|
|
|
|
|
|
ACR_NEMA_ModifiedImageTime => { GRP => "0020", ELEM => "3405", VR => "TM", VM => "1", VERSION => "ACR/NEMA2"}, |
|
3355
|
|
|
|
|
|
|
ACR_NEMA_ModifiedImageDescription => { GRP => "0020", ELEM => "3406", VR => "LO", VM => "1", VERSION => "ACR/NEMA2"}, |
|
3356
|
|
|
|
|
|
|
ACR_NEMA_OriginalImageIdentification => { GRP => "0020", ELEM => "5000", VR => "AT", VM => "1-n", VERSION => "ACR/NEMA2"}, |
|
3357
|
|
|
|
|
|
|
ACR_NEMA_OriginalImageIdentificationNomenclature => { GRP => "0020", ELEM => "5002", VR => "LO", VM => "1-n", VERSION => "ACR/NEMA2"}, |
|
3358
|
|
|
|
|
|
|
ACR_NEMA_ImageDimensions => { GRP => "0028", ELEM => "0005", VR => "US", VM => "1", VERSION => "ACR/NEMA2"}, |
|
3359
|
|
|
|
|
|
|
ACR_NEMA_ImageFormat => { GRP => "0028", ELEM => "0040", VR => "CS", VM => "1", VERSION => "ACR/NEMA2"}, |
|
3360
|
|
|
|
|
|
|
ACR_NEMA_ManipulatedImage => { GRP => "0028", ELEM => "0050", VR => "LO", VM => "1-n", VERSION => "ACR/NEMA2"}, |
|
3361
|
|
|
|
|
|
|
ACR_NEMA_CompressionCode => { GRP => "0028", ELEM => "0060", VR => "CS", VM => "1", VERSION => "ACR/NEMA2"}, |
|
3362
|
|
|
|
|
|
|
ACR_NEMA_SmallestValidPixelValue => { GRP => "0028", ELEM => "0104", VR => "xs", VM => "1", VERSION => "ACR/NEMA2"}, |
|
3363
|
|
|
|
|
|
|
ACR_NEMA_LargestValidPixelValue => { GRP => "0028", ELEM => "0105", VR => "xs", VM => "1", VERSION => "ACR/NEMA2"}, |
|
3364
|
|
|
|
|
|
|
ACR_NEMA_ImageLocation => { GRP => "0028", ELEM => "0200", VR => "US", VM => "1", VERSION => "ACR/NEMA2"}, |
|
3365
|
|
|
|
|
|
|
ACR_NEMA_GrayScale => { GRP => "0028", ELEM => "1080", VR => "CS", VM => "1", VERSION => "ACR/NEMA2"}, |
|
3366
|
|
|
|
|
|
|
ACR_NEMA_GrayLookupTableDescriptor => { GRP => "0028", ELEM => "1100", VR => "xs", VM => "3", VERSION => "ACR/NEMA2"}, |
|
3367
|
|
|
|
|
|
|
ACR_NEMA_GrayLookupTableData => { GRP => "0028", ELEM => "1200", VR => "xs", VM => "1-n", VERSION => "ACR/NEMA2"}, |
|
3368
|
|
|
|
|
|
|
ACR_NEMA_ImagePresentationComments => { GRP => "0028", ELEM => "4000", VR => "LT", VM => "1-n", VERSION => "ACR/NEMA2"}, |
|
3369
|
|
|
|
|
|
|
ACR_NEMA_TextGroupLength => { GRP => "4000", ELEM => "0000", VR => "UL", VM => "1", VERSION => "ACR/NEMA2"}, |
|
3370
|
|
|
|
|
|
|
ACR_NEMA_TextArbitrary => { GRP => "4000", ELEM => "0010", VR => "LT", VM => "1-n", VERSION => "ACR/NEMA2"}, |
|
3371
|
|
|
|
|
|
|
ACR_NEMA_TextComments => { GRP => "4000", ELEM => "4000", VR => "LT", VM => "1-n", VERSION => "ACR/NEMA2"}, |
|
3372
|
|
|
|
|
|
|
ACR_NEMA_2C_CompressionRecognitionCode => { GRP => "0028", ELEM => "005F", VR => "CS", VM => "1", VERSION => "ACR/NEMA2C"}, |
|
3373
|
|
|
|
|
|
|
ACR_NEMA_2C_CompressionOriginator => { GRP => "0028", ELEM => "0061", VR => "SH", VM => "1", VERSION => "ACR/NEMA2C"}, |
|
3374
|
|
|
|
|
|
|
ACR_NEMA_2C_CompressionLabel => { GRP => "0028", ELEM => "0062", VR => "SH", VM => "1", VERSION => "ACR/NEMA2C"}, |
|
3375
|
|
|
|
|
|
|
ACR_NEMA_2C_CompressionDescription => { GRP => "0028", ELEM => "0063", VR => "SH", VM => "1", VERSION => "ACR/NEMA2C"}, |
|
3376
|
|
|
|
|
|
|
ACR_NEMA_2C_CompressionSequence => { GRP => "0028", ELEM => "0065", VR => "CS", VM => "1-n", VERSION => "ACR/NEMA2C"}, |
|
3377
|
|
|
|
|
|
|
ACR_NEMA_2C_CompressionStepPointers => { GRP => "0028", ELEM => "0066", VR => "AT", VM => "1-n", VERSION => "ACR/NEMA2C"}, |
|
3378
|
|
|
|
|
|
|
ACR_NEMA_2C_RepeatInterval => { GRP => "0028", ELEM => "0068", VR => "US", VM => "1", VERSION => "ACR/NEMA2C"}, |
|
3379
|
|
|
|
|
|
|
ACR_NEMA_2C_BitsGrouped => { GRP => "0028", ELEM => "0069", VR => "US", VM => "1", VERSION => "ACR/NEMA2C"}, |
|
3380
|
|
|
|
|
|
|
ACR_NEMA_2C_PerimeterTable => { GRP => "0028", ELEM => "0070", VR => "US", VM => "1-n", VERSION => "ACR/NEMA2C"}, |
|
3381
|
|
|
|
|
|
|
ACR_NEMA_2C_PerimeterValue => { GRP => "0028", ELEM => "0071", VR => "xs", VM => "1", VERSION => "ACR/NEMA2C"}, |
|
3382
|
|
|
|
|
|
|
ACR_NEMA_2C_PredictorRows => { GRP => "0028", ELEM => "0080", VR => "US", VM => "1", VERSION => "ACR/NEMA2C"}, |
|
3383
|
|
|
|
|
|
|
ACR_NEMA_2C_PredictorColumns => { GRP => "0028", ELEM => "0081", VR => "US", VM => "1", VERSION => "ACR/NEMA2C"}, |
|
3384
|
|
|
|
|
|
|
ACR_NEMA_2C_PredictorConstants => { GRP => "0028", ELEM => "0082", VR => "US", VM => "1-n", VERSION => "ACR/NEMA2C"}, |
|
3385
|
|
|
|
|
|
|
ACR_NEMA_2C_BlockedPixels => { GRP => "0028", ELEM => "0090", VR => "CS", VM => "1", VERSION => "ACR/NEMA2C"}, |
|
3386
|
|
|
|
|
|
|
ACR_NEMA_2C_BlockRows => { GRP => "0028", ELEM => "0091", VR => "US", VM => "1", VERSION => "ACR/NEMA2C"}, |
|
3387
|
|
|
|
|
|
|
ACR_NEMA_2C_BlockColumns => { GRP => "0028", ELEM => "0092", VR => "US", VM => "1", VERSION => "ACR/NEMA2C"}, |
|
3388
|
|
|
|
|
|
|
ACR_NEMA_2C_RowOverlap => { GRP => "0028", ELEM => "0093", VR => "US", VM => "1", VERSION => "ACR/NEMA2C"}, |
|
3389
|
|
|
|
|
|
|
ACR_NEMA_2C_ColumnOverlap => { GRP => "0028", ELEM => "0094", VR => "US", VM => "1", VERSION => "ACR/NEMA2C"}, |
|
3390
|
|
|
|
|
|
|
ACR_NEMA_2C_TransformLabel => { GRP => "0028", ELEM => "0400", VR => "CS", VM => "1", VERSION => "ACR/NEMA2C"}, |
|
3391
|
|
|
|
|
|
|
ACR_NEMA_2C_TransformVersionNumber => { GRP => "0028", ELEM => "0401", VR => "CS", VM => "1", VERSION => "ACR/NEMA2C"}, |
|
3392
|
|
|
|
|
|
|
ACR_NEMA_2C_NumberOfTransformSteps => { GRP => "0028", ELEM => "0402", VR => "US", VM => "1", VERSION => "ACR/NEMA2C"}, |
|
3393
|
|
|
|
|
|
|
ACR_NEMA_2C_SequenceOfCompressedData => { GRP => "0028", ELEM => "0403", VR => "CS", VM => "1-n", VERSION => "ACR/NEMA2C"}, |
|
3394
|
|
|
|
|
|
|
ACR_NEMA_2C_DetailsOfCoefficients => { GRP => "0028", ELEM => "0404", VR => "AT", VM => "1-n", VERSION => "ACR/NEMA2C"}, |
|
3395
|
|
|
|
|
|
|
ACR_NEMA_2C_RowsForNthOrderCoefficients => { GRP => "0028", ELEM => "0410", VR => "US", VM => "1", VERSION => "ACR/NEMA2C"}, |
|
3396
|
|
|
|
|
|
|
ACR_NEMA_2C_ColumnsForNthOrderCoefficients => { GRP => "0028", ELEM => "0411", VR => "US", VM => "1", VERSION => "ACR/NEMA2C"}, |
|
3397
|
|
|
|
|
|
|
ACR_NEMA_2C_CoefficientCoding => { GRP => "0028", ELEM => "0412", VR => "CS", VM => "1-n", VERSION => "ACR/NEMA2C"}, |
|
3398
|
|
|
|
|
|
|
ACR_NEMA_2C_CoefficientCodingPointers => { GRP => "0028", ELEM => "0413", VR => "AT", VM => "1-n", VERSION => "ACR/NEMA2C"}, |
|
3399
|
|
|
|
|
|
|
ACR_NEMA_2C_DCTLabel => { GRP => "0028", ELEM => "0700", VR => "CS", VM => "1", VERSION => "ACR/NEMA2C"}, |
|
3400
|
|
|
|
|
|
|
ACR_NEMA_2C_DataBlockDescription => { GRP => "0028", ELEM => "0701", VR => "CS", VM => "1-n", VERSION => "ACR/NEMA2C"}, |
|
3401
|
|
|
|
|
|
|
ACR_NEMA_2C_DataBlock => { GRP => "0028", ELEM => "0702", VR => "AT", VM => "1-n", VERSION => "ACR/NEMA2C"}, |
|
3402
|
|
|
|
|
|
|
ACR_NEMA_2C_NormalizationFactorFormat => { GRP => "0028", ELEM => "0710", VR => "US", VM => "1", VERSION => "ACR/NEMA2C"}, |
|
3403
|
|
|
|
|
|
|
ACR_NEMA_2C_ZonalMapNumberFormat => { GRP => "0028", ELEM => "0720", VR => "US", VM => "1", VERSION => "ACR/NEMA2C"}, |
|
3404
|
|
|
|
|
|
|
ACR_NEMA_2C_ZonalMapLocation => { GRP => "0028", ELEM => "0721", VR => "AT", VM => "1-n", VERSION => "ACR/NEMA2C"}, |
|
3405
|
|
|
|
|
|
|
ACR_NEMA_2C_ZonalMapFormat => { GRP => "0028", ELEM => "0722", VR => "US", VM => "1", VERSION => "ACR/NEMA2C"}, |
|
3406
|
|
|
|
|
|
|
ACR_NEMA_2C_AdaptiveMapFormat => { GRP => "0028", ELEM => "0730", VR => "US", VM => "1", VERSION => "ACR/NEMA2C"}, |
|
3407
|
|
|
|
|
|
|
ACR_NEMA_2C_CodeNumberFormat => { GRP => "0028", ELEM => "0740", VR => "US", VM => "1", VERSION => "ACR/NEMA2C"}, |
|
3408
|
|
|
|
|
|
|
ACR_NEMA_2C_CodeLabel => { GRP => "0028", ELEM => "0800", VR => "CS", VM => "1-n", VERSION => "ACR/NEMA2C"}, |
|
3409
|
|
|
|
|
|
|
ACR_NEMA_2C_NumberOfTables => { GRP => "0028", ELEM => "0802", VR => "US", VM => "1", VERSION => "ACR/NEMA2C"}, |
|
3410
|
|
|
|
|
|
|
ACR_NEMA_2C_CodeTableLocation => { GRP => "0028", ELEM => "0803", VR => "AT", VM => "1-n", VERSION => "ACR/NEMA2C"}, |
|
3411
|
|
|
|
|
|
|
ACR_NEMA_2C_BitsForCodeWord => { GRP => "0028", ELEM => "0804", VR => "US", VM => "1", VERSION => "ACR/NEMA2C"}, |
|
3412
|
|
|
|
|
|
|
ACR_NEMA_2C_ImageDataLocation => { GRP => "0028", ELEM => "0808", VR => "AT", VM => "1-n", VERSION => "ACR/NEMA2C"}, |
|
3413
|
|
|
|
|
|
|
ACR_NEMA_2C_CodeTableGroupLength => { GRP => "1000", ELEM => "0000", VR => "UL", VM => "1", VERSION => "ACR/NEMA2C"}, |
|
3414
|
|
|
|
|
|
|
ACR_NEMA_2C_EscapeTriplet => { GRP => "1000", ELEM => "0010", VR => "US", VM => "3", VERSION => "ACR/NEMA2C"}, |
|
3415
|
|
|
|
|
|
|
ACR_NEMA_2C_RunLengthTriplet => { GRP => "1000", ELEM => "0011", VR => "US", VM => "3", VERSION => "ACR/NEMA2C"}, |
|
3416
|
|
|
|
|
|
|
ACR_NEMA_2C_HuffmanTableSize => { GRP => "1000", ELEM => "0012", VR => "US", VM => "1", VERSION => "ACR/NEMA2C"}, |
|
3417
|
|
|
|
|
|
|
ACR_NEMA_2C_HuffmanTableTriplet => { GRP => "1000", ELEM => "0013", VR => "US", VM => "3", VERSION => "ACR/NEMA2C"}, |
|
3418
|
|
|
|
|
|
|
ACR_NEMA_2C_ShiftTableSize => { GRP => "1000", ELEM => "0014", VR => "US", VM => "1", VERSION => "ACR/NEMA2C"}, |
|
3419
|
|
|
|
|
|
|
ACR_NEMA_2C_ShiftTableTriplet => { GRP => "1000", ELEM => "0015", VR => "US", VM => "3", VERSION => "ACR/NEMA2C"}, |
|
3420
|
|
|
|
|
|
|
ACR_NEMA_2C_ZonalMapGroupLength => { GRP => "1010", ELEM => "0000", VR => "UL", VM => "1", VERSION => "ACR/NEMA2C"}, |
|
3421
|
|
|
|
|
|
|
ACR_NEMA_2C_ZonalMap => { GRP => "1010", ELEM => "0004", VR => "US", VM => "1-n", VERSION => "ACR/NEMA2C"}, |
|
3422
|
|
|
|
|
|
|
ACR_NEMA_2C_CoefficientsSDVN => { GRP => "7FE0", ELEM => "0020", VR => "OW", VM => "1-n", VERSION => "ACR/NEMA2C"}, |
|
3423
|
|
|
|
|
|
|
ACR_NEMA_2C_CoefficientsSDHN => { GRP => "7FE0", ELEM => "0030", VR => "OW", VM => "1-n", VERSION => "ACR/NEMA2C"}, |
|
3424
|
|
|
|
|
|
|
ACR_NEMA_2C_CoefficientsSDDN => { GRP => "7FE0", ELEM => "0040", VR => "OW", VM => "1-n", VERSION => "ACR/NEMA2C"}, |
|
3425
|
|
|
|
|
|
|
); |
|
3426
|
|
|
|
|
|
|
|
|
3427
|
|
|
|
|
|
|
|
|
3428
|
|
|
|
|
|
|
|
|
3429
|
|
|
|
|
|
|
our %dcmtkDicomDictionary = ( |
|
3430
|
|
|
|
|
|
|
|
|
3431
|
|
|
|
|
|
|
# below here is from dcmtk 3.5.4 |
|
3432
|
|
|
|
|
|
|
CommandGroupLength => { GRP => "0000", ELEM => "0000", VR => "UL" }, |
|
3433
|
|
|
|
|
|
|
AffectedSOPClassUID => { GRP => "0000", ELEM => "0002", VR => "UI" }, |
|
3434
|
|
|
|
|
|
|
RequestedSOPClassUID => { GRP => "0000", ELEM => "0003", VR => "UI" }, |
|
3435
|
|
|
|
|
|
|
CommandField => { GRP => "0000", ELEM => "0100", VR => "US" }, |
|
3436
|
|
|
|
|
|
|
MessageID => { GRP => "0000", ELEM => "0110", VR => "US" }, |
|
3437
|
|
|
|
|
|
|
MessageIDBeingRespondedTo => { GRP => "0000", ELEM => "0120", VR => "US" }, |
|
3438
|
|
|
|
|
|
|
MoveDestination => { GRP => "0000", ELEM => "0600", VR => "AE" }, |
|
3439
|
|
|
|
|
|
|
Priority => { GRP => "0000", ELEM => "0700", VR => "US" }, |
|
3440
|
|
|
|
|
|
|
DataSetType => { GRP => "0000", ELEM => "0800", VR => "US" }, |
|
3441
|
|
|
|
|
|
|
Status => { GRP => "0000", ELEM => "0900", VR => "US" }, |
|
3442
|
|
|
|
|
|
|
OffendingElement => { GRP => "0000", ELEM => "0901", VR => "AT" }, |
|
3443
|
|
|
|
|
|
|
ErrorComment => { GRP => "0000", ELEM => "0902", VR => "LO" }, |
|
3444
|
|
|
|
|
|
|
ErrorID => { GRP => "0000", ELEM => "0903", VR => "US" }, |
|
3445
|
|
|
|
|
|
|
AffectedSOPInstanceUID => { GRP => "0000", ELEM => "1000", VR => "UI" }, |
|
3446
|
|
|
|
|
|
|
RequestedSOPInstanceUID => { GRP => "0000", ELEM => "1001", VR => "UI" }, |
|
3447
|
|
|
|
|
|
|
EventTypeID => { GRP => "0000", ELEM => "1002", VR => "US" }, |
|
3448
|
|
|
|
|
|
|
AttributeIdentifierList => { GRP => "0000", ELEM => "1005", VR => "AT" }, |
|
3449
|
|
|
|
|
|
|
ActionTypeID => { GRP => "0000", ELEM => "1008", VR => "US" }, |
|
3450
|
|
|
|
|
|
|
NumberOfRemainingSubOperations => { GRP => "0000", ELEM => "1020", VR => "US" }, |
|
3451
|
|
|
|
|
|
|
NumberOfCompletedSubOperations => { GRP => "0000", ELEM => "1021", VR => "US" }, |
|
3452
|
|
|
|
|
|
|
NumberOfFailedSubOperations => { GRP => "0000", ELEM => "1022", VR => "US" }, |
|
3453
|
|
|
|
|
|
|
NumberOfWarningSubOperations => { GRP => "0000", ELEM => "1023", VR => "US" }, |
|
3454
|
|
|
|
|
|
|
MoveOriginatorApplicationEntityTitle => { GRP => "0000", ELEM => "1030", VR => "AE" }, |
|
3455
|
|
|
|
|
|
|
MoveOriginatorMessageID => { GRP => "0000", ELEM => "1031", VR => "US" }, |
|
3456
|
|
|
|
|
|
|
FileMetaInformationGroupLength => { GRP => "0002", ELEM => "0000", VR => "UL" }, |
|
3457
|
|
|
|
|
|
|
FileMetaInformationVersion => { GRP => "0002", ELEM => "0001", VR => "OB" }, |
|
3458
|
|
|
|
|
|
|
MediaStorageSOPClassUID => { GRP => "0002", ELEM => "0002", VR => "UI" }, |
|
3459
|
|
|
|
|
|
|
MediaStorageSOPInstanceUID => { GRP => "0002", ELEM => "0003", VR => "UI" }, |
|
3460
|
|
|
|
|
|
|
TransferSyntaxUID => { GRP => "0002", ELEM => "0010", VR => "UI" }, |
|
3461
|
|
|
|
|
|
|
ImplementationClassUID => { GRP => "0002", ELEM => "0012", VR => "UI" }, |
|
3462
|
|
|
|
|
|
|
ImplementationVersionName => { GRP => "0002", ELEM => "0013", VR => "SH" }, |
|
3463
|
|
|
|
|
|
|
SourceApplicationEntityTitle => { GRP => "0002", ELEM => "0016", VR => "AE" }, |
|
3464
|
|
|
|
|
|
|
PrivateInformationCreatorUID => { GRP => "0002", ELEM => "0100", VR => "UI" }, |
|
3465
|
|
|
|
|
|
|
PrivateInformation => { GRP => "0002", ELEM => "0102", VR => "OB" }, |
|
3466
|
|
|
|
|
|
|
FileSetID => { GRP => "0004", ELEM => "1130", VR => "CS" }, |
|
3467
|
|
|
|
|
|
|
FileSetDescriptorFileID => { GRP => "0004", ELEM => "1141", VR => "CS" }, |
|
3468
|
|
|
|
|
|
|
SpecificCharacterSetOfFileSetDescriptorFile => { GRP => "0004", ELEM => "1142", VR => "CS" }, |
|
3469
|
|
|
|
|
|
|
OffsetOfTheFirstDirectoryRecordOfTheRootDirectoryEntity => { GRP => "0004", ELEM => "1200", VR => "up" }, |
|
3470
|
|
|
|
|
|
|
OffsetOfTheLastDirectoryRecordOfTheRootDirectoryEntity => { GRP => "0004", ELEM => "1202", VR => "up" }, |
|
3471
|
|
|
|
|
|
|
FileSetConsistencyFlag => { GRP => "0004", ELEM => "1212", VR => "US" }, |
|
3472
|
|
|
|
|
|
|
DirectoryRecordSequence => { GRP => "0004", ELEM => "1220", VR => "SQ" }, |
|
3473
|
|
|
|
|
|
|
OffsetOfTheNextDirectoryRecord => { GRP => "0004", ELEM => "1400", VR => "up" }, |
|
3474
|
|
|
|
|
|
|
RecordInUseFlag => { GRP => "0004", ELEM => "1410", VR => "US" }, |
|
3475
|
|
|
|
|
|
|
OffsetOfReferencedLowerLevelDirectoryEntity => { GRP => "0004", ELEM => "1420", VR => "up" }, |
|
3476
|
|
|
|
|
|
|
DirectoryRecordType => { GRP => "0004", ELEM => "1430", VR => "CS" }, |
|
3477
|
|
|
|
|
|
|
PrivateRecordUID => { GRP => "0004", ELEM => "1432", VR => "UI" }, |
|
3478
|
|
|
|
|
|
|
ReferencedFileID => { GRP => "0004", ELEM => "1500", VR => "CS" }, |
|
3479
|
|
|
|
|
|
|
ReferencedSOPClassUIDInFile => { GRP => "0004", ELEM => "1510", VR => "UI" }, |
|
3480
|
|
|
|
|
|
|
ReferencedSOPInstanceUIDInFile => { GRP => "0004", ELEM => "1511", VR => "UI" }, |
|
3481
|
|
|
|
|
|
|
ReferencedTransferSyntaxUIDInFile => { GRP => "0004", ELEM => "1512", VR => "UI" }, |
|
3482
|
|
|
|
|
|
|
ReferencedRelatedGeneralSOPClassUIDInFile => { GRP => "0004", ELEM => "151A", VR => "UI" }, |
|
3483
|
|
|
|
|
|
|
SpecificCharacterSet => { GRP => "0008", ELEM => "0005", VR => "CS" }, |
|
3484
|
|
|
|
|
|
|
ImageType => { GRP => "0008", ELEM => "0008", VR => "CS" }, |
|
3485
|
|
|
|
|
|
|
InstanceCreationDate => { GRP => "0008", ELEM => "0012", VR => "DA" }, |
|
3486
|
|
|
|
|
|
|
InstanceCreationTime => { GRP => "0008", ELEM => "0013", VR => "TM" }, |
|
3487
|
|
|
|
|
|
|
InstanceCreatorUID => { GRP => "0008", ELEM => "0014", VR => "UI" }, |
|
3488
|
|
|
|
|
|
|
SOPClassUID => { GRP => "0008", ELEM => "0016", VR => "UI" }, |
|
3489
|
|
|
|
|
|
|
SOPInstanceUID => { GRP => "0008", ELEM => "0018", VR => "UI" }, |
|
3490
|
|
|
|
|
|
|
RelatedGeneralSOPClassUID => { GRP => "0008", ELEM => "001A", VR => "UI" }, |
|
3491
|
|
|
|
|
|
|
OriginalSpecializedSOPClassUID => { GRP => "0008", ELEM => "001B", VR => "UI" }, |
|
3492
|
|
|
|
|
|
|
StudyDate => { GRP => "0008", ELEM => "0020", VR => "DA" }, |
|
3493
|
|
|
|
|
|
|
SeriesDate => { GRP => "0008", ELEM => "0021", VR => "DA" }, |
|
3494
|
|
|
|
|
|
|
AcquisitionDate => { GRP => "0008", ELEM => "0022", VR => "DA" }, |
|
3495
|
|
|
|
|
|
|
ContentDate => { GRP => "0008", ELEM => "0023", VR => "DA" }, |
|
3496
|
|
|
|
|
|
|
AcquisitionDateTime => { GRP => "0008", ELEM => "002A", VR => "DT" }, |
|
3497
|
|
|
|
|
|
|
StudyTime => { GRP => "0008", ELEM => "0030", VR => "TM" }, |
|
3498
|
|
|
|
|
|
|
SeriesTime => { GRP => "0008", ELEM => "0031", VR => "TM" }, |
|
3499
|
|
|
|
|
|
|
AcquisitionTime => { GRP => "0008", ELEM => "0032", VR => "TM" }, |
|
3500
|
|
|
|
|
|
|
ContentTime => { GRP => "0008", ELEM => "0033", VR => "TM" }, |
|
3501
|
|
|
|
|
|
|
AccessionNumber => { GRP => "0008", ELEM => "0050", VR => "SH" }, |
|
3502
|
|
|
|
|
|
|
QueryRetrieveLevel => { GRP => "0008", ELEM => "0052", VR => "CS" }, |
|
3503
|
|
|
|
|
|
|
RetrieveAETitle => { GRP => "0008", ELEM => "0054", VR => "AE" }, |
|
3504
|
|
|
|
|
|
|
InstanceAvailability => { GRP => "0008", ELEM => "0056", VR => "CS" }, |
|
3505
|
|
|
|
|
|
|
FailedSOPInstanceUIDList => { GRP => "0008", ELEM => "0058", VR => "UI" }, |
|
3506
|
|
|
|
|
|
|
Modality => { GRP => "0008", ELEM => "0060", VR => "CS" }, |
|
3507
|
|
|
|
|
|
|
ModalitiesInStudy => { GRP => "0008", ELEM => "0061", VR => "CS" }, |
|
3508
|
|
|
|
|
|
|
SOPClassesInStudy => { GRP => "0008", ELEM => "0062", VR => "UI" }, |
|
3509
|
|
|
|
|
|
|
ConversionType => { GRP => "0008", ELEM => "0064", VR => "CS" }, |
|
3510
|
|
|
|
|
|
|
PresentationIntentType => { GRP => "0008", ELEM => "0068", VR => "CS" }, |
|
3511
|
|
|
|
|
|
|
Manufacturer => { GRP => "0008", ELEM => "0070", VR => "LO" }, |
|
3512
|
|
|
|
|
|
|
InstitutionName => { GRP => "0008", ELEM => "0080", VR => "LO" }, |
|
3513
|
|
|
|
|
|
|
InstitutionAddress => { GRP => "0008", ELEM => "0081", VR => "ST" }, |
|
3514
|
|
|
|
|
|
|
InstitutionCodeSequence => { GRP => "0008", ELEM => "0082", VR => "SQ" }, |
|
3515
|
|
|
|
|
|
|
ReferringPhysiciansName => { GRP => "0008", ELEM => "0090", VR => "PN" }, |
|
3516
|
|
|
|
|
|
|
ReferringPhysiciansAddress => { GRP => "0008", ELEM => "0092", VR => "ST" }, |
|
3517
|
|
|
|
|
|
|
ReferringPhysiciansTelephoneNumbers => { GRP => "0008", ELEM => "0094", VR => "SH" }, |
|
3518
|
|
|
|
|
|
|
ReferringPhysicianIdentificationSequence => { GRP => "0008", ELEM => "0096", VR => "SQ" }, |
|
3519
|
|
|
|
|
|
|
CodeValue => { GRP => "0008", ELEM => "0100", VR => "SH" }, |
|
3520
|
|
|
|
|
|
|
CodingSchemeDesignator => { GRP => "0008", ELEM => "0102", VR => "SH" }, |
|
3521
|
|
|
|
|
|
|
CodingSchemeVersion => { GRP => "0008", ELEM => "0103", VR => "SH" }, |
|
3522
|
|
|
|
|
|
|
CodeMeaning => { GRP => "0008", ELEM => "0104", VR => "LO" }, |
|
3523
|
|
|
|
|
|
|
MappingResource => { GRP => "0008", ELEM => "0105", VR => "CS" }, |
|
3524
|
|
|
|
|
|
|
ContextGroupVersion => { GRP => "0008", ELEM => "0106", VR => "DT" }, |
|
3525
|
|
|
|
|
|
|
ContextGroupLocalVersion => { GRP => "0008", ELEM => "0107", VR => "DT" }, |
|
3526
|
|
|
|
|
|
|
ContextGroupExtensionFlag => { GRP => "0008", ELEM => "010B", VR => "CS" }, |
|
3527
|
|
|
|
|
|
|
CodingSchemeUID => { GRP => "0008", ELEM => "010C", VR => "UI" }, |
|
3528
|
|
|
|
|
|
|
ContextGroupExtensionCreatorUID => { GRP => "0008", ELEM => "010D", VR => "UI" }, |
|
3529
|
|
|
|
|
|
|
ContextIdentifier => { GRP => "0008", ELEM => "010F", VR => "CS" }, |
|
3530
|
|
|
|
|
|
|
CodingSchemeIdentificationSequence => { GRP => "0008", ELEM => "0110", VR => "SQ" }, |
|
3531
|
|
|
|
|
|
|
CodingSchemeRegistry => { GRP => "0008", ELEM => "0112", VR => "LO" }, |
|
3532
|
|
|
|
|
|
|
CodingSchemeExternalID => { GRP => "0008", ELEM => "0114", VR => "ST" }, |
|
3533
|
|
|
|
|
|
|
CodingSchemeName => { GRP => "0008", ELEM => "0115", VR => "ST" }, |
|
3534
|
|
|
|
|
|
|
CodingSchemeResponsibleOrganization => { GRP => "0008", ELEM => "0116", VR => "ST" }, |
|
3535
|
|
|
|
|
|
|
TimezoneOffsetFromUTC => { GRP => "0008", ELEM => "0201", VR => "SH" }, |
|
3536
|
|
|
|
|
|
|
StationName => { GRP => "0008", ELEM => "1010", VR => "SH" }, |
|
3537
|
|
|
|
|
|
|
StudyDescription => { GRP => "0008", ELEM => "1030", VR => "LO" }, |
|
3538
|
|
|
|
|
|
|
ProcedureCodeSequence => { GRP => "0008", ELEM => "1032", VR => "SQ" }, |
|
3539
|
|
|
|
|
|
|
SeriesDescription => { GRP => "0008", ELEM => "103E", VR => "LO" }, |
|
3540
|
|
|
|
|
|
|
InstitutionalDepartmentName => { GRP => "0008", ELEM => "1040", VR => "LO" }, |
|
3541
|
|
|
|
|
|
|
PhysiciansOfRecord => { GRP => "0008", ELEM => "1048", VR => "PN" }, |
|
3542
|
|
|
|
|
|
|
PhysiciansOfRecordIdentificationSequence => { GRP => "0008", ELEM => "1049", VR => "SQ" }, |
|
3543
|
|
|
|
|
|
|
PerformingPhysiciansName => { GRP => "0008", ELEM => "1050", VR => "PN" }, |
|
3544
|
|
|
|
|
|
|
PerformingPhysicianIdentificationSequence => { GRP => "0008", ELEM => "1052", VR => "SQ" }, |
|
3545
|
|
|
|
|
|
|
NameOfPhysiciansReadingStudy => { GRP => "0008", ELEM => "1060", VR => "PN" }, |
|
3546
|
|
|
|
|
|
|
PhysiciansReadingStudyIdentificationSequence => { GRP => "0008", ELEM => "1062", VR => "SQ" }, |
|
3547
|
|
|
|
|
|
|
OperatorsName => { GRP => "0008", ELEM => "1070", VR => "PN" }, |
|
3548
|
|
|
|
|
|
|
OperatorIdentificationSequence => { GRP => "0008", ELEM => "1072", VR => "SQ" }, |
|
3549
|
|
|
|
|
|
|
AdmittingDiagnosesDescription => { GRP => "0008", ELEM => "1080", VR => "LO" }, |
|
3550
|
|
|
|
|
|
|
AdmittingDiagnosesCodeSequence => { GRP => "0008", ELEM => "1084", VR => "SQ" }, |
|
3551
|
|
|
|
|
|
|
ManufacturersModelName => { GRP => "0008", ELEM => "1090", VR => "LO" }, |
|
3552
|
|
|
|
|
|
|
ReferencedStudySequence => { GRP => "0008", ELEM => "1110", VR => "SQ" }, |
|
3553
|
|
|
|
|
|
|
ReferencedPerformedProcedureStepSequence => { GRP => "0008", ELEM => "1111", VR => "SQ" }, |
|
3554
|
|
|
|
|
|
|
ReferencedSeriesSequence => { GRP => "0008", ELEM => "1115", VR => "SQ" }, |
|
3555
|
|
|
|
|
|
|
ReferencedPatientSequence => { GRP => "0008", ELEM => "1120", VR => "SQ" }, |
|
3556
|
|
|
|
|
|
|
ReferencedVisitSequence => { GRP => "0008", ELEM => "1125", VR => "SQ" }, |
|
3557
|
|
|
|
|
|
|
ReferencedWaveformSequence => { GRP => "0008", ELEM => "113A", VR => "SQ" }, |
|
3558
|
|
|
|
|
|
|
ReferencedImageSequence => { GRP => "0008", ELEM => "1140", VR => "SQ" }, |
|
3559
|
|
|
|
|
|
|
ReferencedInstanceSequence => { GRP => "0008", ELEM => "114A", VR => "SQ" }, |
|
3560
|
|
|
|
|
|
|
ReferencedRealWorldValueMappingInstanceSequence => { GRP => "0008", ELEM => "114B", VR => "SQ" }, |
|
3561
|
|
|
|
|
|
|
ReferencedSOPClassUID => { GRP => "0008", ELEM => "1150", VR => "UI" }, |
|
3562
|
|
|
|
|
|
|
ReferencedSOPInstanceUID => { GRP => "0008", ELEM => "1155", VR => "UI" }, |
|
3563
|
|
|
|
|
|
|
SOPClassesSupported => { GRP => "0008", ELEM => "115A", VR => "UI" }, |
|
3564
|
|
|
|
|
|
|
ReferencedFrameNumber => { GRP => "0008", ELEM => "1160", VR => "IS" }, |
|
3565
|
|
|
|
|
|
|
TransactionUID => { GRP => "0008", ELEM => "1195", VR => "UI" }, |
|
3566
|
|
|
|
|
|
|
FailureReason => { GRP => "0008", ELEM => "1197", VR => "US" }, |
|
3567
|
|
|
|
|
|
|
FailedSOPSequence => { GRP => "0008", ELEM => "1198", VR => "SQ" }, |
|
3568
|
|
|
|
|
|
|
ReferencedSOPSequence => { GRP => "0008", ELEM => "1199", VR => "SQ" }, |
|
3569
|
|
|
|
|
|
|
StudiesContainingOtherReferencedInstancesSequence => { GRP => "0008", ELEM => "1200", VR => "SQ" }, |
|
3570
|
|
|
|
|
|
|
RelatedSeriesSequence => { GRP => "0008", ELEM => "1250", VR => "SQ" }, |
|
3571
|
|
|
|
|
|
|
DerivationDescription => { GRP => "0008", ELEM => "2111", VR => "ST" }, |
|
3572
|
|
|
|
|
|
|
SourceImageSequence => { GRP => "0008", ELEM => "2112", VR => "SQ" }, |
|
3573
|
|
|
|
|
|
|
StageName => { GRP => "0008", ELEM => "2120", VR => "SH" }, |
|
3574
|
|
|
|
|
|
|
StageNumber => { GRP => "0008", ELEM => "2122", VR => "IS" }, |
|
3575
|
|
|
|
|
|
|
NumberOfStages => { GRP => "0008", ELEM => "2124", VR => "IS" }, |
|
3576
|
|
|
|
|
|
|
ViewName => { GRP => "0008", ELEM => "2127", VR => "SH" }, |
|
3577
|
|
|
|
|
|
|
ViewNumber => { GRP => "0008", ELEM => "2128", VR => "IS" }, |
|
3578
|
|
|
|
|
|
|
NumberOfEventTimers => { GRP => "0008", ELEM => "2129", VR => "IS" }, |
|
3579
|
|
|
|
|
|
|
NumberOfViewsInStage => { GRP => "0008", ELEM => "212A", VR => "IS" }, |
|
3580
|
|
|
|
|
|
|
EventElapsedTimes => { GRP => "0008", ELEM => "2130", VR => "DS" }, |
|
3581
|
|
|
|
|
|
|
EventTimerNames => { GRP => "0008", ELEM => "2132", VR => "LO" }, |
|
3582
|
|
|
|
|
|
|
StartTrim => { GRP => "0008", ELEM => "2142", VR => "IS" }, |
|
3583
|
|
|
|
|
|
|
StopTrim => { GRP => "0008", ELEM => "2143", VR => "IS" }, |
|
3584
|
|
|
|
|
|
|
RecommendedDisplayFrameRate => { GRP => "0008", ELEM => "2144", VR => "IS" }, |
|
3585
|
|
|
|
|
|
|
AnatomicRegionSequence => { GRP => "0008", ELEM => "2218", VR => "SQ" }, |
|
3586
|
|
|
|
|
|
|
AnatomicRegionModifierSequence => { GRP => "0008", ELEM => "2220", VR => "SQ" }, |
|
3587
|
|
|
|
|
|
|
PrimaryAnatomicStructureSequence => { GRP => "0008", ELEM => "2228", VR => "SQ" }, |
|
3588
|
|
|
|
|
|
|
AnatomicStructureSpaceOrRegionSequence => { GRP => "0008", ELEM => "2229", VR => "SQ" }, |
|
3589
|
|
|
|
|
|
|
PrimaryAnatomicStructureModifierSequence => { GRP => "0008", ELEM => "2230", VR => "SQ" }, |
|
3590
|
|
|
|
|
|
|
AlternateRepresentationSequence => { GRP => "0008", ELEM => "3001", VR => "SQ" }, |
|
3591
|
|
|
|
|
|
|
IrradiationEventUID => { GRP => "0008", ELEM => "3010", VR => "UI" }, |
|
3592
|
|
|
|
|
|
|
FrameType => { GRP => "0008", ELEM => "9007", VR => "CS" }, |
|
3593
|
|
|
|
|
|
|
ReferencedImageEvidenceSequence => { GRP => "0008", ELEM => "9092", VR => "SQ" }, |
|
3594
|
|
|
|
|
|
|
ReferencedRawDataSequence => { GRP => "0008", ELEM => "9121", VR => "SQ" }, |
|
3595
|
|
|
|
|
|
|
CreatorVersionUID => { GRP => "0008", ELEM => "9123", VR => "UI" }, |
|
3596
|
|
|
|
|
|
|
DerivationImageSequence => { GRP => "0008", ELEM => "9124", VR => "SQ" }, |
|
3597
|
|
|
|
|
|
|
SourceImageEvidenceSequence => { GRP => "0008", ELEM => "9154", VR => "SQ" }, |
|
3598
|
|
|
|
|
|
|
PixelPresentation => { GRP => "0008", ELEM => "9205", VR => "CS" }, |
|
3599
|
|
|
|
|
|
|
VolumetricProperties => { GRP => "0008", ELEM => "9206", VR => "CS" }, |
|
3600
|
|
|
|
|
|
|
VolumeBasedCalculationTechnique => { GRP => "0008", ELEM => "9207", VR => "CS" }, |
|
3601
|
|
|
|
|
|
|
ComplexImageComponent => { GRP => "0008", ELEM => "9208", VR => "CS" }, |
|
3602
|
|
|
|
|
|
|
AcquisitionContrast => { GRP => "0008", ELEM => "9209", VR => "CS" }, |
|
3603
|
|
|
|
|
|
|
DerivationCodeSequence => { GRP => "0008", ELEM => "9215", VR => "SQ" }, |
|
3604
|
|
|
|
|
|
|
ReferencedGrayscalePresentationStateSequence => { GRP => "0008", ELEM => "9237", VR => "SQ" }, |
|
3605
|
|
|
|
|
|
|
ReferencedOtherPlaneSequence => { GRP => "0008", ELEM => "9410", VR => "SQ" }, |
|
3606
|
|
|
|
|
|
|
FrameDisplaySequence => { GRP => "0008", ELEM => "9458", VR => "SQ" }, |
|
3607
|
|
|
|
|
|
|
RecommendedDisplayFrameRateInFloat => { GRP => "0008", ELEM => "9459", VR => "FL" }, |
|
3608
|
|
|
|
|
|
|
SkipFrameRangeFlag => { GRP => "0008", ELEM => "9460", VR => "CS" }, |
|
3609
|
|
|
|
|
|
|
PatientsName => { GRP => "0010", ELEM => "0010", VR => "PN" }, |
|
3610
|
|
|
|
|
|
|
PatientID => { GRP => "0010", ELEM => "0020", VR => "LO" }, |
|
3611
|
|
|
|
|
|
|
IssuerOfPatientID => { GRP => "0010", ELEM => "0021", VR => "LO" }, |
|
3612
|
|
|
|
|
|
|
TypeOfPatientID => { GRP => "0010", ELEM => "0022", VR => "CS" }, |
|
3613
|
|
|
|
|
|
|
PatientsBirthDate => { GRP => "0010", ELEM => "0030", VR => "DA" }, |
|
3614
|
|
|
|
|
|
|
PatientsBirthTime => { GRP => "0010", ELEM => "0032", VR => "TM" }, |
|
3615
|
|
|
|
|
|
|
PatientsSex => { GRP => "0010", ELEM => "0040", VR => "CS" }, |
|
3616
|
|
|
|
|
|
|
PatientsInsurancePlanCodeSequence => { GRP => "0010", ELEM => "0050", VR => "SQ" }, |
|
3617
|
|
|
|
|
|
|
PatientsPrimaryLanguageCodeSequence => { GRP => "0010", ELEM => "0101", VR => "SQ" }, |
|
3618
|
|
|
|
|
|
|
PatientsPrimaryLanguageCodeModifierSequence => { GRP => "0010", ELEM => "0102", VR => "SQ" }, |
|
3619
|
|
|
|
|
|
|
OtherPatientIDs => { GRP => "0010", ELEM => "1000", VR => "LO" }, |
|
3620
|
|
|
|
|
|
|
OtherPatientNames => { GRP => "0010", ELEM => "1001", VR => "PN" }, |
|
3621
|
|
|
|
|
|
|
OtherPatientIDsSequence => { GRP => "0010", ELEM => "1002", VR => "SQ" }, |
|
3622
|
|
|
|
|
|
|
PatientsBirthName => { GRP => "0010", ELEM => "1005", VR => "PN" }, |
|
3623
|
|
|
|
|
|
|
PatientsAge => { GRP => "0010", ELEM => "1010", VR => "AS" }, |
|
3624
|
|
|
|
|
|
|
PatientsSize => { GRP => "0010", ELEM => "1020", VR => "DS" }, |
|
3625
|
|
|
|
|
|
|
PatientsWeight => { GRP => "0010", ELEM => "1030", VR => "DS" }, |
|
3626
|
|
|
|
|
|
|
PatientsAddress => { GRP => "0010", ELEM => "1040", VR => "LO" }, |
|
3627
|
|
|
|
|
|
|
PatientsMothersBirthName => { GRP => "0010", ELEM => "1060", VR => "PN" }, |
|
3628
|
|
|
|
|
|
|
MilitaryRank => { GRP => "0010", ELEM => "1080", VR => "LO" }, |
|
3629
|
|
|
|
|
|
|
BranchOfService => { GRP => "0010", ELEM => "1081", VR => "LO" }, |
|
3630
|
|
|
|
|
|
|
MedicalRecordLocator => { GRP => "0010", ELEM => "1090", VR => "LO" }, |
|
3631
|
|
|
|
|
|
|
MedicalAlerts => { GRP => "0010", ELEM => "2000", VR => "LO" }, |
|
3632
|
|
|
|
|
|
|
Allergies => { GRP => "0010", ELEM => "2110", VR => "LO" }, |
|
3633
|
|
|
|
|
|
|
CountryOfResidence => { GRP => "0010", ELEM => "2150", VR => "LO" }, |
|
3634
|
|
|
|
|
|
|
RegionOfResidence => { GRP => "0010", ELEM => "2152", VR => "LO" }, |
|
3635
|
|
|
|
|
|
|
PatientsTelephoneNumbers => { GRP => "0010", ELEM => "2154", VR => "SH" }, |
|
3636
|
|
|
|
|
|
|
EthnicGroup => { GRP => "0010", ELEM => "2160", VR => "SH" }, |
|
3637
|
|
|
|
|
|
|
Occupation => { GRP => "0010", ELEM => "2180", VR => "SH" }, |
|
3638
|
|
|
|
|
|
|
SmokingStatus => { GRP => "0010", ELEM => "21A0", VR => "CS" }, |
|
3639
|
|
|
|
|
|
|
AdditionalPatientHistory => { GRP => "0010", ELEM => "21B0", VR => "LT" }, |
|
3640
|
|
|
|
|
|
|
PregnancyStatus => { GRP => "0010", ELEM => "21C0", VR => "US" }, |
|
3641
|
|
|
|
|
|
|
LastMenstrualDate => { GRP => "0010", ELEM => "21D0", VR => "DA" }, |
|
3642
|
|
|
|
|
|
|
PatientsReligiousPreference => { GRP => "0010", ELEM => "21F0", VR => "LO" }, |
|
3643
|
|
|
|
|
|
|
PatientSpeciesDescription => { GRP => "0010", ELEM => "2201", VR => "LO" }, |
|
3644
|
|
|
|
|
|
|
PatientSpeciesCodeSequence => { GRP => "0010", ELEM => "2202", VR => "SQ" }, |
|
3645
|
|
|
|
|
|
|
PatientsSexNeutered => { GRP => "0010", ELEM => "2203", VR => "CS" }, |
|
3646
|
|
|
|
|
|
|
PatientBreedDescription => { GRP => "0010", ELEM => "2292", VR => "LO" }, |
|
3647
|
|
|
|
|
|
|
PatientBreedCodeSequence => { GRP => "0010", ELEM => "2293", VR => "SQ" }, |
|
3648
|
|
|
|
|
|
|
BreedRegistrationSequence => { GRP => "0010", ELEM => "2294", VR => "SQ" }, |
|
3649
|
|
|
|
|
|
|
BreedRegistrationNumber => { GRP => "0010", ELEM => "2295", VR => "LO" }, |
|
3650
|
|
|
|
|
|
|
BreedRegistryCodeSequence => { GRP => "0010", ELEM => "2296", VR => "SQ" }, |
|
3651
|
|
|
|
|
|
|
ResponsiblePerson => { GRP => "0010", ELEM => "2297", VR => "PN" }, |
|
3652
|
|
|
|
|
|
|
ResponsiblePersonRole => { GRP => "0010", ELEM => "2298", VR => "CS" }, |
|
3653
|
|
|
|
|
|
|
ResponsibleOrganization => { GRP => "0010", ELEM => "2299", VR => "LO" }, |
|
3654
|
|
|
|
|
|
|
PatientComments => { GRP => "0010", ELEM => "4000", VR => "LT" }, |
|
3655
|
|
|
|
|
|
|
ExaminedBodyThickness => { GRP => "0010", ELEM => "9431", VR => "FL" }, |
|
3656
|
|
|
|
|
|
|
ClinicalTrialSponsorName => { GRP => "0012", ELEM => "0010", VR => "LO" }, |
|
3657
|
|
|
|
|
|
|
ClinicalTrialProtocolID => { GRP => "0012", ELEM => "0020", VR => "LO" }, |
|
3658
|
|
|
|
|
|
|
ClinicalTrialProtocolName => { GRP => "0012", ELEM => "0021", VR => "LO" }, |
|
3659
|
|
|
|
|
|
|
ClinicalTrialSiteID => { GRP => "0012", ELEM => "0030", VR => "LO" }, |
|
3660
|
|
|
|
|
|
|
ClinicalTrialSiteName => { GRP => "0012", ELEM => "0031", VR => "LO" }, |
|
3661
|
|
|
|
|
|
|
ClinicalTrialSubjectID => { GRP => "0012", ELEM => "0040", VR => "LO" }, |
|
3662
|
|
|
|
|
|
|
ClinicalTrialSubjectReadingID => { GRP => "0012", ELEM => "0042", VR => "LO" }, |
|
3663
|
|
|
|
|
|
|
ClinicalTrialTimePointID => { GRP => "0012", ELEM => "0050", VR => "LO" }, |
|
3664
|
|
|
|
|
|
|
ClinicalTrialTimePointDescription => { GRP => "0012", ELEM => "0051", VR => "ST" }, |
|
3665
|
|
|
|
|
|
|
ClinicalTrialCoordinatingCenterName => { GRP => "0012", ELEM => "0060", VR => "LO" }, |
|
3666
|
|
|
|
|
|
|
PatientIdentityRemoved => { GRP => "0012", ELEM => "0062", VR => "CS" }, |
|
3667
|
|
|
|
|
|
|
DeIdentificationMethod => { GRP => "0012", ELEM => "0063", VR => "LO" }, |
|
3668
|
|
|
|
|
|
|
DeIdentificationMethodCodeSequence => { GRP => "0012", ELEM => "0064", VR => "SQ" }, |
|
3669
|
|
|
|
|
|
|
ClinicalTrialSeriesID => { GRP => "0012", ELEM => "0071", VR => "LO" }, |
|
3670
|
|
|
|
|
|
|
ClinicalTrialSeriesDescription => { GRP => "0012", ELEM => "0072", VR => "LO" }, |
|
3671
|
|
|
|
|
|
|
ContrastBolusAgent => { GRP => "0018", ELEM => "0010", VR => "LO" }, |
|
3672
|
|
|
|
|
|
|
ContrastBolusAgentSequence => { GRP => "0018", ELEM => "0012", VR => "SQ" }, |
|
3673
|
|
|
|
|
|
|
ContrastBolusAdministrationRouteSequence => { GRP => "0018", ELEM => "0014", VR => "SQ" }, |
|
3674
|
|
|
|
|
|
|
BodyPartExamined => { GRP => "0018", ELEM => "0015", VR => "CS" }, |
|
3675
|
|
|
|
|
|
|
ScanningSequence => { GRP => "0018", ELEM => "0020", VR => "CS" }, |
|
3676
|
|
|
|
|
|
|
SequenceVariant => { GRP => "0018", ELEM => "0021", VR => "CS" }, |
|
3677
|
|
|
|
|
|
|
ScanOptions => { GRP => "0018", ELEM => "0022", VR => "CS" }, |
|
3678
|
|
|
|
|
|
|
MRAcquisitionType => { GRP => "0018", ELEM => "0023", VR => "CS" }, |
|
3679
|
|
|
|
|
|
|
SequenceName => { GRP => "0018", ELEM => "0024", VR => "SH" }, |
|
3680
|
|
|
|
|
|
|
AngioFlag => { GRP => "0018", ELEM => "0025", VR => "CS" }, |
|
3681
|
|
|
|
|
|
|
InterventionDrugInformationSequence => { GRP => "0018", ELEM => "0026", VR => "SQ" }, |
|
3682
|
|
|
|
|
|
|
InterventionDrugStopTime => { GRP => "0018", ELEM => "0027", VR => "TM" }, |
|
3683
|
|
|
|
|
|
|
InterventionDrugDose => { GRP => "0018", ELEM => "0028", VR => "DS" }, |
|
3684
|
|
|
|
|
|
|
InterventionDrugSequence => { GRP => "0018", ELEM => "0029", VR => "SQ" }, |
|
3685
|
|
|
|
|
|
|
AdditionalDrugSequence => { GRP => "0018", ELEM => "002A", VR => "SQ" }, |
|
3686
|
|
|
|
|
|
|
Radiopharmaceutical => { GRP => "0018", ELEM => "0031", VR => "LO" }, |
|
3687
|
|
|
|
|
|
|
InterventionDrugName => { GRP => "0018", ELEM => "0034", VR => "LO" }, |
|
3688
|
|
|
|
|
|
|
InterventionDrugStartTime => { GRP => "0018", ELEM => "0035", VR => "TM" }, |
|
3689
|
|
|
|
|
|
|
InterventionSequence => { GRP => "0018", ELEM => "0036", VR => "SQ" }, |
|
3690
|
|
|
|
|
|
|
InterventionStatus => { GRP => "0018", ELEM => "0038", VR => "CS" }, |
|
3691
|
|
|
|
|
|
|
InterventionDescription => { GRP => "0018", ELEM => "003A", VR => "ST" }, |
|
3692
|
|
|
|
|
|
|
CineRate => { GRP => "0018", ELEM => "0040", VR => "IS" }, |
|
3693
|
|
|
|
|
|
|
SliceThickness => { GRP => "0018", ELEM => "0050", VR => "DS" }, |
|
3694
|
|
|
|
|
|
|
KVP => { GRP => "0018", ELEM => "0060", VR => "DS" }, |
|
3695
|
|
|
|
|
|
|
CountsAccumulated => { GRP => "0018", ELEM => "0070", VR => "IS" }, |
|
3696
|
|
|
|
|
|
|
AcquisitionTerminationCondition => { GRP => "0018", ELEM => "0071", VR => "CS" }, |
|
3697
|
|
|
|
|
|
|
EffectiveDuration => { GRP => "0018", ELEM => "0072", VR => "DS" }, |
|
3698
|
|
|
|
|
|
|
AcquisitionStartCondition => { GRP => "0018", ELEM => "0073", VR => "CS" }, |
|
3699
|
|
|
|
|
|
|
AcquisitionStartConditionData => { GRP => "0018", ELEM => "0074", VR => "IS" }, |
|
3700
|
|
|
|
|
|
|
AcquisitionTerminationConditionData => { GRP => "0018", ELEM => "0075", VR => "IS" }, |
|
3701
|
|
|
|
|
|
|
RepetitionTime => { GRP => "0018", ELEM => "0080", VR => "DS" }, |
|
3702
|
|
|
|
|
|
|
EchoTime => { GRP => "0018", ELEM => "0081", VR => "DS" }, |
|
3703
|
|
|
|
|
|
|
InversionTime => { GRP => "0018", ELEM => "0082", VR => "DS" }, |
|
3704
|
|
|
|
|
|
|
NumberOfAverages => { GRP => "0018", ELEM => "0083", VR => "DS" }, |
|
3705
|
|
|
|
|
|
|
ImagingFrequency => { GRP => "0018", ELEM => "0084", VR => "DS" }, |
|
3706
|
|
|
|
|
|
|
ImagedNucleus => { GRP => "0018", ELEM => "0085", VR => "SH" }, |
|
3707
|
|
|
|
|
|
|
EchoNumbers => { GRP => "0018", ELEM => "0086", VR => "IS" }, |
|
3708
|
|
|
|
|
|
|
MagneticFieldStrength => { GRP => "0018", ELEM => "0087", VR => "DS" }, |
|
3709
|
|
|
|
|
|
|
SpacingBetweenSlices => { GRP => "0018", ELEM => "0088", VR => "DS" }, |
|
3710
|
|
|
|
|
|
|
NumberOfPhaseEncodingSteps => { GRP => "0018", ELEM => "0089", VR => "IS" }, |
|
3711
|
|
|
|
|
|
|
DataCollectionDiameter => { GRP => "0018", ELEM => "0090", VR => "DS" }, |
|
3712
|
|
|
|
|
|
|
EchoTrainLength => { GRP => "0018", ELEM => "0091", VR => "IS" }, |
|
3713
|
|
|
|
|
|
|
PercentSampling => { GRP => "0018", ELEM => "0093", VR => "DS" }, |
|
3714
|
|
|
|
|
|
|
PercentPhaseFieldOfView => { GRP => "0018", ELEM => "0094", VR => "DS" }, |
|
3715
|
|
|
|
|
|
|
PixelBandwidth => { GRP => "0018", ELEM => "0095", VR => "DS" }, |
|
3716
|
|
|
|
|
|
|
DeviceSerialNumber => { GRP => "0018", ELEM => "1000", VR => "LO" }, |
|
3717
|
|
|
|
|
|
|
DeviceUID => { GRP => "0018", ELEM => "1002", VR => "UI" }, |
|
3718
|
|
|
|
|
|
|
DeviceID => { GRP => "0018", ELEM => "1003", VR => "LO" }, |
|
3719
|
|
|
|
|
|
|
PlateID => { GRP => "0018", ELEM => "1004", VR => "LO" }, |
|
3720
|
|
|
|
|
|
|
GeneratorID => { GRP => "0018", ELEM => "1005", VR => "LO" }, |
|
3721
|
|
|
|
|
|
|
GridID => { GRP => "0018", ELEM => "1006", VR => "LO" }, |
|
3722
|
|
|
|
|
|
|
CassetteID => { GRP => "0018", ELEM => "1007", VR => "LO" }, |
|
3723
|
|
|
|
|
|
|
GantryID => { GRP => "0018", ELEM => "1008", VR => "LO" }, |
|
3724
|
|
|
|
|
|
|
SecondaryCaptureDeviceID => { GRP => "0018", ELEM => "1010", VR => "LO" }, |
|
3725
|
|
|
|
|
|
|
DateOfSecondaryCapture => { GRP => "0018", ELEM => "1012", VR => "DA" }, |
|
3726
|
|
|
|
|
|
|
TimeOfSecondaryCapture => { GRP => "0018", ELEM => "1014", VR => "TM" }, |
|
3727
|
|
|
|
|
|
|
SecondaryCaptureDeviceManufacturers => { GRP => "0018", ELEM => "1016", VR => "LO" }, |
|
3728
|
|
|
|
|
|
|
SecondaryCaptureDeviceManufacturersModelName => { GRP => "0018", ELEM => "1018", VR => "LO" }, |
|
3729
|
|
|
|
|
|
|
SecondaryCaptureDeviceSoftwareVersions => { GRP => "0018", ELEM => "1019", VR => "LO" }, |
|
3730
|
|
|
|
|
|
|
SoftwareVersions => { GRP => "0018", ELEM => "1020", VR => "LO" }, |
|
3731
|
|
|
|
|
|
|
VideoImageFormatAcquired => { GRP => "0018", ELEM => "1022", VR => "SH" }, |
|
3732
|
|
|
|
|
|
|
DigitalImageFormatAcquired => { GRP => "0018", ELEM => "1023", VR => "LO" }, |
|
3733
|
|
|
|
|
|
|
ProtocolName => { GRP => "0018", ELEM => "1030", VR => "LO" }, |
|
3734
|
|
|
|
|
|
|
ContrastBolusRoute => { GRP => "0018", ELEM => "1040", VR => "LO" }, |
|
3735
|
|
|
|
|
|
|
ContrastBolusVolume => { GRP => "0018", ELEM => "1041", VR => "DS" }, |
|
3736
|
|
|
|
|
|
|
ContrastBolusStartTime => { GRP => "0018", ELEM => "1042", VR => "TM" }, |
|
3737
|
|
|
|
|
|
|
ContrastBolusStopTime => { GRP => "0018", ELEM => "1043", VR => "TM" }, |
|
3738
|
|
|
|
|
|
|
ContrastBolusTotalDose => { GRP => "0018", ELEM => "1044", VR => "DS" }, |
|
3739
|
|
|
|
|
|
|
SyringeCounts => { GRP => "0018", ELEM => "1045", VR => "IS" }, |
|
3740
|
|
|
|
|
|
|
ContrastFlowRate => { GRP => "0018", ELEM => "1046", VR => "DS" }, |
|
3741
|
|
|
|
|
|
|
ContrastFlowDuration => { GRP => "0018", ELEM => "1047", VR => "DS" }, |
|
3742
|
|
|
|
|
|
|
ContrastBolusIngredient => { GRP => "0018", ELEM => "1048", VR => "CS" }, |
|
3743
|
|
|
|
|
|
|
ContrastBolusIngredientConcentration => { GRP => "0018", ELEM => "1049", VR => "DS" }, |
|
3744
|
|
|
|
|
|
|
SpatialResolution => { GRP => "0018", ELEM => "1050", VR => "DS" }, |
|
3745
|
|
|
|
|
|
|
TriggerTime => { GRP => "0018", ELEM => "1060", VR => "DS" }, |
|
3746
|
|
|
|
|
|
|
TriggerSourceOrType => { GRP => "0018", ELEM => "1061", VR => "LO" }, |
|
3747
|
|
|
|
|
|
|
NominalInterval => { GRP => "0018", ELEM => "1062", VR => "IS" }, |
|
3748
|
|
|
|
|
|
|
FrameTime => { GRP => "0018", ELEM => "1063", VR => "DS" }, |
|
3749
|
|
|
|
|
|
|
CardiacFramingType => { GRP => "0018", ELEM => "1064", VR => "LO" }, |
|
3750
|
|
|
|
|
|
|
FrameTimeVector => { GRP => "0018", ELEM => "1065", VR => "DS" }, |
|
3751
|
|
|
|
|
|
|
FrameDelay => { GRP => "0018", ELEM => "1066", VR => "DS" }, |
|
3752
|
|
|
|
|
|
|
ImageTriggerDelay => { GRP => "0018", ELEM => "1067", VR => "DS" }, |
|
3753
|
|
|
|
|
|
|
MultiplexGroupTimeOffset => { GRP => "0018", ELEM => "1068", VR => "DS" }, |
|
3754
|
|
|
|
|
|
|
TriggerTimeOffset => { GRP => "0018", ELEM => "1069", VR => "DS" }, |
|
3755
|
|
|
|
|
|
|
SynchronizationTrigger => { GRP => "0018", ELEM => "106A", VR => "CS" }, |
|
3756
|
|
|
|
|
|
|
SynchronizationChannel => { GRP => "0018", ELEM => "106C", VR => "US" }, |
|
3757
|
|
|
|
|
|
|
TriggerSamplePosition => { GRP => "0018", ELEM => "106E", VR => "UL" }, |
|
3758
|
|
|
|
|
|
|
RadiopharmaceuticalRoute => { GRP => "0018", ELEM => "1070", VR => "LO" }, |
|
3759
|
|
|
|
|
|
|
RadiopharmaceuticalVolume => { GRP => "0018", ELEM => "1071", VR => "DS" }, |
|
3760
|
|
|
|
|
|
|
RadiopharmaceuticalStartTime => { GRP => "0018", ELEM => "1072", VR => "TM" }, |
|
3761
|
|
|
|
|
|
|
RadiopharmaceuticalStopTime => { GRP => "0018", ELEM => "1073", VR => "TM" }, |
|
3762
|
|
|
|
|
|
|
RadionuclideTotalDose => { GRP => "0018", ELEM => "1074", VR => "DS" }, |
|
3763
|
|
|
|
|
|
|
RadionuclideHalfLife => { GRP => "0018", ELEM => "1075", VR => "DS" }, |
|
3764
|
|
|
|
|
|
|
RadionuclidePositronFraction => { GRP => "0018", ELEM => "1076", VR => "DS" }, |
|
3765
|
|
|
|
|
|
|
RadiopharmaceuticalSpecificActivity => { GRP => "0018", ELEM => "1077", VR => "DS" }, |
|
3766
|
|
|
|
|
|
|
RadiopharmaceuticalStartDateTime => { GRP => "0018", ELEM => "1078", VR => "DT" }, |
|
3767
|
|
|
|
|
|
|
RadiopharmaceuticalStopDateTime => { GRP => "0018", ELEM => "1079", VR => "DT" }, |
|
3768
|
|
|
|
|
|
|
BeatRejectionFlag => { GRP => "0018", ELEM => "1080", VR => "CS" }, |
|
3769
|
|
|
|
|
|
|
LowRRValue => { GRP => "0018", ELEM => "1081", VR => "IS" }, |
|
3770
|
|
|
|
|
|
|
HighRRValue => { GRP => "0018", ELEM => "1082", VR => "IS" }, |
|
3771
|
|
|
|
|
|
|
IntervalsAcquired => { GRP => "0018", ELEM => "1083", VR => "IS" }, |
|
3772
|
|
|
|
|
|
|
IntervalsRejected => { GRP => "0018", ELEM => "1084", VR => "IS" }, |
|
3773
|
|
|
|
|
|
|
PVCRejection => { GRP => "0018", ELEM => "1085", VR => "LO" }, |
|
3774
|
|
|
|
|
|
|
SkipBeats => { GRP => "0018", ELEM => "1086", VR => "IS" }, |
|
3775
|
|
|
|
|
|
|
HeartRate => { GRP => "0018", ELEM => "1088", VR => "IS" }, |
|
3776
|
|
|
|
|
|
|
CardiacNumberOfImages => { GRP => "0018", ELEM => "1090", VR => "IS" }, |
|
3777
|
|
|
|
|
|
|
TriggerWindow => { GRP => "0018", ELEM => "1094", VR => "IS" }, |
|
3778
|
|
|
|
|
|
|
ReconstructionDiameter => { GRP => "0018", ELEM => "1100", VR => "DS" }, |
|
3779
|
|
|
|
|
|
|
DistanceSourceToDetector => { GRP => "0018", ELEM => "1110", VR => "DS" }, |
|
3780
|
|
|
|
|
|
|
DistanceSourceToPatient => { GRP => "0018", ELEM => "1111", VR => "DS" }, |
|
3781
|
|
|
|
|
|
|
EstimatedRadiographicMagnificationFactor => { GRP => "0018", ELEM => "1114", VR => "DS" }, |
|
3782
|
|
|
|
|
|
|
GantryDetectorTilt => { GRP => "0018", ELEM => "1120", VR => "DS" }, |
|
3783
|
|
|
|
|
|
|
GantryDetectorSlew => { GRP => "0018", ELEM => "1121", VR => "DS" }, |
|
3784
|
|
|
|
|
|
|
TableHeight => { GRP => "0018", ELEM => "1130", VR => "DS" }, |
|
3785
|
|
|
|
|
|
|
TableTraverse => { GRP => "0018", ELEM => "1131", VR => "DS" }, |
|
3786
|
|
|
|
|
|
|
TableMotion => { GRP => "0018", ELEM => "1134", VR => "CS" }, |
|
3787
|
|
|
|
|
|
|
TableVerticalIncrement => { GRP => "0018", ELEM => "1135", VR => "DS" }, |
|
3788
|
|
|
|
|
|
|
TableLateralIncrement => { GRP => "0018", ELEM => "1136", VR => "DS" }, |
|
3789
|
|
|
|
|
|
|
TableLongitudinalIncrement => { GRP => "0018", ELEM => "1137", VR => "DS" }, |
|
3790
|
|
|
|
|
|
|
TableAngle => { GRP => "0018", ELEM => "1138", VR => "DS" }, |
|
3791
|
|
|
|
|
|
|
TableType => { GRP => "0018", ELEM => "113A", VR => "CS" }, |
|
3792
|
|
|
|
|
|
|
RotationDirection => { GRP => "0018", ELEM => "1140", VR => "CS" }, |
|
3793
|
|
|
|
|
|
|
RadialPosition => { GRP => "0018", ELEM => "1142", VR => "DS" }, |
|
3794
|
|
|
|
|
|
|
ScanArc => { GRP => "0018", ELEM => "1143", VR => "DS" }, |
|
3795
|
|
|
|
|
|
|
AngularStep => { GRP => "0018", ELEM => "1144", VR => "DS" }, |
|
3796
|
|
|
|
|
|
|
CenterOfRotationOffset => { GRP => "0018", ELEM => "1145", VR => "DS" }, |
|
3797
|
|
|
|
|
|
|
FieldOfViewShape => { GRP => "0018", ELEM => "1147", VR => "CS" }, |
|
3798
|
|
|
|
|
|
|
FieldOfViewDimensions => { GRP => "0018", ELEM => "1149", VR => "IS" }, |
|
3799
|
|
|
|
|
|
|
ExposureTime => { GRP => "0018", ELEM => "1150", VR => "IS" }, |
|
3800
|
|
|
|
|
|
|
XRayTubeCurrent => { GRP => "0018", ELEM => "1151", VR => "IS" }, |
|
3801
|
|
|
|
|
|
|
Exposure => { GRP => "0018", ELEM => "1152", VR => "IS" }, |
|
3802
|
|
|
|
|
|
|
ExposureInMicroAs => { GRP => "0018", ELEM => "1153", VR => "IS" }, |
|
3803
|
|
|
|
|
|
|
AveragePulseWidth => { GRP => "0018", ELEM => "1154", VR => "DS" }, |
|
3804
|
|
|
|
|
|
|
RadiationSetting => { GRP => "0018", ELEM => "1155", VR => "CS" }, |
|
3805
|
|
|
|
|
|
|
RectificationType => { GRP => "0018", ELEM => "1156", VR => "CS" }, |
|
3806
|
|
|
|
|
|
|
RadiationMode => { GRP => "0018", ELEM => "115A", VR => "CS" }, |
|
3807
|
|
|
|
|
|
|
ImageAndFluoroscopyAreaDoseProduct => { GRP => "0018", ELEM => "115E", VR => "DS" }, |
|
3808
|
|
|
|
|
|
|
FilterType => { GRP => "0018", ELEM => "1160", VR => "SH" }, |
|
3809
|
|
|
|
|
|
|
TypeOfFilters => { GRP => "0018", ELEM => "1161", VR => "LO" }, |
|
3810
|
|
|
|
|
|
|
IntensifierSize => { GRP => "0018", ELEM => "1162", VR => "DS" }, |
|
3811
|
|
|
|
|
|
|
ImagerPixelSpacing => { GRP => "0018", ELEM => "1164", VR => "DS" }, |
|
3812
|
|
|
|
|
|
|
Grid => { GRP => "0018", ELEM => "1166", VR => "CS" }, |
|
3813
|
|
|
|
|
|
|
GeneratorPower => { GRP => "0018", ELEM => "1170", VR => "IS" }, |
|
3814
|
|
|
|
|
|
|
CollimatorGridName => { GRP => "0018", ELEM => "1180", VR => "SH" }, |
|
3815
|
|
|
|
|
|
|
CollimatorType => { GRP => "0018", ELEM => "1181", VR => "CS" }, |
|
3816
|
|
|
|
|
|
|
FocalDistance => { GRP => "0018", ELEM => "1182", VR => "IS" }, |
|
3817
|
|
|
|
|
|
|
XFocusCenter => { GRP => "0018", ELEM => "1183", VR => "DS" }, |
|
3818
|
|
|
|
|
|
|
YFocusCenter => { GRP => "0018", ELEM => "1184", VR => "DS" }, |
|
3819
|
|
|
|
|
|
|
FocalSpots => { GRP => "0018", ELEM => "1190", VR => "DS" }, |
|
3820
|
|
|
|
|
|
|
AnodeTargetMaterial => { GRP => "0018", ELEM => "1191", VR => "CS" }, |
|
3821
|
|
|
|
|
|
|
BodyPartThickness => { GRP => "0018", ELEM => "11A0", VR => "DS" }, |
|
3822
|
|
|
|
|
|
|
CompressionForce => { GRP => "0018", ELEM => "11A2", VR => "DS" }, |
|
3823
|
|
|
|
|
|
|
DateOfLastCalibration => { GRP => "0018", ELEM => "1200", VR => "DA" }, |
|
3824
|
|
|
|
|
|
|
TimeOfLastCalibration => { GRP => "0018", ELEM => "1201", VR => "TM" }, |
|
3825
|
|
|
|
|
|
|
ConvolutionKernel => { GRP => "0018", ELEM => "1210", VR => "SH" }, |
|
3826
|
|
|
|
|
|
|
ActualFrameDuration => { GRP => "0018", ELEM => "1242", VR => "IS" }, |
|
3827
|
|
|
|
|
|
|
CountRate => { GRP => "0018", ELEM => "1243", VR => "IS" }, |
|
3828
|
|
|
|
|
|
|
PreferredPlaybackSequencing => { GRP => "0018", ELEM => "1244", VR => "US" }, |
|
3829
|
|
|
|
|
|
|
ReceiveCoilName => { GRP => "0018", ELEM => "1250", VR => "SH" }, |
|
3830
|
|
|
|
|
|
|
TransmitCoilName => { GRP => "0018", ELEM => "1251", VR => "SH" }, |
|
3831
|
|
|
|
|
|
|
PlateType => { GRP => "0018", ELEM => "1260", VR => "SH" }, |
|
3832
|
|
|
|
|
|
|
PhosphorType => { GRP => "0018", ELEM => "1261", VR => "LO" }, |
|
3833
|
|
|
|
|
|
|
ScanVelocity => { GRP => "0018", ELEM => "1300", VR => "DS" }, |
|
3834
|
|
|
|
|
|
|
WholeBodyTechnique => { GRP => "0018", ELEM => "1301", VR => "CS" }, |
|
3835
|
|
|
|
|
|
|
ScanLength => { GRP => "0018", ELEM => "1302", VR => "IS" }, |
|
3836
|
|
|
|
|
|
|
AcquisitionMatrix => { GRP => "0018", ELEM => "1310", VR => "US" }, |
|
3837
|
|
|
|
|
|
|
InPlanePhaseEncodingDirection => { GRP => "0018", ELEM => "1312", VR => "CS" }, |
|
3838
|
|
|
|
|
|
|
FlipAngle => { GRP => "0018", ELEM => "1314", VR => "DS" }, |
|
3839
|
|
|
|
|
|
|
VariableFlipAngleFlag => { GRP => "0018", ELEM => "1315", VR => "CS" }, |
|
3840
|
|
|
|
|
|
|
SAR => { GRP => "0018", ELEM => "1316", VR => "DS" }, |
|
3841
|
|
|
|
|
|
|
DBDt => { GRP => "0018", ELEM => "1318", VR => "DS" }, |
|
3842
|
|
|
|
|
|
|
AcquisitionDeviceProcessingDescription => { GRP => "0018", ELEM => "1400", VR => "LO" }, |
|
3843
|
|
|
|
|
|
|
AcquisitionDeviceProcessingCode => { GRP => "0018", ELEM => "1401", VR => "LO" }, |
|
3844
|
|
|
|
|
|
|
CassetteOrientation => { GRP => "0018", ELEM => "1402", VR => "CS" }, |
|
3845
|
|
|
|
|
|
|
CassetteSize => { GRP => "0018", ELEM => "1403", VR => "CS" }, |
|
3846
|
|
|
|
|
|
|
ExposuresOnPlate => { GRP => "0018", ELEM => "1404", VR => "US" }, |
|
3847
|
|
|
|
|
|
|
RelativeXRayExposure => { GRP => "0018", ELEM => "1405", VR => "IS" }, |
|
3848
|
|
|
|
|
|
|
ColumnAngulation => { GRP => "0018", ELEM => "1450", VR => "DS" }, |
|
3849
|
|
|
|
|
|
|
TomoLayerHeight => { GRP => "0018", ELEM => "1460", VR => "DS" }, |
|
3850
|
|
|
|
|
|
|
TomoAngle => { GRP => "0018", ELEM => "1470", VR => "DS" }, |
|
3851
|
|
|
|
|
|
|
TomoTime => { GRP => "0018", ELEM => "1480", VR => "DS" }, |
|
3852
|
|
|
|
|
|
|
TomoType => { GRP => "0018", ELEM => "1490", VR => "CS" }, |
|
3853
|
|
|
|
|
|
|
TomoClass => { GRP => "0018", ELEM => "1491", VR => "CS" }, |
|
3854
|
|
|
|
|
|
|
NumberOfTomosynthesisSourceImages => { GRP => "0018", ELEM => "1495", VR => "IS" }, |
|
3855
|
|
|
|
|
|
|
PositionerMotion => { GRP => "0018", ELEM => "1500", VR => "CS" }, |
|
3856
|
|
|
|
|
|
|
PositionerType => { GRP => "0018", ELEM => "1508", VR => "CS" }, |
|
3857
|
|
|
|
|
|
|
PositionerPrimaryAngle => { GRP => "0018", ELEM => "1510", VR => "DS" }, |
|
3858
|
|
|
|
|
|
|
PositionerSecondaryAngle => { GRP => "0018", ELEM => "1511", VR => "DS" }, |
|
3859
|
|
|
|
|
|
|
PositionerPrimaryAngleIncrement => { GRP => "0018", ELEM => "1520", VR => "DS" }, |
|
3860
|
|
|
|
|
|
|
PositionerSecondaryAngleIncrement => { GRP => "0018", ELEM => "1521", VR => "DS" }, |
|
3861
|
|
|
|
|
|
|
DetectorPrimaryAngle => { GRP => "0018", ELEM => "1530", VR => "DS" }, |
|
3862
|
|
|
|
|
|
|
DetectorSecondaryAngle => { GRP => "0018", ELEM => "1531", VR => "DS" }, |
|
3863
|
|
|
|
|
|
|
ShutterShape => { GRP => "0018", ELEM => "1600", VR => "CS" }, |
|
3864
|
|
|
|
|
|
|
ShutterLeftVerticalEdge => { GRP => "0018", ELEM => "1602", VR => "IS" }, |
|
3865
|
|
|
|
|
|
|
ShutterRightVerticalEdge => { GRP => "0018", ELEM => "1604", VR => "IS" }, |
|
3866
|
|
|
|
|
|
|
ShutterUpperHorizontalEdge => { GRP => "0018", ELEM => "1606", VR => "IS" }, |
|
3867
|
|
|
|
|
|
|
ShutterLowerHorizontalEdge => { GRP => "0018", ELEM => "1608", VR => "IS" }, |
|
3868
|
|
|
|
|
|
|
CenterOfCircularShutter => { GRP => "0018", ELEM => "1610", VR => "IS" }, |
|
3869
|
|
|
|
|
|
|
RadiusOfCircularShutter => { GRP => "0018", ELEM => "1612", VR => "IS" }, |
|
3870
|
|
|
|
|
|
|
VerticesOfThePolygonalShutter => { GRP => "0018", ELEM => "1620", VR => "IS" }, |
|
3871
|
|
|
|
|
|
|
ShutterPresentationValue => { GRP => "0018", ELEM => "1622", VR => "US" }, |
|
3872
|
|
|
|
|
|
|
ShutterOverlayGroup => { GRP => "0018", ELEM => "1623", VR => "US" }, |
|
3873
|
|
|
|
|
|
|
ShutterPresentationColorCIELabValue => { GRP => "0018", ELEM => "1624", VR => "US" }, |
|
3874
|
|
|
|
|
|
|
CollimatorShape => { GRP => "0018", ELEM => "1700", VR => "CS" }, |
|
3875
|
|
|
|
|
|
|
CollimatorLeftVerticalEdge => { GRP => "0018", ELEM => "1702", VR => "IS" }, |
|
3876
|
|
|
|
|
|
|
CollimatorRightVerticalEdge => { GRP => "0018", ELEM => "1704", VR => "IS" }, |
|
3877
|
|
|
|
|
|
|
CollimatorUpperHorizontalEdge => { GRP => "0018", ELEM => "1706", VR => "IS" }, |
|
3878
|
|
|
|
|
|
|
CollimatorLowerHorizontalEdge => { GRP => "0018", ELEM => "1708", VR => "IS" }, |
|
3879
|
|
|
|
|
|
|
CenterOfCircularCollimator => { GRP => "0018", ELEM => "1710", VR => "IS" }, |
|
3880
|
|
|
|
|
|
|
RadiusOfCircularCollimator => { GRP => "0018", ELEM => "1712", VR => "IS" }, |
|
3881
|
|
|
|
|
|
|
VerticesOfThePolygonalCollimator => { GRP => "0018", ELEM => "1720", VR => "IS" }, |
|
3882
|
|
|
|
|
|
|
AcquisitionTimeSynchronized => { GRP => "0018", ELEM => "1800", VR => "CS" }, |
|
3883
|
|
|
|
|
|
|
TimeSource => { GRP => "0018", ELEM => "1801", VR => "SH" }, |
|
3884
|
|
|
|
|
|
|
TimeDistributionProtocol => { GRP => "0018", ELEM => "1802", VR => "CS" }, |
|
3885
|
|
|
|
|
|
|
NTPSourceAddress => { GRP => "0018", ELEM => "1803", VR => "LO" }, |
|
3886
|
|
|
|
|
|
|
PageNumberVector => { GRP => "0018", ELEM => "2001", VR => "IS" }, |
|
3887
|
|
|
|
|
|
|
FrameLabelVector => { GRP => "0018", ELEM => "2002", VR => "SH" }, |
|
3888
|
|
|
|
|
|
|
FramePrimaryAngleVector => { GRP => "0018", ELEM => "2003", VR => "DS" }, |
|
3889
|
|
|
|
|
|
|
FrameSecondaryAngleVector => { GRP => "0018", ELEM => "2004", VR => "DS" }, |
|
3890
|
|
|
|
|
|
|
SliceLocationVector => { GRP => "0018", ELEM => "2005", VR => "DS" }, |
|
3891
|
|
|
|
|
|
|
DisplayWindowLabelVector => { GRP => "0018", ELEM => "2006", VR => "SH" }, |
|
3892
|
|
|
|
|
|
|
NominalScannedPixelSpacing => { GRP => "0018", ELEM => "2010", VR => "DS" }, |
|
3893
|
|
|
|
|
|
|
DigitizingDeviceTransportDirection => { GRP => "0018", ELEM => "2020", VR => "CS" }, |
|
3894
|
|
|
|
|
|
|
RotationOfScannedFilm => { GRP => "0018", ELEM => "2030", VR => "DS" }, |
|
3895
|
|
|
|
|
|
|
IVUSAcquisition => { GRP => "0018", ELEM => "3100", VR => "CS" }, |
|
3896
|
|
|
|
|
|
|
IVUSPullbackRate => { GRP => "0018", ELEM => "3101", VR => "DS" }, |
|
3897
|
|
|
|
|
|
|
IVUSGatedRate => { GRP => "0018", ELEM => "3102", VR => "DS" }, |
|
3898
|
|
|
|
|
|
|
IVUSPullbackStartFrameNumber => { GRP => "0018", ELEM => "3103", VR => "IS" }, |
|
3899
|
|
|
|
|
|
|
IVUSPullbackStopFrameNumber => { GRP => "0018", ELEM => "3104", VR => "IS" }, |
|
3900
|
|
|
|
|
|
|
LesionNumber => { GRP => "0018", ELEM => "3105", VR => "IS" }, |
|
3901
|
|
|
|
|
|
|
OutputPower => { GRP => "0018", ELEM => "5000", VR => "SH" }, |
|
3902
|
|
|
|
|
|
|
TransducerData => { GRP => "0018", ELEM => "5010", VR => "LO" }, |
|
3903
|
|
|
|
|
|
|
FocusDepth => { GRP => "0018", ELEM => "5012", VR => "DS" }, |
|
3904
|
|
|
|
|
|
|
ProcessingFunction => { GRP => "0018", ELEM => "5020", VR => "LO" }, |
|
3905
|
|
|
|
|
|
|
MechanicalIndex => { GRP => "0018", ELEM => "5022", VR => "DS" }, |
|
3906
|
|
|
|
|
|
|
BoneThermalIndex => { GRP => "0018", ELEM => "5024", VR => "DS" }, |
|
3907
|
|
|
|
|
|
|
CranialThermalIndex => { GRP => "0018", ELEM => "5026", VR => "DS" }, |
|
3908
|
|
|
|
|
|
|
SoftTissueThermalIndex => { GRP => "0018", ELEM => "5027", VR => "DS" }, |
|
3909
|
|
|
|
|
|
|
SoftTissueFocusThermalIndex => { GRP => "0018", ELEM => "5028", VR => "DS" }, |
|
3910
|
|
|
|
|
|
|
SoftTissueSurfaceThermalIndex => { GRP => "0018", ELEM => "5029", VR => "DS" }, |
|
3911
|
|
|
|
|
|
|
DepthOfScanField => { GRP => "0018", ELEM => "5050", VR => "IS" }, |
|
3912
|
|
|
|
|
|
|
PatientPosition => { GRP => "0018", ELEM => "5100", VR => "CS" }, |
|
3913
|
|
|
|
|
|
|
ViewPosition => { GRP => "0018", ELEM => "5101", VR => "CS" }, |
|
3914
|
|
|
|
|
|
|
ProjectionEponymousNameCodeSequence => { GRP => "0018", ELEM => "5104", VR => "SQ" }, |
|
3915
|
|
|
|
|
|
|
Sensitivity => { GRP => "0018", ELEM => "6000", VR => "DS" }, |
|
3916
|
|
|
|
|
|
|
SequenceOfUltrasoundRegions => { GRP => "0018", ELEM => "6011", VR => "SQ" }, |
|
3917
|
|
|
|
|
|
|
RegionSpatialFormat => { GRP => "0018", ELEM => "6012", VR => "US" }, |
|
3918
|
|
|
|
|
|
|
RegionDataType => { GRP => "0018", ELEM => "6014", VR => "US" }, |
|
3919
|
|
|
|
|
|
|
RegionFlags => { GRP => "0018", ELEM => "6016", VR => "UL" }, |
|
3920
|
|
|
|
|
|
|
RegionLocationMinX0 => { GRP => "0018", ELEM => "6018", VR => "UL" }, |
|
3921
|
|
|
|
|
|
|
RegionLocationMinY0 => { GRP => "0018", ELEM => "601A", VR => "UL" }, |
|
3922
|
|
|
|
|
|
|
RegionLocationMaxX1 => { GRP => "0018", ELEM => "601C", VR => "UL" }, |
|
3923
|
|
|
|
|
|
|
RegionLocationMaxY1 => { GRP => "0018", ELEM => "601E", VR => "UL" }, |
|
3924
|
|
|
|
|
|
|
ReferencePixelX0 => { GRP => "0018", ELEM => "6020", VR => "SL" }, |
|
3925
|
|
|
|
|
|
|
ReferencePixelY0 => { GRP => "0018", ELEM => "6022", VR => "SL" }, |
|
3926
|
|
|
|
|
|
|
PhysicalUnitsXDirection => { GRP => "0018", ELEM => "6024", VR => "US" }, |
|
3927
|
|
|
|
|
|
|
PhysicalUnitsYDirection => { GRP => "0018", ELEM => "6026", VR => "US" }, |
|
3928
|
|
|
|
|
|
|
ReferencePixelPhysicalValueX => { GRP => "0018", ELEM => "6028", VR => "FD" }, |
|
3929
|
|
|
|
|
|
|
ReferencePixelPhysicalValueY => { GRP => "0018", ELEM => "602A", VR => "FD" }, |
|
3930
|
|
|
|
|
|
|
PhysicalDeltaX => { GRP => "0018", ELEM => "602C", VR => "FD" }, |
|
3931
|
|
|
|
|
|
|
PhysicalDeltaY => { GRP => "0018", ELEM => "602E", VR => "FD" }, |
|
3932
|
|
|
|
|
|
|
TransducerFrequency => { GRP => "0018", ELEM => "6030", VR => "UL" }, |
|
3933
|
|
|
|
|
|
|
TransducerType => { GRP => "0018", ELEM => "6031", VR => "CS" }, |
|
3934
|
|
|
|
|
|
|
PulseRepetitionFrequency => { GRP => "0018", ELEM => "6032", VR => "UL" }, |
|
3935
|
|
|
|
|
|
|
DopplerCorrectionAngle => { GRP => "0018", ELEM => "6034", VR => "FD" }, |
|
3936
|
|
|
|
|
|
|
SteeringAngle => { GRP => "0018", ELEM => "6036", VR => "FD" }, |
|
3937
|
|
|
|
|
|
|
DopplerSampleVolumeXPosition => { GRP => "0018", ELEM => "6039", VR => "SL" }, |
|
3938
|
|
|
|
|
|
|
DopplerSampleVolumeYPosition => { GRP => "0018", ELEM => "603B", VR => "SL" }, |
|
3939
|
|
|
|
|
|
|
TMLinePositionX0 => { GRP => "0018", ELEM => "603D", VR => "SL" }, |
|
3940
|
|
|
|
|
|
|
TMLinePositionY0 => { GRP => "0018", ELEM => "603F", VR => "SL" }, |
|
3941
|
|
|
|
|
|
|
TMLinePositionX1 => { GRP => "0018", ELEM => "6041", VR => "SL" }, |
|
3942
|
|
|
|
|
|
|
TMLinePositionY1 => { GRP => "0018", ELEM => "6043", VR => "SL" }, |
|
3943
|
|
|
|
|
|
|
PixelComponentOrganization => { GRP => "0018", ELEM => "6044", VR => "US" }, |
|
3944
|
|
|
|
|
|
|
PixelComponentMask => { GRP => "0018", ELEM => "6046", VR => "UL" }, |
|
3945
|
|
|
|
|
|
|
PixelComponentRangeStart => { GRP => "0018", ELEM => "6048", VR => "UL" }, |
|
3946
|
|
|
|
|
|
|
PixelComponentRangeStop => { GRP => "0018", ELEM => "604A", VR => "UL" }, |
|
3947
|
|
|
|
|
|
|
PixelComponentPhysicalUnits => { GRP => "0018", ELEM => "604C", VR => "US" }, |
|
3948
|
|
|
|
|
|
|
PixelComponentDataType => { GRP => "0018", ELEM => "604E", VR => "US" }, |
|
3949
|
|
|
|
|
|
|
NumberOfTableBreakPoints => { GRP => "0018", ELEM => "6050", VR => "UL" }, |
|
3950
|
|
|
|
|
|
|
TableOfXBreakPoints => { GRP => "0018", ELEM => "6052", VR => "UL" }, |
|
3951
|
|
|
|
|
|
|
TableOfYBreakPoints => { GRP => "0018", ELEM => "6054", VR => "FD" }, |
|
3952
|
|
|
|
|
|
|
NumberOfTableEntries => { GRP => "0018", ELEM => "6056", VR => "UL" }, |
|
3953
|
|
|
|
|
|
|
TableOfPixelValues => { GRP => "0018", ELEM => "6058", VR => "UL" }, |
|
3954
|
|
|
|
|
|
|
TableOfParameterValues => { GRP => "0018", ELEM => "605A", VR => "FL" }, |
|
3955
|
|
|
|
|
|
|
RWaveTimeVector => { GRP => "0018", ELEM => "6060", VR => "FL" }, |
|
3956
|
|
|
|
|
|
|
DetectorConditionsNominalFlag => { GRP => "0018", ELEM => "7000", VR => "CS" }, |
|
3957
|
|
|
|
|
|
|
DetectorTemperature => { GRP => "0018", ELEM => "7001", VR => "DS" }, |
|
3958
|
|
|
|
|
|
|
DetectorType => { GRP => "0018", ELEM => "7004", VR => "CS" }, |
|
3959
|
|
|
|
|
|
|
DetectorConfiguration => { GRP => "0018", ELEM => "7005", VR => "CS" }, |
|
3960
|
|
|
|
|
|
|
DetectorDescription => { GRP => "0018", ELEM => "7006", VR => "LT" }, |
|
3961
|
|
|
|
|
|
|
DetectorMode => { GRP => "0018", ELEM => "7008", VR => "LT" }, |
|
3962
|
|
|
|
|
|
|
DetectorID => { GRP => "0018", ELEM => "700A", VR => "SH" }, |
|
3963
|
|
|
|
|
|
|
DateOfLastDetectorCalibration => { GRP => "0018", ELEM => "700C", VR => "DA" }, |
|
3964
|
|
|
|
|
|
|
TimeOfLastDetectorCalibration => { GRP => "0018", ELEM => "700E", VR => "TM" }, |
|
3965
|
|
|
|
|
|
|
ExposuresOnDetectorSinceLastCalibration => { GRP => "0018", ELEM => "7010", VR => "IS" }, |
|
3966
|
|
|
|
|
|
|
ExposuresOnDetectorSinceManufactured => { GRP => "0018", ELEM => "7011", VR => "IS" }, |
|
3967
|
|
|
|
|
|
|
DetectorTimeSinceLastExposure => { GRP => "0018", ELEM => "7012", VR => "DS" }, |
|
3968
|
|
|
|
|
|
|
DetectorActiveTime => { GRP => "0018", ELEM => "7014", VR => "DS" }, |
|
3969
|
|
|
|
|
|
|
DetectorActivationOffsetFromExposure => { GRP => "0018", ELEM => "7016", VR => "DS" }, |
|
3970
|
|
|
|
|
|
|
DetectorBinning => { GRP => "0018", ELEM => "701A", VR => "DS" }, |
|
3971
|
|
|
|
|
|
|
DetectorElementPhysicalSize => { GRP => "0018", ELEM => "7020", VR => "DS" }, |
|
3972
|
|
|
|
|
|
|
DetectorElementSpacing => { GRP => "0018", ELEM => "7022", VR => "DS" }, |
|
3973
|
|
|
|
|
|
|
DetectorActiveShape => { GRP => "0018", ELEM => "7024", VR => "CS" }, |
|
3974
|
|
|
|
|
|
|
DetectorActiveDimensions => { GRP => "0018", ELEM => "7026", VR => "DS" }, |
|
3975
|
|
|
|
|
|
|
DetectorActiveOrigin => { GRP => "0018", ELEM => "7028", VR => "DS" }, |
|
3976
|
|
|
|
|
|
|
DetectorManufacturerName => { GRP => "0018", ELEM => "702A", VR => "LO" }, |
|
3977
|
|
|
|
|
|
|
DetectorManufacturersModelName => { GRP => "0018", ELEM => "702B", VR => "LO" }, |
|
3978
|
|
|
|
|
|
|
FieldOfViewOrigin => { GRP => "0018", ELEM => "7030", VR => "DS" }, |
|
3979
|
|
|
|
|
|
|
FieldOfViewRotation => { GRP => "0018", ELEM => "7032", VR => "DS" }, |
|
3980
|
|
|
|
|
|
|
FieldOfViewHorizontalFlip => { GRP => "0018", ELEM => "7034", VR => "CS" }, |
|
3981
|
|
|
|
|
|
|
GridAbsorbingMaterial => { GRP => "0018", ELEM => "7040", VR => "LT" }, |
|
3982
|
|
|
|
|
|
|
GridSpacingMaterial => { GRP => "0018", ELEM => "7041", VR => "LT" }, |
|
3983
|
|
|
|
|
|
|
GridThickness => { GRP => "0018", ELEM => "7042", VR => "DS" }, |
|
3984
|
|
|
|
|
|
|
GridPitch => { GRP => "0018", ELEM => "7044", VR => "DS" }, |
|
3985
|
|
|
|
|
|
|
GridAspectRatio => { GRP => "0018", ELEM => "7046", VR => "IS" }, |
|
3986
|
|
|
|
|
|
|
GridPeriod => { GRP => "0018", ELEM => "7048", VR => "DS" }, |
|
3987
|
|
|
|
|
|
|
GridFocalDistance => { GRP => "0018", ELEM => "704C", VR => "DS" }, |
|
3988
|
|
|
|
|
|
|
FilterMaterial => { GRP => "0018", ELEM => "7050", VR => "CS" }, |
|
3989
|
|
|
|
|
|
|
FilterThicknessMinimum => { GRP => "0018", ELEM => "7052", VR => "DS" }, |
|
3990
|
|
|
|
|
|
|
FilterThicknessMaximum => { GRP => "0018", ELEM => "7054", VR => "DS" }, |
|
3991
|
|
|
|
|
|
|
ExposureControlMode => { GRP => "0018", ELEM => "7060", VR => "CS" }, |
|
3992
|
|
|
|
|
|
|
ExposureControlModeDescription => { GRP => "0018", ELEM => "7062", VR => "LT" }, |
|
3993
|
|
|
|
|
|
|
ExposureStatus => { GRP => "0018", ELEM => "7064", VR => "CS" }, |
|
3994
|
|
|
|
|
|
|
PhototimerSetting => { GRP => "0018", ELEM => "7065", VR => "DS" }, |
|
3995
|
|
|
|
|
|
|
ExposureTimeInMicroS => { GRP => "0018", ELEM => "8150", VR => "DS" }, |
|
3996
|
|
|
|
|
|
|
XRayTubeCurrentInMicroA => { GRP => "0018", ELEM => "8151", VR => "DS" }, |
|
3997
|
|
|
|
|
|
|
ContentQualification => { GRP => "0018", ELEM => "9004", VR => "CS" }, |
|
3998
|
|
|
|
|
|
|
PulseSequenceName => { GRP => "0018", ELEM => "9005", VR => "SH" }, |
|
3999
|
|
|
|
|
|
|
MRImagingModifierSequence => { GRP => "0018", ELEM => "9006", VR => "SQ" }, |
|
4000
|
|
|
|
|
|
|
EchoPulseSequence => { GRP => "0018", ELEM => "9008", VR => "CS" }, |
|
4001
|
|
|
|
|
|
|
InversionRecovery => { GRP => "0018", ELEM => "9009", VR => "CS" }, |
|
4002
|
|
|
|
|
|
|
FlowCompensation => { GRP => "0018", ELEM => "9010", VR => "CS" }, |
|
4003
|
|
|
|
|
|
|
MultipleSpinEcho => { GRP => "0018", ELEM => "9011", VR => "CS" }, |
|
4004
|
|
|
|
|
|
|
MultiPlanarExcitation => { GRP => "0018", ELEM => "9012", VR => "CS" }, |
|
4005
|
|
|
|
|
|
|
PhaseContrast => { GRP => "0018", ELEM => "9014", VR => "CS" }, |
|
4006
|
|
|
|
|
|
|
TimeOfFlightContrast => { GRP => "0018", ELEM => "9015", VR => "CS" }, |
|
4007
|
|
|
|
|
|
|
Spoiling => { GRP => "0018", ELEM => "9016", VR => "CS" }, |
|
4008
|
|
|
|
|
|
|
SteadyStatePulseSequence => { GRP => "0018", ELEM => "9017", VR => "CS" }, |
|
4009
|
|
|
|
|
|
|
EchoPlanarPulseSequence => { GRP => "0018", ELEM => "9018", VR => "CS" }, |
|
4010
|
|
|
|
|
|
|
TagAngleFirstAxis => { GRP => "0018", ELEM => "9019", VR => "FD" }, |
|
4011
|
|
|
|
|
|
|
MagnetizationTransfer => { GRP => "0018", ELEM => "9020", VR => "CS" }, |
|
4012
|
|
|
|
|
|
|
T2Preparation => { GRP => "0018", ELEM => "9021", VR => "CS" }, |
|
4013
|
|
|
|
|
|
|
BloodSignalNulling => { GRP => "0018", ELEM => "9022", VR => "CS" }, |
|
4014
|
|
|
|
|
|
|
SaturationRecovery => { GRP => "0018", ELEM => "9024", VR => "CS" }, |
|
4015
|
|
|
|
|
|
|
SpectrallySelectedSuppression => { GRP => "0018", ELEM => "9025", VR => "CS" }, |
|
4016
|
|
|
|
|
|
|
SpectrallySelectedExcitation => { GRP => "0018", ELEM => "9026", VR => "CS" }, |
|
4017
|
|
|
|
|
|
|
SpatialPreSaturation => { GRP => "0018", ELEM => "9027", VR => "CS" }, |
|
4018
|
|
|
|
|
|
|
Tagging => { GRP => "0018", ELEM => "9028", VR => "CS" }, |
|
4019
|
|
|
|
|
|
|
OversamplingPhase => { GRP => "0018", ELEM => "9029", VR => "CS" }, |
|
4020
|
|
|
|
|
|
|
TagSpacingFirstDimension => { GRP => "0018", ELEM => "9030", VR => "FD" }, |
|
4021
|
|
|
|
|
|
|
GeometryOfKSpaceTraversal => { GRP => "0018", ELEM => "9032", VR => "CS" }, |
|
4022
|
|
|
|
|
|
|
SegmentedKSpaceTraversal => { GRP => "0018", ELEM => "9033", VR => "CS" }, |
|
4023
|
|
|
|
|
|
|
RectilinearPhaseEncodeReordering => { GRP => "0018", ELEM => "9034", VR => "CS" }, |
|
4024
|
|
|
|
|
|
|
TagThickness => { GRP => "0018", ELEM => "9035", VR => "FD" }, |
|
4025
|
|
|
|
|
|
|
PartialFourierDirection => { GRP => "0018", ELEM => "9036", VR => "CS" }, |
|
4026
|
|
|
|
|
|
|
CardiacSynchronizationTechnique => { GRP => "0018", ELEM => "9037", VR => "CS" }, |
|
4027
|
|
|
|
|
|
|
ReceiveCoilManufacturerName => { GRP => "0018", ELEM => "9041", VR => "LO" }, |
|
4028
|
|
|
|
|
|
|
MRReceiveCoilSequence => { GRP => "0018", ELEM => "9042", VR => "SQ" }, |
|
4029
|
|
|
|
|
|
|
ReceiveCoilType => { GRP => "0018", ELEM => "9043", VR => "CS" }, |
|
4030
|
|
|
|
|
|
|
QuadratureReceiveCoil => { GRP => "0018", ELEM => "9044", VR => "CS" }, |
|
4031
|
|
|
|
|
|
|
MultiCoilDefinitionSequence => { GRP => "0018", ELEM => "9045", VR => "SQ" }, |
|
4032
|
|
|
|
|
|
|
MultiCoilConfiguration => { GRP => "0018", ELEM => "9046", VR => "LO" }, |
|
4033
|
|
|
|
|
|
|
MultiCoilElementName => { GRP => "0018", ELEM => "9047", VR => "SH" }, |
|
4034
|
|
|
|
|
|
|
MultiCoilElementUsed => { GRP => "0018", ELEM => "9048", VR => "CS" }, |
|
4035
|
|
|
|
|
|
|
MRTransmitCoilSequence => { GRP => "0018", ELEM => "9049", VR => "SQ" }, |
|
4036
|
|
|
|
|
|
|
TransmitCoilManufacturerName => { GRP => "0018", ELEM => "9050", VR => "LO" }, |
|
4037
|
|
|
|
|
|
|
TransmitCoilType => { GRP => "0018", ELEM => "9051", VR => "CS" }, |
|
4038
|
|
|
|
|
|
|
SpectralWidth => { GRP => "0018", ELEM => "9052", VR => "FD" }, |
|
4039
|
|
|
|
|
|
|
ChemicalShiftReference => { GRP => "0018", ELEM => "9053", VR => "FD" }, |
|
4040
|
|
|
|
|
|
|
VolumeLocalizationTechnique => { GRP => "0018", ELEM => "9054", VR => "CS" }, |
|
4041
|
|
|
|
|
|
|
MRAcquisitionFrequencyEncodingSteps => { GRP => "0018", ELEM => "9058", VR => "US" }, |
|
4042
|
|
|
|
|
|
|
DeCoupling => { GRP => "0018", ELEM => "9059", VR => "CS" }, |
|
4043
|
|
|
|
|
|
|
DeCoupledNucleus => { GRP => "0018", ELEM => "9060", VR => "CS" }, |
|
4044
|
|
|
|
|
|
|
DeCouplingFrequency => { GRP => "0018", ELEM => "9061", VR => "FD" }, |
|
4045
|
|
|
|
|
|
|
DeCouplingMethod => { GRP => "0018", ELEM => "9062", VR => "CS" }, |
|
4046
|
|
|
|
|
|
|
DeCouplingChemicalShiftReference => { GRP => "0018", ELEM => "9063", VR => "FD" }, |
|
4047
|
|
|
|
|
|
|
KSpaceFiltering => { GRP => "0018", ELEM => "9064", VR => "CS" }, |
|
4048
|
|
|
|
|
|
|
TimeDomainFiltering => { GRP => "0018", ELEM => "9065", VR => "CS" }, |
|
4049
|
|
|
|
|
|
|
NumberOfZeroFills => { GRP => "0018", ELEM => "9066", VR => "US" }, |
|
4050
|
|
|
|
|
|
|
BaselineCorrection => { GRP => "0018", ELEM => "9067", VR => "CS" }, |
|
4051
|
|
|
|
|
|
|
ParallelReductionFactorInPlane => { GRP => "0018", ELEM => "9069", VR => "FD" }, |
|
4052
|
|
|
|
|
|
|
CardiacRRIntervalSpecified => { GRP => "0018", ELEM => "9070", VR => "FD" }, |
|
4053
|
|
|
|
|
|
|
AcquisitionDuration => { GRP => "0018", ELEM => "9073", VR => "FD" }, |
|
4054
|
|
|
|
|
|
|
FrameAcquisitionDateTime => { GRP => "0018", ELEM => "9074", VR => "DT" }, |
|
4055
|
|
|
|
|
|
|
DiffusionDirectionality => { GRP => "0018", ELEM => "9075", VR => "CS" }, |
|
4056
|
|
|
|
|
|
|
DiffusionGradientDirectionSequence => { GRP => "0018", ELEM => "9076", VR => "SQ" }, |
|
4057
|
|
|
|
|
|
|
ParallelAcquisition => { GRP => "0018", ELEM => "9077", VR => "CS" }, |
|
4058
|
|
|
|
|
|
|
ParallelAcquisitionTechnique => { GRP => "0018", ELEM => "9078", VR => "CS" }, |
|
4059
|
|
|
|
|
|
|
InversionTimes => { GRP => "0018", ELEM => "9079", VR => "FD" }, |
|
4060
|
|
|
|
|
|
|
MetaboliteMapDescription => { GRP => "0018", ELEM => "9080", VR => "ST" }, |
|
4061
|
|
|
|
|
|
|
PartialFourier => { GRP => "0018", ELEM => "9081", VR => "CS" }, |
|
4062
|
|
|
|
|
|
|
EffectiveEchoTime => { GRP => "0018", ELEM => "9082", VR => "FD" }, |
|
4063
|
|
|
|
|
|
|
MetaboliteMapCodeSequence => { GRP => "0018", ELEM => "9083", VR => "SQ" }, |
|
4064
|
|
|
|
|
|
|
ChemicalShiftSequence => { GRP => "0018", ELEM => "9084", VR => "SQ" }, |
|
4065
|
|
|
|
|
|
|
CardiacSignalSource => { GRP => "0018", ELEM => "9085", VR => "CS" }, |
|
4066
|
|
|
|
|
|
|
DiffusionBValue => { GRP => "0018", ELEM => "9087", VR => "FD" }, |
|
4067
|
|
|
|
|
|
|
DiffusionGradientOrientation => { GRP => "0018", ELEM => "9089", VR => "FD" }, |
|
4068
|
|
|
|
|
|
|
VelocityEncodingDirection => { GRP => "0018", ELEM => "9090", VR => "FD" }, |
|
4069
|
|
|
|
|
|
|
VelocityEncodingMinimumValue => { GRP => "0018", ELEM => "9091", VR => "FD" }, |
|
4070
|
|
|
|
|
|
|
NumberOfKSpaceTrajectories => { GRP => "0018", ELEM => "9093", VR => "US" }, |
|
4071
|
|
|
|
|
|
|
CoverageOfKSpace => { GRP => "0018", ELEM => "9094", VR => "CS" }, |
|
4072
|
|
|
|
|
|
|
SpectroscopyAcquisitionPhaseRows => { GRP => "0018", ELEM => "9095", VR => "UL" }, |
|
4073
|
|
|
|
|
|
|
TransmitterFrequency => { GRP => "0018", ELEM => "9098", VR => "FD" }, |
|
4074
|
|
|
|
|
|
|
ResonantNucleus => { GRP => "0018", ELEM => "9100", VR => "CS" }, |
|
4075
|
|
|
|
|
|
|
FrequencyCorrection => { GRP => "0018", ELEM => "9101", VR => "CS" }, |
|
4076
|
|
|
|
|
|
|
MRSpectroscopyFOVGeometrySequence => { GRP => "0018", ELEM => "9103", VR => "SQ" }, |
|
4077
|
|
|
|
|
|
|
SlabThickness => { GRP => "0018", ELEM => "9104", VR => "FD" }, |
|
4078
|
|
|
|
|
|
|
SlabOrientation => { GRP => "0018", ELEM => "9105", VR => "FD" }, |
|
4079
|
|
|
|
|
|
|
MidSlabPosition => { GRP => "0018", ELEM => "9106", VR => "FD" }, |
|
4080
|
|
|
|
|
|
|
MRSpatialSaturationSequence => { GRP => "0018", ELEM => "9107", VR => "SQ" }, |
|
4081
|
|
|
|
|
|
|
MRTimingAndRelatedParametersSequence => { GRP => "0018", ELEM => "9112", VR => "SQ" }, |
|
4082
|
|
|
|
|
|
|
MREchoSequence => { GRP => "0018", ELEM => "9114", VR => "SQ" }, |
|
4083
|
|
|
|
|
|
|
MRModifierSequence => { GRP => "0018", ELEM => "9115", VR => "SQ" }, |
|
4084
|
|
|
|
|
|
|
MRDiffusionSequence => { GRP => "0018", ELEM => "9117", VR => "SQ" }, |
|
4085
|
|
|
|
|
|
|
CardiacSynchronizationSequence => { GRP => "0018", ELEM => "9118", VR => "SQ" }, |
|
4086
|
|
|
|
|
|
|
MRAveragesSequence => { GRP => "0018", ELEM => "9119", VR => "SQ" }, |
|
4087
|
|
|
|
|
|
|
MRFOVGeometrySequence => { GRP => "0018", ELEM => "9125", VR => "SQ" }, |
|
4088
|
|
|
|
|
|
|
VolumeLocalizationSequence => { GRP => "0018", ELEM => "9126", VR => "SQ" }, |
|
4089
|
|
|
|
|
|
|
SpectroscopyAcquisitionDataColumns => { GRP => "0018", ELEM => "9127", VR => "UL" }, |
|
4090
|
|
|
|
|
|
|
DiffusionAnisotropyType => { GRP => "0018", ELEM => "9147", VR => "CS" }, |
|
4091
|
|
|
|
|
|
|
FrameReferenceDateTime => { GRP => "0018", ELEM => "9151", VR => "DT" }, |
|
4092
|
|
|
|
|
|
|
MRMetaboliteMapSequence => { GRP => "0018", ELEM => "9152", VR => "SQ" }, |
|
4093
|
|
|
|
|
|
|
ParallelReductionFactorOutOfPlane => { GRP => "0018", ELEM => "9155", VR => "FD" }, |
|
4094
|
|
|
|
|
|
|
SpectroscopyAcquisitionOutOfPlanePhaseSteps => { GRP => "0018", ELEM => "9159", VR => "UL" }, |
|
4095
|
|
|
|
|
|
|
ParallelReductionFactorSecondInPlane => { GRP => "0018", ELEM => "9168", VR => "FD" }, |
|
4096
|
|
|
|
|
|
|
CardiacBeatRejectionTechnique => { GRP => "0018", ELEM => "9169", VR => "CS" }, |
|
4097
|
|
|
|
|
|
|
RespiratoryMotionCompensationTechnique => { GRP => "0018", ELEM => "9170", VR => "CS" }, |
|
4098
|
|
|
|
|
|
|
RespiratorySignalSource => { GRP => "0018", ELEM => "9171", VR => "CS" }, |
|
4099
|
|
|
|
|
|
|
BulkMotionCompensationTechnique => { GRP => "0018", ELEM => "9172", VR => "CS" }, |
|
4100
|
|
|
|
|
|
|
BulkMotionSignalSource => { GRP => "0018", ELEM => "9173", VR => "CS" }, |
|
4101
|
|
|
|
|
|
|
ApplicableSafetyStandardAgency => { GRP => "0018", ELEM => "9174", VR => "CS" }, |
|
4102
|
|
|
|
|
|
|
ApplicableSafetyStandardDescription => { GRP => "0018", ELEM => "9175", VR => "LO" }, |
|
4103
|
|
|
|
|
|
|
OperatingModeSequence => { GRP => "0018", ELEM => "9176", VR => "SQ" }, |
|
4104
|
|
|
|
|
|
|
OperatingModeType => { GRP => "0018", ELEM => "9177", VR => "CS" }, |
|
4105
|
|
|
|
|
|
|
OperatingMode => { GRP => "0018", ELEM => "9178", VR => "CS" }, |
|
4106
|
|
|
|
|
|
|
SpecificAbsorptionRateDefinition => { GRP => "0018", ELEM => "9179", VR => "CS" }, |
|
4107
|
|
|
|
|
|
|
GradientOutputType => { GRP => "0018", ELEM => "9180", VR => "CS" }, |
|
4108
|
|
|
|
|
|
|
SpecificAbsorptionRateValue => { GRP => "0018", ELEM => "9181", VR => "FD" }, |
|
4109
|
|
|
|
|
|
|
GradientOutput => { GRP => "0018", ELEM => "9182", VR => "FD" }, |
|
4110
|
|
|
|
|
|
|
FlowCompensationDirection => { GRP => "0018", ELEM => "9183", VR => "CS" }, |
|
4111
|
|
|
|
|
|
|
TaggingDelay => { GRP => "0018", ELEM => "9184", VR => "FD" }, |
|
4112
|
|
|
|
|
|
|
RespiratoryMotionCompensationTechniqueDescription => { GRP => "0018", ELEM => "9185", VR => "ST" }, |
|
4113
|
|
|
|
|
|
|
RespiratorySignalSourceID => { GRP => "0018", ELEM => "9186", VR => "SH" }, |
|
4114
|
|
|
|
|
|
|
MRVelocityEncodingSequence => { GRP => "0018", ELEM => "9197", VR => "SQ" }, |
|
4115
|
|
|
|
|
|
|
FirstOrderPhaseCorrection => { GRP => "0018", ELEM => "9198", VR => "CS" }, |
|
4116
|
|
|
|
|
|
|
WaterReferencedPhaseCorrection => { GRP => "0018", ELEM => "9199", VR => "CS" }, |
|
4117
|
|
|
|
|
|
|
MRSpectroscopyAcquisitionType => { GRP => "0018", ELEM => "9200", VR => "CS" }, |
|
4118
|
|
|
|
|
|
|
RespiratoryCyclePosition => { GRP => "0018", ELEM => "9214", VR => "CS" }, |
|
4119
|
|
|
|
|
|
|
VelocityEncodingMaximumValue => { GRP => "0018", ELEM => "9217", VR => "FD" }, |
|
4120
|
|
|
|
|
|
|
TagSpacingSecondDimension => { GRP => "0018", ELEM => "9218", VR => "FD" }, |
|
4121
|
|
|
|
|
|
|
TagAngleSecondAxis => { GRP => "0018", ELEM => "9219", VR => "SS" }, |
|
4122
|
|
|
|
|
|
|
FrameAcquisitionDuration => { GRP => "0018", ELEM => "9220", VR => "FD" }, |
|
4123
|
|
|
|
|
|
|
MRImageFrameTypeSequence => { GRP => "0018", ELEM => "9226", VR => "SQ" }, |
|
4124
|
|
|
|
|
|
|
MRSpectroscopyFrameTypeSequence => { GRP => "0018", ELEM => "9227", VR => "SQ" }, |
|
4125
|
|
|
|
|
|
|
MRAcquisitionPhaseEncodingStepsInPlane => { GRP => "0018", ELEM => "9231", VR => "US" }, |
|
4126
|
|
|
|
|
|
|
MRAcquisitionPhaseEncodingStepsOutOfPlane => { GRP => "0018", ELEM => "9232", VR => "US" }, |
|
4127
|
|
|
|
|
|
|
SpectroscopyAcquisitionPhaseColumns => { GRP => "0018", ELEM => "9234", VR => "UL" }, |
|
4128
|
|
|
|
|
|
|
CardiacCyclePosition => { GRP => "0018", ELEM => "9236", VR => "CS" }, |
|
4129
|
|
|
|
|
|
|
SpecificAbsorptionRateSequence => { GRP => "0018", ELEM => "9239", VR => "SQ" }, |
|
4130
|
|
|
|
|
|
|
RFEchoTrainLength => { GRP => "0018", ELEM => "9240", VR => "US" }, |
|
4131
|
|
|
|
|
|
|
GradientEchoTrainLength => { GRP => "0018", ELEM => "9241", VR => "US" }, |
|
4132
|
|
|
|
|
|
|
ChemicalShiftsMinimumIntegrationLimitInPpm => { GRP => "0018", ELEM => "9295", VR => "FD" }, |
|
4133
|
|
|
|
|
|
|
ChemicalShiftsMaximumIntegrationLimitInPpm => { GRP => "0018", ELEM => "9296", VR => "FD" }, |
|
4134
|
|
|
|
|
|
|
CTAcquisitionTypeSequence => { GRP => "0018", ELEM => "9301", VR => "SQ" }, |
|
4135
|
|
|
|
|
|
|
AcquisitionType => { GRP => "0018", ELEM => "9302", VR => "CS" }, |
|
4136
|
|
|
|
|
|
|
TubeAngle => { GRP => "0018", ELEM => "9303", VR => "FD" }, |
|
4137
|
|
|
|
|
|
|
CTAcquisitionDetailsSequence => { GRP => "0018", ELEM => "9304", VR => "SQ" }, |
|
4138
|
|
|
|
|
|
|
RevolutionTime => { GRP => "0018", ELEM => "9305", VR => "FD" }, |
|
4139
|
|
|
|
|
|
|
SingleCollimationWidth => { GRP => "0018", ELEM => "9306", VR => "FD" }, |
|
4140
|
|
|
|
|
|
|
TotalCollimationWidth => { GRP => "0018", ELEM => "9307", VR => "FD" }, |
|
4141
|
|
|
|
|
|
|
CTTableDynamicsSequence => { GRP => "0018", ELEM => "9308", VR => "SQ" }, |
|
4142
|
|
|
|
|
|
|
TableSpeed => { GRP => "0018", ELEM => "9309", VR => "FD" }, |
|
4143
|
|
|
|
|
|
|
TableFeedPerRotation => { GRP => "0018", ELEM => "9310", VR => "FD" }, |
|
4144
|
|
|
|
|
|
|
SpiralPitchFactor => { GRP => "0018", ELEM => "9311", VR => "FD" }, |
|
4145
|
|
|
|
|
|
|
CTGeometrySequence => { GRP => "0018", ELEM => "9312", VR => "SQ" }, |
|
4146
|
|
|
|
|
|
|
DataCollectionCenterPatient => { GRP => "0018", ELEM => "9313", VR => "FD" }, |
|
4147
|
|
|
|
|
|
|
CTReconstructionSequence => { GRP => "0018", ELEM => "9314", VR => "SQ" }, |
|
4148
|
|
|
|
|
|
|
ReconstructionAlgorithm => { GRP => "0018", ELEM => "9315", VR => "CS" }, |
|
4149
|
|
|
|
|
|
|
ConvolutionKernelGroup => { GRP => "0018", ELEM => "9316", VR => "CS" }, |
|
4150
|
|
|
|
|
|
|
ReconstructionFieldOfView => { GRP => "0018", ELEM => "9317", VR => "FD" }, |
|
4151
|
|
|
|
|
|
|
ReconstructionTargetCenterPatient => { GRP => "0018", ELEM => "9318", VR => "FD" }, |
|
4152
|
|
|
|
|
|
|
ReconstructionAngle => { GRP => "0018", ELEM => "9319", VR => "FD" }, |
|
4153
|
|
|
|
|
|
|
ImageFilter => { GRP => "0018", ELEM => "9320", VR => "SH" }, |
|
4154
|
|
|
|
|
|
|
CTExposureSequence => { GRP => "0018", ELEM => "9321", VR => "SQ" }, |
|
4155
|
|
|
|
|
|
|
ReconstructionPixelSpacing => { GRP => "0018", ELEM => "9322", VR => "FD" }, |
|
4156
|
|
|
|
|
|
|
ExposureModulationType => { GRP => "0018", ELEM => "9323", VR => "CS" }, |
|
4157
|
|
|
|
|
|
|
EstimatedDoseSaving => { GRP => "0018", ELEM => "9324", VR => "FD" }, |
|
4158
|
|
|
|
|
|
|
CTXRayDetailsSequence => { GRP => "0018", ELEM => "9325", VR => "SQ" }, |
|
4159
|
|
|
|
|
|
|
CTPositionSequence => { GRP => "0018", ELEM => "9326", VR => "SQ" }, |
|
4160
|
|
|
|
|
|
|
TablePosition => { GRP => "0018", ELEM => "9327", VR => "FD" }, |
|
4161
|
|
|
|
|
|
|
ExposureTimeInMs => { GRP => "0018", ELEM => "9328", VR => "FD" }, |
|
4162
|
|
|
|
|
|
|
CTImageFrameTypeSequence => { GRP => "0018", ELEM => "9329", VR => "SQ" }, |
|
4163
|
|
|
|
|
|
|
XRayTubeCurrentInMA => { GRP => "0018", ELEM => "9330", VR => "FD" }, |
|
4164
|
|
|
|
|
|
|
ExposureInMAs => { GRP => "0018", ELEM => "9332", VR => "FD" }, |
|
4165
|
|
|
|
|
|
|
ConstantVolumeFlag => { GRP => "0018", ELEM => "9333", VR => "CS" }, |
|
4166
|
|
|
|
|
|
|
FluoroscopyFlag => { GRP => "0018", ELEM => "9334", VR => "CS" }, |
|
4167
|
|
|
|
|
|
|
DistanceSourceToDataCollectionCenter => { GRP => "0018", ELEM => "9335", VR => "FD" }, |
|
4168
|
|
|
|
|
|
|
ContrastBolusAgentNumber => { GRP => "0018", ELEM => "9337", VR => "US" }, |
|
4169
|
|
|
|
|
|
|
ContrastBolusIngredientCodeSequence => { GRP => "0018", ELEM => "9338", VR => "SQ" }, |
|
4170
|
|
|
|
|
|
|
ContrastAdministrationProfileSequence => { GRP => "0018", ELEM => "9340", VR => "SQ" }, |
|
4171
|
|
|
|
|
|
|
ContrastBolusUsageSequence => { GRP => "0018", ELEM => "9341", VR => "SQ" }, |
|
4172
|
|
|
|
|
|
|
ContrastBolusAgentAdministered => { GRP => "0018", ELEM => "9342", VR => "CS" }, |
|
4173
|
|
|
|
|
|
|
ContrastBolusAgentDetected => { GRP => "0018", ELEM => "9343", VR => "CS" }, |
|
4174
|
|
|
|
|
|
|
ContrastBolusAgentPhase => { GRP => "0018", ELEM => "9344", VR => "CS" }, |
|
4175
|
|
|
|
|
|
|
CTDIvol => { GRP => "0018", ELEM => "9345", VR => "FD" }, |
|
4176
|
|
|
|
|
|
|
CTDIPhantomTypeCodeSequence => { GRP => "0018", ELEM => "9346", VR => "SQ" }, |
|
4177
|
|
|
|
|
|
|
CalciumScoringMassFactorPatient => { GRP => "0018", ELEM => "9351", VR => "FL" }, |
|
4178
|
|
|
|
|
|
|
CalciumScoringMassFactorDevice => { GRP => "0018", ELEM => "9352", VR => "FL" }, |
|
4179
|
|
|
|
|
|
|
CTAdditionalXRaySourceSequence => { GRP => "0018", ELEM => "9360", VR => "SQ" }, |
|
4180
|
|
|
|
|
|
|
ProjectionPixelCalibrationSequence => { GRP => "0018", ELEM => "9401", VR => "SQ" }, |
|
4181
|
|
|
|
|
|
|
DistanceSourceToIsocenter => { GRP => "0018", ELEM => "9402", VR => "FL" }, |
|
4182
|
|
|
|
|
|
|
DistanceObjectToTableTop => { GRP => "0018", ELEM => "9403", VR => "FL" }, |
|
4183
|
|
|
|
|
|
|
ObjectPixelSpacingInCenterOfBeam => { GRP => "0018", ELEM => "9404", VR => "FL" }, |
|
4184
|
|
|
|
|
|
|
PositionerPositionSequence => { GRP => "0018", ELEM => "9405", VR => "SQ" }, |
|
4185
|
|
|
|
|
|
|
TablePositionSequence => { GRP => "0018", ELEM => "9406", VR => "SQ" }, |
|
4186
|
|
|
|
|
|
|
CollimatorShapeSequence => { GRP => "0018", ELEM => "9407", VR => "SQ" }, |
|
4187
|
|
|
|
|
|
|
XAXRFFrameCharacteristicsSequence => { GRP => "0018", ELEM => "9412", VR => "SQ" }, |
|
4188
|
|
|
|
|
|
|
FrameAcquisitionSequence => { GRP => "0018", ELEM => "9417", VR => "SQ" }, |
|
4189
|
|
|
|
|
|
|
XRayReceptorType => { GRP => "0018", ELEM => "9420", VR => "CS" }, |
|
4190
|
|
|
|
|
|
|
AcquisitionProtocolName => { GRP => "0018", ELEM => "9423", VR => "LO" }, |
|
4191
|
|
|
|
|
|
|
AcquisitionProtocolDescription => { GRP => "0018", ELEM => "9424", VR => "LT" }, |
|
4192
|
|
|
|
|
|
|
ContrastBolusIngredientOpaque => { GRP => "0018", ELEM => "9425", VR => "CS" }, |
|
4193
|
|
|
|
|
|
|
DistanceReceptorPlaneToDetectorHousing => { GRP => "0018", ELEM => "9426", VR => "FL" }, |
|
4194
|
|
|
|
|
|
|
IntensifierActiveShape => { GRP => "0018", ELEM => "9427", VR => "CS" }, |
|
4195
|
|
|
|
|
|
|
IntensifierActiveDimensions => { GRP => "0018", ELEM => "9428", VR => "FL" }, |
|
4196
|
|
|
|
|
|
|
PhysicalDetectorSize => { GRP => "0018", ELEM => "9429", VR => "FL" }, |
|
4197
|
|
|
|
|
|
|
PositionOfIsocenterProjection => { GRP => "0018", ELEM => "9430", VR => "US" }, |
|
4198
|
|
|
|
|
|
|
FieldOfViewSequence => { GRP => "0018", ELEM => "9432", VR => "SQ" }, |
|
4199
|
|
|
|
|
|
|
FieldOfViewDescription => { GRP => "0018", ELEM => "9433", VR => "LO" }, |
|
4200
|
|
|
|
|
|
|
ExposureControlSensingRegionsSequence => { GRP => "0018", ELEM => "9434", VR => "SQ" }, |
|
4201
|
|
|
|
|
|
|
ExposureControlSensingRegionShape => { GRP => "0018", ELEM => "9435", VR => "CS" }, |
|
4202
|
|
|
|
|
|
|
ExposureControlSensingRegionLeftVerticalEdge => { GRP => "0018", ELEM => "9436", VR => "SS" }, |
|
4203
|
|
|
|
|
|
|
ExposureControlSensingRegionRightVerticalEdge => { GRP => "0018", ELEM => "9437", VR => "SS" }, |
|
4204
|
|
|
|
|
|
|
ExposureControlSensingRegionUpperHorizontalEdge => { GRP => "0018", ELEM => "9438", VR => "SS" }, |
|
4205
|
|
|
|
|
|
|
ExposureControlSensingRegionLowerHorizontalEdge => { GRP => "0018", ELEM => "9439", VR => "SS" }, |
|
4206
|
|
|
|
|
|
|
CenterOfCircularExposureControlSensingRegion => { GRP => "0018", ELEM => "9440", VR => "SS" }, |
|
4207
|
|
|
|
|
|
|
RadiusOfCircularExposureControlSensingRegion => { GRP => "0018", ELEM => "9441", VR => "US" }, |
|
4208
|
|
|
|
|
|
|
VerticesOfThePolygonalExposureControlSensingRegion => { GRP => "0018", ELEM => "9442", VR => "SS" }, |
|
4209
|
|
|
|
|
|
|
ColumnAngulationPatient => { GRP => "0018", ELEM => "9447", VR => "FL" }, |
|
4210
|
|
|
|
|
|
|
BeamAngle => { GRP => "0018", ELEM => "9449", VR => "FL" }, |
|
4211
|
|
|
|
|
|
|
FrameDetectorParametersSequence => { GRP => "0018", ELEM => "9451", VR => "SQ" }, |
|
4212
|
|
|
|
|
|
|
CalculatedAnatomyThickness => { GRP => "0018", ELEM => "9452", VR => "FL" }, |
|
4213
|
|
|
|
|
|
|
CalibrationSequence => { GRP => "0018", ELEM => "9455", VR => "SQ" }, |
|
4214
|
|
|
|
|
|
|
ObjectThicknessSequence => { GRP => "0018", ELEM => "9456", VR => "SQ" }, |
|
4215
|
|
|
|
|
|
|
PlaneIdentification => { GRP => "0018", ELEM => "9457", VR => "CS" }, |
|
4216
|
|
|
|
|
|
|
FieldOfViewDimensionsInFloat => { GRP => "0018", ELEM => "9461", VR => "FL" }, |
|
4217
|
|
|
|
|
|
|
IsocenterReferenceSystemSequence => { GRP => "0018", ELEM => "9462", VR => "SQ" }, |
|
4218
|
|
|
|
|
|
|
PositionerIsocenterPrimaryAngle => { GRP => "0018", ELEM => "9463", VR => "FL" }, |
|
4219
|
|
|
|
|
|
|
PositionerIsocenterSecondaryAngle => { GRP => "0018", ELEM => "9464", VR => "FL" }, |
|
4220
|
|
|
|
|
|
|
PositionerIsocenterDetectorRotationAngle => { GRP => "0018", ELEM => "9465", VR => "FL" }, |
|
4221
|
|
|
|
|
|
|
TableXPositionToIsocenter => { GRP => "0018", ELEM => "9466", VR => "FL" }, |
|
4222
|
|
|
|
|
|
|
TableYPositionToIsocenter => { GRP => "0018", ELEM => "9467", VR => "FL" }, |
|
4223
|
|
|
|
|
|
|
TableZPositionToIsocenter => { GRP => "0018", ELEM => "9468", VR => "FL" }, |
|
4224
|
|
|
|
|
|
|
TableHorizontalRotationAngle => { GRP => "0018", ELEM => "9469", VR => "FL" }, |
|
4225
|
|
|
|
|
|
|
TableHeadTiltAngle => { GRP => "0018", ELEM => "9470", VR => "FL" }, |
|
4226
|
|
|
|
|
|
|
TableCradleTiltAngle => { GRP => "0018", ELEM => "9471", VR => "FL" }, |
|
4227
|
|
|
|
|
|
|
FrameDisplayShutterSequence => { GRP => "0018", ELEM => "9472", VR => "SQ" }, |
|
4228
|
|
|
|
|
|
|
AcquiredImageAreaDoseProduct => { GRP => "0018", ELEM => "9473", VR => "FL" }, |
|
4229
|
|
|
|
|
|
|
CArmPositionerTabletopRelationship => { GRP => "0018", ELEM => "9474", VR => "CS" }, |
|
4230
|
|
|
|
|
|
|
XRayGeometrySequence => { GRP => "0018", ELEM => "9476", VR => "SQ" }, |
|
4231
|
|
|
|
|
|
|
IrradiationEventIdentificationSequence => { GRP => "0018", ELEM => "9477", VR => "SQ" }, |
|
4232
|
|
|
|
|
|
|
XRay3DFrameTypeSequence => { GRP => "0018", ELEM => "9504", VR => "SQ" }, |
|
4233
|
|
|
|
|
|
|
ContributingSourcesSequence => { GRP => "0018", ELEM => "9506", VR => "SQ" }, |
|
4234
|
|
|
|
|
|
|
XRay3DAcquisitionSequence => { GRP => "0018", ELEM => "9507", VR => "SQ" }, |
|
4235
|
|
|
|
|
|
|
PrimaryPositionerScanArc => { GRP => "0018", ELEM => "9508", VR => "FL" }, |
|
4236
|
|
|
|
|
|
|
SecondaryPositionerScanArc => { GRP => "0018", ELEM => "9509", VR => "FL" }, |
|
4237
|
|
|
|
|
|
|
PrimaryPositionerScanStartAngle => { GRP => "0018", ELEM => "9510", VR => "FL" }, |
|
4238
|
|
|
|
|
|
|
SecondaryPositionerScanStartAngle => { GRP => "0018", ELEM => "9511", VR => "FL" }, |
|
4239
|
|
|
|
|
|
|
PrimaryPositionerIncrement => { GRP => "0018", ELEM => "9514", VR => "FL" }, |
|
4240
|
|
|
|
|
|
|
SecondaryPositionerIncrement => { GRP => "0018", ELEM => "9515", VR => "FL" }, |
|
4241
|
|
|
|
|
|
|
StartAcquisitionDateTime => { GRP => "0018", ELEM => "9516", VR => "DT" }, |
|
4242
|
|
|
|
|
|
|
EndAcquisitionDateTime => { GRP => "0018", ELEM => "9517", VR => "DT" }, |
|
4243
|
|
|
|
|
|
|
ApplicationName => { GRP => "0018", ELEM => "9524", VR => "LO" }, |
|
4244
|
|
|
|
|
|
|
ApplicationVersion => { GRP => "0018", ELEM => "9525", VR => "LO" }, |
|
4245
|
|
|
|
|
|
|
ApplicationManufacturer => { GRP => "0018", ELEM => "9526", VR => "LO" }, |
|
4246
|
|
|
|
|
|
|
AlgorithmType => { GRP => "0018", ELEM => "9527", VR => "CS" }, |
|
4247
|
|
|
|
|
|
|
AlgorithmDescription => { GRP => "0018", ELEM => "9528", VR => "LO" }, |
|
4248
|
|
|
|
|
|
|
XRay3DReconstructionSequence => { GRP => "0018", ELEM => "9530", VR => "SQ" }, |
|
4249
|
|
|
|
|
|
|
ReconstructionDescription => { GRP => "0018", ELEM => "9531", VR => "LO" }, |
|
4250
|
|
|
|
|
|
|
PerProjectionAcquisitionSequence => { GRP => "0018", ELEM => "9538", VR => "SQ" }, |
|
4251
|
|
|
|
|
|
|
DiffusionBMatrixSequence => { GRP => "0018", ELEM => "9601", VR => "SQ" }, |
|
4252
|
|
|
|
|
|
|
DiffusionBValueXX => { GRP => "0018", ELEM => "9602", VR => "FD" }, |
|
4253
|
|
|
|
|
|
|
DiffusionBValueXY => { GRP => "0018", ELEM => "9603", VR => "FD" }, |
|
4254
|
|
|
|
|
|
|
DiffusionBValueXZ => { GRP => "0018", ELEM => "9604", VR => "FD" }, |
|
4255
|
|
|
|
|
|
|
DiffusionBValueYY => { GRP => "0018", ELEM => "9605", VR => "FD" }, |
|
4256
|
|
|
|
|
|
|
DiffusionBValueYZ => { GRP => "0018", ELEM => "9606", VR => "FD" }, |
|
4257
|
|
|
|
|
|
|
DiffusionBValueZZ => { GRP => "0018", ELEM => "9607", VR => "FD" }, |
|
4258
|
|
|
|
|
|
|
ContributingEquipmentSequence => { GRP => "0018", ELEM => "A001", VR => "SQ" }, |
|
4259
|
|
|
|
|
|
|
ContributionDateTime => { GRP => "0018", ELEM => "A002", VR => "DT" }, |
|
4260
|
|
|
|
|
|
|
ContributionDescription => { GRP => "0018", ELEM => "A003", VR => "ST" }, |
|
4261
|
|
|
|
|
|
|
StudyInstanceUID => { GRP => "0020", ELEM => "000D", VR => "UI" }, |
|
4262
|
|
|
|
|
|
|
SeriesInstanceUID => { GRP => "0020", ELEM => "000E", VR => "UI" }, |
|
4263
|
|
|
|
|
|
|
StudyID => { GRP => "0020", ELEM => "0010", VR => "SH" }, |
|
4264
|
|
|
|
|
|
|
SeriesNumber => { GRP => "0020", ELEM => "0011", VR => "IS" }, |
|
4265
|
|
|
|
|
|
|
AcquisitionNumber => { GRP => "0020", ELEM => "0012", VR => "IS" }, |
|
4266
|
|
|
|
|
|
|
InstanceNumber => { GRP => "0020", ELEM => "0013", VR => "IS" }, |
|
4267
|
|
|
|
|
|
|
ItemNumber => { GRP => "0020", ELEM => "0019", VR => "IS" }, |
|
4268
|
|
|
|
|
|
|
PatientOrientation => { GRP => "0020", ELEM => "0020", VR => "CS" }, |
|
4269
|
|
|
|
|
|
|
ImagePositionPatient => { GRP => "0020", ELEM => "0032", VR => "DS" }, |
|
4270
|
|
|
|
|
|
|
ImageOrientationPatient => { GRP => "0020", ELEM => "0037", VR => "DS" }, |
|
4271
|
|
|
|
|
|
|
FrameOfReferenceUID => { GRP => "0020", ELEM => "0052", VR => "UI" }, |
|
4272
|
|
|
|
|
|
|
Laterality => { GRP => "0020", ELEM => "0060", VR => "CS" }, |
|
4273
|
|
|
|
|
|
|
ImageLaterality => { GRP => "0020", ELEM => "0062", VR => "CS" }, |
|
4274
|
|
|
|
|
|
|
TemporalPositionIdentifier => { GRP => "0020", ELEM => "0100", VR => "IS" }, |
|
4275
|
|
|
|
|
|
|
NumberOfTemporalPositions => { GRP => "0020", ELEM => "0105", VR => "IS" }, |
|
4276
|
|
|
|
|
|
|
TemporalResolution => { GRP => "0020", ELEM => "0110", VR => "DS" }, |
|
4277
|
|
|
|
|
|
|
SynchronizationFrameOfReferenceUID => { GRP => "0020", ELEM => "0200", VR => "UI" }, |
|
4278
|
|
|
|
|
|
|
ImagesInAcquisition => { GRP => "0020", ELEM => "1002", VR => "IS" }, |
|
4279
|
|
|
|
|
|
|
PositionReferenceIndicator => { GRP => "0020", ELEM => "1040", VR => "LO" }, |
|
4280
|
|
|
|
|
|
|
SliceLocation => { GRP => "0020", ELEM => "1041", VR => "DS" }, |
|
4281
|
|
|
|
|
|
|
NumberOfPatientRelatedStudies => { GRP => "0020", ELEM => "1200", VR => "IS" }, |
|
4282
|
|
|
|
|
|
|
NumberOfPatientRelatedSeries => { GRP => "0020", ELEM => "1202", VR => "IS" }, |
|
4283
|
|
|
|
|
|
|
NumberOfPatientRelatedInstances => { GRP => "0020", ELEM => "1204", VR => "IS" }, |
|
4284
|
|
|
|
|
|
|
NumberOfStudyRelatedSeries => { GRP => "0020", ELEM => "1206", VR => "IS" }, |
|
4285
|
|
|
|
|
|
|
NumberOfStudyRelatedInstances => { GRP => "0020", ELEM => "1208", VR => "IS" }, |
|
4286
|
|
|
|
|
|
|
NumberOfSeriesRelatedInstances => { GRP => "0020", ELEM => "1209", VR => "IS" }, |
|
4287
|
|
|
|
|
|
|
ImageComments => { GRP => "0020", ELEM => "4000", VR => "LT" }, |
|
4288
|
|
|
|
|
|
|
StackID => { GRP => "0020", ELEM => "9056", VR => "SH" }, |
|
4289
|
|
|
|
|
|
|
InStackPositionNumber => { GRP => "0020", ELEM => "9057", VR => "UL" }, |
|
4290
|
|
|
|
|
|
|
FrameAnatomySequence => { GRP => "0020", ELEM => "9071", VR => "SQ" }, |
|
4291
|
|
|
|
|
|
|
FrameLaterality => { GRP => "0020", ELEM => "9072", VR => "CS" }, |
|
4292
|
|
|
|
|
|
|
FrameContentSequence => { GRP => "0020", ELEM => "9111", VR => "SQ" }, |
|
4293
|
|
|
|
|
|
|
PlanePositionSequence => { GRP => "0020", ELEM => "9113", VR => "SQ" }, |
|
4294
|
|
|
|
|
|
|
PlaneOrientationSequence => { GRP => "0020", ELEM => "9116", VR => "SQ" }, |
|
4295
|
|
|
|
|
|
|
TemporalPositionIndex => { GRP => "0020", ELEM => "9128", VR => "UL" }, |
|
4296
|
|
|
|
|
|
|
NominalCardiacTriggerDelayTime => { GRP => "0020", ELEM => "9153", VR => "FD" }, |
|
4297
|
|
|
|
|
|
|
FrameAcquisitionNumber => { GRP => "0020", ELEM => "9156", VR => "US" }, |
|
4298
|
|
|
|
|
|
|
DimensionIndexValues => { GRP => "0020", ELEM => "9157", VR => "UL" }, |
|
4299
|
|
|
|
|
|
|
FrameComments => { GRP => "0020", ELEM => "9158", VR => "LT" }, |
|
4300
|
|
|
|
|
|
|
ConcatenationUID => { GRP => "0020", ELEM => "9161", VR => "UI" }, |
|
4301
|
|
|
|
|
|
|
InConcatenationNumber => { GRP => "0020", ELEM => "9162", VR => "US" }, |
|
4302
|
|
|
|
|
|
|
InConcatenationTotalNumber => { GRP => "0020", ELEM => "9163", VR => "US" }, |
|
4303
|
|
|
|
|
|
|
DimensionOrganizationUID => { GRP => "0020", ELEM => "9164", VR => "UI" }, |
|
4304
|
|
|
|
|
|
|
DimensionIndexPointer => { GRP => "0020", ELEM => "9165", VR => "AT" }, |
|
4305
|
|
|
|
|
|
|
FunctionalGroupPointer => { GRP => "0020", ELEM => "9167", VR => "AT" }, |
|
4306
|
|
|
|
|
|
|
DimensionIndexPrivateCreator => { GRP => "0020", ELEM => "9213", VR => "LO" }, |
|
4307
|
|
|
|
|
|
|
DimensionOrganizationSequence => { GRP => "0020", ELEM => "9221", VR => "SQ" }, |
|
4308
|
|
|
|
|
|
|
DimensionIndexSequence => { GRP => "0020", ELEM => "9222", VR => "SQ" }, |
|
4309
|
|
|
|
|
|
|
ConcatenationFrameOffsetNumber => { GRP => "0020", ELEM => "9228", VR => "UL" }, |
|
4310
|
|
|
|
|
|
|
FunctionalGroupPrivateCreator => { GRP => "0020", ELEM => "9238", VR => "LO" }, |
|
4311
|
|
|
|
|
|
|
NominalPercentageOfCardiacPhase => { GRP => "0020", ELEM => "9241", VR => "FL" }, |
|
4312
|
|
|
|
|
|
|
NominalPercentageOfRespiratoryPhase => { GRP => "0020", ELEM => "9245", VR => "FL" }, |
|
4313
|
|
|
|
|
|
|
StartingRespiratoryAmplitude => { GRP => "0020", ELEM => "9246", VR => "FL" }, |
|
4314
|
|
|
|
|
|
|
StartingRespiratoryPhase => { GRP => "0020", ELEM => "9247", VR => "CS" }, |
|
4315
|
|
|
|
|
|
|
EndingRespiratoryAmplitude => { GRP => "0020", ELEM => "9248", VR => "FL" }, |
|
4316
|
|
|
|
|
|
|
EndingRespiratoryPhase => { GRP => "0020", ELEM => "9249", VR => "CS" }, |
|
4317
|
|
|
|
|
|
|
RespiratoryTriggerType => { GRP => "0020", ELEM => "9250", VR => "CS" }, |
|
4318
|
|
|
|
|
|
|
RRIntervalTimeNominal => { GRP => "0020", ELEM => "9251", VR => "FD" }, |
|
4319
|
|
|
|
|
|
|
ActualCardiacTriggerDelayTime => { GRP => "0020", ELEM => "9252", VR => "FD" }, |
|
4320
|
|
|
|
|
|
|
RespiratorySynchronizationSequence => { GRP => "0020", ELEM => "9253", VR => "SQ" }, |
|
4321
|
|
|
|
|
|
|
RespiratoryIntervalTime => { GRP => "0020", ELEM => "9254", VR => "FD" }, |
|
4322
|
|
|
|
|
|
|
NominalRespiratoryTriggerDelayTime => { GRP => "0020", ELEM => "9255", VR => "FD" }, |
|
4323
|
|
|
|
|
|
|
RespiratoryTriggerDelayThreshold => { GRP => "0020", ELEM => "9256", VR => "FD" }, |
|
4324
|
|
|
|
|
|
|
ActualRespiratoryTriggerDelayTime => { GRP => "0020", ELEM => "9257", VR => "FD" }, |
|
4325
|
|
|
|
|
|
|
DimensionDescriptionLabel => { GRP => "0020", ELEM => "9421", VR => "LO" }, |
|
4326
|
|
|
|
|
|
|
PatientOrientationInFrameSequence => { GRP => "0020", ELEM => "9450", VR => "SQ" }, |
|
4327
|
|
|
|
|
|
|
FrameLabel => { GRP => "0020", ELEM => "9453", VR => "LO" }, |
|
4328
|
|
|
|
|
|
|
AcquisitionIndex => { GRP => "0020", ELEM => "9518", VR => "US" }, |
|
4329
|
|
|
|
|
|
|
ContributingSOPInstancesReferenceSequence => { GRP => "0020", ELEM => "9529", VR => "SQ" }, |
|
4330
|
|
|
|
|
|
|
ReconstructionIndex => { GRP => "0020", ELEM => "9536", VR => "US" }, |
|
4331
|
|
|
|
|
|
|
LightPathFilterPassThroughWavelength => { GRP => "0022", ELEM => "0001", VR => "US" }, |
|
4332
|
|
|
|
|
|
|
LightPathFilterPassBand => { GRP => "0022", ELEM => "0002", VR => "US" }, |
|
4333
|
|
|
|
|
|
|
ImagePathFilterPassThroughWavelength => { GRP => "0022", ELEM => "0003", VR => "US" }, |
|
4334
|
|
|
|
|
|
|
ImagePathFilterPassBand => { GRP => "0022", ELEM => "0004", VR => "US" }, |
|
4335
|
|
|
|
|
|
|
PatientEyeMovementCommanded => { GRP => "0022", ELEM => "0005", VR => "CS" }, |
|
4336
|
|
|
|
|
|
|
PatientEyeMovementCommandCodeSequence => { GRP => "0022", ELEM => "0006", VR => "SQ" }, |
|
4337
|
|
|
|
|
|
|
SphericalLensPower => { GRP => "0022", ELEM => "0007", VR => "FL" }, |
|
4338
|
|
|
|
|
|
|
CylinderLensPower => { GRP => "0022", ELEM => "0008", VR => "FL" }, |
|
4339
|
|
|
|
|
|
|
CylinderAxis => { GRP => "0022", ELEM => "0009", VR => "FL" }, |
|
4340
|
|
|
|
|
|
|
EmmetropicMagnification => { GRP => "0022", ELEM => "000A", VR => "FL" }, |
|
4341
|
|
|
|
|
|
|
IntraOcularPressure => { GRP => "0022", ELEM => "000B", VR => "FL" }, |
|
4342
|
|
|
|
|
|
|
HorizontalFieldOfView => { GRP => "0022", ELEM => "000C", VR => "FL" }, |
|
4343
|
|
|
|
|
|
|
PupilDilated => { GRP => "0022", ELEM => "000D", VR => "CS" }, |
|
4344
|
|
|
|
|
|
|
DegreeOfDilation => { GRP => "0022", ELEM => "000E", VR => "FL" }, |
|
4345
|
|
|
|
|
|
|
StereoBaselineAngle => { GRP => "0022", ELEM => "0010", VR => "FL" }, |
|
4346
|
|
|
|
|
|
|
StereoBaselineDisplacement => { GRP => "0022", ELEM => "0011", VR => "FL" }, |
|
4347
|
|
|
|
|
|
|
StereoHorizontalPixelOffset => { GRP => "0022", ELEM => "0012", VR => "FL" }, |
|
4348
|
|
|
|
|
|
|
StereoVerticalPixelOffset => { GRP => "0022", ELEM => "0013", VR => "FL" }, |
|
4349
|
|
|
|
|
|
|
StereoRotation => { GRP => "0022", ELEM => "0014", VR => "FL" }, |
|
4350
|
|
|
|
|
|
|
AcquisitionDeviceTypeCodeSequence => { GRP => "0022", ELEM => "0015", VR => "SQ" }, |
|
4351
|
|
|
|
|
|
|
IlluminationTypeCodeSequence => { GRP => "0022", ELEM => "0016", VR => "SQ" }, |
|
4352
|
|
|
|
|
|
|
LightPathFilterTypeStackCodeSequence => { GRP => "0022", ELEM => "0017", VR => "SQ" }, |
|
4353
|
|
|
|
|
|
|
ImagePathFilterTypeStackCodeSequence => { GRP => "0022", ELEM => "0018", VR => "SQ" }, |
|
4354
|
|
|
|
|
|
|
LensesCodeSequence => { GRP => "0022", ELEM => "0019", VR => "SQ" }, |
|
4355
|
|
|
|
|
|
|
ChannelDescriptionCodeSequence => { GRP => "0022", ELEM => "001A", VR => "SQ" }, |
|
4356
|
|
|
|
|
|
|
RefractiveStateSequence => { GRP => "0022", ELEM => "001B", VR => "SQ" }, |
|
4357
|
|
|
|
|
|
|
MydriaticAgentCodeSequence => { GRP => "0022", ELEM => "001C", VR => "SQ" }, |
|
4358
|
|
|
|
|
|
|
RelativeImagePositionCodeSequence => { GRP => "0022", ELEM => "001D", VR => "SQ" }, |
|
4359
|
|
|
|
|
|
|
StereoPairsSequence => { GRP => "0022", ELEM => "0020", VR => "SQ" }, |
|
4360
|
|
|
|
|
|
|
LeftImageSequence => { GRP => "0022", ELEM => "0021", VR => "SQ" }, |
|
4361
|
|
|
|
|
|
|
RightImageSequence => { GRP => "0022", ELEM => "0022", VR => "SQ" }, |
|
4362
|
|
|
|
|
|
|
AxialLengthOfTheEye => { GRP => "0022", ELEM => "0030", VR => "FL" }, |
|
4363
|
|
|
|
|
|
|
OphthalmicFrameLocationSequence => { GRP => "0022", ELEM => "0031", VR => "SQ" }, |
|
4364
|
|
|
|
|
|
|
ReferenceCoordinates => { GRP => "0022", ELEM => "0032", VR => "FL" }, |
|
4365
|
|
|
|
|
|
|
DepthSpatialResolution => { GRP => "0022", ELEM => "0035", VR => "FL" }, |
|
4366
|
|
|
|
|
|
|
MaximumDepthDistortion => { GRP => "0022", ELEM => "0036", VR => "FL" }, |
|
4367
|
|
|
|
|
|
|
AlongScanSpatialResolution => { GRP => "0022", ELEM => "0037", VR => "FL" }, |
|
4368
|
|
|
|
|
|
|
MaximumAlongScanDistortion => { GRP => "0022", ELEM => "0038", VR => "FL" }, |
|
4369
|
|
|
|
|
|
|
OphthalmicImageOrientation => { GRP => "0022", ELEM => "0039", VR => "CS" }, |
|
4370
|
|
|
|
|
|
|
DepthOfTransverseImage => { GRP => "0022", ELEM => "0041", VR => "FL" }, |
|
4371
|
|
|
|
|
|
|
MydriaticAgentConcentrationUnitsSequence => { GRP => "0022", ELEM => "0042", VR => "SQ" }, |
|
4372
|
|
|
|
|
|
|
AcrossScanSpatialResolution => { GRP => "0022", ELEM => "0048", VR => "FL" }, |
|
4373
|
|
|
|
|
|
|
MaximumAcrossScanDistortion => { GRP => "0022", ELEM => "0049", VR => "FL" }, |
|
4374
|
|
|
|
|
|
|
MydriaticAgentConcentration => { GRP => "0022", ELEM => "004E", VR => "DS" }, |
|
4375
|
|
|
|
|
|
|
IlluminationWaveLength => { GRP => "0022", ELEM => "0055", VR => "FL" }, |
|
4376
|
|
|
|
|
|
|
IlluminationPower => { GRP => "0022", ELEM => "0056", VR => "FL" }, |
|
4377
|
|
|
|
|
|
|
IlluminationBandwidth => { GRP => "0022", ELEM => "0057", VR => "FL" }, |
|
4378
|
|
|
|
|
|
|
MydriaticAgentSequence => { GRP => "0022", ELEM => "0058", VR => "SQ" }, |
|
4379
|
|
|
|
|
|
|
SamplesPerPixel => { GRP => "0028", ELEM => "0002", VR => "US" }, |
|
4380
|
|
|
|
|
|
|
SamplesPerPixelUsed => { GRP => "0028", ELEM => "0003", VR => "US" }, |
|
4381
|
|
|
|
|
|
|
PhotometricInterpretation => { GRP => "0028", ELEM => "0004", VR => "CS" }, |
|
4382
|
|
|
|
|
|
|
PlanarConfiguration => { GRP => "0028", ELEM => "0006", VR => "US" }, |
|
4383
|
|
|
|
|
|
|
NumberOfFrames => { GRP => "0028", ELEM => "0008", VR => "IS" }, |
|
4384
|
|
|
|
|
|
|
FrameIncrementPointer => { GRP => "0028", ELEM => "0009", VR => "AT" }, |
|
4385
|
|
|
|
|
|
|
FrameDimensionPointer => { GRP => "0028", ELEM => "000A", VR => "AT" }, |
|
4386
|
|
|
|
|
|
|
Rows => { GRP => "0028", ELEM => "0010", VR => "US" }, |
|
4387
|
|
|
|
|
|
|
Columns => { GRP => "0028", ELEM => "0011", VR => "US" }, |
|
4388
|
|
|
|
|
|
|
UltrasoundColorDataPresent => { GRP => "0028", ELEM => "0014", VR => "US" }, |
|
4389
|
|
|
|
|
|
|
PixelSpacing => { GRP => "0028", ELEM => "0030", VR => "DS" }, |
|
4390
|
|
|
|
|
|
|
ZoomFactor => { GRP => "0028", ELEM => "0031", VR => "DS" }, |
|
4391
|
|
|
|
|
|
|
ZoomCenter => { GRP => "0028", ELEM => "0032", VR => "DS" }, |
|
4392
|
|
|
|
|
|
|
PixelAspectRatio => { GRP => "0028", ELEM => "0034", VR => "IS" }, |
|
4393
|
|
|
|
|
|
|
CorrectedImage => { GRP => "0028", ELEM => "0051", VR => "CS" }, |
|
4394
|
|
|
|
|
|
|
BitsAllocated => { GRP => "0028", ELEM => "0100", VR => "US" }, |
|
4395
|
|
|
|
|
|
|
BitsStored => { GRP => "0028", ELEM => "0101", VR => "US" }, |
|
4396
|
|
|
|
|
|
|
HighBit => { GRP => "0028", ELEM => "0102", VR => "US" }, |
|
4397
|
|
|
|
|
|
|
PixelRepresentation => { GRP => "0028", ELEM => "0103", VR => "US" }, |
|
4398
|
|
|
|
|
|
|
SmallestImagePixelValue => { GRP => "0028", ELEM => "0106", VR => "xs" }, |
|
4399
|
|
|
|
|
|
|
LargestImagePixelValue => { GRP => "0028", ELEM => "0107", VR => "xs" }, |
|
4400
|
|
|
|
|
|
|
SmallestPixelValueInSeries => { GRP => "0028", ELEM => "0108", VR => "xs" }, |
|
4401
|
|
|
|
|
|
|
LargestPixelValueInSeries => { GRP => "0028", ELEM => "0109", VR => "xs" }, |
|
4402
|
|
|
|
|
|
|
PixelPaddingValue => { GRP => "0028", ELEM => "0120", VR => "xs" }, |
|
4403
|
|
|
|
|
|
|
PixelPaddingRangeLimit => { GRP => "0028", ELEM => "0121", VR => "xs" }, |
|
4404
|
|
|
|
|
|
|
QualityControlImage => { GRP => "0028", ELEM => "0300", VR => "CS" }, |
|
4405
|
|
|
|
|
|
|
BurnedInAnnotation => { GRP => "0028", ELEM => "0301", VR => "CS" }, |
|
4406
|
|
|
|
|
|
|
PixelSpacingCalibrationType => { GRP => "0028", ELEM => "0A02", VR => "CS" }, |
|
4407
|
|
|
|
|
|
|
PixelSpacingCalibrationDescription => { GRP => "0028", ELEM => "0A04", VR => "LO" }, |
|
4408
|
|
|
|
|
|
|
PixelIntensityRelationship => { GRP => "0028", ELEM => "1040", VR => "CS" }, |
|
4409
|
|
|
|
|
|
|
PixelIntensityRelationshipSign => { GRP => "0028", ELEM => "1041", VR => "SS" }, |
|
4410
|
|
|
|
|
|
|
WindowCenter => { GRP => "0028", ELEM => "1050", VR => "DS" }, |
|
4411
|
|
|
|
|
|
|
WindowWidth => { GRP => "0028", ELEM => "1051", VR => "DS" }, |
|
4412
|
|
|
|
|
|
|
RescaleIntercept => { GRP => "0028", ELEM => "1052", VR => "DS" }, |
|
4413
|
|
|
|
|
|
|
RescaleSlope => { GRP => "0028", ELEM => "1053", VR => "DS" }, |
|
4414
|
|
|
|
|
|
|
RescaleType => { GRP => "0028", ELEM => "1054", VR => "LO" }, |
|
4415
|
|
|
|
|
|
|
WindowCenterWidthExplanation => { GRP => "0028", ELEM => "1055", VR => "LO" }, |
|
4416
|
|
|
|
|
|
|
VOILUTFunction => { GRP => "0028", ELEM => "1056", VR => "CS" }, |
|
4417
|
|
|
|
|
|
|
RecommendedViewingMode => { GRP => "0028", ELEM => "1090", VR => "CS" }, |
|
4418
|
|
|
|
|
|
|
RedPaletteColorLookupTableDescriptor => { GRP => "0028", ELEM => "1101", VR => "xs" }, |
|
4419
|
|
|
|
|
|
|
GreenPaletteColorLookupTableDescriptor => { GRP => "0028", ELEM => "1102", VR => "xs" }, |
|
4420
|
|
|
|
|
|
|
BluePaletteColorLookupTableDescriptor => { GRP => "0028", ELEM => "1103", VR => "xs" }, |
|
4421
|
|
|
|
|
|
|
PaletteColorLookupTableUID => { GRP => "0028", ELEM => "1199", VR => "UI" }, |
|
4422
|
|
|
|
|
|
|
RedPaletteColorLookupTableData => { GRP => "0028", ELEM => "1201", VR => "OW" }, |
|
4423
|
|
|
|
|
|
|
GreenPaletteColorLookupTableData => { GRP => "0028", ELEM => "1202", VR => "OW" }, |
|
4424
|
|
|
|
|
|
|
BluePaletteColorLookupTableData => { GRP => "0028", ELEM => "1203", VR => "OW" }, |
|
4425
|
|
|
|
|
|
|
SegmentedRedPaletteColorLookupTableData => { GRP => "0028", ELEM => "1221", VR => "OW" }, |
|
4426
|
|
|
|
|
|
|
SegmentedGreenPaletteColorLookupTableData => { GRP => "0028", ELEM => "1222", VR => "OW" }, |
|
4427
|
|
|
|
|
|
|
SegmentedBluePaletteColorLookupTableData => { GRP => "0028", ELEM => "1223", VR => "OW" }, |
|
4428
|
|
|
|
|
|
|
ImplantPresent => { GRP => "0028", ELEM => "1300", VR => "CS" }, |
|
4429
|
|
|
|
|
|
|
PartialView => { GRP => "0028", ELEM => "1350", VR => "CS" }, |
|
4430
|
|
|
|
|
|
|
PartialViewDescription => { GRP => "0028", ELEM => "1351", VR => "ST" }, |
|
4431
|
|
|
|
|
|
|
PartialViewCodeSequence => { GRP => "0028", ELEM => "1352", VR => "SQ" }, |
|
4432
|
|
|
|
|
|
|
SpatialLocationsPreserved => { GRP => "0028", ELEM => "135A", VR => "CS" }, |
|
4433
|
|
|
|
|
|
|
ICCProfile => { GRP => "0028", ELEM => "2000", VR => "OB" }, |
|
4434
|
|
|
|
|
|
|
LossyImageCompression => { GRP => "0028", ELEM => "2110", VR => "CS" }, |
|
4435
|
|
|
|
|
|
|
LossyImageCompressionRatio => { GRP => "0028", ELEM => "2112", VR => "DS" }, |
|
4436
|
|
|
|
|
|
|
LossyImageCompressionMethod => { GRP => "0028", ELEM => "2114", VR => "CS" }, |
|
4437
|
|
|
|
|
|
|
ModalityLUTSequence => { GRP => "0028", ELEM => "3000", VR => "SQ" }, |
|
4438
|
|
|
|
|
|
|
LUTDescriptor => { GRP => "0028", ELEM => "3002", VR => "xs" }, |
|
4439
|
|
|
|
|
|
|
LUTExplanation => { GRP => "0028", ELEM => "3003", VR => "LO" }, |
|
4440
|
|
|
|
|
|
|
ModalityLUTType => { GRP => "0028", ELEM => "3004", VR => "LO" }, |
|
4441
|
|
|
|
|
|
|
LUTData => { GRP => "0028", ELEM => "3006", VR => "lt" }, |
|
4442
|
|
|
|
|
|
|
VOILUTSequence => { GRP => "0028", ELEM => "3010", VR => "SQ" }, |
|
4443
|
|
|
|
|
|
|
SoftcopyVOILUTSequence => { GRP => "0028", ELEM => "3110", VR => "SQ" }, |
|
4444
|
|
|
|
|
|
|
RepresentativeFrameNumber => { GRP => "0028", ELEM => "6010", VR => "US" }, |
|
4445
|
|
|
|
|
|
|
FrameNumbersOfInterestFOI => { GRP => "0028", ELEM => "6020", VR => "US" }, |
|
4446
|
|
|
|
|
|
|
FramesOfInterestDescription => { GRP => "0028", ELEM => "6022", VR => "LO" }, |
|
4447
|
|
|
|
|
|
|
FrameOfInterestType => { GRP => "0028", ELEM => "6023", VR => "CS" }, |
|
4448
|
|
|
|
|
|
|
RWavePointer => { GRP => "0028", ELEM => "6040", VR => "US" }, |
|
4449
|
|
|
|
|
|
|
MaskSubtractionSequence => { GRP => "0028", ELEM => "6100", VR => "SQ" }, |
|
4450
|
|
|
|
|
|
|
MaskOperation => { GRP => "0028", ELEM => "6101", VR => "CS" }, |
|
4451
|
|
|
|
|
|
|
ApplicableFrameRange => { GRP => "0028", ELEM => "6102", VR => "US" }, |
|
4452
|
|
|
|
|
|
|
MaskFrameNumbers => { GRP => "0028", ELEM => "6110", VR => "US" }, |
|
4453
|
|
|
|
|
|
|
ContrastFrameAveraging => { GRP => "0028", ELEM => "6112", VR => "US" }, |
|
4454
|
|
|
|
|
|
|
MaskSubPixelShift => { GRP => "0028", ELEM => "6114", VR => "FL" }, |
|
4455
|
|
|
|
|
|
|
TIDOffset => { GRP => "0028", ELEM => "6120", VR => "SS" }, |
|
4456
|
|
|
|
|
|
|
MaskOperationExplanation => { GRP => "0028", ELEM => "6190", VR => "ST" }, |
|
4457
|
|
|
|
|
|
|
PixelDataProviderURL => { GRP => "0028", ELEM => "7FE0", VR => "UT" }, |
|
4458
|
|
|
|
|
|
|
DataPointRows => { GRP => "0028", ELEM => "9001", VR => "UL" }, |
|
4459
|
|
|
|
|
|
|
DataPointColumns => { GRP => "0028", ELEM => "9002", VR => "UL" }, |
|
4460
|
|
|
|
|
|
|
SignalDomainColumns => { GRP => "0028", ELEM => "9003", VR => "CS" }, |
|
4461
|
|
|
|
|
|
|
DataRepresentation => { GRP => "0028", ELEM => "9108", VR => "CS" }, |
|
4462
|
|
|
|
|
|
|
PixelMeasuresSequence => { GRP => "0028", ELEM => "9110", VR => "SQ" }, |
|
4463
|
|
|
|
|
|
|
FrameVOILUTSequence => { GRP => "0028", ELEM => "9132", VR => "SQ" }, |
|
4464
|
|
|
|
|
|
|
PixelValueTransformationSequence => { GRP => "0028", ELEM => "9145", VR => "SQ" }, |
|
4465
|
|
|
|
|
|
|
SignalDomainRows => { GRP => "0028", ELEM => "9235", VR => "CS" }, |
|
4466
|
|
|
|
|
|
|
DisplayFilterPercentage => { GRP => "0028", ELEM => "9411", VR => "FL" }, |
|
4467
|
|
|
|
|
|
|
FramePixelShiftSequence => { GRP => "0028", ELEM => "9415", VR => "SQ" }, |
|
4468
|
|
|
|
|
|
|
SubtractionItemID => { GRP => "0028", ELEM => "9416", VR => "US" }, |
|
4469
|
|
|
|
|
|
|
PixelIntensityRelationshipLUTSequence => { GRP => "0028", ELEM => "9422", VR => "SQ" }, |
|
4470
|
|
|
|
|
|
|
FramePixelDataPropertiesSequence => { GRP => "0028", ELEM => "9443", VR => "SQ" }, |
|
4471
|
|
|
|
|
|
|
GeometricalProperties => { GRP => "0028", ELEM => "9444", VR => "CS" }, |
|
4472
|
|
|
|
|
|
|
GeometricMaximumDistortion => { GRP => "0028", ELEM => "9445", VR => "FL" }, |
|
4473
|
|
|
|
|
|
|
ImageProcessingApplied => { GRP => "0028", ELEM => "9446", VR => "CS" }, |
|
4474
|
|
|
|
|
|
|
MaskSelectionMode => { GRP => "0028", ELEM => "9454", VR => "CS" }, |
|
4475
|
|
|
|
|
|
|
LUTFunction => { GRP => "0028", ELEM => "9474", VR => "CS" }, |
|
4476
|
|
|
|
|
|
|
ImageToEquipmentMappingMatrix => { GRP => "0028", ELEM => "9520", VR => "DS" }, |
|
4477
|
|
|
|
|
|
|
EquipmentCoordinateSystemIdentification => { GRP => "0028", ELEM => "9537", VR => "CS" }, |
|
4478
|
|
|
|
|
|
|
RequestingPhysicianIdentificationSequence => { GRP => "0032", ELEM => "1031", VR => "SQ" }, |
|
4479
|
|
|
|
|
|
|
RequestingPhysician => { GRP => "0032", ELEM => "1032", VR => "PN" }, |
|
4480
|
|
|
|
|
|
|
RequestingService => { GRP => "0032", ELEM => "1033", VR => "LO" }, |
|
4481
|
|
|
|
|
|
|
RequestedProcedureDescription => { GRP => "0032", ELEM => "1060", VR => "LO" }, |
|
4482
|
|
|
|
|
|
|
RequestedProcedureCodeSequence => { GRP => "0032", ELEM => "1064", VR => "SQ" }, |
|
4483
|
|
|
|
|
|
|
RequestedContrastAgent => { GRP => "0032", ELEM => "1070", VR => "LO" }, |
|
4484
|
|
|
|
|
|
|
ReferencedPatientAliasSequence => { GRP => "0038", ELEM => "0004", VR => "SQ" }, |
|
4485
|
|
|
|
|
|
|
VisitStatusID => { GRP => "0038", ELEM => "0008", VR => "CS" }, |
|
4486
|
|
|
|
|
|
|
AdmissionID => { GRP => "0038", ELEM => "0010", VR => "LO" }, |
|
4487
|
|
|
|
|
|
|
IssuerOfAdmissionID => { GRP => "0038", ELEM => "0011", VR => "LO" }, |
|
4488
|
|
|
|
|
|
|
RouteOfAdmissions => { GRP => "0038", ELEM => "0016", VR => "LO" }, |
|
4489
|
|
|
|
|
|
|
AdmittingDate => { GRP => "0038", ELEM => "0020", VR => "DA" }, |
|
4490
|
|
|
|
|
|
|
AdmittingTime => { GRP => "0038", ELEM => "0021", VR => "TM" }, |
|
4491
|
|
|
|
|
|
|
SpecialNeeds => { GRP => "0038", ELEM => "0050", VR => "LO" }, |
|
4492
|
|
|
|
|
|
|
ServiceEpisodeID => { GRP => "0038", ELEM => "0060", VR => "LO" }, |
|
4493
|
|
|
|
|
|
|
IssuerOfServiceEpisodeID => { GRP => "0038", ELEM => "0061", VR => "LO" }, |
|
4494
|
|
|
|
|
|
|
ServiceEpisodeDescription => { GRP => "0038", ELEM => "0062", VR => "LO" }, |
|
4495
|
|
|
|
|
|
|
PertinentDocumentsSequence => { GRP => "0038", ELEM => "0100", VR => "SQ" }, |
|
4496
|
|
|
|
|
|
|
CurrentPatientLocation => { GRP => "0038", ELEM => "0300", VR => "LO" }, |
|
4497
|
|
|
|
|
|
|
PatientsInstitutionResidence => { GRP => "0038", ELEM => "0400", VR => "LO" }, |
|
4498
|
|
|
|
|
|
|
PatientState => { GRP => "0038", ELEM => "0500", VR => "LO" }, |
|
4499
|
|
|
|
|
|
|
PatientClinicalTrialParticipationSequence => { GRP => "0038", ELEM => "0502", VR => "SQ" }, |
|
4500
|
|
|
|
|
|
|
VisitComments => { GRP => "0038", ELEM => "4000", VR => "LT" }, |
|
4501
|
|
|
|
|
|
|
WaveformOriginality => { GRP => "003A", ELEM => "0004", VR => "CS" }, |
|
4502
|
|
|
|
|
|
|
NumberOfWaveformChannels => { GRP => "003A", ELEM => "0005", VR => "US" }, |
|
4503
|
|
|
|
|
|
|
NumberOfWaveformSamples => { GRP => "003A", ELEM => "0010", VR => "UL" }, |
|
4504
|
|
|
|
|
|
|
SamplingFrequency => { GRP => "003A", ELEM => "001A", VR => "DS" }, |
|
4505
|
|
|
|
|
|
|
MultiplexGroupLabel => { GRP => "003A", ELEM => "0020", VR => "SH" }, |
|
4506
|
|
|
|
|
|
|
ChannelDefinitionSequence => { GRP => "003A", ELEM => "0200", VR => "SQ" }, |
|
4507
|
|
|
|
|
|
|
WaveformChannelNumber => { GRP => "003A", ELEM => "0202", VR => "IS" }, |
|
4508
|
|
|
|
|
|
|
ChannelLabel => { GRP => "003A", ELEM => "0203", VR => "SH" }, |
|
4509
|
|
|
|
|
|
|
ChannelStatus => { GRP => "003A", ELEM => "0205", VR => "CS" }, |
|
4510
|
|
|
|
|
|
|
ChannelSourceSequence => { GRP => "003A", ELEM => "0208", VR => "SQ" }, |
|
4511
|
|
|
|
|
|
|
ChannelSourceModifiersSequence => { GRP => "003A", ELEM => "0209", VR => "SQ" }, |
|
4512
|
|
|
|
|
|
|
SourceWaveformSequence => { GRP => "003A", ELEM => "020A", VR => "SQ" }, |
|
4513
|
|
|
|
|
|
|
ChannelDerivationDescription => { GRP => "003A", ELEM => "020C", VR => "LO" }, |
|
4514
|
|
|
|
|
|
|
ChannelSensitivity => { GRP => "003A", ELEM => "0210", VR => "DS" }, |
|
4515
|
|
|
|
|
|
|
ChannelSensitivityUnitsSequence => { GRP => "003A", ELEM => "0211", VR => "SQ" }, |
|
4516
|
|
|
|
|
|
|
ChannelSensitivityCorrectionFactor => { GRP => "003A", ELEM => "0212", VR => "DS" }, |
|
4517
|
|
|
|
|
|
|
ChannelBaseline => { GRP => "003A", ELEM => "0213", VR => "DS" }, |
|
4518
|
|
|
|
|
|
|
ChannelTimeSkew => { GRP => "003A", ELEM => "0214", VR => "DS" }, |
|
4519
|
|
|
|
|
|
|
ChannelSampleSkew => { GRP => "003A", ELEM => "0215", VR => "DS" }, |
|
4520
|
|
|
|
|
|
|
ChannelOffset => { GRP => "003A", ELEM => "0218", VR => "DS" }, |
|
4521
|
|
|
|
|
|
|
WaveformBitsStored => { GRP => "003A", ELEM => "021A", VR => "US" }, |
|
4522
|
|
|
|
|
|
|
FilterLowFrequency => { GRP => "003A", ELEM => "0220", VR => "DS" }, |
|
4523
|
|
|
|
|
|
|
FilterHighFrequency => { GRP => "003A", ELEM => "0221", VR => "DS" }, |
|
4524
|
|
|
|
|
|
|
NotchFilterFrequency => { GRP => "003A", ELEM => "0222", VR => "DS" }, |
|
4525
|
|
|
|
|
|
|
NotchFilterBandwidth => { GRP => "003A", ELEM => "0223", VR => "DS" }, |
|
4526
|
|
|
|
|
|
|
WaveformDataDisplayScale => { GRP => "003A", ELEM => "0230", VR => "FL" }, |
|
4527
|
|
|
|
|
|
|
WaveformDisplayBackgroundCIELabValue => { GRP => "003A", ELEM => "0231", VR => "US" }, |
|
4528
|
|
|
|
|
|
|
WaveformPresentationGroupSequence => { GRP => "003A", ELEM => "0240", VR => "SQ" }, |
|
4529
|
|
|
|
|
|
|
PresentationGroupNumber => { GRP => "003A", ELEM => "0241", VR => "US" }, |
|
4530
|
|
|
|
|
|
|
ChannelDisplaySequence => { GRP => "003A", ELEM => "0242", VR => "SQ" }, |
|
4531
|
|
|
|
|
|
|
ChannelRecommendedDisplayCIELabValue => { GRP => "003A", ELEM => "0244", VR => "US" }, |
|
4532
|
|
|
|
|
|
|
ChannelPosition => { GRP => "003A", ELEM => "0245", VR => "FL" }, |
|
4533
|
|
|
|
|
|
|
DisplayShadingFlag => { GRP => "003A", ELEM => "0246", VR => "CS" }, |
|
4534
|
|
|
|
|
|
|
FractionalChannelDisplayScale => { GRP => "003A", ELEM => "0247", VR => "FL" }, |
|
4535
|
|
|
|
|
|
|
AbsoluteChannelDisplayScale => { GRP => "003A", ELEM => "0248", VR => "FL" }, |
|
4536
|
|
|
|
|
|
|
MultiplexedAudioChannelsDescriptionCodeSequence => { GRP => "003A", ELEM => "0300", VR => "SQ" }, |
|
4537
|
|
|
|
|
|
|
ChannelIdentificationCode => { GRP => "003A", ELEM => "0301", VR => "IS" }, |
|
4538
|
|
|
|
|
|
|
ChannelMode => { GRP => "003A", ELEM => "0302", VR => "CS" }, |
|
4539
|
|
|
|
|
|
|
ScheduledStationAETitle => { GRP => "0040", ELEM => "0001", VR => "AE" }, |
|
4540
|
|
|
|
|
|
|
ScheduledProcedureStepStartDate => { GRP => "0040", ELEM => "0002", VR => "DA" }, |
|
4541
|
|
|
|
|
|
|
ScheduledProcedureStepStartTime => { GRP => "0040", ELEM => "0003", VR => "TM" }, |
|
4542
|
|
|
|
|
|
|
ScheduledProcedureStepEndDate => { GRP => "0040", ELEM => "0004", VR => "DA" }, |
|
4543
|
|
|
|
|
|
|
ScheduledProcedureStepEndTime => { GRP => "0040", ELEM => "0005", VR => "TM" }, |
|
4544
|
|
|
|
|
|
|
ScheduledPerformingPhysiciansName => { GRP => "0040", ELEM => "0006", VR => "PN" }, |
|
4545
|
|
|
|
|
|
|
ScheduledProcedureStepDescription => { GRP => "0040", ELEM => "0007", VR => "LO" }, |
|
4546
|
|
|
|
|
|
|
ScheduledProtocolCodeSequence => { GRP => "0040", ELEM => "0008", VR => "SQ" }, |
|
4547
|
|
|
|
|
|
|
ScheduledProcedureStepID => { GRP => "0040", ELEM => "0009", VR => "SH" }, |
|
4548
|
|
|
|
|
|
|
StageCodeSequence => { GRP => "0040", ELEM => "000A", VR => "SQ" }, |
|
4549
|
|
|
|
|
|
|
ScheduledPerformingPhysicianIdentificationSequence => { GRP => "0040", ELEM => "000B", VR => "SQ" }, |
|
4550
|
|
|
|
|
|
|
ScheduledStationName => { GRP => "0040", ELEM => "0010", VR => "SH" }, |
|
4551
|
|
|
|
|
|
|
ScheduledProcedureStepLocation => { GRP => "0040", ELEM => "0011", VR => "SH" }, |
|
4552
|
|
|
|
|
|
|
PreMedication => { GRP => "0040", ELEM => "0012", VR => "LO" }, |
|
4553
|
|
|
|
|
|
|
ScheduledProcedureStepStatus => { GRP => "0040", ELEM => "0020", VR => "CS" }, |
|
4554
|
|
|
|
|
|
|
ScheduledProcedureStepSequence => { GRP => "0040", ELEM => "0100", VR => "SQ" }, |
|
4555
|
|
|
|
|
|
|
ReferencedNonImageCompositeSOPInstanceSequence => { GRP => "0040", ELEM => "0220", VR => "SQ" }, |
|
4556
|
|
|
|
|
|
|
PerformedStationAETitle => { GRP => "0040", ELEM => "0241", VR => "AE" }, |
|
4557
|
|
|
|
|
|
|
PerformedStationName => { GRP => "0040", ELEM => "0242", VR => "SH" }, |
|
4558
|
|
|
|
|
|
|
PerformedLocation => { GRP => "0040", ELEM => "0243", VR => "SH" }, |
|
4559
|
|
|
|
|
|
|
PerformedProcedureStepStartDate => { GRP => "0040", ELEM => "0244", VR => "DA" }, |
|
4560
|
|
|
|
|
|
|
PerformedProcedureStepStartTime => { GRP => "0040", ELEM => "0245", VR => "TM" }, |
|
4561
|
|
|
|
|
|
|
PerformedProcedureStepEndDate => { GRP => "0040", ELEM => "0250", VR => "DA" }, |
|
4562
|
|
|
|
|
|
|
PerformedProcedureStepEndTime => { GRP => "0040", ELEM => "0251", VR => "TM" }, |
|
4563
|
|
|
|
|
|
|
PerformedProcedureStepStatus => { GRP => "0040", ELEM => "0252", VR => "CS" }, |
|
4564
|
|
|
|
|
|
|
PerformedProcedureStepID => { GRP => "0040", ELEM => "0253", VR => "SH" }, |
|
4565
|
|
|
|
|
|
|
PerformedProcedureStepDescription => { GRP => "0040", ELEM => "0254", VR => "LO" }, |
|
4566
|
|
|
|
|
|
|
PerformedProcedureTypeDescription => { GRP => "0040", ELEM => "0255", VR => "LO" }, |
|
4567
|
|
|
|
|
|
|
PerformedProtocolCodeSequence => { GRP => "0040", ELEM => "0260", VR => "SQ" }, |
|
4568
|
|
|
|
|
|
|
ScheduledStepAttributesSequence => { GRP => "0040", ELEM => "0270", VR => "SQ" }, |
|
4569
|
|
|
|
|
|
|
RequestAttributesSequence => { GRP => "0040", ELEM => "0275", VR => "SQ" }, |
|
4570
|
|
|
|
|
|
|
CommentsOnThePerformedProcedureStep => { GRP => "0040", ELEM => "0280", VR => "ST" }, |
|
4571
|
|
|
|
|
|
|
PerformedProcedureStepDiscontinuationReasonCodeSequence => { GRP => "0040", ELEM => "0281", VR => "SQ" }, |
|
4572
|
|
|
|
|
|
|
QuantitySequence => { GRP => "0040", ELEM => "0293", VR => "SQ" }, |
|
4573
|
|
|
|
|
|
|
Quantity => { GRP => "0040", ELEM => "0294", VR => "DS" }, |
|
4574
|
|
|
|
|
|
|
MeasuringUnitsSequence => { GRP => "0040", ELEM => "0295", VR => "SQ" }, |
|
4575
|
|
|
|
|
|
|
BillingItemSequence => { GRP => "0040", ELEM => "0296", VR => "SQ" }, |
|
4576
|
|
|
|
|
|
|
TotalTimeOfFluoroscopy => { GRP => "0040", ELEM => "0300", VR => "US" }, |
|
4577
|
|
|
|
|
|
|
TotalNumberOfExposures => { GRP => "0040", ELEM => "0301", VR => "US" }, |
|
4578
|
|
|
|
|
|
|
EntranceDose => { GRP => "0040", ELEM => "0302", VR => "US" }, |
|
4579
|
|
|
|
|
|
|
ExposedArea => { GRP => "0040", ELEM => "0303", VR => "US" }, |
|
4580
|
|
|
|
|
|
|
DistanceSourceToEntrance => { GRP => "0040", ELEM => "0306", VR => "DS" }, |
|
4581
|
|
|
|
|
|
|
ExposureDoseSequence => { GRP => "0040", ELEM => "030E", VR => "SQ" }, |
|
4582
|
|
|
|
|
|
|
CommentsOnRadiationDose => { GRP => "0040", ELEM => "0310", VR => "ST" }, |
|
4583
|
|
|
|
|
|
|
XRayOutput => { GRP => "0040", ELEM => "0312", VR => "DS" }, |
|
4584
|
|
|
|
|
|
|
HalfValueLayer => { GRP => "0040", ELEM => "0314", VR => "DS" }, |
|
4585
|
|
|
|
|
|
|
OrganDose => { GRP => "0040", ELEM => "0316", VR => "DS" }, |
|
4586
|
|
|
|
|
|
|
OrganExposed => { GRP => "0040", ELEM => "0318", VR => "CS" }, |
|
4587
|
|
|
|
|
|
|
BillingProcedureStepSequence => { GRP => "0040", ELEM => "0320", VR => "SQ" }, |
|
4588
|
|
|
|
|
|
|
FilmConsumptionSequence => { GRP => "0040", ELEM => "0321", VR => "SQ" }, |
|
4589
|
|
|
|
|
|
|
BillingSuppliesAndDevicesSequence => { GRP => "0040", ELEM => "0324", VR => "SQ" }, |
|
4590
|
|
|
|
|
|
|
PerformedSeriesSequence => { GRP => "0040", ELEM => "0340", VR => "SQ" }, |
|
4591
|
|
|
|
|
|
|
CommentsOnTheScheduledProcedureStep => { GRP => "0040", ELEM => "0400", VR => "LT" }, |
|
4592
|
|
|
|
|
|
|
ProtocolContextSequence => { GRP => "0040", ELEM => "0440", VR => "SQ" }, |
|
4593
|
|
|
|
|
|
|
ContentItemModifierSequence => { GRP => "0040", ELEM => "0441", VR => "SQ" }, |
|
4594
|
|
|
|
|
|
|
SpecimenAccessionNumber => { GRP => "0040", ELEM => "050A", VR => "LO" }, |
|
4595
|
|
|
|
|
|
|
SpecimenSequence => { GRP => "0040", ELEM => "0550", VR => "SQ" }, |
|
4596
|
|
|
|
|
|
|
SpecimenIdentifier => { GRP => "0040", ELEM => "0551", VR => "LO" }, |
|
4597
|
|
|
|
|
|
|
AcquisitionContextSequence => { GRP => "0040", ELEM => "0555", VR => "SQ" }, |
|
4598
|
|
|
|
|
|
|
AcquisitionContextDescription => { GRP => "0040", ELEM => "0556", VR => "ST" }, |
|
4599
|
|
|
|
|
|
|
SpecimenTypeCodeSequence => { GRP => "0040", ELEM => "059A", VR => "SQ" }, |
|
4600
|
|
|
|
|
|
|
SlideIdentifier => { GRP => "0040", ELEM => "06FA", VR => "LO" }, |
|
4601
|
|
|
|
|
|
|
ImageCenterPointCoordinatesSequence => { GRP => "0040", ELEM => "071A", VR => "SQ" }, |
|
4602
|
|
|
|
|
|
|
XOffsetInSlideCoordinateSystem => { GRP => "0040", ELEM => "072A", VR => "DS" }, |
|
4603
|
|
|
|
|
|
|
YOffsetInSlideCoordinateSystem => { GRP => "0040", ELEM => "073A", VR => "DS" }, |
|
4604
|
|
|
|
|
|
|
ZOffsetInSlideCoordinateSystem => { GRP => "0040", ELEM => "074A", VR => "DS" }, |
|
4605
|
|
|
|
|
|
|
PixelSpacingSequence => { GRP => "0040", ELEM => "08D8", VR => "SQ" }, |
|
4606
|
|
|
|
|
|
|
CoordinateSystemAxisCodeSequence => { GRP => "0040", ELEM => "08DA", VR => "SQ" }, |
|
4607
|
|
|
|
|
|
|
MeasurementUnitsCodeSequence => { GRP => "0040", ELEM => "08EA", VR => "SQ" }, |
|
4608
|
|
|
|
|
|
|
RequestedProcedureID => { GRP => "0040", ELEM => "1001", VR => "SH" }, |
|
4609
|
|
|
|
|
|
|
ReasonForTheRequestedProcedure => { GRP => "0040", ELEM => "1002", VR => "LO" }, |
|
4610
|
|
|
|
|
|
|
RequestedProcedurePriority => { GRP => "0040", ELEM => "1003", VR => "SH" }, |
|
4611
|
|
|
|
|
|
|
PatientTransportArrangements => { GRP => "0040", ELEM => "1004", VR => "LO" }, |
|
4612
|
|
|
|
|
|
|
RequestedProcedureLocation => { GRP => "0040", ELEM => "1005", VR => "LO" }, |
|
4613
|
|
|
|
|
|
|
ConfidentialityCode => { GRP => "0040", ELEM => "1008", VR => "LO" }, |
|
4614
|
|
|
|
|
|
|
ReportingPriority => { GRP => "0040", ELEM => "1009", VR => "SH" }, |
|
4615
|
|
|
|
|
|
|
ReasonForRequestedProcedureCodeSequence => { GRP => "0040", ELEM => "100A", VR => "SQ" }, |
|
4616
|
|
|
|
|
|
|
NamesOfIntendedRecipientsOfResults => { GRP => "0040", ELEM => "1010", VR => "PN" }, |
|
4617
|
|
|
|
|
|
|
IntendedRecipientsOfResultsIdentificationSequence => { GRP => "0040", ELEM => "1011", VR => "SQ" }, |
|
4618
|
|
|
|
|
|
|
PersonIdentificationCodeSequence => { GRP => "0040", ELEM => "1101", VR => "SQ" }, |
|
4619
|
|
|
|
|
|
|
PersonsAddress => { GRP => "0040", ELEM => "1102", VR => "ST" }, |
|
4620
|
|
|
|
|
|
|
PersonsTelephoneNumbers => { GRP => "0040", ELEM => "1103", VR => "LO" }, |
|
4621
|
|
|
|
|
|
|
RequestedProcedureComments => { GRP => "0040", ELEM => "1400", VR => "LT" }, |
|
4622
|
|
|
|
|
|
|
IssueDateOfImagingServiceRequest => { GRP => "0040", ELEM => "2004", VR => "DA" }, |
|
4623
|
|
|
|
|
|
|
IssueTimeOfImagingServiceRequest => { GRP => "0040", ELEM => "2005", VR => "TM" }, |
|
4624
|
|
|
|
|
|
|
OrderEnteredBy => { GRP => "0040", ELEM => "2008", VR => "PN" }, |
|
4625
|
|
|
|
|
|
|
OrderEnterersLocation => { GRP => "0040", ELEM => "2009", VR => "SH" }, |
|
4626
|
|
|
|
|
|
|
OrderCallbackPhoneNumber => { GRP => "0040", ELEM => "2010", VR => "SH" }, |
|
4627
|
|
|
|
|
|
|
PlacerOrderNumberImagingServiceRequest => { GRP => "0040", ELEM => "2016", VR => "LO" }, |
|
4628
|
|
|
|
|
|
|
FillerOrderNumberImagingServiceRequest => { GRP => "0040", ELEM => "2017", VR => "LO" }, |
|
4629
|
|
|
|
|
|
|
ImagingServiceRequestComments => { GRP => "0040", ELEM => "2400", VR => "LT" }, |
|
4630
|
|
|
|
|
|
|
ConfidentialityConstraintOnPatientDataDescription => { GRP => "0040", ELEM => "3001", VR => "LO" }, |
|
4631
|
|
|
|
|
|
|
GeneralPurposeScheduledProcedureStepStatus => { GRP => "0040", ELEM => "4001", VR => "CS" }, |
|
4632
|
|
|
|
|
|
|
GeneralPurposePerformedProcedureStepStatus => { GRP => "0040", ELEM => "4002", VR => "CS" }, |
|
4633
|
|
|
|
|
|
|
GeneralPurposeScheduledProcedureStepPriority => { GRP => "0040", ELEM => "4003", VR => "CS" }, |
|
4634
|
|
|
|
|
|
|
ScheduledProcessingApplicationsCodeSequence => { GRP => "0040", ELEM => "4004", VR => "SQ" }, |
|
4635
|
|
|
|
|
|
|
ScheduledProcedureStepStartDateAndTime => { GRP => "0040", ELEM => "4005", VR => "DT" }, |
|
4636
|
|
|
|
|
|
|
MultipleCopiesFlag => { GRP => "0040", ELEM => "4006", VR => "CS" }, |
|
4637
|
|
|
|
|
|
|
PerformedProcessingApplicationsCodeSequence => { GRP => "0040", ELEM => "4007", VR => "SQ" }, |
|
4638
|
|
|
|
|
|
|
HumanPerformerCodeSequence => { GRP => "0040", ELEM => "4009", VR => "SQ" }, |
|
4639
|
|
|
|
|
|
|
ScheduledProcedureStepModificationDateAndTime => { GRP => "0040", ELEM => "4010", VR => "DT" }, |
|
4640
|
|
|
|
|
|
|
ExpectedCompletionDateAndTime => { GRP => "0040", ELEM => "4011", VR => "DT" }, |
|
4641
|
|
|
|
|
|
|
ResultingGeneralPurposePerformedProcedureStepsSequence => { GRP => "0040", ELEM => "4015", VR => "SQ" }, |
|
4642
|
|
|
|
|
|
|
ReferencedGeneralPurposeScheduledProcedureStepSequence => { GRP => "0040", ELEM => "4016", VR => "SQ" }, |
|
4643
|
|
|
|
|
|
|
ScheduledWorkitemCodeSequence => { GRP => "0040", ELEM => "4018", VR => "SQ" }, |
|
4644
|
|
|
|
|
|
|
PerformedWorkitemCodeSequence => { GRP => "0040", ELEM => "4019", VR => "SQ" }, |
|
4645
|
|
|
|
|
|
|
InputAvailabilityFlag => { GRP => "0040", ELEM => "4020", VR => "CS" }, |
|
4646
|
|
|
|
|
|
|
InputInformationSequence => { GRP => "0040", ELEM => "4021", VR => "SQ" }, |
|
4647
|
|
|
|
|
|
|
RelevantInformationSequence => { GRP => "0040", ELEM => "4022", VR => "SQ" }, |
|
4648
|
|
|
|
|
|
|
ReferencedGeneralPurposeScheduledProcedureStepTransactionUID => { GRP => "0040", ELEM => "4023", VR => "UI" }, |
|
4649
|
|
|
|
|
|
|
ScheduledStationNameCodeSequence => { GRP => "0040", ELEM => "4025", VR => "SQ" }, |
|
4650
|
|
|
|
|
|
|
ScheduledStationClassCodeSequence => { GRP => "0040", ELEM => "4026", VR => "SQ" }, |
|
4651
|
|
|
|
|
|
|
ScheduledStationGeographicLocationCodeSequence => { GRP => "0040", ELEM => "4027", VR => "SQ" }, |
|
4652
|
|
|
|
|
|
|
PerformedStationNameCodeSequence => { GRP => "0040", ELEM => "4028", VR => "SQ" }, |
|
4653
|
|
|
|
|
|
|
PerformedStationClassCodeSequence => { GRP => "0040", ELEM => "4029", VR => "SQ" }, |
|
4654
|
|
|
|
|
|
|
PerformedStationGeographicLocationCodeSequence => { GRP => "0040", ELEM => "4030", VR => "SQ" }, |
|
4655
|
|
|
|
|
|
|
RequestedSubsequentWorkitemCodeSequence => { GRP => "0040", ELEM => "4031", VR => "SQ" }, |
|
4656
|
|
|
|
|
|
|
NonDICOMOutputCodeSequence => { GRP => "0040", ELEM => "4032", VR => "SQ" }, |
|
4657
|
|
|
|
|
|
|
OutputInformationSequence => { GRP => "0040", ELEM => "4033", VR => "SQ" }, |
|
4658
|
|
|
|
|
|
|
ScheduledHumanPerformersSequence => { GRP => "0040", ELEM => "4034", VR => "SQ" }, |
|
4659
|
|
|
|
|
|
|
ActualHumanPerformersSequence => { GRP => "0040", ELEM => "4035", VR => "SQ" }, |
|
4660
|
|
|
|
|
|
|
HumanPerformersOrganization => { GRP => "0040", ELEM => "4036", VR => "LO" }, |
|
4661
|
|
|
|
|
|
|
HumanPerformersName => { GRP => "0040", ELEM => "4037", VR => "PN" }, |
|
4662
|
|
|
|
|
|
|
EntranceDoseInMGy => { GRP => "0040", ELEM => "8302", VR => "DS" }, |
|
4663
|
|
|
|
|
|
|
ReferencedImageRealWorldValueMappingSequence => { GRP => "0040", ELEM => "9094", VR => "SQ" }, |
|
4664
|
|
|
|
|
|
|
RealWorldValueMappingSequence => { GRP => "0040", ELEM => "9096", VR => "SQ" }, |
|
4665
|
|
|
|
|
|
|
PixelValueMappingCodeSequence => { GRP => "0040", ELEM => "9098", VR => "SQ" }, |
|
4666
|
|
|
|
|
|
|
LUTLabel => { GRP => "0040", ELEM => "9210", VR => "SH" }, |
|
4667
|
|
|
|
|
|
|
RealWorldValueLastValueMapped => { GRP => "0040", ELEM => "9211", VR => "xs" }, |
|
4668
|
|
|
|
|
|
|
RealWorldValueLUTData => { GRP => "0040", ELEM => "9212", VR => "FD" }, |
|
4669
|
|
|
|
|
|
|
RealWorldValueFirstValueMapped => { GRP => "0040", ELEM => "9216", VR => "xs" }, |
|
4670
|
|
|
|
|
|
|
RealWorldValueIntercept => { GRP => "0040", ELEM => "9224", VR => "FD" }, |
|
4671
|
|
|
|
|
|
|
RealWorldValueSlope => { GRP => "0040", ELEM => "9225", VR => "FD" }, |
|
4672
|
|
|
|
|
|
|
RelationshipType => { GRP => "0040", ELEM => "A010", VR => "CS" }, |
|
4673
|
|
|
|
|
|
|
VerifyingOrganization => { GRP => "0040", ELEM => "A027", VR => "LO" }, |
|
4674
|
|
|
|
|
|
|
VerificationDateTime => { GRP => "0040", ELEM => "A030", VR => "DT" }, |
|
4675
|
|
|
|
|
|
|
ObservationDateTime => { GRP => "0040", ELEM => "A032", VR => "DT" }, |
|
4676
|
|
|
|
|
|
|
ValueType => { GRP => "0040", ELEM => "A040", VR => "CS" }, |
|
4677
|
|
|
|
|
|
|
ConceptNameCodeSequence => { GRP => "0040", ELEM => "A043", VR => "SQ" }, |
|
4678
|
|
|
|
|
|
|
ContinuityOfContent => { GRP => "0040", ELEM => "A050", VR => "CS" }, |
|
4679
|
|
|
|
|
|
|
VerifyingObserverSequence => { GRP => "0040", ELEM => "A073", VR => "SQ" }, |
|
4680
|
|
|
|
|
|
|
VerifyingObserverName => { GRP => "0040", ELEM => "A075", VR => "PN" }, |
|
4681
|
|
|
|
|
|
|
AuthorObserverSequence => { GRP => "0040", ELEM => "A078", VR => "SQ" }, |
|
4682
|
|
|
|
|
|
|
ParticipantSequence => { GRP => "0040", ELEM => "A07A", VR => "SQ" }, |
|
4683
|
|
|
|
|
|
|
CustodialOrganizationSequence => { GRP => "0040", ELEM => "A07C", VR => "SQ" }, |
|
4684
|
|
|
|
|
|
|
ParticipationType => { GRP => "0040", ELEM => "A080", VR => "CS" }, |
|
4685
|
|
|
|
|
|
|
ParticipationDateTime => { GRP => "0040", ELEM => "A082", VR => "DT" }, |
|
4686
|
|
|
|
|
|
|
ObserverType => { GRP => "0040", ELEM => "A084", VR => "CS" }, |
|
4687
|
|
|
|
|
|
|
VerifyingObserverIdentificationCodeSequence => { GRP => "0040", ELEM => "A088", VR => "SQ" }, |
|
4688
|
|
|
|
|
|
|
ReferencedWaveformChannels => { GRP => "0040", ELEM => "A0B0", VR => "US" }, |
|
4689
|
|
|
|
|
|
|
DateTime => { GRP => "0040", ELEM => "A120", VR => "DT" }, |
|
4690
|
|
|
|
|
|
|
Date => { GRP => "0040", ELEM => "A121", VR => "DA" }, |
|
4691
|
|
|
|
|
|
|
Time => { GRP => "0040", ELEM => "A122", VR => "TM" }, |
|
4692
|
|
|
|
|
|
|
PersonName => { GRP => "0040", ELEM => "A123", VR => "PN" }, |
|
4693
|
|
|
|
|
|
|
UID => { GRP => "0040", ELEM => "A124", VR => "UI" }, |
|
4694
|
|
|
|
|
|
|
TemporalRangeType => { GRP => "0040", ELEM => "A130", VR => "CS" }, |
|
4695
|
|
|
|
|
|
|
ReferencedSamplePositions => { GRP => "0040", ELEM => "A132", VR => "UL" }, |
|
4696
|
|
|
|
|
|
|
ReferencedFrameNumbers => { GRP => "0040", ELEM => "A136", VR => "US" }, |
|
4697
|
|
|
|
|
|
|
ReferencedTimeOffsets => { GRP => "0040", ELEM => "A138", VR => "DS" }, |
|
4698
|
|
|
|
|
|
|
ReferencedDateTime => { GRP => "0040", ELEM => "A13A", VR => "DT" }, |
|
4699
|
|
|
|
|
|
|
TextValue => { GRP => "0040", ELEM => "A160", VR => "UT" }, |
|
4700
|
|
|
|
|
|
|
ConceptCodeSequence => { GRP => "0040", ELEM => "A168", VR => "SQ" }, |
|
4701
|
|
|
|
|
|
|
PurposeOfReferenceCodeSequence => { GRP => "0040", ELEM => "A170", VR => "SQ" }, |
|
4702
|
|
|
|
|
|
|
AnnotationGroupNumber => { GRP => "0040", ELEM => "A180", VR => "US" }, |
|
4703
|
|
|
|
|
|
|
ModifierCodeSequence => { GRP => "0040", ELEM => "A195", VR => "SQ" }, |
|
4704
|
|
|
|
|
|
|
MeasuredValueSequence => { GRP => "0040", ELEM => "A300", VR => "SQ" }, |
|
4705
|
|
|
|
|
|
|
NumericValueQualifierCodeSequence => { GRP => "0040", ELEM => "A301", VR => "SQ" }, |
|
4706
|
|
|
|
|
|
|
NumericValue => { GRP => "0040", ELEM => "A30A", VR => "DS" }, |
|
4707
|
|
|
|
|
|
|
PredecessorDocumentsSequence => { GRP => "0040", ELEM => "A360", VR => "SQ" }, |
|
4708
|
|
|
|
|
|
|
ReferencedRequestSequence => { GRP => "0040", ELEM => "A370", VR => "SQ" }, |
|
4709
|
|
|
|
|
|
|
PerformedProcedureCodeSequence => { GRP => "0040", ELEM => "A372", VR => "SQ" }, |
|
4710
|
|
|
|
|
|
|
CurrentRequestedProcedureEvidenceSequence => { GRP => "0040", ELEM => "A375", VR => "SQ" }, |
|
4711
|
|
|
|
|
|
|
PertinentOtherEvidenceSequence => { GRP => "0040", ELEM => "A385", VR => "SQ" }, |
|
4712
|
|
|
|
|
|
|
HL7StructuredDocumentReferenceSequence => { GRP => "0040", ELEM => "A390", VR => "SQ" }, |
|
4713
|
|
|
|
|
|
|
CompletionFlag => { GRP => "0040", ELEM => "A491", VR => "CS" }, |
|
4714
|
|
|
|
|
|
|
CompletionFlagDescription => { GRP => "0040", ELEM => "A492", VR => "LO" }, |
|
4715
|
|
|
|
|
|
|
VerificationFlag => { GRP => "0040", ELEM => "A493", VR => "CS" }, |
|
4716
|
|
|
|
|
|
|
ArchiveRequested => { GRP => "0040", ELEM => "A494", VR => "CS" }, |
|
4717
|
|
|
|
|
|
|
ContentTemplateSequence => { GRP => "0040", ELEM => "A504", VR => "SQ" }, |
|
4718
|
|
|
|
|
|
|
IdenticalDocumentsSequence => { GRP => "0040", ELEM => "A525", VR => "SQ" }, |
|
4719
|
|
|
|
|
|
|
ContentSequence => { GRP => "0040", ELEM => "A730", VR => "SQ" }, |
|
4720
|
|
|
|
|
|
|
WaveformAnnotationSequence => { GRP => "0040", ELEM => "B020", VR => "SQ" }, |
|
4721
|
|
|
|
|
|
|
TemplateIdentifier => { GRP => "0040", ELEM => "DB00", VR => "CS" }, |
|
4722
|
|
|
|
|
|
|
ReferencedContentItemIdentifier => { GRP => "0040", ELEM => "DB73", VR => "UL" }, |
|
4723
|
|
|
|
|
|
|
HL7InstanceIdentifier => { GRP => "0040", ELEM => "E001", VR => "ST" }, |
|
4724
|
|
|
|
|
|
|
HL7DocumentEffectiveTime => { GRP => "0040", ELEM => "E004", VR => "DT" }, |
|
4725
|
|
|
|
|
|
|
HL7DocumentTypeCodeSequence => { GRP => "0040", ELEM => "E006", VR => "SQ" }, |
|
4726
|
|
|
|
|
|
|
RetrieveURI => { GRP => "0040", ELEM => "E010", VR => "UT" }, |
|
4727
|
|
|
|
|
|
|
DocumentTitle => { GRP => "0042", ELEM => "0010", VR => "ST" }, |
|
4728
|
|
|
|
|
|
|
EncapsulatedDocument => { GRP => "0042", ELEM => "0011", VR => "OB" }, |
|
4729
|
|
|
|
|
|
|
MIMETypeOfEncapsulatedDocument => { GRP => "0042", ELEM => "0012", VR => "LO" }, |
|
4730
|
|
|
|
|
|
|
SourceInstanceSequence => { GRP => "0042", ELEM => "0013", VR => "SQ" }, |
|
4731
|
|
|
|
|
|
|
ListOfMIMETypes => { GRP => "0042", ELEM => "0014", VR => "LO" }, |
|
4732
|
|
|
|
|
|
|
ProductPackageIdentifier => { GRP => "0044", ELEM => "0001", VR => "ST" }, |
|
4733
|
|
|
|
|
|
|
SubstanceAdministrationApproval => { GRP => "0044", ELEM => "0002", VR => "CS" }, |
|
4734
|
|
|
|
|
|
|
ApprovalStatusFurtherDescription => { GRP => "0044", ELEM => "0003", VR => "LT" }, |
|
4735
|
|
|
|
|
|
|
ApprovalStatusDateTime => { GRP => "0044", ELEM => "0004", VR => "DT" }, |
|
4736
|
|
|
|
|
|
|
ProductTypeCodeSequence => { GRP => "0044", ELEM => "0007", VR => "SQ" }, |
|
4737
|
|
|
|
|
|
|
ProductName => { GRP => "0044", ELEM => "0008", VR => "LO" }, |
|
4738
|
|
|
|
|
|
|
ProductDescription => { GRP => "0044", ELEM => "0009", VR => "LT" }, |
|
4739
|
|
|
|
|
|
|
ProductLotIdentifier => { GRP => "0044", ELEM => "000A", VR => "LO" }, |
|
4740
|
|
|
|
|
|
|
ProductExpirationDateTime => { GRP => "0044", ELEM => "000B", VR => "DT" }, |
|
4741
|
|
|
|
|
|
|
SubstanceAdministrationDateTime => { GRP => "0044", ELEM => "0010", VR => "DT" }, |
|
4742
|
|
|
|
|
|
|
SubstanceAdministrationNotes => { GRP => "0044", ELEM => "0011", VR => "LO" }, |
|
4743
|
|
|
|
|
|
|
SubstanceAdministrationDeviceID => { GRP => "0044", ELEM => "0012", VR => "LO" }, |
|
4744
|
|
|
|
|
|
|
ProductParameterSequence => { GRP => "0044", ELEM => "0013", VR => "SQ" }, |
|
4745
|
|
|
|
|
|
|
SubstanceAdministrationParameterSequence => { GRP => "0044", ELEM => "0019", VR => "SQ" }, |
|
4746
|
|
|
|
|
|
|
CalibrationImage => { GRP => "0050", ELEM => "0004", VR => "CS" }, |
|
4747
|
|
|
|
|
|
|
DeviceSequence => { GRP => "0050", ELEM => "0010", VR => "SQ" }, |
|
4748
|
|
|
|
|
|
|
DeviceLength => { GRP => "0050", ELEM => "0014", VR => "DS" }, |
|
4749
|
|
|
|
|
|
|
DeviceDiameter => { GRP => "0050", ELEM => "0016", VR => "DS" }, |
|
4750
|
|
|
|
|
|
|
DeviceDiameterUnits => { GRP => "0050", ELEM => "0017", VR => "CS" }, |
|
4751
|
|
|
|
|
|
|
DeviceVolume => { GRP => "0050", ELEM => "0018", VR => "DS" }, |
|
4752
|
|
|
|
|
|
|
IntermarkerDistance => { GRP => "0050", ELEM => "0019", VR => "DS" }, |
|
4753
|
|
|
|
|
|
|
DeviceDescription => { GRP => "0050", ELEM => "0020", VR => "LO" }, |
|
4754
|
|
|
|
|
|
|
EnergyWindowVector => { GRP => "0054", ELEM => "0010", VR => "US" }, |
|
4755
|
|
|
|
|
|
|
NumberOfEnergyWindows => { GRP => "0054", ELEM => "0011", VR => "US" }, |
|
4756
|
|
|
|
|
|
|
EnergyWindowInformationSequence => { GRP => "0054", ELEM => "0012", VR => "SQ" }, |
|
4757
|
|
|
|
|
|
|
EnergyWindowRangeSequence => { GRP => "0054", ELEM => "0013", VR => "SQ" }, |
|
4758
|
|
|
|
|
|
|
EnergyWindowLowerLimit => { GRP => "0054", ELEM => "0014", VR => "DS" }, |
|
4759
|
|
|
|
|
|
|
EnergyWindowUpperLimit => { GRP => "0054", ELEM => "0015", VR => "DS" }, |
|
4760
|
|
|
|
|
|
|
RadiopharmaceuticalInformationSequence => { GRP => "0054", ELEM => "0016", VR => "SQ" }, |
|
4761
|
|
|
|
|
|
|
ResidualSyringeCounts => { GRP => "0054", ELEM => "0017", VR => "IS" }, |
|
4762
|
|
|
|
|
|
|
EnergyWindowName => { GRP => "0054", ELEM => "0018", VR => "SH" }, |
|
4763
|
|
|
|
|
|
|
DetectorVector => { GRP => "0054", ELEM => "0020", VR => "US" }, |
|
4764
|
|
|
|
|
|
|
NumberOfDetectors => { GRP => "0054", ELEM => "0021", VR => "US" }, |
|
4765
|
|
|
|
|
|
|
DetectorInformationSequence => { GRP => "0054", ELEM => "0022", VR => "SQ" }, |
|
4766
|
|
|
|
|
|
|
PhaseVector => { GRP => "0054", ELEM => "0030", VR => "US" }, |
|
4767
|
|
|
|
|
|
|
NumberOfPhases => { GRP => "0054", ELEM => "0031", VR => "US" }, |
|
4768
|
|
|
|
|
|
|
PhaseInformationSequence => { GRP => "0054", ELEM => "0032", VR => "SQ" }, |
|
4769
|
|
|
|
|
|
|
NumberOfFramesInPhase => { GRP => "0054", ELEM => "0033", VR => "US" }, |
|
4770
|
|
|
|
|
|
|
PhaseDelay => { GRP => "0054", ELEM => "0036", VR => "IS" }, |
|
4771
|
|
|
|
|
|
|
PauseBetweenFrames => { GRP => "0054", ELEM => "0038", VR => "IS" }, |
|
4772
|
|
|
|
|
|
|
PhaseDescription => { GRP => "0054", ELEM => "0039", VR => "CS" }, |
|
4773
|
|
|
|
|
|
|
RotationVector => { GRP => "0054", ELEM => "0050", VR => "US" }, |
|
4774
|
|
|
|
|
|
|
NumberOfRotations => { GRP => "0054", ELEM => "0051", VR => "US" }, |
|
4775
|
|
|
|
|
|
|
RotationInformationSequence => { GRP => "0054", ELEM => "0052", VR => "SQ" }, |
|
4776
|
|
|
|
|
|
|
NumberOfFramesInRotation => { GRP => "0054", ELEM => "0053", VR => "US" }, |
|
4777
|
|
|
|
|
|
|
RRIntervalVector => { GRP => "0054", ELEM => "0060", VR => "US" }, |
|
4778
|
|
|
|
|
|
|
NumberOfRRIntervals => { GRP => "0054", ELEM => "0061", VR => "US" }, |
|
4779
|
|
|
|
|
|
|
GatedInformationSequence => { GRP => "0054", ELEM => "0062", VR => "SQ" }, |
|
4780
|
|
|
|
|
|
|
DataInformationSequence => { GRP => "0054", ELEM => "0063", VR => "SQ" }, |
|
4781
|
|
|
|
|
|
|
TimeSlotVector => { GRP => "0054", ELEM => "0070", VR => "US" }, |
|
4782
|
|
|
|
|
|
|
NumberOfTimeSlots => { GRP => "0054", ELEM => "0071", VR => "US" }, |
|
4783
|
|
|
|
|
|
|
TimeSlotInformationSequence => { GRP => "0054", ELEM => "0072", VR => "SQ" }, |
|
4784
|
|
|
|
|
|
|
TimeSlotTime => { GRP => "0054", ELEM => "0073", VR => "DS" }, |
|
4785
|
|
|
|
|
|
|
SliceVector => { GRP => "0054", ELEM => "0080", VR => "US" }, |
|
4786
|
|
|
|
|
|
|
NumberOfSlices => { GRP => "0054", ELEM => "0081", VR => "US" }, |
|
4787
|
|
|
|
|
|
|
AngularViewVector => { GRP => "0054", ELEM => "0090", VR => "US" }, |
|
4788
|
|
|
|
|
|
|
TimeSliceVector => { GRP => "0054", ELEM => "0100", VR => "US" }, |
|
4789
|
|
|
|
|
|
|
NumberOfTimeSlices => { GRP => "0054", ELEM => "0101", VR => "US" }, |
|
4790
|
|
|
|
|
|
|
StartAngle => { GRP => "0054", ELEM => "0200", VR => "DS" }, |
|
4791
|
|
|
|
|
|
|
TypeOfDetectorMotion => { GRP => "0054", ELEM => "0202", VR => "CS" }, |
|
4792
|
|
|
|
|
|
|
TriggerVector => { GRP => "0054", ELEM => "0210", VR => "IS" }, |
|
4793
|
|
|
|
|
|
|
NumberOfTriggersInPhase => { GRP => "0054", ELEM => "0211", VR => "US" }, |
|
4794
|
|
|
|
|
|
|
ViewCodeSequence => { GRP => "0054", ELEM => "0220", VR => "SQ" }, |
|
4795
|
|
|
|
|
|
|
ViewModifierCodeSequence => { GRP => "0054", ELEM => "0222", VR => "SQ" }, |
|
4796
|
|
|
|
|
|
|
RadionuclideCodeSequence => { GRP => "0054", ELEM => "0300", VR => "SQ" }, |
|
4797
|
|
|
|
|
|
|
AdministrationRouteCodeSequence => { GRP => "0054", ELEM => "0302", VR => "SQ" }, |
|
4798
|
|
|
|
|
|
|
RadiopharmaceuticalCodeSequence => { GRP => "0054", ELEM => "0304", VR => "SQ" }, |
|
4799
|
|
|
|
|
|
|
CalibrationDataSequence => { GRP => "0054", ELEM => "0306", VR => "SQ" }, |
|
4800
|
|
|
|
|
|
|
EnergyWindowNumber => { GRP => "0054", ELEM => "0308", VR => "US" }, |
|
4801
|
|
|
|
|
|
|
ImageID => { GRP => "0054", ELEM => "0400", VR => "SH" }, |
|
4802
|
|
|
|
|
|
|
PatientOrientationCodeSequence => { GRP => "0054", ELEM => "0410", VR => "SQ" }, |
|
4803
|
|
|
|
|
|
|
PatientOrientationModifierCodeSequence => { GRP => "0054", ELEM => "0412", VR => "SQ" }, |
|
4804
|
|
|
|
|
|
|
PatientGantryRelationshipCodeSequence => { GRP => "0054", ELEM => "0414", VR => "SQ" }, |
|
4805
|
|
|
|
|
|
|
SliceProgressionDirection => { GRP => "0054", ELEM => "0500", VR => "CS" }, |
|
4806
|
|
|
|
|
|
|
SeriesType => { GRP => "0054", ELEM => "1000", VR => "CS" }, |
|
4807
|
|
|
|
|
|
|
Units => { GRP => "0054", ELEM => "1001", VR => "CS" }, |
|
4808
|
|
|
|
|
|
|
CountsSource => { GRP => "0054", ELEM => "1002", VR => "CS" }, |
|
4809
|
|
|
|
|
|
|
ReprojectionMethod => { GRP => "0054", ELEM => "1004", VR => "CS" }, |
|
4810
|
|
|
|
|
|
|
RandomsCorrectionMethod => { GRP => "0054", ELEM => "1100", VR => "CS" }, |
|
4811
|
|
|
|
|
|
|
AttenuationCorrectionMethod => { GRP => "0054", ELEM => "1101", VR => "LO" }, |
|
4812
|
|
|
|
|
|
|
DecayCorrection => { GRP => "0054", ELEM => "1102", VR => "CS" }, |
|
4813
|
|
|
|
|
|
|
ReconstructionMethod => { GRP => "0054", ELEM => "1103", VR => "LO" }, |
|
4814
|
|
|
|
|
|
|
DetectorLinesOfResponseUsed => { GRP => "0054", ELEM => "1104", VR => "LO" }, |
|
4815
|
|
|
|
|
|
|
ScatterCorrectionMethod => { GRP => "0054", ELEM => "1105", VR => "LO" }, |
|
4816
|
|
|
|
|
|
|
AxialAcceptance => { GRP => "0054", ELEM => "1200", VR => "DS" }, |
|
4817
|
|
|
|
|
|
|
AxialMash => { GRP => "0054", ELEM => "1201", VR => "IS" }, |
|
4818
|
|
|
|
|
|
|
TransverseMash => { GRP => "0054", ELEM => "1202", VR => "IS" }, |
|
4819
|
|
|
|
|
|
|
DetectorElementSize => { GRP => "0054", ELEM => "1203", VR => "DS" }, |
|
4820
|
|
|
|
|
|
|
CoincidenceWindowWidth => { GRP => "0054", ELEM => "1210", VR => "DS" }, |
|
4821
|
|
|
|
|
|
|
SecondaryCountsType => { GRP => "0054", ELEM => "1220", VR => "CS" }, |
|
4822
|
|
|
|
|
|
|
FrameReferenceTime => { GRP => "0054", ELEM => "1300", VR => "DS" }, |
|
4823
|
|
|
|
|
|
|
PrimaryPromptsCountsAccumulated => { GRP => "0054", ELEM => "1310", VR => "IS" }, |
|
4824
|
|
|
|
|
|
|
SecondaryCountsAccumulated => { GRP => "0054", ELEM => "1311", VR => "IS" }, |
|
4825
|
|
|
|
|
|
|
SliceSensitivityFactor => { GRP => "0054", ELEM => "1320", VR => "DS" }, |
|
4826
|
|
|
|
|
|
|
DecayFactor => { GRP => "0054", ELEM => "1321", VR => "DS" }, |
|
4827
|
|
|
|
|
|
|
DoseCalibrationFactor => { GRP => "0054", ELEM => "1322", VR => "DS" }, |
|
4828
|
|
|
|
|
|
|
ScatterFractionFactor => { GRP => "0054", ELEM => "1323", VR => "DS" }, |
|
4829
|
|
|
|
|
|
|
DeadTimeFactor => { GRP => "0054", ELEM => "1324", VR => "DS" }, |
|
4830
|
|
|
|
|
|
|
ImageIndex => { GRP => "0054", ELEM => "1330", VR => "US" }, |
|
4831
|
|
|
|
|
|
|
HistogramSequence => { GRP => "0060", ELEM => "3000", VR => "SQ" }, |
|
4832
|
|
|
|
|
|
|
HistogramNumberOfBins => { GRP => "0060", ELEM => "3002", VR => "US" }, |
|
4833
|
|
|
|
|
|
|
HistogramFirstBinValue => { GRP => "0060", ELEM => "3004", VR => "xs" }, |
|
4834
|
|
|
|
|
|
|
HistogramLastBinValue => { GRP => "0060", ELEM => "3006", VR => "xs" }, |
|
4835
|
|
|
|
|
|
|
HistogramBinWidth => { GRP => "0060", ELEM => "3008", VR => "US" }, |
|
4836
|
|
|
|
|
|
|
HistogramExplanation => { GRP => "0060", ELEM => "3010", VR => "LO" }, |
|
4837
|
|
|
|
|
|
|
HistogramData => { GRP => "0060", ELEM => "3020", VR => "UL" }, |
|
4838
|
|
|
|
|
|
|
SegmentationType => { GRP => "0062", ELEM => "0001", VR => "CS" }, |
|
4839
|
|
|
|
|
|
|
SegmentSequence => { GRP => "0062", ELEM => "0002", VR => "SQ" }, |
|
4840
|
|
|
|
|
|
|
SegmentedPropertyCategoryCodeSequence => { GRP => "0062", ELEM => "0003", VR => "SQ" }, |
|
4841
|
|
|
|
|
|
|
SegmentNumber => { GRP => "0062", ELEM => "0004", VR => "US" }, |
|
4842
|
|
|
|
|
|
|
SegmentLabel => { GRP => "0062", ELEM => "0005", VR => "LO" }, |
|
4843
|
|
|
|
|
|
|
SegmentDescription => { GRP => "0062", ELEM => "0006", VR => "ST" }, |
|
4844
|
|
|
|
|
|
|
SegmentAlgorithmType => { GRP => "0062", ELEM => "0008", VR => "CS" }, |
|
4845
|
|
|
|
|
|
|
SegmentAlgorithmName => { GRP => "0062", ELEM => "0009", VR => "LO" }, |
|
4846
|
|
|
|
|
|
|
SegmentIdentificationSequence => { GRP => "0062", ELEM => "000A", VR => "SQ" }, |
|
4847
|
|
|
|
|
|
|
ReferencedSegmentNumber => { GRP => "0062", ELEM => "000B", VR => "US" }, |
|
4848
|
|
|
|
|
|
|
RecommendedDisplayGrayscaleValue => { GRP => "0062", ELEM => "000C", VR => "US" }, |
|
4849
|
|
|
|
|
|
|
RecommendedDisplayCIELabValue => { GRP => "0062", ELEM => "000D", VR => "US" }, |
|
4850
|
|
|
|
|
|
|
MaximumFractionalValue => { GRP => "0062", ELEM => "000E", VR => "US" }, |
|
4851
|
|
|
|
|
|
|
SegmentedPropertyTypeCodeSequence => { GRP => "0062", ELEM => "000F", VR => "SQ" }, |
|
4852
|
|
|
|
|
|
|
SegmentationFractionalType => { GRP => "0062", ELEM => "0010", VR => "CS" }, |
|
4853
|
|
|
|
|
|
|
DeformableRegistrationSequence => { GRP => "0064", ELEM => "0002", VR => "SQ" }, |
|
4854
|
|
|
|
|
|
|
SourceFrameOfReferenceUID => { GRP => "0064", ELEM => "0003", VR => "UI" }, |
|
4855
|
|
|
|
|
|
|
DeformableRegistrationGridSequence => { GRP => "0064", ELEM => "0005", VR => "SQ" }, |
|
4856
|
|
|
|
|
|
|
GridDimensions => { GRP => "0064", ELEM => "0007", VR => "UL" }, |
|
4857
|
|
|
|
|
|
|
GridResolution => { GRP => "0064", ELEM => "0008", VR => "FD" }, |
|
4858
|
|
|
|
|
|
|
VectorGridData => { GRP => "0064", ELEM => "0009", VR => "OF" }, |
|
4859
|
|
|
|
|
|
|
PreDeformationMatrixRegistrationSequence => { GRP => "0064", ELEM => "000F", VR => "SQ" }, |
|
4860
|
|
|
|
|
|
|
PostDeformationMatrixRegistrationSequence => { GRP => "0064", ELEM => "0010", VR => "SQ" }, |
|
4861
|
|
|
|
|
|
|
GraphicAnnotationSequence => { GRP => "0070", ELEM => "0001", VR => "SQ" }, |
|
4862
|
|
|
|
|
|
|
GraphicLayer => { GRP => "0070", ELEM => "0002", VR => "CS" }, |
|
4863
|
|
|
|
|
|
|
BoundingBoxAnnotationUnits => { GRP => "0070", ELEM => "0003", VR => "CS" }, |
|
4864
|
|
|
|
|
|
|
AnchorPointAnnotationUnits => { GRP => "0070", ELEM => "0004", VR => "CS" }, |
|
4865
|
|
|
|
|
|
|
GraphicAnnotationUnits => { GRP => "0070", ELEM => "0005", VR => "CS" }, |
|
4866
|
|
|
|
|
|
|
UnformattedTextValue => { GRP => "0070", ELEM => "0006", VR => "ST" }, |
|
4867
|
|
|
|
|
|
|
TextObjectSequence => { GRP => "0070", ELEM => "0008", VR => "SQ" }, |
|
4868
|
|
|
|
|
|
|
GraphicObjectSequence => { GRP => "0070", ELEM => "0009", VR => "SQ" }, |
|
4869
|
|
|
|
|
|
|
BoundingBoxTopLeftHandCorner => { GRP => "0070", ELEM => "0010", VR => "FL" }, |
|
4870
|
|
|
|
|
|
|
BoundingBoxBottomRightHandCorner => { GRP => "0070", ELEM => "0011", VR => "FL" }, |
|
4871
|
|
|
|
|
|
|
BoundingBoxTextHorizontalJustification => { GRP => "0070", ELEM => "0012", VR => "CS" }, |
|
4872
|
|
|
|
|
|
|
AnchorPoint => { GRP => "0070", ELEM => "0014", VR => "FL" }, |
|
4873
|
|
|
|
|
|
|
AnchorPointVisibility => { GRP => "0070", ELEM => "0015", VR => "CS" }, |
|
4874
|
|
|
|
|
|
|
GraphicDimensions => { GRP => "0070", ELEM => "0020", VR => "US" }, |
|
4875
|
|
|
|
|
|
|
NumberOfGraphicPoints => { GRP => "0070", ELEM => "0021", VR => "US" }, |
|
4876
|
|
|
|
|
|
|
GraphicData => { GRP => "0070", ELEM => "0022", VR => "FL" }, |
|
4877
|
|
|
|
|
|
|
GraphicType => { GRP => "0070", ELEM => "0023", VR => "CS" }, |
|
4878
|
|
|
|
|
|
|
GraphicFilled => { GRP => "0070", ELEM => "0024", VR => "CS" }, |
|
4879
|
|
|
|
|
|
|
ImageHorizontalFlip => { GRP => "0070", ELEM => "0041", VR => "CS" }, |
|
4880
|
|
|
|
|
|
|
ImageRotation => { GRP => "0070", ELEM => "0042", VR => "US" }, |
|
4881
|
|
|
|
|
|
|
DisplayedAreaTopLeftHandCorner => { GRP => "0070", ELEM => "0052", VR => "SL" }, |
|
4882
|
|
|
|
|
|
|
DisplayedAreaBottomRightHandCorner => { GRP => "0070", ELEM => "0053", VR => "SL" }, |
|
4883
|
|
|
|
|
|
|
DisplayedAreaSelectionSequence => { GRP => "0070", ELEM => "005A", VR => "SQ" }, |
|
4884
|
|
|
|
|
|
|
GraphicLayerSequence => { GRP => "0070", ELEM => "0060", VR => "SQ" }, |
|
4885
|
|
|
|
|
|
|
GraphicLayerOrder => { GRP => "0070", ELEM => "0062", VR => "IS" }, |
|
4886
|
|
|
|
|
|
|
GraphicLayerRecommendedDisplayGrayscaleValue => { GRP => "0070", ELEM => "0066", VR => "US" }, |
|
4887
|
|
|
|
|
|
|
GraphicLayerDescription => { GRP => "0070", ELEM => "0068", VR => "LO" }, |
|
4888
|
|
|
|
|
|
|
ContentLabel => { GRP => "0070", ELEM => "0080", VR => "CS" }, |
|
4889
|
|
|
|
|
|
|
ContentDescription => { GRP => "0070", ELEM => "0081", VR => "LO" }, |
|
4890
|
|
|
|
|
|
|
PresentationCreationDate => { GRP => "0070", ELEM => "0082", VR => "DA" }, |
|
4891
|
|
|
|
|
|
|
PresentationCreationTime => { GRP => "0070", ELEM => "0083", VR => "TM" }, |
|
4892
|
|
|
|
|
|
|
ContentCreatorsName => { GRP => "0070", ELEM => "0084", VR => "PN" }, |
|
4893
|
|
|
|
|
|
|
ContentCreatorsIdentificationCodeSequence => { GRP => "0070", ELEM => "0086", VR => "SQ" }, |
|
4894
|
|
|
|
|
|
|
PresentationSizeMode => { GRP => "0070", ELEM => "0100", VR => "CS" }, |
|
4895
|
|
|
|
|
|
|
PresentationPixelSpacing => { GRP => "0070", ELEM => "0101", VR => "DS" }, |
|
4896
|
|
|
|
|
|
|
PresentationPixelAspectRatio => { GRP => "0070", ELEM => "0102", VR => "IS" }, |
|
4897
|
|
|
|
|
|
|
PresentationPixelMagnificationRatio => { GRP => "0070", ELEM => "0103", VR => "FL" }, |
|
4898
|
|
|
|
|
|
|
ShapeType => { GRP => "0070", ELEM => "0306", VR => "CS" }, |
|
4899
|
|
|
|
|
|
|
RegistrationSequence => { GRP => "0070", ELEM => "0308", VR => "SQ" }, |
|
4900
|
|
|
|
|
|
|
MatrixRegistrationSequence => { GRP => "0070", ELEM => "0309", VR => "SQ" }, |
|
4901
|
|
|
|
|
|
|
MatrixSequence => { GRP => "0070", ELEM => "030A", VR => "SQ" }, |
|
4902
|
|
|
|
|
|
|
FrameOfReferenceTransformationMatrixType => { GRP => "0070", ELEM => "030C", VR => "CS" }, |
|
4903
|
|
|
|
|
|
|
RegistrationTypeCodeSequence => { GRP => "0070", ELEM => "030D", VR => "SQ" }, |
|
4904
|
|
|
|
|
|
|
FiducialDescription => { GRP => "0070", ELEM => "030F", VR => "ST" }, |
|
4905
|
|
|
|
|
|
|
FiducialIdentifier => { GRP => "0070", ELEM => "0310", VR => "SH" }, |
|
4906
|
|
|
|
|
|
|
FiducialIdentifierCodeSequence => { GRP => "0070", ELEM => "0311", VR => "SQ" }, |
|
4907
|
|
|
|
|
|
|
ContourUncertaintyRadius => { GRP => "0070", ELEM => "0312", VR => "FD" }, |
|
4908
|
|
|
|
|
|
|
UsedFiducialsSequence => { GRP => "0070", ELEM => "0314", VR => "SQ" }, |
|
4909
|
|
|
|
|
|
|
GraphicCoordinatesDataSequence => { GRP => "0070", ELEM => "0318", VR => "SQ" }, |
|
4910
|
|
|
|
|
|
|
FiducialUID => { GRP => "0070", ELEM => "031A", VR => "UI" }, |
|
4911
|
|
|
|
|
|
|
FiducialSetSequence => { GRP => "0070", ELEM => "031C", VR => "SQ" }, |
|
4912
|
|
|
|
|
|
|
FiducialSequence => { GRP => "0070", ELEM => "031E", VR => "SQ" }, |
|
4913
|
|
|
|
|
|
|
GraphicLayerRecommendedDisplayCIELabValue => { GRP => "0070", ELEM => "0401", VR => "US" }, |
|
4914
|
|
|
|
|
|
|
BlendingSequence => { GRP => "0070", ELEM => "0402", VR => "SQ" }, |
|
4915
|
|
|
|
|
|
|
RelativeOpacity => { GRP => "0070", ELEM => "0403", VR => "FL" }, |
|
4916
|
|
|
|
|
|
|
ReferencedSpatialRegistrationSequence => { GRP => "0070", ELEM => "0404", VR => "SQ" }, |
|
4917
|
|
|
|
|
|
|
BlendingPosition => { GRP => "0070", ELEM => "0405", VR => "CS" }, |
|
4918
|
|
|
|
|
|
|
HangingProtocolName => { GRP => "0072", ELEM => "0002", VR => "SH" }, |
|
4919
|
|
|
|
|
|
|
HangingProtocolDescription => { GRP => "0072", ELEM => "0004", VR => "LO" }, |
|
4920
|
|
|
|
|
|
|
HangingProtocolLevel => { GRP => "0072", ELEM => "0006", VR => "CS" }, |
|
4921
|
|
|
|
|
|
|
HangingProtocolCreator => { GRP => "0072", ELEM => "0008", VR => "LO" }, |
|
4922
|
|
|
|
|
|
|
HangingProtocolCreationDateTime => { GRP => "0072", ELEM => "000A", VR => "DT" }, |
|
4923
|
|
|
|
|
|
|
HangingProtocolDefinitionSequence => { GRP => "0072", ELEM => "000C", VR => "SQ" }, |
|
4924
|
|
|
|
|
|
|
HangingProtocolUserIdentificationCodeSequence => { GRP => "0072", ELEM => "000E", VR => "SQ" }, |
|
4925
|
|
|
|
|
|
|
HangingProtocolUserGroupName => { GRP => "0072", ELEM => "0010", VR => "LO" }, |
|
4926
|
|
|
|
|
|
|
SourceHangingProtocolSequence => { GRP => "0072", ELEM => "0012", VR => "SQ" }, |
|
4927
|
|
|
|
|
|
|
NumberOfPriorsReferenced => { GRP => "0072", ELEM => "0014", VR => "US" }, |
|
4928
|
|
|
|
|
|
|
ImageSetsSequence => { GRP => "0072", ELEM => "0020", VR => "SQ" }, |
|
4929
|
|
|
|
|
|
|
ImageSetSelectorSequence => { GRP => "0072", ELEM => "0022", VR => "SQ" }, |
|
4930
|
|
|
|
|
|
|
ImageSetSelectorUsageFlag => { GRP => "0072", ELEM => "0024", VR => "CS" }, |
|
4931
|
|
|
|
|
|
|
SelectorAttribute => { GRP => "0072", ELEM => "0026", VR => "AT" }, |
|
4932
|
|
|
|
|
|
|
SelectorValueNumber => { GRP => "0072", ELEM => "0028", VR => "US" }, |
|
4933
|
|
|
|
|
|
|
TimeBasedImageSetsSequence => { GRP => "0072", ELEM => "0030", VR => "SQ" }, |
|
4934
|
|
|
|
|
|
|
ImageSetNumber => { GRP => "0072", ELEM => "0032", VR => "US" }, |
|
4935
|
|
|
|
|
|
|
ImageSetSelectorCategory => { GRP => "0072", ELEM => "0034", VR => "CS" }, |
|
4936
|
|
|
|
|
|
|
RelativeTime => { GRP => "0072", ELEM => "0038", VR => "US" }, |
|
4937
|
|
|
|
|
|
|
RelativeTimeUnits => { GRP => "0072", ELEM => "003A", VR => "CS" }, |
|
4938
|
|
|
|
|
|
|
AbstractPriorValue => { GRP => "0072", ELEM => "003C", VR => "SS" }, |
|
4939
|
|
|
|
|
|
|
AbstractPriorCodeSequence => { GRP => "0072", ELEM => "003E", VR => "SQ" }, |
|
4940
|
|
|
|
|
|
|
ImageSetLabel => { GRP => "0072", ELEM => "0040", VR => "LO" }, |
|
4941
|
|
|
|
|
|
|
SelectorAttributeVR => { GRP => "0072", ELEM => "0050", VR => "CS" }, |
|
4942
|
|
|
|
|
|
|
SelectorSequencePointer => { GRP => "0072", ELEM => "0052", VR => "AT" }, |
|
4943
|
|
|
|
|
|
|
SelectorSequencePointerPrivateCreator => { GRP => "0072", ELEM => "0054", VR => "LO" }, |
|
4944
|
|
|
|
|
|
|
SelectorAttributePrivateCreator => { GRP => "0072", ELEM => "0056", VR => "LO" }, |
|
4945
|
|
|
|
|
|
|
SelectorATValue => { GRP => "0072", ELEM => "0060", VR => "AT" }, |
|
4946
|
|
|
|
|
|
|
SelectorCSValue => { GRP => "0072", ELEM => "0062", VR => "CS" }, |
|
4947
|
|
|
|
|
|
|
SelectorISValue => { GRP => "0072", ELEM => "0064", VR => "IS" }, |
|
4948
|
|
|
|
|
|
|
SelectorLOValue => { GRP => "0072", ELEM => "0066", VR => "LO" }, |
|
4949
|
|
|
|
|
|
|
SelectorLTValue => { GRP => "0072", ELEM => "0068", VR => "LT" }, |
|
4950
|
|
|
|
|
|
|
SelectorPNValue => { GRP => "0072", ELEM => "006A", VR => "PN" }, |
|
4951
|
|
|
|
|
|
|
SelectorSHValue => { GRP => "0072", ELEM => "006C", VR => "SH" }, |
|
4952
|
|
|
|
|
|
|
SelectorSTValue => { GRP => "0072", ELEM => "006E", VR => "ST" }, |
|
4953
|
|
|
|
|
|
|
SelectorUTValue => { GRP => "0072", ELEM => "0070", VR => "UT" }, |
|
4954
|
|
|
|
|
|
|
SelectorDSValue => { GRP => "0072", ELEM => "0072", VR => "DS" }, |
|
4955
|
|
|
|
|
|
|
SelectorFDValue => { GRP => "0072", ELEM => "0074", VR => "FD" }, |
|
4956
|
|
|
|
|
|
|
SelectorFLValue => { GRP => "0072", ELEM => "0076", VR => "FL" }, |
|
4957
|
|
|
|
|
|
|
SelectorULValue => { GRP => "0072", ELEM => "0078", VR => "UL" }, |
|
4958
|
|
|
|
|
|
|
SelectorUSValue => { GRP => "0072", ELEM => "007A", VR => "US" }, |
|
4959
|
|
|
|
|
|
|
SelectorSLValue => { GRP => "0072", ELEM => "007C", VR => "SL" }, |
|
4960
|
|
|
|
|
|
|
SelectorSSValue => { GRP => "0072", ELEM => "007E", VR => "SS" }, |
|
4961
|
|
|
|
|
|
|
SelectorCodeSequenceValue => { GRP => "0072", ELEM => "0080", VR => "SQ" }, |
|
4962
|
|
|
|
|
|
|
NumberOfScreens => { GRP => "0072", ELEM => "0100", VR => "US" }, |
|
4963
|
|
|
|
|
|
|
NominalScreenDefinitionSequence => { GRP => "0072", ELEM => "0102", VR => "SQ" }, |
|
4964
|
|
|
|
|
|
|
NumberOfVerticalPixels => { GRP => "0072", ELEM => "0104", VR => "US" }, |
|
4965
|
|
|
|
|
|
|
NumberOfHorizontalPixels => { GRP => "0072", ELEM => "0106", VR => "US" }, |
|
4966
|
|
|
|
|
|
|
DisplayEnvironmentSpatialPosition => { GRP => "0072", ELEM => "0108", VR => "FD" }, |
|
4967
|
|
|
|
|
|
|
ScreenMinimumGrayscaleBitDepth => { GRP => "0072", ELEM => "010A", VR => "US" }, |
|
4968
|
|
|
|
|
|
|
ScreenMinimumColorBitDepth => { GRP => "0072", ELEM => "010C", VR => "US" }, |
|
4969
|
|
|
|
|
|
|
ApplicationMaximumRepaintTime => { GRP => "0072", ELEM => "010E", VR => "US" }, |
|
4970
|
|
|
|
|
|
|
DisplaySetsSequence => { GRP => "0072", ELEM => "0200", VR => "SQ" }, |
|
4971
|
|
|
|
|
|
|
DisplaySetNumber => { GRP => "0072", ELEM => "0202", VR => "US" }, |
|
4972
|
|
|
|
|
|
|
DisplaySetLabel => { GRP => "0072", ELEM => "0203", VR => "LO" }, |
|
4973
|
|
|
|
|
|
|
DisplaySetPresentationGroup => { GRP => "0072", ELEM => "0204", VR => "US" }, |
|
4974
|
|
|
|
|
|
|
DisplaySetPresentationGroupDescription => { GRP => "0072", ELEM => "0206", VR => "LO" }, |
|
4975
|
|
|
|
|
|
|
PartialDataDisplayHandling => { GRP => "0072", ELEM => "0208", VR => "CS" }, |
|
4976
|
|
|
|
|
|
|
SynchronizedScrollingSequence => { GRP => "0072", ELEM => "0210", VR => "SQ" }, |
|
4977
|
|
|
|
|
|
|
DisplaySetScrollingGroup => { GRP => "0072", ELEM => "0212", VR => "US" }, |
|
4978
|
|
|
|
|
|
|
NavigationIndicatorSequence => { GRP => "0072", ELEM => "0214", VR => "SQ" }, |
|
4979
|
|
|
|
|
|
|
NavigationDisplaySet => { GRP => "0072", ELEM => "0216", VR => "US" }, |
|
4980
|
|
|
|
|
|
|
ReferenceDisplaySets => { GRP => "0072", ELEM => "0218", VR => "US" }, |
|
4981
|
|
|
|
|
|
|
ImageBoxesSequence => { GRP => "0072", ELEM => "0300", VR => "SQ" }, |
|
4982
|
|
|
|
|
|
|
ImageBoxNumber => { GRP => "0072", ELEM => "0302", VR => "US" }, |
|
4983
|
|
|
|
|
|
|
ImageBoxLayoutType => { GRP => "0072", ELEM => "0304", VR => "CS" }, |
|
4984
|
|
|
|
|
|
|
ImageBoxTileHorizontalDimension => { GRP => "0072", ELEM => "0306", VR => "US" }, |
|
4985
|
|
|
|
|
|
|
ImageBoxTileVerticalDimension => { GRP => "0072", ELEM => "0308", VR => "US" }, |
|
4986
|
|
|
|
|
|
|
ImageBoxScrollDirection => { GRP => "0072", ELEM => "0310", VR => "CS" }, |
|
4987
|
|
|
|
|
|
|
ImageBoxSmallScrollType => { GRP => "0072", ELEM => "0312", VR => "CS" }, |
|
4988
|
|
|
|
|
|
|
ImageBoxSmallScrollAmount => { GRP => "0072", ELEM => "0314", VR => "US" }, |
|
4989
|
|
|
|
|
|
|
ImageBoxLargeScrollType => { GRP => "0072", ELEM => "0316", VR => "CS" }, |
|
4990
|
|
|
|
|
|
|
ImageBoxLargeScrollAmount => { GRP => "0072", ELEM => "0318", VR => "US" }, |
|
4991
|
|
|
|
|
|
|
ImageBoxOverlapPriority => { GRP => "0072", ELEM => "0320", VR => "US" }, |
|
4992
|
|
|
|
|
|
|
CineRelativeToRealTime => { GRP => "0072", ELEM => "0330", VR => "FD" }, |
|
4993
|
|
|
|
|
|
|
FilterOperationsSequence => { GRP => "0072", ELEM => "0400", VR => "SQ" }, |
|
4994
|
|
|
|
|
|
|
FilterByCategory => { GRP => "0072", ELEM => "0402", VR => "CS" }, |
|
4995
|
|
|
|
|
|
|
FilterByAttributePresence => { GRP => "0072", ELEM => "0404", VR => "CS" }, |
|
4996
|
|
|
|
|
|
|
FilterByOperator => { GRP => "0072", ELEM => "0406", VR => "CS" }, |
|
4997
|
|
|
|
|
|
|
BlendingOperationType => { GRP => "0072", ELEM => "0500", VR => "CS" }, |
|
4998
|
|
|
|
|
|
|
ReformattingOperationType => { GRP => "0072", ELEM => "0510", VR => "CS" }, |
|
4999
|
|
|
|
|
|
|
ReformattingThickness => { GRP => "0072", ELEM => "0512", VR => "FD" }, |
|
5000
|
|
|
|
|
|
|
ReformattingInterval => { GRP => "0072", ELEM => "0514", VR => "FD" }, |
|
5001
|
|
|
|
|
|
|
ReformattingOperationInitialViewDirection => { GRP => "0072", ELEM => "0516", VR => "CS" }, |
|
5002
|
|
|
|
|
|
|
# starts with '3' 3DRenderingType => { GRP => "0072", ELEM => "0520", VR => "CS" }, |
|
5003
|
|
|
|
|
|
|
SortingOperationsSequence => { GRP => "0072", ELEM => "0600", VR => "SQ" }, |
|
5004
|
|
|
|
|
|
|
SortByCategory => { GRP => "0072", ELEM => "0602", VR => "CS" }, |
|
5005
|
|
|
|
|
|
|
SortingDirection => { GRP => "0072", ELEM => "0604", VR => "CS" }, |
|
5006
|
|
|
|
|
|
|
DisplaySetPatientOrientation => { GRP => "0072", ELEM => "0700", VR => "CS" }, |
|
5007
|
|
|
|
|
|
|
VOIType => { GRP => "0072", ELEM => "0702", VR => "CS" }, |
|
5008
|
|
|
|
|
|
|
PseudoColorType => { GRP => "0072", ELEM => "0704", VR => "CS" }, |
|
5009
|
|
|
|
|
|
|
ShowGrayscaleInverted => { GRP => "0072", ELEM => "0706", VR => "CS" }, |
|
5010
|
|
|
|
|
|
|
ShowImageTrueSizeFlag => { GRP => "0072", ELEM => "0710", VR => "CS" }, |
|
5011
|
|
|
|
|
|
|
ShowGraphicAnnotationFlag => { GRP => "0072", ELEM => "0712", VR => "CS" }, |
|
5012
|
|
|
|
|
|
|
ShowPatientDemographicsFlag => { GRP => "0072", ELEM => "0714", VR => "CS" }, |
|
5013
|
|
|
|
|
|
|
ShowAcquisitionTechniquesFlag => { GRP => "0072", ELEM => "0716", VR => "CS" }, |
|
5014
|
|
|
|
|
|
|
DisplaySetHorizontalJustification => { GRP => "0072", ELEM => "0717", VR => "CS" }, |
|
5015
|
|
|
|
|
|
|
DisplaySetVerticalJustification => { GRP => "0072", ELEM => "0718", VR => "CS" }, |
|
5016
|
|
|
|
|
|
|
UnifiedProcedureStepState => { GRP => "0074", ELEM => "1000", VR => "CS" }, |
|
5017
|
|
|
|
|
|
|
UPSProgressInformationSequence => { GRP => "0074", ELEM => "1002", VR => "SQ" }, |
|
5018
|
|
|
|
|
|
|
UnifiedProcedureStepProgress => { GRP => "0074", ELEM => "1004", VR => "DS" }, |
|
5019
|
|
|
|
|
|
|
UnifiedProcedureStepProgressDescription => { GRP => "0074", ELEM => "1006", VR => "ST" }, |
|
5020
|
|
|
|
|
|
|
UnifiedProcedureStepCommunicationsURISequence => { GRP => "0074", ELEM => "1008", VR => "SQ" }, |
|
5021
|
|
|
|
|
|
|
ContactURI => { GRP => "0074", ELEM => "100A", VR => "ST" }, |
|
5022
|
|
|
|
|
|
|
ContactDisplayName => { GRP => "0074", ELEM => "100C", VR => "LO" }, |
|
5023
|
|
|
|
|
|
|
UnifiedProcedureStepDiscontinuationReasonCodeSequence => { GRP => "0074", ELEM => "100E", VR => "SQ" }, |
|
5024
|
|
|
|
|
|
|
BeamTaskSequence => { GRP => "0074", ELEM => "1020", VR => "SQ" }, |
|
5025
|
|
|
|
|
|
|
BeamTaskType => { GRP => "0074", ELEM => "1022", VR => "CS" }, |
|
5026
|
|
|
|
|
|
|
BeamOrderIndex => { GRP => "0074", ELEM => "1024", VR => "IS" }, |
|
5027
|
|
|
|
|
|
|
DeliveryVerificationImageSequence => { GRP => "0074", ELEM => "1030", VR => "SQ" }, |
|
5028
|
|
|
|
|
|
|
VerificationImageTiming => { GRP => "0074", ELEM => "1032", VR => "CS" }, |
|
5029
|
|
|
|
|
|
|
DoubleExposureFlag => { GRP => "0074", ELEM => "1034", VR => "CS" }, |
|
5030
|
|
|
|
|
|
|
DoubleExposureOrdering => { GRP => "0074", ELEM => "1036", VR => "CS" }, |
|
5031
|
|
|
|
|
|
|
DoubleExposureMeterset => { GRP => "0074", ELEM => "1038", VR => "DS" }, |
|
5032
|
|
|
|
|
|
|
DoubleExposureFieldDelta => { GRP => "0074", ELEM => "103A", VR => "DS" }, |
|
5033
|
|
|
|
|
|
|
RelatedReferenceRTImageSequence => { GRP => "0074", ELEM => "1040", VR => "SQ" }, |
|
5034
|
|
|
|
|
|
|
GeneralMachineVerificationSequence => { GRP => "0074", ELEM => "1042", VR => "SQ" }, |
|
5035
|
|
|
|
|
|
|
ConventionalMachineVerificationSequence => { GRP => "0074", ELEM => "1044", VR => "SQ" }, |
|
5036
|
|
|
|
|
|
|
IonMachineVerificationSequence => { GRP => "0074", ELEM => "1046", VR => "SQ" }, |
|
5037
|
|
|
|
|
|
|
FailedAttributesSequence => { GRP => "0074", ELEM => "1048", VR => "SQ" }, |
|
5038
|
|
|
|
|
|
|
OverriddenAttributesSequence => { GRP => "0074", ELEM => "104A", VR => "SQ" }, |
|
5039
|
|
|
|
|
|
|
ConventionalControlPointVerificationSequence => { GRP => "0074", ELEM => "104C", VR => "SQ" }, |
|
5040
|
|
|
|
|
|
|
IonControlPointVerificationSequence => { GRP => "0074", ELEM => "104E", VR => "SQ" }, |
|
5041
|
|
|
|
|
|
|
AttributeOccurrenceSequence => { GRP => "0074", ELEM => "1050", VR => "SQ" }, |
|
5042
|
|
|
|
|
|
|
AttributeOccurrencePointer => { GRP => "0074", ELEM => "1052", VR => "AT" }, |
|
5043
|
|
|
|
|
|
|
AttributeItemSelector => { GRP => "0074", ELEM => "1054", VR => "UL" }, |
|
5044
|
|
|
|
|
|
|
AttributeOccurrencePrivateCreator => { GRP => "0074", ELEM => "1056", VR => "LO" }, |
|
5045
|
|
|
|
|
|
|
ScheduledProcedureStepPriority => { GRP => "0074", ELEM => "1200", VR => "CS" }, |
|
5046
|
|
|
|
|
|
|
WorklistLabel => { GRP => "0074", ELEM => "1202", VR => "LO" }, |
|
5047
|
|
|
|
|
|
|
ProcedureStepLabel => { GRP => "0074", ELEM => "1204", VR => "LO" }, |
|
5048
|
|
|
|
|
|
|
ScheduledProcessingParametersSequence => { GRP => "0074", ELEM => "1210", VR => "SQ" }, |
|
5049
|
|
|
|
|
|
|
PerformedProcessingParametersSequence => { GRP => "0074", ELEM => "1212", VR => "SQ" }, |
|
5050
|
|
|
|
|
|
|
UPSPerformedProcedureSequence => { GRP => "0074", ELEM => "1216", VR => "SQ" }, |
|
5051
|
|
|
|
|
|
|
RelatedProcedureStepSequence => { GRP => "0074", ELEM => "1220", VR => "SQ" }, |
|
5052
|
|
|
|
|
|
|
ProcedureStepRelationshipType => { GRP => "0074", ELEM => "1222", VR => "LO" }, |
|
5053
|
|
|
|
|
|
|
DeletionLock => { GRP => "0074", ELEM => "1230", VR => "LO" }, |
|
5054
|
|
|
|
|
|
|
ReceivingAE => { GRP => "0074", ELEM => "1234", VR => "AE" }, |
|
5055
|
|
|
|
|
|
|
RequestingAE => { GRP => "0074", ELEM => "1236", VR => "AE" }, |
|
5056
|
|
|
|
|
|
|
ReasonForCancellation => { GRP => "0074", ELEM => "1238", VR => "LT" }, |
|
5057
|
|
|
|
|
|
|
SCPStatus => { GRP => "0074", ELEM => "1242", VR => "CS" }, |
|
5058
|
|
|
|
|
|
|
SubscriptionListStatus => { GRP => "0074", ELEM => "1244", VR => "CS" }, |
|
5059
|
|
|
|
|
|
|
UPSListStatus => { GRP => "0074", ELEM => "1246", VR => "CS" }, |
|
5060
|
|
|
|
|
|
|
StorageMediaFileSetID => { GRP => "0088", ELEM => "0130", VR => "SH" }, |
|
5061
|
|
|
|
|
|
|
StorageMediaFileSetUID => { GRP => "0088", ELEM => "0140", VR => "UI" }, |
|
5062
|
|
|
|
|
|
|
IconImageSequence => { GRP => "0088", ELEM => "0200", VR => "SQ" }, |
|
5063
|
|
|
|
|
|
|
SOPInstanceStatus => { GRP => "0100", ELEM => "0410", VR => "CS" }, |
|
5064
|
|
|
|
|
|
|
SOPAuthorizationDateAndTime => { GRP => "0100", ELEM => "0420", VR => "DT" }, |
|
5065
|
|
|
|
|
|
|
SOPAuthorizationComment => { GRP => "0100", ELEM => "0424", VR => "LT" }, |
|
5066
|
|
|
|
|
|
|
AuthorizationEquipmentCertificationNumber => { GRP => "0100", ELEM => "0426", VR => "LO" }, |
|
5067
|
|
|
|
|
|
|
MACIDNumber => { GRP => "0400", ELEM => "0005", VR => "US" }, |
|
5068
|
|
|
|
|
|
|
MACCalculationTransferSyntaxUID => { GRP => "0400", ELEM => "0010", VR => "UI" }, |
|
5069
|
|
|
|
|
|
|
MACAlgorithm => { GRP => "0400", ELEM => "0015", VR => "CS" }, |
|
5070
|
|
|
|
|
|
|
DataElementsSigned => { GRP => "0400", ELEM => "0020", VR => "AT" }, |
|
5071
|
|
|
|
|
|
|
DigitalSignatureUID => { GRP => "0400", ELEM => "0100", VR => "UI" }, |
|
5072
|
|
|
|
|
|
|
DigitalSignatureDateTime => { GRP => "0400", ELEM => "0105", VR => "DT" }, |
|
5073
|
|
|
|
|
|
|
CertificateType => { GRP => "0400", ELEM => "0110", VR => "CS" }, |
|
5074
|
|
|
|
|
|
|
CertificateOfSigner => { GRP => "0400", ELEM => "0115", VR => "OB" }, |
|
5075
|
|
|
|
|
|
|
Signature => { GRP => "0400", ELEM => "0120", VR => "OB" }, |
|
5076
|
|
|
|
|
|
|
CertifiedTimestampType => { GRP => "0400", ELEM => "0305", VR => "CS" }, |
|
5077
|
|
|
|
|
|
|
CertifiedTimestamp => { GRP => "0400", ELEM => "0310", VR => "OB" }, |
|
5078
|
|
|
|
|
|
|
DigitalSignaturePurposeCodeSequence => { GRP => "0400", ELEM => "0401", VR => "SQ" }, |
|
5079
|
|
|
|
|
|
|
ReferencedDigitalSignatureSequence => { GRP => "0400", ELEM => "0402", VR => "SQ" }, |
|
5080
|
|
|
|
|
|
|
ReferencedSOPInstanceMACSequence => { GRP => "0400", ELEM => "0403", VR => "SQ" }, |
|
5081
|
|
|
|
|
|
|
MAC => { GRP => "0400", ELEM => "0404", VR => "OB" }, |
|
5082
|
|
|
|
|
|
|
EncryptedAttributesSequence => { GRP => "0400", ELEM => "0500", VR => "SQ" }, |
|
5083
|
|
|
|
|
|
|
EncryptedContentTransferSyntaxUID => { GRP => "0400", ELEM => "0510", VR => "UI" }, |
|
5084
|
|
|
|
|
|
|
EncryptedContent => { GRP => "0400", ELEM => "0520", VR => "OB" }, |
|
5085
|
|
|
|
|
|
|
ModifiedAttributesSequence => { GRP => "0400", ELEM => "0550", VR => "SQ" }, |
|
5086
|
|
|
|
|
|
|
OriginalAttributesSequence => { GRP => "0400", ELEM => "0561", VR => "SQ" }, |
|
5087
|
|
|
|
|
|
|
AttributeModificationDateTime => { GRP => "0400", ELEM => "0562", VR => "DT" }, |
|
5088
|
|
|
|
|
|
|
ModifyingSystem => { GRP => "0400", ELEM => "0563", VR => "LO" }, |
|
5089
|
|
|
|
|
|
|
SourceOfPreviousValues => { GRP => "0400", ELEM => "0564", VR => "LO" }, |
|
5090
|
|
|
|
|
|
|
ReasonForTheAttributeModification => { GRP => "0400", ELEM => "0565", VR => "CS" }, |
|
5091
|
|
|
|
|
|
|
NumberOfCopies => { GRP => "2000", ELEM => "0010", VR => "IS" }, |
|
5092
|
|
|
|
|
|
|
PrinterConfigurationSequence => { GRP => "2000", ELEM => "001E", VR => "SQ" }, |
|
5093
|
|
|
|
|
|
|
PrintPriority => { GRP => "2000", ELEM => "0020", VR => "CS" }, |
|
5094
|
|
|
|
|
|
|
MediumType => { GRP => "2000", ELEM => "0030", VR => "CS" }, |
|
5095
|
|
|
|
|
|
|
FilmDestination => { GRP => "2000", ELEM => "0040", VR => "CS" }, |
|
5096
|
|
|
|
|
|
|
FilmSessionLabel => { GRP => "2000", ELEM => "0050", VR => "LO" }, |
|
5097
|
|
|
|
|
|
|
MemoryAllocation => { GRP => "2000", ELEM => "0060", VR => "IS" }, |
|
5098
|
|
|
|
|
|
|
MaximumMemoryAllocation => { GRP => "2000", ELEM => "0061", VR => "IS" }, |
|
5099
|
|
|
|
|
|
|
MemoryBitDepth => { GRP => "2000", ELEM => "00A0", VR => "US" }, |
|
5100
|
|
|
|
|
|
|
PrintingBitDepth => { GRP => "2000", ELEM => "00A1", VR => "US" }, |
|
5101
|
|
|
|
|
|
|
MediaInstalledSequence => { GRP => "2000", ELEM => "00A2", VR => "SQ" }, |
|
5102
|
|
|
|
|
|
|
OtherMediaAvailableSequence => { GRP => "2000", ELEM => "00A4", VR => "SQ" }, |
|
5103
|
|
|
|
|
|
|
SupportedImageDisplayFormatsSequence => { GRP => "2000", ELEM => "00A8", VR => "SQ" }, |
|
5104
|
|
|
|
|
|
|
ReferencedFilmBoxSequence => { GRP => "2000", ELEM => "0500", VR => "SQ" }, |
|
5105
|
|
|
|
|
|
|
ImageDisplayFormat => { GRP => "2010", ELEM => "0010", VR => "ST" }, |
|
5106
|
|
|
|
|
|
|
AnnotationDisplayFormatID => { GRP => "2010", ELEM => "0030", VR => "CS" }, |
|
5107
|
|
|
|
|
|
|
FilmOrientation => { GRP => "2010", ELEM => "0040", VR => "CS" }, |
|
5108
|
|
|
|
|
|
|
FilmSizeID => { GRP => "2010", ELEM => "0050", VR => "CS" }, |
|
5109
|
|
|
|
|
|
|
PrinterResolutionID => { GRP => "2010", ELEM => "0052", VR => "CS" }, |
|
5110
|
|
|
|
|
|
|
DefaultPrinterResolutionID => { GRP => "2010", ELEM => "0054", VR => "CS" }, |
|
5111
|
|
|
|
|
|
|
MagnificationType => { GRP => "2010", ELEM => "0060", VR => "CS" }, |
|
5112
|
|
|
|
|
|
|
SmoothingType => { GRP => "2010", ELEM => "0080", VR => "CS" }, |
|
5113
|
|
|
|
|
|
|
DefaultMagnificationType => { GRP => "2010", ELEM => "00A6", VR => "CS" }, |
|
5114
|
|
|
|
|
|
|
OtherMagnificationTypesAvailable => { GRP => "2010", ELEM => "00A7", VR => "CS" }, |
|
5115
|
|
|
|
|
|
|
DefaultSmoothingType => { GRP => "2010", ELEM => "00A8", VR => "CS" }, |
|
5116
|
|
|
|
|
|
|
OtherSmoothingTypesAvailable => { GRP => "2010", ELEM => "00A9", VR => "CS" }, |
|
5117
|
|
|
|
|
|
|
BorderDensity => { GRP => "2010", ELEM => "0100", VR => "CS" }, |
|
5118
|
|
|
|
|
|
|
EmptyImageDensity => { GRP => "2010", ELEM => "0110", VR => "CS" }, |
|
5119
|
|
|
|
|
|
|
MinDensity => { GRP => "2010", ELEM => "0120", VR => "US" }, |
|
5120
|
|
|
|
|
|
|
MaxDensity => { GRP => "2010", ELEM => "0130", VR => "US" }, |
|
5121
|
|
|
|
|
|
|
Trim => { GRP => "2010", ELEM => "0140", VR => "CS" }, |
|
5122
|
|
|
|
|
|
|
ConfigurationInformation => { GRP => "2010", ELEM => "0150", VR => "ST" }, |
|
5123
|
|
|
|
|
|
|
ConfigurationInformationDescription => { GRP => "2010", ELEM => "0152", VR => "LT" }, |
|
5124
|
|
|
|
|
|
|
MaximumCollatedFilms => { GRP => "2010", ELEM => "0154", VR => "IS" }, |
|
5125
|
|
|
|
|
|
|
Illumination => { GRP => "2010", ELEM => "015E", VR => "US" }, |
|
5126
|
|
|
|
|
|
|
ReflectedAmbientLight => { GRP => "2010", ELEM => "0160", VR => "US" }, |
|
5127
|
|
|
|
|
|
|
PrinterPixelSpacing => { GRP => "2010", ELEM => "0376", VR => "DS" }, |
|
5128
|
|
|
|
|
|
|
ReferencedFilmSessionSequence => { GRP => "2010", ELEM => "0500", VR => "SQ" }, |
|
5129
|
|
|
|
|
|
|
ReferencedImageBoxSequence => { GRP => "2010", ELEM => "0510", VR => "SQ" }, |
|
5130
|
|
|
|
|
|
|
ReferencedBasicAnnotationBoxSequence => { GRP => "2010", ELEM => "0520", VR => "SQ" }, |
|
5131
|
|
|
|
|
|
|
ImageBoxPosition => { GRP => "2020", ELEM => "0010", VR => "US" }, |
|
5132
|
|
|
|
|
|
|
Polarity => { GRP => "2020", ELEM => "0020", VR => "CS" }, |
|
5133
|
|
|
|
|
|
|
RequestedImageSize => { GRP => "2020", ELEM => "0030", VR => "DS" }, |
|
5134
|
|
|
|
|
|
|
RequestedDecimateCropBehavior => { GRP => "2020", ELEM => "0040", VR => "CS" }, |
|
5135
|
|
|
|
|
|
|
RequestedResolutionID => { GRP => "2020", ELEM => "0050", VR => "CS" }, |
|
5136
|
|
|
|
|
|
|
RequestedImageSizeFlag => { GRP => "2020", ELEM => "00A0", VR => "CS" }, |
|
5137
|
|
|
|
|
|
|
DecimateCropResult => { GRP => "2020", ELEM => "00A2", VR => "CS" }, |
|
5138
|
|
|
|
|
|
|
BasicGrayscaleImageSequence => { GRP => "2020", ELEM => "0110", VR => "SQ" }, |
|
5139
|
|
|
|
|
|
|
BasicColorImageSequence => { GRP => "2020", ELEM => "0111", VR => "SQ" }, |
|
5140
|
|
|
|
|
|
|
AnnotationPosition => { GRP => "2030", ELEM => "0010", VR => "US" }, |
|
5141
|
|
|
|
|
|
|
TextString => { GRP => "2030", ELEM => "0020", VR => "LO" }, |
|
5142
|
|
|
|
|
|
|
PresentationLUTSequence => { GRP => "2050", ELEM => "0010", VR => "SQ" }, |
|
5143
|
|
|
|
|
|
|
PresentationLUTShape => { GRP => "2050", ELEM => "0020", VR => "CS" }, |
|
5144
|
|
|
|
|
|
|
ReferencedPresentationLUTSequence => { GRP => "2050", ELEM => "0500", VR => "SQ" }, |
|
5145
|
|
|
|
|
|
|
ExecutionStatus => { GRP => "2100", ELEM => "0020", VR => "CS" }, |
|
5146
|
|
|
|
|
|
|
ExecutionStatusInfo => { GRP => "2100", ELEM => "0030", VR => "CS" }, |
|
5147
|
|
|
|
|
|
|
CreationDate => { GRP => "2100", ELEM => "0040", VR => "DA" }, |
|
5148
|
|
|
|
|
|
|
CreationTime => { GRP => "2100", ELEM => "0050", VR => "TM" }, |
|
5149
|
|
|
|
|
|
|
Originator => { GRP => "2100", ELEM => "0070", VR => "AE" }, |
|
5150
|
|
|
|
|
|
|
OwnerID => { GRP => "2100", ELEM => "0160", VR => "SH" }, |
|
5151
|
|
|
|
|
|
|
NumberOfFilms => { GRP => "2100", ELEM => "0170", VR => "IS" }, |
|
5152
|
|
|
|
|
|
|
PrinterStatus => { GRP => "2110", ELEM => "0010", VR => "CS" }, |
|
5153
|
|
|
|
|
|
|
PrinterStatusInfo => { GRP => "2110", ELEM => "0020", VR => "CS" }, |
|
5154
|
|
|
|
|
|
|
PrinterName => { GRP => "2110", ELEM => "0030", VR => "LO" }, |
|
5155
|
|
|
|
|
|
|
LabelUsingInformationExtractedFromInstances => { GRP => "2200", ELEM => "0001", VR => "CS" }, |
|
5156
|
|
|
|
|
|
|
LabelText => { GRP => "2200", ELEM => "0002", VR => "UT" }, |
|
5157
|
|
|
|
|
|
|
LabelStyleSelection => { GRP => "2200", ELEM => "0003", VR => "CS" }, |
|
5158
|
|
|
|
|
|
|
MediaDisposition => { GRP => "2200", ELEM => "0004", VR => "LT" }, |
|
5159
|
|
|
|
|
|
|
BarcodeValue => { GRP => "2200", ELEM => "0005", VR => "LT" }, |
|
5160
|
|
|
|
|
|
|
BarcodeSymbology => { GRP => "2200", ELEM => "0006", VR => "CS" }, |
|
5161
|
|
|
|
|
|
|
AllowMediaSplitting => { GRP => "2200", ELEM => "0007", VR => "CS" }, |
|
5162
|
|
|
|
|
|
|
IncludeNonDICOMObjects => { GRP => "2200", ELEM => "0008", VR => "CS" }, |
|
5163
|
|
|
|
|
|
|
IncludeDisplayApplication => { GRP => "2200", ELEM => "0009", VR => "CS" }, |
|
5164
|
|
|
|
|
|
|
PreserveCompositeInstancesAfterMediaCreation => { GRP => "2200", ELEM => "000A", VR => "CS" }, |
|
5165
|
|
|
|
|
|
|
TotalNumberOfPiecesOfMediaCreated => { GRP => "2200", ELEM => "000B", VR => "US" }, |
|
5166
|
|
|
|
|
|
|
RequestedMediaApplicationProfile => { GRP => "2200", ELEM => "000C", VR => "LO" }, |
|
5167
|
|
|
|
|
|
|
ReferencedStorageMediaSequence => { GRP => "2200", ELEM => "000D", VR => "SQ" }, |
|
5168
|
|
|
|
|
|
|
FailureAttributes => { GRP => "2200", ELEM => "000E", VR => "AT" }, |
|
5169
|
|
|
|
|
|
|
AllowLossyCompression => { GRP => "2200", ELEM => "000F", VR => "CS" }, |
|
5170
|
|
|
|
|
|
|
RequestPriority => { GRP => "2200", ELEM => "0020", VR => "CS" }, |
|
5171
|
|
|
|
|
|
|
RTImageLabel => { GRP => "3002", ELEM => "0002", VR => "SH" }, |
|
5172
|
|
|
|
|
|
|
RTImageName => { GRP => "3002", ELEM => "0003", VR => "LO" }, |
|
5173
|
|
|
|
|
|
|
RTImageDescription => { GRP => "3002", ELEM => "0004", VR => "ST" }, |
|
5174
|
|
|
|
|
|
|
ReportedValuesOrigin => { GRP => "3002", ELEM => "000A", VR => "CS" }, |
|
5175
|
|
|
|
|
|
|
RTImagePlane => { GRP => "3002", ELEM => "000C", VR => "CS" }, |
|
5176
|
|
|
|
|
|
|
XRayImageReceptorTranslation => { GRP => "3002", ELEM => "000D", VR => "DS" }, |
|
5177
|
|
|
|
|
|
|
XRayImageReceptorAngle => { GRP => "3002", ELEM => "000E", VR => "DS" }, |
|
5178
|
|
|
|
|
|
|
RTImageOrientation => { GRP => "3002", ELEM => "0010", VR => "DS" }, |
|
5179
|
|
|
|
|
|
|
ImagePlanePixelSpacing => { GRP => "3002", ELEM => "0011", VR => "DS" }, |
|
5180
|
|
|
|
|
|
|
RTImagePosition => { GRP => "3002", ELEM => "0012", VR => "DS" }, |
|
5181
|
|
|
|
|
|
|
RadiationMachineName => { GRP => "3002", ELEM => "0020", VR => "SH" }, |
|
5182
|
|
|
|
|
|
|
RadiationMachineSAD => { GRP => "3002", ELEM => "0022", VR => "DS" }, |
|
5183
|
|
|
|
|
|
|
RadiationMachineSSD => { GRP => "3002", ELEM => "0024", VR => "DS" }, |
|
5184
|
|
|
|
|
|
|
RTImageSID => { GRP => "3002", ELEM => "0026", VR => "DS" }, |
|
5185
|
|
|
|
|
|
|
SourceToReferenceObjectDistance => { GRP => "3002", ELEM => "0028", VR => "DS" }, |
|
5186
|
|
|
|
|
|
|
FractionNumber => { GRP => "3002", ELEM => "0029", VR => "IS" }, |
|
5187
|
|
|
|
|
|
|
ExposureSequence => { GRP => "3002", ELEM => "0030", VR => "SQ" }, |
|
5188
|
|
|
|
|
|
|
MetersetExposure => { GRP => "3002", ELEM => "0032", VR => "DS" }, |
|
5189
|
|
|
|
|
|
|
DiaphragmPosition => { GRP => "3002", ELEM => "0034", VR => "DS" }, |
|
5190
|
|
|
|
|
|
|
FluenceMapSequence => { GRP => "3002", ELEM => "0040", VR => "SQ" }, |
|
5191
|
|
|
|
|
|
|
FluenceDataSource => { GRP => "3002", ELEM => "0041", VR => "CS" }, |
|
5192
|
|
|
|
|
|
|
FluenceDataScale => { GRP => "3002", ELEM => "0042", VR => "DS" }, |
|
5193
|
|
|
|
|
|
|
DVHType => { GRP => "3004", ELEM => "0001", VR => "CS" }, |
|
5194
|
|
|
|
|
|
|
DoseUnits => { GRP => "3004", ELEM => "0002", VR => "CS" }, |
|
5195
|
|
|
|
|
|
|
DoseType => { GRP => "3004", ELEM => "0004", VR => "CS" }, |
|
5196
|
|
|
|
|
|
|
DoseComment => { GRP => "3004", ELEM => "0006", VR => "LO" }, |
|
5197
|
|
|
|
|
|
|
NormalizationPoint => { GRP => "3004", ELEM => "0008", VR => "DS" }, |
|
5198
|
|
|
|
|
|
|
DoseSummationType => { GRP => "3004", ELEM => "000A", VR => "CS" }, |
|
5199
|
|
|
|
|
|
|
GridFrameOffsetVector => { GRP => "3004", ELEM => "000C", VR => "DS" }, |
|
5200
|
|
|
|
|
|
|
DoseGridScaling => { GRP => "3004", ELEM => "000E", VR => "DS" }, |
|
5201
|
|
|
|
|
|
|
RTDoseROISequence => { GRP => "3004", ELEM => "0010", VR => "SQ" }, |
|
5202
|
|
|
|
|
|
|
DoseValue => { GRP => "3004", ELEM => "0012", VR => "DS" }, |
|
5203
|
|
|
|
|
|
|
TissueHeterogeneityCorrection => { GRP => "3004", ELEM => "0014", VR => "CS" }, |
|
5204
|
|
|
|
|
|
|
DVHNormalizationPoint => { GRP => "3004", ELEM => "0040", VR => "DS" }, |
|
5205
|
|
|
|
|
|
|
DVHNormalizationDoseValue => { GRP => "3004", ELEM => "0042", VR => "DS" }, |
|
5206
|
|
|
|
|
|
|
DVHSequence => { GRP => "3004", ELEM => "0050", VR => "SQ" }, |
|
5207
|
|
|
|
|
|
|
DVHDoseScaling => { GRP => "3004", ELEM => "0052", VR => "DS" }, |
|
5208
|
|
|
|
|
|
|
DVHVolumeUnits => { GRP => "3004", ELEM => "0054", VR => "CS" }, |
|
5209
|
|
|
|
|
|
|
DVHNumberOfBins => { GRP => "3004", ELEM => "0056", VR => "IS" }, |
|
5210
|
|
|
|
|
|
|
DVHData => { GRP => "3004", ELEM => "0058", VR => "DS" }, |
|
5211
|
|
|
|
|
|
|
DVHReferencedROISequence => { GRP => "3004", ELEM => "0060", VR => "SQ" }, |
|
5212
|
|
|
|
|
|
|
DVHROIContributionType => { GRP => "3004", ELEM => "0062", VR => "CS" }, |
|
5213
|
|
|
|
|
|
|
DVHMinimumDose => { GRP => "3004", ELEM => "0070", VR => "DS" }, |
|
5214
|
|
|
|
|
|
|
DVHMaximumDose => { GRP => "3004", ELEM => "0072", VR => "DS" }, |
|
5215
|
|
|
|
|
|
|
DVHMeanDose => { GRP => "3004", ELEM => "0074", VR => "DS" }, |
|
5216
|
|
|
|
|
|
|
StructureSetLabel => { GRP => "3006", ELEM => "0002", VR => "SH" }, |
|
5217
|
|
|
|
|
|
|
StructureSetName => { GRP => "3006", ELEM => "0004", VR => "LO" }, |
|
5218
|
|
|
|
|
|
|
StructureSetDescription => { GRP => "3006", ELEM => "0006", VR => "ST" }, |
|
5219
|
|
|
|
|
|
|
StructureSetDate => { GRP => "3006", ELEM => "0008", VR => "DA" }, |
|
5220
|
|
|
|
|
|
|
StructureSetTime => { GRP => "3006", ELEM => "0009", VR => "TM" }, |
|
5221
|
|
|
|
|
|
|
ReferencedFrameOfReferenceSequence => { GRP => "3006", ELEM => "0010", VR => "SQ" }, |
|
5222
|
|
|
|
|
|
|
RTReferencedStudySequence => { GRP => "3006", ELEM => "0012", VR => "SQ" }, |
|
5223
|
|
|
|
|
|
|
RTReferencedSeriesSequence => { GRP => "3006", ELEM => "0014", VR => "SQ" }, |
|
5224
|
|
|
|
|
|
|
ContourImageSequence => { GRP => "3006", ELEM => "0016", VR => "SQ" }, |
|
5225
|
|
|
|
|
|
|
StructureSetROISequence => { GRP => "3006", ELEM => "0020", VR => "SQ" }, |
|
5226
|
|
|
|
|
|
|
ROINumber => { GRP => "3006", ELEM => "0022", VR => "IS" }, |
|
5227
|
|
|
|
|
|
|
ReferencedFrameOfReferenceUID => { GRP => "3006", ELEM => "0024", VR => "UI" }, |
|
5228
|
|
|
|
|
|
|
ROIName => { GRP => "3006", ELEM => "0026", VR => "LO" }, |
|
5229
|
|
|
|
|
|
|
ROIDescription => { GRP => "3006", ELEM => "0028", VR => "ST" }, |
|
5230
|
|
|
|
|
|
|
ROIDisplayColor => { GRP => "3006", ELEM => "002A", VR => "IS" }, |
|
5231
|
|
|
|
|
|
|
ROIVolume => { GRP => "3006", ELEM => "002C", VR => "DS" }, |
|
5232
|
|
|
|
|
|
|
RTRelatedROISequence => { GRP => "3006", ELEM => "0030", VR => "SQ" }, |
|
5233
|
|
|
|
|
|
|
RTROIRelationship => { GRP => "3006", ELEM => "0033", VR => "CS" }, |
|
5234
|
|
|
|
|
|
|
ROIGenerationAlgorithm => { GRP => "3006", ELEM => "0036", VR => "CS" }, |
|
5235
|
|
|
|
|
|
|
ROIGenerationDescription => { GRP => "3006", ELEM => "0038", VR => "LO" }, |
|
5236
|
|
|
|
|
|
|
ROIContourSequence => { GRP => "3006", ELEM => "0039", VR => "SQ" }, |
|
5237
|
|
|
|
|
|
|
ContourSequence => { GRP => "3006", ELEM => "0040", VR => "SQ" }, |
|
5238
|
|
|
|
|
|
|
ContourGeometricType => { GRP => "3006", ELEM => "0042", VR => "CS" }, |
|
5239
|
|
|
|
|
|
|
ContourSlabThickness => { GRP => "3006", ELEM => "0044", VR => "DS" }, |
|
5240
|
|
|
|
|
|
|
ContourOffsetVector => { GRP => "3006", ELEM => "0045", VR => "DS" }, |
|
5241
|
|
|
|
|
|
|
NumberOfContourPoints => { GRP => "3006", ELEM => "0046", VR => "IS" }, |
|
5242
|
|
|
|
|
|
|
ContourNumber => { GRP => "3006", ELEM => "0048", VR => "IS" }, |
|
5243
|
|
|
|
|
|
|
AttachedContours => { GRP => "3006", ELEM => "0049", VR => "IS" }, |
|
5244
|
|
|
|
|
|
|
ContourData => { GRP => "3006", ELEM => "0050", VR => "DS" }, |
|
5245
|
|
|
|
|
|
|
RTROIObservationsSequence => { GRP => "3006", ELEM => "0080", VR => "SQ" }, |
|
5246
|
|
|
|
|
|
|
ObservationNumber => { GRP => "3006", ELEM => "0082", VR => "IS" }, |
|
5247
|
|
|
|
|
|
|
ReferencedROINumber => { GRP => "3006", ELEM => "0084", VR => "IS" }, |
|
5248
|
|
|
|
|
|
|
ROIObservationLabel => { GRP => "3006", ELEM => "0085", VR => "SH" }, |
|
5249
|
|
|
|
|
|
|
RTROIIdentificationCodeSequence => { GRP => "3006", ELEM => "0086", VR => "SQ" }, |
|
5250
|
|
|
|
|
|
|
ROIObservationDescription => { GRP => "3006", ELEM => "0088", VR => "ST" }, |
|
5251
|
|
|
|
|
|
|
RelatedRTROIObservationsSequence => { GRP => "3006", ELEM => "00A0", VR => "SQ" }, |
|
5252
|
|
|
|
|
|
|
RTROIInterpretedType => { GRP => "3006", ELEM => "00A4", VR => "CS" }, |
|
5253
|
|
|
|
|
|
|
ROIInterpreter => { GRP => "3006", ELEM => "00A6", VR => "PN" }, |
|
5254
|
|
|
|
|
|
|
ROIPhysicalPropertiesSequence => { GRP => "3006", ELEM => "00B0", VR => "SQ" }, |
|
5255
|
|
|
|
|
|
|
ROIPhysicalProperty => { GRP => "3006", ELEM => "00B2", VR => "CS" }, |
|
5256
|
|
|
|
|
|
|
ROIPhysicalPropertyValue => { GRP => "3006", ELEM => "00B4", VR => "DS" }, |
|
5257
|
|
|
|
|
|
|
ROIElementalCompositionSequence => { GRP => "3006", ELEM => "00B6", VR => "SQ" }, |
|
5258
|
|
|
|
|
|
|
ROIElementalCompositionAtomicNumber => { GRP => "3006", ELEM => "00B7", VR => "US" }, |
|
5259
|
|
|
|
|
|
|
ROIElementalCompositionAtomicMassFraction => { GRP => "3006", ELEM => "00B8", VR => "FL" }, |
|
5260
|
|
|
|
|
|
|
FrameOfReferenceRelationshipSequence => { GRP => "3006", ELEM => "00C0", VR => "SQ" }, |
|
5261
|
|
|
|
|
|
|
RelatedFrameOfReferenceUID => { GRP => "3006", ELEM => "00C2", VR => "UI" }, |
|
5262
|
|
|
|
|
|
|
FrameOfReferenceTransformationType => { GRP => "3006", ELEM => "00C4", VR => "CS" }, |
|
5263
|
|
|
|
|
|
|
FrameOfReferenceTransformationMatrix => { GRP => "3006", ELEM => "00C6", VR => "DS" }, |
|
5264
|
|
|
|
|
|
|
FrameOfReferenceTransformationComment => { GRP => "3006", ELEM => "00C8", VR => "LO" }, |
|
5265
|
|
|
|
|
|
|
MeasuredDoseReferenceSequence => { GRP => "3008", ELEM => "0010", VR => "SQ" }, |
|
5266
|
|
|
|
|
|
|
MeasuredDoseDescription => { GRP => "3008", ELEM => "0012", VR => "ST" }, |
|
5267
|
|
|
|
|
|
|
MeasuredDoseType => { GRP => "3008", ELEM => "0014", VR => "CS" }, |
|
5268
|
|
|
|
|
|
|
MeasuredDoseValue => { GRP => "3008", ELEM => "0016", VR => "DS" }, |
|
5269
|
|
|
|
|
|
|
TreatmentSessionBeamSequence => { GRP => "3008", ELEM => "0020", VR => "SQ" }, |
|
5270
|
|
|
|
|
|
|
TreatmentSessionIonBeamSequence => { GRP => "3008", ELEM => "0021", VR => "SQ" }, |
|
5271
|
|
|
|
|
|
|
CurrentFractionNumber => { GRP => "3008", ELEM => "0022", VR => "IS" }, |
|
5272
|
|
|
|
|
|
|
TreatmentControlPointDate => { GRP => "3008", ELEM => "0024", VR => "DA" }, |
|
5273
|
|
|
|
|
|
|
TreatmentControlPointTime => { GRP => "3008", ELEM => "0025", VR => "TM" }, |
|
5274
|
|
|
|
|
|
|
TreatmentTerminationStatus => { GRP => "3008", ELEM => "002A", VR => "CS" }, |
|
5275
|
|
|
|
|
|
|
TreatmentTerminationCode => { GRP => "3008", ELEM => "002B", VR => "SH" }, |
|
5276
|
|
|
|
|
|
|
TreatmentVerificationStatus => { GRP => "3008", ELEM => "002C", VR => "CS" }, |
|
5277
|
|
|
|
|
|
|
ReferencedTreatmentRecordSequence => { GRP => "3008", ELEM => "0030", VR => "SQ" }, |
|
5278
|
|
|
|
|
|
|
SpecifiedPrimaryMeterset => { GRP => "3008", ELEM => "0032", VR => "DS" }, |
|
5279
|
|
|
|
|
|
|
SpecifiedSecondaryMeterset => { GRP => "3008", ELEM => "0033", VR => "DS" }, |
|
5280
|
|
|
|
|
|
|
DeliveredPrimaryMeterset => { GRP => "3008", ELEM => "0036", VR => "DS" }, |
|
5281
|
|
|
|
|
|
|
DeliveredSecondaryMeterset => { GRP => "3008", ELEM => "0037", VR => "DS" }, |
|
5282
|
|
|
|
|
|
|
SpecifiedTreatmentTime => { GRP => "3008", ELEM => "003A", VR => "DS" }, |
|
5283
|
|
|
|
|
|
|
DeliveredTreatmentTime => { GRP => "3008", ELEM => "003B", VR => "DS" }, |
|
5284
|
|
|
|
|
|
|
ControlPointDeliverySequence => { GRP => "3008", ELEM => "0040", VR => "SQ" }, |
|
5285
|
|
|
|
|
|
|
IonControlPointDeliverySequence => { GRP => "3008", ELEM => "0041", VR => "SQ" }, |
|
5286
|
|
|
|
|
|
|
SpecifiedMeterset => { GRP => "3008", ELEM => "0042", VR => "DS" }, |
|
5287
|
|
|
|
|
|
|
DeliveredMeterset => { GRP => "3008", ELEM => "0044", VR => "DS" }, |
|
5288
|
|
|
|
|
|
|
MetersetRateSet => { GRP => "3008", ELEM => "0045", VR => "FL" }, |
|
5289
|
|
|
|
|
|
|
MetersetRateDelivered => { GRP => "3008", ELEM => "0046", VR => "FL" }, |
|
5290
|
|
|
|
|
|
|
ScanSpotMetersetsDelivered => { GRP => "3008", ELEM => "0047", VR => "FL" }, |
|
5291
|
|
|
|
|
|
|
DoseRateDelivered => { GRP => "3008", ELEM => "0048", VR => "DS" }, |
|
5292
|
|
|
|
|
|
|
TreatmentSummaryCalculatedDoseReferenceSequence => { GRP => "3008", ELEM => "0050", VR => "SQ" }, |
|
5293
|
|
|
|
|
|
|
CumulativeDoseToDoseReference => { GRP => "3008", ELEM => "0052", VR => "DS" }, |
|
5294
|
|
|
|
|
|
|
FirstTreatmentDate => { GRP => "3008", ELEM => "0054", VR => "DA" }, |
|
5295
|
|
|
|
|
|
|
MostRecentTreatmentDate => { GRP => "3008", ELEM => "0056", VR => "DA" }, |
|
5296
|
|
|
|
|
|
|
NumberOfFractionsDelivered => { GRP => "3008", ELEM => "005A", VR => "IS" }, |
|
5297
|
|
|
|
|
|
|
OverrideSequence => { GRP => "3008", ELEM => "0060", VR => "SQ" }, |
|
5298
|
|
|
|
|
|
|
ParameterSequencePointer => { GRP => "3008", ELEM => "0061", VR => "AT" }, |
|
5299
|
|
|
|
|
|
|
OverrideParameterPointer => { GRP => "3008", ELEM => "0062", VR => "AT" }, |
|
5300
|
|
|
|
|
|
|
ParameterItemIndex => { GRP => "3008", ELEM => "0063", VR => "IS" }, |
|
5301
|
|
|
|
|
|
|
MeasuredDoseReferenceNumber => { GRP => "3008", ELEM => "0064", VR => "IS" }, |
|
5302
|
|
|
|
|
|
|
ParameterPointer => { GRP => "3008", ELEM => "0065", VR => "AT" }, |
|
5303
|
|
|
|
|
|
|
OverrideReason => { GRP => "3008", ELEM => "0066", VR => "ST" }, |
|
5304
|
|
|
|
|
|
|
CorrectedParameterSequence => { GRP => "3008", ELEM => "0068", VR => "SQ" }, |
|
5305
|
|
|
|
|
|
|
CorrectionValue => { GRP => "3008", ELEM => "006A", VR => "FL" }, |
|
5306
|
|
|
|
|
|
|
CalculatedDoseReferenceSequence => { GRP => "3008", ELEM => "0070", VR => "SQ" }, |
|
5307
|
|
|
|
|
|
|
CalculatedDoseReferenceNumber => { GRP => "3008", ELEM => "0072", VR => "IS" }, |
|
5308
|
|
|
|
|
|
|
CalculatedDoseReferenceDescription => { GRP => "3008", ELEM => "0074", VR => "ST" }, |
|
5309
|
|
|
|
|
|
|
CalculatedDoseReferenceDoseValue => { GRP => "3008", ELEM => "0076", VR => "DS" }, |
|
5310
|
|
|
|
|
|
|
StartMeterset => { GRP => "3008", ELEM => "0078", VR => "DS" }, |
|
5311
|
|
|
|
|
|
|
EndMeterset => { GRP => "3008", ELEM => "007A", VR => "DS" }, |
|
5312
|
|
|
|
|
|
|
ReferencedMeasuredDoseReferenceSequence => { GRP => "3008", ELEM => "0080", VR => "SQ" }, |
|
5313
|
|
|
|
|
|
|
ReferencedMeasuredDoseReferenceNumber => { GRP => "3008", ELEM => "0082", VR => "IS" }, |
|
5314
|
|
|
|
|
|
|
ReferencedCalculatedDoseReferenceSequence => { GRP => "3008", ELEM => "0090", VR => "SQ" }, |
|
5315
|
|
|
|
|
|
|
ReferencedCalculatedDoseReferenceNumber => { GRP => "3008", ELEM => "0092", VR => "IS" }, |
|
5316
|
|
|
|
|
|
|
BeamLimitingDeviceLeafPairsSequence => { GRP => "3008", ELEM => "00A0", VR => "SQ" }, |
|
5317
|
|
|
|
|
|
|
RecordedWedgeSequence => { GRP => "3008", ELEM => "00B0", VR => "SQ" }, |
|
5318
|
|
|
|
|
|
|
RecordedCompensatorSequence => { GRP => "3008", ELEM => "00C0", VR => "SQ" }, |
|
5319
|
|
|
|
|
|
|
RecordedBlockSequence => { GRP => "3008", ELEM => "00D0", VR => "SQ" }, |
|
5320
|
|
|
|
|
|
|
TreatmentSummaryMeasuredDoseReferenceSequence => { GRP => "3008", ELEM => "00E0", VR => "SQ" }, |
|
5321
|
|
|
|
|
|
|
RecordedSnoutSequence => { GRP => "3008", ELEM => "00F0", VR => "SQ" }, |
|
5322
|
|
|
|
|
|
|
RecordedRangeShifterSequence => { GRP => "3008", ELEM => "00F2", VR => "SQ" }, |
|
5323
|
|
|
|
|
|
|
RecordedLateralSpreadingDeviceSequence => { GRP => "3008", ELEM => "00F4", VR => "SQ" }, |
|
5324
|
|
|
|
|
|
|
RecordedRangeModulatorSequence => { GRP => "3008", ELEM => "00F6", VR => "SQ" }, |
|
5325
|
|
|
|
|
|
|
RecordedSourceSequence => { GRP => "3008", ELEM => "0100", VR => "SQ" }, |
|
5326
|
|
|
|
|
|
|
SourceSerialNumber => { GRP => "3008", ELEM => "0105", VR => "LO" }, |
|
5327
|
|
|
|
|
|
|
TreatmentSessionApplicationSetupSequence => { GRP => "3008", ELEM => "0110", VR => "SQ" }, |
|
5328
|
|
|
|
|
|
|
ApplicationSetupCheck => { GRP => "3008", ELEM => "0116", VR => "CS" }, |
|
5329
|
|
|
|
|
|
|
RecordedBrachyAccessoryDeviceSequence => { GRP => "3008", ELEM => "0120", VR => "SQ" }, |
|
5330
|
|
|
|
|
|
|
ReferencedBrachyAccessoryDeviceNumber => { GRP => "3008", ELEM => "0122", VR => "IS" }, |
|
5331
|
|
|
|
|
|
|
RecordedChannelSequence => { GRP => "3008", ELEM => "0130", VR => "SQ" }, |
|
5332
|
|
|
|
|
|
|
SpecifiedChannelTotalTime => { GRP => "3008", ELEM => "0132", VR => "DS" }, |
|
5333
|
|
|
|
|
|
|
DeliveredChannelTotalTime => { GRP => "3008", ELEM => "0134", VR => "DS" }, |
|
5334
|
|
|
|
|
|
|
SpecifiedNumberOfPulses => { GRP => "3008", ELEM => "0136", VR => "IS" }, |
|
5335
|
|
|
|
|
|
|
DeliveredNumberOfPulses => { GRP => "3008", ELEM => "0138", VR => "IS" }, |
|
5336
|
|
|
|
|
|
|
SpecifiedPulseRepetitionInterval => { GRP => "3008", ELEM => "013A", VR => "DS" }, |
|
5337
|
|
|
|
|
|
|
DeliveredPulseRepetitionInterval => { GRP => "3008", ELEM => "013C", VR => "DS" }, |
|
5338
|
|
|
|
|
|
|
RecordedSourceApplicatorSequence => { GRP => "3008", ELEM => "0140", VR => "SQ" }, |
|
5339
|
|
|
|
|
|
|
ReferencedSourceApplicatorNumber => { GRP => "3008", ELEM => "0142", VR => "IS" }, |
|
5340
|
|
|
|
|
|
|
RecordedChannelShieldSequence => { GRP => "3008", ELEM => "0150", VR => "SQ" }, |
|
5341
|
|
|
|
|
|
|
ReferencedChannelShieldNumber => { GRP => "3008", ELEM => "0152", VR => "IS" }, |
|
5342
|
|
|
|
|
|
|
BrachyControlPointDeliveredSequence => { GRP => "3008", ELEM => "0160", VR => "SQ" }, |
|
5343
|
|
|
|
|
|
|
SafePositionExitDate => { GRP => "3008", ELEM => "0162", VR => "DA" }, |
|
5344
|
|
|
|
|
|
|
SafePositionExitTime => { GRP => "3008", ELEM => "0164", VR => "TM" }, |
|
5345
|
|
|
|
|
|
|
SafePositionReturnDate => { GRP => "3008", ELEM => "0166", VR => "DA" }, |
|
5346
|
|
|
|
|
|
|
SafePositionReturnTime => { GRP => "3008", ELEM => "0168", VR => "TM" }, |
|
5347
|
|
|
|
|
|
|
CurrentTreatmentStatus => { GRP => "3008", ELEM => "0200", VR => "CS" }, |
|
5348
|
|
|
|
|
|
|
TreatmentStatusComment => { GRP => "3008", ELEM => "0202", VR => "ST" }, |
|
5349
|
|
|
|
|
|
|
FractionGroupSummarySequence => { GRP => "3008", ELEM => "0220", VR => "SQ" }, |
|
5350
|
|
|
|
|
|
|
ReferencedFractionNumber => { GRP => "3008", ELEM => "0223", VR => "IS" }, |
|
5351
|
|
|
|
|
|
|
FractionGroupType => { GRP => "3008", ELEM => "0224", VR => "CS" }, |
|
5352
|
|
|
|
|
|
|
BeamStopperPosition => { GRP => "3008", ELEM => "0230", VR => "CS" }, |
|
5353
|
|
|
|
|
|
|
FractionStatusSummarySequence => { GRP => "3008", ELEM => "0240", VR => "SQ" }, |
|
5354
|
|
|
|
|
|
|
TreatmentDate => { GRP => "3008", ELEM => "0250", VR => "DA" }, |
|
5355
|
|
|
|
|
|
|
TreatmentTime => { GRP => "3008", ELEM => "0251", VR => "TM" }, |
|
5356
|
|
|
|
|
|
|
RTPlanLabel => { GRP => "300A", ELEM => "0002", VR => "SH" }, |
|
5357
|
|
|
|
|
|
|
RTPlanName => { GRP => "300A", ELEM => "0003", VR => "LO" }, |
|
5358
|
|
|
|
|
|
|
RTPlanDescription => { GRP => "300A", ELEM => "0004", VR => "ST" }, |
|
5359
|
|
|
|
|
|
|
RTPlanDate => { GRP => "300A", ELEM => "0006", VR => "DA" }, |
|
5360
|
|
|
|
|
|
|
RTPlanTime => { GRP => "300A", ELEM => "0007", VR => "TM" }, |
|
5361
|
|
|
|
|
|
|
TreatmentProtocols => { GRP => "300A", ELEM => "0009", VR => "LO" }, |
|
5362
|
|
|
|
|
|
|
PlanIntent => { GRP => "300A", ELEM => "000A", VR => "CS" }, |
|
5363
|
|
|
|
|
|
|
TreatmentSites => { GRP => "300A", ELEM => "000B", VR => "LO" }, |
|
5364
|
|
|
|
|
|
|
RTPlanGeometry => { GRP => "300A", ELEM => "000C", VR => "CS" }, |
|
5365
|
|
|
|
|
|
|
PrescriptionDescription => { GRP => "300A", ELEM => "000E", VR => "ST" }, |
|
5366
|
|
|
|
|
|
|
DoseReferenceSequence => { GRP => "300A", ELEM => "0010", VR => "SQ" }, |
|
5367
|
|
|
|
|
|
|
DoseReferenceNumber => { GRP => "300A", ELEM => "0012", VR => "IS" }, |
|
5368
|
|
|
|
|
|
|
DoseReferenceUID => { GRP => "300A", ELEM => "0013", VR => "UI" }, |
|
5369
|
|
|
|
|
|
|
DoseReferenceStructureType => { GRP => "300A", ELEM => "0014", VR => "CS" }, |
|
5370
|
|
|
|
|
|
|
NominalBeamEnergyUnit => { GRP => "300A", ELEM => "0015", VR => "CS" }, |
|
5371
|
|
|
|
|
|
|
DoseReferenceDescription => { GRP => "300A", ELEM => "0016", VR => "LO" }, |
|
5372
|
|
|
|
|
|
|
DoseReferencePointCoordinates => { GRP => "300A", ELEM => "0018", VR => "DS" }, |
|
5373
|
|
|
|
|
|
|
NominalPriorDose => { GRP => "300A", ELEM => "001A", VR => "DS" }, |
|
5374
|
|
|
|
|
|
|
DoseReferenceType => { GRP => "300A", ELEM => "0020", VR => "CS" }, |
|
5375
|
|
|
|
|
|
|
ConstraintWeight => { GRP => "300A", ELEM => "0021", VR => "DS" }, |
|
5376
|
|
|
|
|
|
|
DeliveryWarningDose => { GRP => "300A", ELEM => "0022", VR => "DS" }, |
|
5377
|
|
|
|
|
|
|
DeliveryMaximumDose => { GRP => "300A", ELEM => "0023", VR => "DS" }, |
|
5378
|
|
|
|
|
|
|
TargetMinimumDose => { GRP => "300A", ELEM => "0025", VR => "DS" }, |
|
5379
|
|
|
|
|
|
|
TargetPrescriptionDose => { GRP => "300A", ELEM => "0026", VR => "DS" }, |
|
5380
|
|
|
|
|
|
|
TargetMaximumDose => { GRP => "300A", ELEM => "0027", VR => "DS" }, |
|
5381
|
|
|
|
|
|
|
TargetUnderdoseVolumeFraction => { GRP => "300A", ELEM => "0028", VR => "DS" }, |
|
5382
|
|
|
|
|
|
|
OrganAtRiskFullVolumeDose => { GRP => "300A", ELEM => "002A", VR => "DS" }, |
|
5383
|
|
|
|
|
|
|
OrganAtRiskLimitDose => { GRP => "300A", ELEM => "002B", VR => "DS" }, |
|
5384
|
|
|
|
|
|
|
OrganAtRiskMaximumDose => { GRP => "300A", ELEM => "002C", VR => "DS" }, |
|
5385
|
|
|
|
|
|
|
OrganAtRiskOverdoseVolumeFraction => { GRP => "300A", ELEM => "002D", VR => "DS" }, |
|
5386
|
|
|
|
|
|
|
ToleranceTableSequence => { GRP => "300A", ELEM => "0040", VR => "SQ" }, |
|
5387
|
|
|
|
|
|
|
ToleranceTableNumber => { GRP => "300A", ELEM => "0042", VR => "IS" }, |
|
5388
|
|
|
|
|
|
|
ToleranceTableLabel => { GRP => "300A", ELEM => "0043", VR => "SH" }, |
|
5389
|
|
|
|
|
|
|
GantryAngleTolerance => { GRP => "300A", ELEM => "0044", VR => "DS" }, |
|
5390
|
|
|
|
|
|
|
BeamLimitingDeviceAngleTolerance => { GRP => "300A", ELEM => "0046", VR => "DS" }, |
|
5391
|
|
|
|
|
|
|
BeamLimitingDeviceToleranceSequence => { GRP => "300A", ELEM => "0048", VR => "SQ" }, |
|
5392
|
|
|
|
|
|
|
BeamLimitingDevicePositionTolerance => { GRP => "300A", ELEM => "004A", VR => "DS" }, |
|
5393
|
|
|
|
|
|
|
SnoutPositionTolerance => { GRP => "300A", ELEM => "004B", VR => "FL" }, |
|
5394
|
|
|
|
|
|
|
PatientSupportAngleTolerance => { GRP => "300A", ELEM => "004C", VR => "DS" }, |
|
5395
|
|
|
|
|
|
|
TableTopEccentricAngleTolerance => { GRP => "300A", ELEM => "004E", VR => "DS" }, |
|
5396
|
|
|
|
|
|
|
TableTopPitchAngleTolerance => { GRP => "300A", ELEM => "004F", VR => "FL" }, |
|
5397
|
|
|
|
|
|
|
TableTopRollAngleTolerance => { GRP => "300A", ELEM => "0050", VR => "FL" }, |
|
5398
|
|
|
|
|
|
|
TableTopVerticalPositionTolerance => { GRP => "300A", ELEM => "0051", VR => "DS" }, |
|
5399
|
|
|
|
|
|
|
TableTopLongitudinalPositionTolerance => { GRP => "300A", ELEM => "0052", VR => "DS" }, |
|
5400
|
|
|
|
|
|
|
TableTopLateralPositionTolerance => { GRP => "300A", ELEM => "0053", VR => "DS" }, |
|
5401
|
|
|
|
|
|
|
RTPlanRelationship => { GRP => "300A", ELEM => "0055", VR => "CS" }, |
|
5402
|
|
|
|
|
|
|
FractionGroupSequence => { GRP => "300A", ELEM => "0070", VR => "SQ" }, |
|
5403
|
|
|
|
|
|
|
FractionGroupNumber => { GRP => "300A", ELEM => "0071", VR => "IS" }, |
|
5404
|
|
|
|
|
|
|
FractionGroupDescription => { GRP => "300A", ELEM => "0072", VR => "LO" }, |
|
5405
|
|
|
|
|
|
|
NumberOfFractionsPlanned => { GRP => "300A", ELEM => "0078", VR => "IS" }, |
|
5406
|
|
|
|
|
|
|
NumberOfFractionPatternDigitsPerDay => { GRP => "300A", ELEM => "0079", VR => "IS" }, |
|
5407
|
|
|
|
|
|
|
RepeatFractionCycleLength => { GRP => "300A", ELEM => "007A", VR => "IS" }, |
|
5408
|
|
|
|
|
|
|
FractionPattern => { GRP => "300A", ELEM => "007B", VR => "LT" }, |
|
5409
|
|
|
|
|
|
|
NumberOfBeams => { GRP => "300A", ELEM => "0080", VR => "IS" }, |
|
5410
|
|
|
|
|
|
|
BeamDoseSpecificationPoint => { GRP => "300A", ELEM => "0082", VR => "DS" }, |
|
5411
|
|
|
|
|
|
|
BeamDose => { GRP => "300A", ELEM => "0084", VR => "DS" }, |
|
5412
|
|
|
|
|
|
|
BeamMeterset => { GRP => "300A", ELEM => "0086", VR => "DS" }, |
|
5413
|
|
|
|
|
|
|
BeamDosePointDepth => { GRP => "300A", ELEM => "0088", VR => "FL" }, |
|
5414
|
|
|
|
|
|
|
BeamDosePointEquivalentDepth => { GRP => "300A", ELEM => "0089", VR => "FL" }, |
|
5415
|
|
|
|
|
|
|
BeamDosePointSSD => { GRP => "300A", ELEM => "008A", VR => "FL" }, |
|
5416
|
|
|
|
|
|
|
NumberOfBrachyApplicationSetups => { GRP => "300A", ELEM => "00A0", VR => "IS" }, |
|
5417
|
|
|
|
|
|
|
BrachyApplicationSetupDoseSpecificationPoint => { GRP => "300A", ELEM => "00A2", VR => "DS" }, |
|
5418
|
|
|
|
|
|
|
BrachyApplicationSetupDose => { GRP => "300A", ELEM => "00A4", VR => "DS" }, |
|
5419
|
|
|
|
|
|
|
BeamSequence => { GRP => "300A", ELEM => "00B0", VR => "SQ" }, |
|
5420
|
|
|
|
|
|
|
TreatmentMachineName => { GRP => "300A", ELEM => "00B2", VR => "SH" }, |
|
5421
|
|
|
|
|
|
|
PrimaryDosimeterUnit => { GRP => "300A", ELEM => "00B3", VR => "CS" }, |
|
5422
|
|
|
|
|
|
|
SourceAxisDistance => { GRP => "300A", ELEM => "00B4", VR => "DS" }, |
|
5423
|
|
|
|
|
|
|
BeamLimitingDeviceSequence => { GRP => "300A", ELEM => "00B6", VR => "SQ" }, |
|
5424
|
|
|
|
|
|
|
RTBeamLimitingDeviceType => { GRP => "300A", ELEM => "00B8", VR => "CS" }, |
|
5425
|
|
|
|
|
|
|
SourceToBeamLimitingDeviceDistance => { GRP => "300A", ELEM => "00BA", VR => "DS" }, |
|
5426
|
|
|
|
|
|
|
IsocenterToBeamLimitingDeviceDistance => { GRP => "300A", ELEM => "00BB", VR => "FL" }, |
|
5427
|
|
|
|
|
|
|
NumberOfLeafJawPairs => { GRP => "300A", ELEM => "00BC", VR => "IS" }, |
|
5428
|
|
|
|
|
|
|
LeafPositionBoundaries => { GRP => "300A", ELEM => "00BE", VR => "DS" }, |
|
5429
|
|
|
|
|
|
|
BeamNumber => { GRP => "300A", ELEM => "00C0", VR => "IS" }, |
|
5430
|
|
|
|
|
|
|
BeamName => { GRP => "300A", ELEM => "00C2", VR => "LO" }, |
|
5431
|
|
|
|
|
|
|
BeamDescription => { GRP => "300A", ELEM => "00C3", VR => "ST" }, |
|
5432
|
|
|
|
|
|
|
BeamType => { GRP => "300A", ELEM => "00C4", VR => "CS" }, |
|
5433
|
|
|
|
|
|
|
RadiationType => { GRP => "300A", ELEM => "00C6", VR => "CS" }, |
|
5434
|
|
|
|
|
|
|
HighDoseTechniqueType => { GRP => "300A", ELEM => "00C7", VR => "CS" }, |
|
5435
|
|
|
|
|
|
|
ReferenceImageNumber => { GRP => "300A", ELEM => "00C8", VR => "IS" }, |
|
5436
|
|
|
|
|
|
|
PlannedVerificationImageSequence => { GRP => "300A", ELEM => "00CA", VR => "SQ" }, |
|
5437
|
|
|
|
|
|
|
ImagingDeviceSpecificAcquisitionParameters => { GRP => "300A", ELEM => "00CC", VR => "LO" }, |
|
5438
|
|
|
|
|
|
|
TreatmentDeliveryType => { GRP => "300A", ELEM => "00CE", VR => "CS" }, |
|
5439
|
|
|
|
|
|
|
NumberOfWedges => { GRP => "300A", ELEM => "00D0", VR => "IS" }, |
|
5440
|
|
|
|
|
|
|
WedgeSequence => { GRP => "300A", ELEM => "00D1", VR => "SQ" }, |
|
5441
|
|
|
|
|
|
|
WedgeNumber => { GRP => "300A", ELEM => "00D2", VR => "IS" }, |
|
5442
|
|
|
|
|
|
|
WedgeType => { GRP => "300A", ELEM => "00D3", VR => "CS" }, |
|
5443
|
|
|
|
|
|
|
WedgeID => { GRP => "300A", ELEM => "00D4", VR => "SH" }, |
|
5444
|
|
|
|
|
|
|
WedgeAngle => { GRP => "300A", ELEM => "00D5", VR => "IS" }, |
|
5445
|
|
|
|
|
|
|
WedgeFactor => { GRP => "300A", ELEM => "00D6", VR => "DS" }, |
|
5446
|
|
|
|
|
|
|
TotalWedgeTrayWaterEquivalentThickness => { GRP => "300A", ELEM => "00D7", VR => "FL" }, |
|
5447
|
|
|
|
|
|
|
WedgeOrientation => { GRP => "300A", ELEM => "00D8", VR => "DS" }, |
|
5448
|
|
|
|
|
|
|
IsocenterToWedgeTrayDistance => { GRP => "300A", ELEM => "00D9", VR => "FL" }, |
|
5449
|
|
|
|
|
|
|
SourceToWedgeTrayDistance => { GRP => "300A", ELEM => "00DA", VR => "DS" }, |
|
5450
|
|
|
|
|
|
|
WedgeThinEdgePosition => { GRP => "300A", ELEM => "00DB", VR => "FL" }, |
|
5451
|
|
|
|
|
|
|
BolusID => { GRP => "300A", ELEM => "00DC", VR => "SH" }, |
|
5452
|
|
|
|
|
|
|
BolusDescription => { GRP => "300A", ELEM => "00DD", VR => "ST" }, |
|
5453
|
|
|
|
|
|
|
NumberOfCompensators => { GRP => "300A", ELEM => "00E0", VR => "IS" }, |
|
5454
|
|
|
|
|
|
|
MaterialID => { GRP => "300A", ELEM => "00E1", VR => "SH" }, |
|
5455
|
|
|
|
|
|
|
TotalCompensatorTrayFactor => { GRP => "300A", ELEM => "00E2", VR => "DS" }, |
|
5456
|
|
|
|
|
|
|
CompensatorSequence => { GRP => "300A", ELEM => "00E3", VR => "SQ" }, |
|
5457
|
|
|
|
|
|
|
CompensatorNumber => { GRP => "300A", ELEM => "00E4", VR => "IS" }, |
|
5458
|
|
|
|
|
|
|
CompensatorID => { GRP => "300A", ELEM => "00E5", VR => "SH" }, |
|
5459
|
|
|
|
|
|
|
SourceToCompensatorTrayDistance => { GRP => "300A", ELEM => "00E6", VR => "DS" }, |
|
5460
|
|
|
|
|
|
|
CompensatorRows => { GRP => "300A", ELEM => "00E7", VR => "IS" }, |
|
5461
|
|
|
|
|
|
|
CompensatorColumns => { GRP => "300A", ELEM => "00E8", VR => "IS" }, |
|
5462
|
|
|
|
|
|
|
CompensatorPixelSpacing => { GRP => "300A", ELEM => "00E9", VR => "DS" }, |
|
5463
|
|
|
|
|
|
|
CompensatorPosition => { GRP => "300A", ELEM => "00EA", VR => "DS" }, |
|
5464
|
|
|
|
|
|
|
CompensatorTransmissionData => { GRP => "300A", ELEM => "00EB", VR => "DS" }, |
|
5465
|
|
|
|
|
|
|
CompensatorThicknessData => { GRP => "300A", ELEM => "00EC", VR => "DS" }, |
|
5466
|
|
|
|
|
|
|
NumberOfBoli => { GRP => "300A", ELEM => "00ED", VR => "IS" }, |
|
5467
|
|
|
|
|
|
|
CompensatorType => { GRP => "300A", ELEM => "00EE", VR => "CS" }, |
|
5468
|
|
|
|
|
|
|
NumberOfBlocks => { GRP => "300A", ELEM => "00F0", VR => "IS" }, |
|
5469
|
|
|
|
|
|
|
TotalBlockTrayFactor => { GRP => "300A", ELEM => "00F2", VR => "DS" }, |
|
5470
|
|
|
|
|
|
|
TotalBlockTrayWaterEquivalentThickness => { GRP => "300A", ELEM => "00F3", VR => "FL" }, |
|
5471
|
|
|
|
|
|
|
BlockSequence => { GRP => "300A", ELEM => "00F4", VR => "SQ" }, |
|
5472
|
|
|
|
|
|
|
BlockTrayID => { GRP => "300A", ELEM => "00F5", VR => "SH" }, |
|
5473
|
|
|
|
|
|
|
SourceToBlockTrayDistance => { GRP => "300A", ELEM => "00F6", VR => "DS" }, |
|
5474
|
|
|
|
|
|
|
IsocenterToBlockTrayDistance => { GRP => "300A", ELEM => "00F7", VR => "FL" }, |
|
5475
|
|
|
|
|
|
|
BlockType => { GRP => "300A", ELEM => "00F8", VR => "CS" }, |
|
5476
|
|
|
|
|
|
|
AccessoryCode => { GRP => "300A", ELEM => "00F9", VR => "LO" }, |
|
5477
|
|
|
|
|
|
|
BlockDivergence => { GRP => "300A", ELEM => "00FA", VR => "CS" }, |
|
5478
|
|
|
|
|
|
|
BlockMountingPosition => { GRP => "300A", ELEM => "00FB", VR => "CS" }, |
|
5479
|
|
|
|
|
|
|
BlockNumber => { GRP => "300A", ELEM => "00FC", VR => "IS" }, |
|
5480
|
|
|
|
|
|
|
BlockName => { GRP => "300A", ELEM => "00FE", VR => "LO" }, |
|
5481
|
|
|
|
|
|
|
BlockThickness => { GRP => "300A", ELEM => "0100", VR => "DS" }, |
|
5482
|
|
|
|
|
|
|
BlockTransmission => { GRP => "300A", ELEM => "0102", VR => "DS" }, |
|
5483
|
|
|
|
|
|
|
BlockNumberOfPoints => { GRP => "300A", ELEM => "0104", VR => "IS" }, |
|
5484
|
|
|
|
|
|
|
BlockData => { GRP => "300A", ELEM => "0106", VR => "DS" }, |
|
5485
|
|
|
|
|
|
|
ApplicatorSequence => { GRP => "300A", ELEM => "0107", VR => "SQ" }, |
|
5486
|
|
|
|
|
|
|
ApplicatorID => { GRP => "300A", ELEM => "0108", VR => "SH" }, |
|
5487
|
|
|
|
|
|
|
ApplicatorType => { GRP => "300A", ELEM => "0109", VR => "CS" }, |
|
5488
|
|
|
|
|
|
|
ApplicatorDescription => { GRP => "300A", ELEM => "010A", VR => "LO" }, |
|
5489
|
|
|
|
|
|
|
CumulativeDoseReferenceCoefficient => { GRP => "300A", ELEM => "010C", VR => "DS" }, |
|
5490
|
|
|
|
|
|
|
FinalCumulativeMetersetWeight => { GRP => "300A", ELEM => "010E", VR => "DS" }, |
|
5491
|
|
|
|
|
|
|
NumberOfControlPoints => { GRP => "300A", ELEM => "0110", VR => "IS" }, |
|
5492
|
|
|
|
|
|
|
ControlPointSequence => { GRP => "300A", ELEM => "0111", VR => "SQ" }, |
|
5493
|
|
|
|
|
|
|
ControlPointIndex => { GRP => "300A", ELEM => "0112", VR => "IS" }, |
|
5494
|
|
|
|
|
|
|
NominalBeamEnergy => { GRP => "300A", ELEM => "0114", VR => "DS" }, |
|
5495
|
|
|
|
|
|
|
DoseRateSet => { GRP => "300A", ELEM => "0115", VR => "DS" }, |
|
5496
|
|
|
|
|
|
|
WedgePositionSequence => { GRP => "300A", ELEM => "0116", VR => "SQ" }, |
|
5497
|
|
|
|
|
|
|
WedgePosition => { GRP => "300A", ELEM => "0118", VR => "CS" }, |
|
5498
|
|
|
|
|
|
|
BeamLimitingDevicePositionSequence => { GRP => "300A", ELEM => "011A", VR => "SQ" }, |
|
5499
|
|
|
|
|
|
|
LeafJawPositions => { GRP => "300A", ELEM => "011C", VR => "DS" }, |
|
5500
|
|
|
|
|
|
|
GantryAngle => { GRP => "300A", ELEM => "011E", VR => "DS" }, |
|
5501
|
|
|
|
|
|
|
GantryRotationDirection => { GRP => "300A", ELEM => "011F", VR => "CS" }, |
|
5502
|
|
|
|
|
|
|
BeamLimitingDeviceAngle => { GRP => "300A", ELEM => "0120", VR => "DS" }, |
|
5503
|
|
|
|
|
|
|
BeamLimitingDeviceRotationDirection => { GRP => "300A", ELEM => "0121", VR => "CS" }, |
|
5504
|
|
|
|
|
|
|
PatientSupportAngle => { GRP => "300A", ELEM => "0122", VR => "DS" }, |
|
5505
|
|
|
|
|
|
|
PatientSupportRotationDirection => { GRP => "300A", ELEM => "0123", VR => "CS" }, |
|
5506
|
|
|
|
|
|
|
TableTopEccentricAxisDistance => { GRP => "300A", ELEM => "0124", VR => "DS" }, |
|
5507
|
|
|
|
|
|
|
TableTopEccentricAngle => { GRP => "300A", ELEM => "0125", VR => "DS" }, |
|
5508
|
|
|
|
|
|
|
TableTopEccentricRotationDirection => { GRP => "300A", ELEM => "0126", VR => "CS" }, |
|
5509
|
|
|
|
|
|
|
TableTopVerticalPosition => { GRP => "300A", ELEM => "0128", VR => "DS" }, |
|
5510
|
|
|
|
|
|
|
TableTopLongitudinalPosition => { GRP => "300A", ELEM => "0129", VR => "DS" }, |
|
5511
|
|
|
|
|
|
|
TableTopLateralPosition => { GRP => "300A", ELEM => "012A", VR => "DS" }, |
|
5512
|
|
|
|
|
|
|
IsocenterPosition => { GRP => "300A", ELEM => "012C", VR => "DS" }, |
|
5513
|
|
|
|
|
|
|
SurfaceEntryPoint => { GRP => "300A", ELEM => "012E", VR => "DS" }, |
|
5514
|
|
|
|
|
|
|
SourceToSurfaceDistance => { GRP => "300A", ELEM => "0130", VR => "DS" }, |
|
5515
|
|
|
|
|
|
|
CumulativeMetersetWeight => { GRP => "300A", ELEM => "0134", VR => "DS" }, |
|
5516
|
|
|
|
|
|
|
TableTopPitchAngle => { GRP => "300A", ELEM => "0140", VR => "FL" }, |
|
5517
|
|
|
|
|
|
|
TableTopPitchRotationDirection => { GRP => "300A", ELEM => "0142", VR => "CS" }, |
|
5518
|
|
|
|
|
|
|
TableTopRollAngle => { GRP => "300A", ELEM => "0144", VR => "FL" }, |
|
5519
|
|
|
|
|
|
|
TableTopRollRotationDirection => { GRP => "300A", ELEM => "0146", VR => "CS" }, |
|
5520
|
|
|
|
|
|
|
HeadFixationAngle => { GRP => "300A", ELEM => "0148", VR => "FL" }, |
|
5521
|
|
|
|
|
|
|
GantryPitchAngle => { GRP => "300A", ELEM => "014A", VR => "FL" }, |
|
5522
|
|
|
|
|
|
|
GantryPitchRotationDirection => { GRP => "300A", ELEM => "014C", VR => "CS" }, |
|
5523
|
|
|
|
|
|
|
GantryPitchAngleTolerance => { GRP => "300A", ELEM => "014E", VR => "FL" }, |
|
5524
|
|
|
|
|
|
|
PatientSetupSequence => { GRP => "300A", ELEM => "0180", VR => "SQ" }, |
|
5525
|
|
|
|
|
|
|
PatientSetupNumber => { GRP => "300A", ELEM => "0182", VR => "IS" }, |
|
5526
|
|
|
|
|
|
|
PatientSetupLabel => { GRP => "300A", ELEM => "0183", VR => "LO" }, |
|
5527
|
|
|
|
|
|
|
PatientAdditionalPosition => { GRP => "300A", ELEM => "0184", VR => "LO" }, |
|
5528
|
|
|
|
|
|
|
FixationDeviceSequence => { GRP => "300A", ELEM => "0190", VR => "SQ" }, |
|
5529
|
|
|
|
|
|
|
FixationDeviceType => { GRP => "300A", ELEM => "0192", VR => "CS" }, |
|
5530
|
|
|
|
|
|
|
FixationDeviceLabel => { GRP => "300A", ELEM => "0194", VR => "SH" }, |
|
5531
|
|
|
|
|
|
|
FixationDeviceDescription => { GRP => "300A", ELEM => "0196", VR => "ST" }, |
|
5532
|
|
|
|
|
|
|
FixationDevicePosition => { GRP => "300A", ELEM => "0198", VR => "SH" }, |
|
5533
|
|
|
|
|
|
|
FixationDevicePitchAngle => { GRP => "300A", ELEM => "0199", VR => "FL" }, |
|
5534
|
|
|
|
|
|
|
FixationDeviceRollAngle => { GRP => "300A", ELEM => "019A", VR => "FL" }, |
|
5535
|
|
|
|
|
|
|
ShieldingDeviceSequence => { GRP => "300A", ELEM => "01A0", VR => "SQ" }, |
|
5536
|
|
|
|
|
|
|
ShieldingDeviceType => { GRP => "300A", ELEM => "01A2", VR => "CS" }, |
|
5537
|
|
|
|
|
|
|
ShieldingDeviceLabel => { GRP => "300A", ELEM => "01A4", VR => "SH" }, |
|
5538
|
|
|
|
|
|
|
ShieldingDeviceDescription => { GRP => "300A", ELEM => "01A6", VR => "ST" }, |
|
5539
|
|
|
|
|
|
|
ShieldingDevicePosition => { GRP => "300A", ELEM => "01A8", VR => "SH" }, |
|
5540
|
|
|
|
|
|
|
SetupTechnique => { GRP => "300A", ELEM => "01B0", VR => "CS" }, |
|
5541
|
|
|
|
|
|
|
SetupTechniqueDescription => { GRP => "300A", ELEM => "01B2", VR => "ST" }, |
|
5542
|
|
|
|
|
|
|
SetupDeviceSequence => { GRP => "300A", ELEM => "01B4", VR => "SQ" }, |
|
5543
|
|
|
|
|
|
|
SetupDeviceType => { GRP => "300A", ELEM => "01B6", VR => "CS" }, |
|
5544
|
|
|
|
|
|
|
SetupDeviceLabel => { GRP => "300A", ELEM => "01B8", VR => "SH" }, |
|
5545
|
|
|
|
|
|
|
SetupDeviceDescription => { GRP => "300A", ELEM => "01BA", VR => "ST" }, |
|
5546
|
|
|
|
|
|
|
SetupDeviceParameter => { GRP => "300A", ELEM => "01BC", VR => "DS" }, |
|
5547
|
|
|
|
|
|
|
SetupReferenceDescription => { GRP => "300A", ELEM => "01D0", VR => "ST" }, |
|
5548
|
|
|
|
|
|
|
TableTopVerticalSetupDisplacement => { GRP => "300A", ELEM => "01D2", VR => "DS" }, |
|
5549
|
|
|
|
|
|
|
TableTopLongitudinalSetupDisplacement => { GRP => "300A", ELEM => "01D4", VR => "DS" }, |
|
5550
|
|
|
|
|
|
|
TableTopLateralSetupDisplacement => { GRP => "300A", ELEM => "01D6", VR => "DS" }, |
|
5551
|
|
|
|
|
|
|
BrachyTreatmentTechnique => { GRP => "300A", ELEM => "0200", VR => "CS" }, |
|
5552
|
|
|
|
|
|
|
BrachyTreatmentType => { GRP => "300A", ELEM => "0202", VR => "CS" }, |
|
5553
|
|
|
|
|
|
|
TreatmentMachineSequence => { GRP => "300A", ELEM => "0206", VR => "SQ" }, |
|
5554
|
|
|
|
|
|
|
SourceSequence => { GRP => "300A", ELEM => "0210", VR => "SQ" }, |
|
5555
|
|
|
|
|
|
|
SourceNumber => { GRP => "300A", ELEM => "0212", VR => "IS" }, |
|
5556
|
|
|
|
|
|
|
SourceType => { GRP => "300A", ELEM => "0214", VR => "CS" }, |
|
5557
|
|
|
|
|
|
|
SourceManufacturer => { GRP => "300A", ELEM => "0216", VR => "LO" }, |
|
5558
|
|
|
|
|
|
|
ActiveSourceDiameter => { GRP => "300A", ELEM => "0218", VR => "DS" }, |
|
5559
|
|
|
|
|
|
|
ActiveSourceLength => { GRP => "300A", ELEM => "021A", VR => "DS" }, |
|
5560
|
|
|
|
|
|
|
SourceEncapsulationNominalThickness => { GRP => "300A", ELEM => "0222", VR => "DS" }, |
|
5561
|
|
|
|
|
|
|
SourceEncapsulationNominalTransmission => { GRP => "300A", ELEM => "0224", VR => "DS" }, |
|
5562
|
|
|
|
|
|
|
SourceIsotopeName => { GRP => "300A", ELEM => "0226", VR => "LO" }, |
|
5563
|
|
|
|
|
|
|
SourceIsotopeHalfLife => { GRP => "300A", ELEM => "0228", VR => "DS" }, |
|
5564
|
|
|
|
|
|
|
SourceStrengthUnits => { GRP => "300A", ELEM => "0229", VR => "CS" }, |
|
5565
|
|
|
|
|
|
|
ReferenceAirKermaRate => { GRP => "300A", ELEM => "022A", VR => "DS" }, |
|
5566
|
|
|
|
|
|
|
SourceStrength => { GRP => "300A", ELEM => "022B", VR => "DS" }, |
|
5567
|
|
|
|
|
|
|
SourceStrengthReferenceDate => { GRP => "300A", ELEM => "022C", VR => "DA" }, |
|
5568
|
|
|
|
|
|
|
SourceStrengthReferenceTime => { GRP => "300A", ELEM => "022E", VR => "TM" }, |
|
5569
|
|
|
|
|
|
|
ApplicationSetupSequence => { GRP => "300A", ELEM => "0230", VR => "SQ" }, |
|
5570
|
|
|
|
|
|
|
ApplicationSetupType => { GRP => "300A", ELEM => "0232", VR => "CS" }, |
|
5571
|
|
|
|
|
|
|
ApplicationSetupNumber => { GRP => "300A", ELEM => "0234", VR => "IS" }, |
|
5572
|
|
|
|
|
|
|
ApplicationSetupName => { GRP => "300A", ELEM => "0236", VR => "LO" }, |
|
5573
|
|
|
|
|
|
|
ApplicationSetupManufacturer => { GRP => "300A", ELEM => "0238", VR => "LO" }, |
|
5574
|
|
|
|
|
|
|
TemplateNumber => { GRP => "300A", ELEM => "0240", VR => "IS" }, |
|
5575
|
|
|
|
|
|
|
TemplateType => { GRP => "300A", ELEM => "0242", VR => "SH" }, |
|
5576
|
|
|
|
|
|
|
TemplateName => { GRP => "300A", ELEM => "0244", VR => "LO" }, |
|
5577
|
|
|
|
|
|
|
TotalReferenceAirKerma => { GRP => "300A", ELEM => "0250", VR => "DS" }, |
|
5578
|
|
|
|
|
|
|
BrachyAccessoryDeviceSequence => { GRP => "300A", ELEM => "0260", VR => "SQ" }, |
|
5579
|
|
|
|
|
|
|
BrachyAccessoryDeviceNumber => { GRP => "300A", ELEM => "0262", VR => "IS" }, |
|
5580
|
|
|
|
|
|
|
BrachyAccessoryDeviceID => { GRP => "300A", ELEM => "0263", VR => "SH" }, |
|
5581
|
|
|
|
|
|
|
BrachyAccessoryDeviceType => { GRP => "300A", ELEM => "0264", VR => "CS" }, |
|
5582
|
|
|
|
|
|
|
BrachyAccessoryDeviceName => { GRP => "300A", ELEM => "0266", VR => "LO" }, |
|
5583
|
|
|
|
|
|
|
BrachyAccessoryDeviceNominalThickness => { GRP => "300A", ELEM => "026A", VR => "DS" }, |
|
5584
|
|
|
|
|
|
|
BrachyAccessoryDeviceNominalTransmission => { GRP => "300A", ELEM => "026C", VR => "DS" }, |
|
5585
|
|
|
|
|
|
|
ChannelSequence => { GRP => "300A", ELEM => "0280", VR => "SQ" }, |
|
5586
|
|
|
|
|
|
|
ChannelNumber => { GRP => "300A", ELEM => "0282", VR => "IS" }, |
|
5587
|
|
|
|
|
|
|
ChannelLength => { GRP => "300A", ELEM => "0284", VR => "DS" }, |
|
5588
|
|
|
|
|
|
|
ChannelTotalTime => { GRP => "300A", ELEM => "0286", VR => "DS" }, |
|
5589
|
|
|
|
|
|
|
SourceMovementType => { GRP => "300A", ELEM => "0288", VR => "CS" }, |
|
5590
|
|
|
|
|
|
|
NumberOfPulses => { GRP => "300A", ELEM => "028A", VR => "IS" }, |
|
5591
|
|
|
|
|
|
|
PulseRepetitionInterval => { GRP => "300A", ELEM => "028C", VR => "DS" }, |
|
5592
|
|
|
|
|
|
|
SourceApplicatorNumber => { GRP => "300A", ELEM => "0290", VR => "IS" }, |
|
5593
|
|
|
|
|
|
|
SourceApplicatorID => { GRP => "300A", ELEM => "0291", VR => "SH" }, |
|
5594
|
|
|
|
|
|
|
SourceApplicatorType => { GRP => "300A", ELEM => "0292", VR => "CS" }, |
|
5595
|
|
|
|
|
|
|
SourceApplicatorName => { GRP => "300A", ELEM => "0294", VR => "LO" }, |
|
5596
|
|
|
|
|
|
|
SourceApplicatorLength => { GRP => "300A", ELEM => "0296", VR => "DS" }, |
|
5597
|
|
|
|
|
|
|
SourceApplicatorManufacturer => { GRP => "300A", ELEM => "0298", VR => "LO" }, |
|
5598
|
|
|
|
|
|
|
SourceApplicatorWallNominalThickness => { GRP => "300A", ELEM => "029C", VR => "DS" }, |
|
5599
|
|
|
|
|
|
|
SourceApplicatorWallNominalTransmission => { GRP => "300A", ELEM => "029E", VR => "DS" }, |
|
5600
|
|
|
|
|
|
|
SourceApplicatorStepSize => { GRP => "300A", ELEM => "02A0", VR => "DS" }, |
|
5601
|
|
|
|
|
|
|
TransferTubeNumber => { GRP => "300A", ELEM => "02A2", VR => "IS" }, |
|
5602
|
|
|
|
|
|
|
TransferTubeLength => { GRP => "300A", ELEM => "02A4", VR => "DS" }, |
|
5603
|
|
|
|
|
|
|
ChannelShieldSequence => { GRP => "300A", ELEM => "02B0", VR => "SQ" }, |
|
5604
|
|
|
|
|
|
|
ChannelShieldNumber => { GRP => "300A", ELEM => "02B2", VR => "IS" }, |
|
5605
|
|
|
|
|
|
|
ChannelShieldID => { GRP => "300A", ELEM => "02B3", VR => "SH" }, |
|
5606
|
|
|
|
|
|
|
ChannelShieldName => { GRP => "300A", ELEM => "02B4", VR => "LO" }, |
|
5607
|
|
|
|
|
|
|
ChannelShieldNominalThickness => { GRP => "300A", ELEM => "02B8", VR => "DS" }, |
|
5608
|
|
|
|
|
|
|
ChannelShieldNominalTransmission => { GRP => "300A", ELEM => "02BA", VR => "DS" }, |
|
5609
|
|
|
|
|
|
|
FinalCumulativeTimeWeight => { GRP => "300A", ELEM => "02C8", VR => "DS" }, |
|
5610
|
|
|
|
|
|
|
BrachyControlPointSequence => { GRP => "300A", ELEM => "02D0", VR => "SQ" }, |
|
5611
|
|
|
|
|
|
|
ControlPointRelativePosition => { GRP => "300A", ELEM => "02D2", VR => "DS" }, |
|
5612
|
|
|
|
|
|
|
ControlPoint3DPosition => { GRP => "300A", ELEM => "02D4", VR => "DS" }, |
|
5613
|
|
|
|
|
|
|
CumulativeTimeWeight => { GRP => "300A", ELEM => "02D6", VR => "DS" }, |
|
5614
|
|
|
|
|
|
|
CompensatorDivergence => { GRP => "300A", ELEM => "02E0", VR => "CS" }, |
|
5615
|
|
|
|
|
|
|
CompensatorMountingPosition => { GRP => "300A", ELEM => "02E1", VR => "CS" }, |
|
5616
|
|
|
|
|
|
|
SourceToCompensatorDistance => { GRP => "300A", ELEM => "02E2", VR => "DS" }, |
|
5617
|
|
|
|
|
|
|
TotalCompensatorTrayWaterEquivalentThickness => { GRP => "300A", ELEM => "02E3", VR => "FL" }, |
|
5618
|
|
|
|
|
|
|
IsocenterToCompensatorTrayDistance => { GRP => "300A", ELEM => "02E4", VR => "FL" }, |
|
5619
|
|
|
|
|
|
|
CompensatorColumnOffset => { GRP => "300A", ELEM => "02E5", VR => "FL" }, |
|
5620
|
|
|
|
|
|
|
IsocenterToCompensatorDistances => { GRP => "300A", ELEM => "02E6", VR => "FL" }, |
|
5621
|
|
|
|
|
|
|
CompensatorRelativeStoppingPowerRatio => { GRP => "300A", ELEM => "02E7", VR => "FL" }, |
|
5622
|
|
|
|
|
|
|
CompensatorMillingToolDiameter => { GRP => "300A", ELEM => "02E8", VR => "FL" }, |
|
5623
|
|
|
|
|
|
|
IonRangeCompensatorSequence => { GRP => "300A", ELEM => "02EA", VR => "SQ" }, |
|
5624
|
|
|
|
|
|
|
CompensatorDescription => { GRP => "300A", ELEM => "02EB", VR => "LT" }, |
|
5625
|
|
|
|
|
|
|
RadiationMassNumber => { GRP => "300A", ELEM => "0302", VR => "IS" }, |
|
5626
|
|
|
|
|
|
|
RadiationAtomicNumber => { GRP => "300A", ELEM => "0304", VR => "IS" }, |
|
5627
|
|
|
|
|
|
|
RadiationChargeState => { GRP => "300A", ELEM => "0306", VR => "SS" }, |
|
5628
|
|
|
|
|
|
|
ScanMode => { GRP => "300A", ELEM => "0308", VR => "CS" }, |
|
5629
|
|
|
|
|
|
|
VirtualSourceAxisDistances => { GRP => "300A", ELEM => "030A", VR => "FL" }, |
|
5630
|
|
|
|
|
|
|
SnoutSequence => { GRP => "300A", ELEM => "030C", VR => "SQ" }, |
|
5631
|
|
|
|
|
|
|
SnoutPosition => { GRP => "300A", ELEM => "030D", VR => "FL" }, |
|
5632
|
|
|
|
|
|
|
SnoutID => { GRP => "300A", ELEM => "030F", VR => "SH" }, |
|
5633
|
|
|
|
|
|
|
NumberOfRangeShifters => { GRP => "300A", ELEM => "0312", VR => "IS" }, |
|
5634
|
|
|
|
|
|
|
RangeShifterSequence => { GRP => "300A", ELEM => "0314", VR => "SQ" }, |
|
5635
|
|
|
|
|
|
|
RangeShifterNumber => { GRP => "300A", ELEM => "0316", VR => "IS" }, |
|
5636
|
|
|
|
|
|
|
RangeShifterID => { GRP => "300A", ELEM => "0318", VR => "SH" }, |
|
5637
|
|
|
|
|
|
|
RangeShifterType => { GRP => "300A", ELEM => "0320", VR => "CS" }, |
|
5638
|
|
|
|
|
|
|
RangeShifterDescription => { GRP => "300A", ELEM => "0322", VR => "LO" }, |
|
5639
|
|
|
|
|
|
|
NumberOfLateralSpreadingDevices => { GRP => "300A", ELEM => "0330", VR => "IS" }, |
|
5640
|
|
|
|
|
|
|
LateralSpreadingDeviceSequence => { GRP => "300A", ELEM => "0332", VR => "SQ" }, |
|
5641
|
|
|
|
|
|
|
LateralSpreadingDeviceNumber => { GRP => "300A", ELEM => "0334", VR => "IS" }, |
|
5642
|
|
|
|
|
|
|
LateralSpreadingDeviceID => { GRP => "300A", ELEM => "0336", VR => "SH" }, |
|
5643
|
|
|
|
|
|
|
LateralSpreadingDeviceType => { GRP => "300A", ELEM => "0338", VR => "CS" }, |
|
5644
|
|
|
|
|
|
|
LateralSpreadingDeviceDescription => { GRP => "300A", ELEM => "033A", VR => "LO" }, |
|
5645
|
|
|
|
|
|
|
LateralSpreadingDeviceWaterEquivalentThickness => { GRP => "300A", ELEM => "033C", VR => "FL" }, |
|
5646
|
|
|
|
|
|
|
NumberOfRangeModulators => { GRP => "300A", ELEM => "0340", VR => "IS" }, |
|
5647
|
|
|
|
|
|
|
RangeModulatorSequence => { GRP => "300A", ELEM => "0342", VR => "SQ" }, |
|
5648
|
|
|
|
|
|
|
RangeModulatorNumber => { GRP => "300A", ELEM => "0344", VR => "IS" }, |
|
5649
|
|
|
|
|
|
|
RangeModulatorID => { GRP => "300A", ELEM => "0346", VR => "SH" }, |
|
5650
|
|
|
|
|
|
|
RangeModulatorType => { GRP => "300A", ELEM => "0348", VR => "CS" }, |
|
5651
|
|
|
|
|
|
|
RangeModulatorDescription => { GRP => "300A", ELEM => "034A", VR => "LO" }, |
|
5652
|
|
|
|
|
|
|
BeamCurrentModulationID => { GRP => "300A", ELEM => "034C", VR => "SH" }, |
|
5653
|
|
|
|
|
|
|
PatientSupportType => { GRP => "300A", ELEM => "0350", VR => "CS" }, |
|
5654
|
|
|
|
|
|
|
PatientSupportID => { GRP => "300A", ELEM => "0352", VR => "SH" }, |
|
5655
|
|
|
|
|
|
|
PatientSupportAccessoryCode => { GRP => "300A", ELEM => "0354", VR => "LO" }, |
|
5656
|
|
|
|
|
|
|
FixationLightAzimuthalAngle => { GRP => "300A", ELEM => "0356", VR => "FL" }, |
|
5657
|
|
|
|
|
|
|
FixationLightPolarAngle => { GRP => "300A", ELEM => "0358", VR => "FL" }, |
|
5658
|
|
|
|
|
|
|
MetersetRate => { GRP => "300A", ELEM => "035A", VR => "FL" }, |
|
5659
|
|
|
|
|
|
|
RangeShifterSettingsSequence => { GRP => "300A", ELEM => "0360", VR => "SQ" }, |
|
5660
|
|
|
|
|
|
|
RangeShifterSetting => { GRP => "300A", ELEM => "0362", VR => "LO" }, |
|
5661
|
|
|
|
|
|
|
IsocenterToRangeShifterDistance => { GRP => "300A", ELEM => "0364", VR => "FL" }, |
|
5662
|
|
|
|
|
|
|
RangeShifterWaterEquivalentThickness => { GRP => "300A", ELEM => "0366", VR => "FL" }, |
|
5663
|
|
|
|
|
|
|
LateralSpreadingDeviceSettingsSequence => { GRP => "300A", ELEM => "0370", VR => "SQ" }, |
|
5664
|
|
|
|
|
|
|
LateralSpreadingDeviceSetting => { GRP => "300A", ELEM => "0372", VR => "LO" }, |
|
5665
|
|
|
|
|
|
|
IsocenterToLateralSpreadingDeviceDistance => { GRP => "300A", ELEM => "0374", VR => "FL" }, |
|
5666
|
|
|
|
|
|
|
RangeModulatorSettingsSequence => { GRP => "300A", ELEM => "0380", VR => "SQ" }, |
|
5667
|
|
|
|
|
|
|
RangeModulatorGatingStartValue => { GRP => "300A", ELEM => "0382", VR => "FL" }, |
|
5668
|
|
|
|
|
|
|
RangeModulatorGatingStopValue => { GRP => "300A", ELEM => "0384", VR => "FL" }, |
|
5669
|
|
|
|
|
|
|
RangeModulatorGatingStartWaterEquivalentThickness => { GRP => "300A", ELEM => "0386", VR => "FL" }, |
|
5670
|
|
|
|
|
|
|
RangeModulatorGatingStopWaterEquivalentThickness => { GRP => "300A", ELEM => "0388", VR => "FL" }, |
|
5671
|
|
|
|
|
|
|
IsocenterToRangeModulatorDistance => { GRP => "300A", ELEM => "038A", VR => "FL" }, |
|
5672
|
|
|
|
|
|
|
ScanSpotTuneID => { GRP => "300A", ELEM => "0390", VR => "SH" }, |
|
5673
|
|
|
|
|
|
|
NumberOfScanSpotPositions => { GRP => "300A", ELEM => "0392", VR => "IS" }, |
|
5674
|
|
|
|
|
|
|
ScanSpotPositionMap => { GRP => "300A", ELEM => "0394", VR => "FL" }, |
|
5675
|
|
|
|
|
|
|
ScanSpotMetersetWeights => { GRP => "300A", ELEM => "0396", VR => "FL" }, |
|
5676
|
|
|
|
|
|
|
ScanningSpotSize => { GRP => "300A", ELEM => "0398", VR => "FL" }, |
|
5677
|
|
|
|
|
|
|
NumberOfPaintings => { GRP => "300A", ELEM => "039A", VR => "IS" }, |
|
5678
|
|
|
|
|
|
|
IonToleranceTableSequence => { GRP => "300A", ELEM => "03A0", VR => "SQ" }, |
|
5679
|
|
|
|
|
|
|
IonBeamSequence => { GRP => "300A", ELEM => "03A2", VR => "SQ" }, |
|
5680
|
|
|
|
|
|
|
IonBeamLimitingDeviceSequence => { GRP => "300A", ELEM => "03A4", VR => "SQ" }, |
|
5681
|
|
|
|
|
|
|
IonBlockSequence => { GRP => "300A", ELEM => "03A6", VR => "SQ" }, |
|
5682
|
|
|
|
|
|
|
IonControlPointSequence => { GRP => "300A", ELEM => "03A8", VR => "SQ" }, |
|
5683
|
|
|
|
|
|
|
IonWedgeSequence => { GRP => "300A", ELEM => "03AA", VR => "SQ" }, |
|
5684
|
|
|
|
|
|
|
IonWedgePositionSequence => { GRP => "300A", ELEM => "03AC", VR => "SQ" }, |
|
5685
|
|
|
|
|
|
|
ReferencedSetupImageSequence => { GRP => "300A", ELEM => "0401", VR => "SQ" }, |
|
5686
|
|
|
|
|
|
|
SetupImageComment => { GRP => "300A", ELEM => "0402", VR => "ST" }, |
|
5687
|
|
|
|
|
|
|
MotionSynchronizationSequence => { GRP => "300A", ELEM => "0410", VR => "SQ" }, |
|
5688
|
|
|
|
|
|
|
ControlPointOrientation => { GRP => "300A", ELEM => "0412", VR => "FL" }, |
|
5689
|
|
|
|
|
|
|
GeneralAccessorySequence => { GRP => "300A", ELEM => "0420", VR => "SQ" }, |
|
5690
|
|
|
|
|
|
|
GeneralAccessoryID => { GRP => "300A", ELEM => "0421", VR => "CS" }, |
|
5691
|
|
|
|
|
|
|
GeneralAccessoryDescription => { GRP => "300A", ELEM => "0422", VR => "ST" }, |
|
5692
|
|
|
|
|
|
|
GeneralAccessoryType => { GRP => "300A", ELEM => "0423", VR => "SH" }, |
|
5693
|
|
|
|
|
|
|
GeneralAccessoryNumber => { GRP => "300A", ELEM => "0424", VR => "IS" }, |
|
5694
|
|
|
|
|
|
|
ReferencedRTPlanSequence => { GRP => "300C", ELEM => "0002", VR => "SQ" }, |
|
5695
|
|
|
|
|
|
|
ReferencedBeamSequence => { GRP => "300C", ELEM => "0004", VR => "SQ" }, |
|
5696
|
|
|
|
|
|
|
ReferencedBeamNumber => { GRP => "300C", ELEM => "0006", VR => "IS" }, |
|
5697
|
|
|
|
|
|
|
ReferencedReferenceImageNumber => { GRP => "300C", ELEM => "0007", VR => "IS" }, |
|
5698
|
|
|
|
|
|
|
StartCumulativeMetersetWeight => { GRP => "300C", ELEM => "0008", VR => "DS" }, |
|
5699
|
|
|
|
|
|
|
EndCumulativeMetersetWeight => { GRP => "300C", ELEM => "0009", VR => "DS" }, |
|
5700
|
|
|
|
|
|
|
ReferencedBrachyApplicationSetupSequence => { GRP => "300C", ELEM => "000A", VR => "SQ" }, |
|
5701
|
|
|
|
|
|
|
ReferencedBrachyApplicationSetupNumber => { GRP => "300C", ELEM => "000C", VR => "IS" }, |
|
5702
|
|
|
|
|
|
|
ReferencedSourceNumber => { GRP => "300C", ELEM => "000E", VR => "IS" }, |
|
5703
|
|
|
|
|
|
|
ReferencedFractionGroupSequence => { GRP => "300C", ELEM => "0020", VR => "SQ" }, |
|
5704
|
|
|
|
|
|
|
ReferencedFractionGroupNumber => { GRP => "300C", ELEM => "0022", VR => "IS" }, |
|
5705
|
|
|
|
|
|
|
ReferencedVerificationImageSequence => { GRP => "300C", ELEM => "0040", VR => "SQ" }, |
|
5706
|
|
|
|
|
|
|
ReferencedReferenceImageSequence => { GRP => "300C", ELEM => "0042", VR => "SQ" }, |
|
5707
|
|
|
|
|
|
|
ReferencedDoseReferenceSequence => { GRP => "300C", ELEM => "0050", VR => "SQ" }, |
|
5708
|
|
|
|
|
|
|
ReferencedDoseReferenceNumber => { GRP => "300C", ELEM => "0051", VR => "IS" }, |
|
5709
|
|
|
|
|
|
|
BrachyReferencedDoseReferenceSequence => { GRP => "300C", ELEM => "0055", VR => "SQ" }, |
|
5710
|
|
|
|
|
|
|
ReferencedStructureSetSequence => { GRP => "300C", ELEM => "0060", VR => "SQ" }, |
|
5711
|
|
|
|
|
|
|
ReferencedPatientSetupNumber => { GRP => "300C", ELEM => "006A", VR => "IS" }, |
|
5712
|
|
|
|
|
|
|
ReferencedDoseSequence => { GRP => "300C", ELEM => "0080", VR => "SQ" }, |
|
5713
|
|
|
|
|
|
|
ReferencedToleranceTableNumber => { GRP => "300C", ELEM => "00A0", VR => "IS" }, |
|
5714
|
|
|
|
|
|
|
ReferencedBolusSequence => { GRP => "300C", ELEM => "00B0", VR => "SQ" }, |
|
5715
|
|
|
|
|
|
|
ReferencedWedgeNumber => { GRP => "300C", ELEM => "00C0", VR => "IS" }, |
|
5716
|
|
|
|
|
|
|
ReferencedCompensatorNumber => { GRP => "300C", ELEM => "00D0", VR => "IS" }, |
|
5717
|
|
|
|
|
|
|
ReferencedBlockNumber => { GRP => "300C", ELEM => "00E0", VR => "IS" }, |
|
5718
|
|
|
|
|
|
|
ReferencedControlPointIndex => { GRP => "300C", ELEM => "00F0", VR => "IS" }, |
|
5719
|
|
|
|
|
|
|
ReferencedControlPointSequence => { GRP => "300C", ELEM => "00F2", VR => "SQ" }, |
|
5720
|
|
|
|
|
|
|
ReferencedStartControlPointIndex => { GRP => "300C", ELEM => "00F4", VR => "IS" }, |
|
5721
|
|
|
|
|
|
|
ReferencedStopControlPointIndex => { GRP => "300C", ELEM => "00F6", VR => "IS" }, |
|
5722
|
|
|
|
|
|
|
ReferencedRangeShifterNumber => { GRP => "300C", ELEM => "0100", VR => "IS" }, |
|
5723
|
|
|
|
|
|
|
ReferencedLateralSpreadingDeviceNumber => { GRP => "300C", ELEM => "0102", VR => "IS" }, |
|
5724
|
|
|
|
|
|
|
ReferencedRangeModulatorNumber => { GRP => "300C", ELEM => "0104", VR => "IS" }, |
|
5725
|
|
|
|
|
|
|
ApprovalStatus => { GRP => "300E", ELEM => "0002", VR => "CS" }, |
|
5726
|
|
|
|
|
|
|
ReviewDate => { GRP => "300E", ELEM => "0004", VR => "DA" }, |
|
5727
|
|
|
|
|
|
|
ReviewTime => { GRP => "300E", ELEM => "0005", VR => "TM" }, |
|
5728
|
|
|
|
|
|
|
ReviewerName => { GRP => "300E", ELEM => "0008", VR => "PN" }, |
|
5729
|
|
|
|
|
|
|
MACParametersSequence => { GRP => "4FFE", ELEM => "0001", VR => "SQ" }, |
|
5730
|
|
|
|
|
|
|
SharedFunctionalGroupsSequence => { GRP => "5200", ELEM => "9229", VR => "SQ" }, |
|
5731
|
|
|
|
|
|
|
PerFrameFunctionalGroupsSequence => { GRP => "5200", ELEM => "9230", VR => "SQ" }, |
|
5732
|
|
|
|
|
|
|
WaveformSequence => { GRP => "5400", ELEM => "0100", VR => "SQ" }, |
|
5733
|
|
|
|
|
|
|
ChannelMinimumValue => { GRP => "5400", ELEM => "0110", VR => "ox" }, |
|
5734
|
|
|
|
|
|
|
ChannelMaximumValue => { GRP => "5400", ELEM => "0112", VR => "ox" }, |
|
5735
|
|
|
|
|
|
|
WaveformBitsAllocated => { GRP => "5400", ELEM => "1004", VR => "US" }, |
|
5736
|
|
|
|
|
|
|
WaveformSampleInterpretation => { GRP => "5400", ELEM => "1006", VR => "CS" }, |
|
5737
|
|
|
|
|
|
|
WaveformPaddingValue => { GRP => "5400", ELEM => "100A", VR => "ox" }, |
|
5738
|
|
|
|
|
|
|
WaveformData => { GRP => "5400", ELEM => "1010", VR => "ox" }, |
|
5739
|
|
|
|
|
|
|
FirstOrderPhaseCorrectionAngle => { GRP => "5600", ELEM => "0010", VR => "OF" }, |
|
5740
|
|
|
|
|
|
|
SpectroscopyData => { GRP => "5600", ELEM => "0020", VR => "OF" }, |
|
5741
|
|
|
|
|
|
|
PixelData => { GRP => "7FE0", ELEM => "0010", VR => "ox" }, |
|
5742
|
|
|
|
|
|
|
DigitalSignaturesSequence => { GRP => "FFFA", ELEM => "FFFA", VR => "SQ" }, |
|
5743
|
|
|
|
|
|
|
DataSetTrailingPadding => { GRP => "FFFC", ELEM => "FFFC", VR => "OB" }, |
|
5744
|
|
|
|
|
|
|
Item => { GRP => "FFFE", ELEM => "E000", VR => "na" }, |
|
5745
|
|
|
|
|
|
|
ItemDelimitationItem => { GRP => "FFFE", ELEM => "E00D", VR => "na" }, |
|
5746
|
|
|
|
|
|
|
SequenceDelimitationItem => { GRP => "FFFE", ELEM => "E0DD", VR => "na" }, |
|
5747
|
|
|
|
|
|
|
EventTimerSequence => { GRP => "0008", ELEM => "2133", VR => "SQ" }, |
|
5748
|
|
|
|
|
|
|
EventTimeOffset => { GRP => "0008", ELEM => "2134", VR => "FD" }, |
|
5749
|
|
|
|
|
|
|
EventCodeSequence => { GRP => "0008", ELEM => "2135", VR => "SQ" }, |
|
5750
|
|
|
|
|
|
|
DepthsOfFocus => { GRP => "0018", ELEM => "9801", VR => "FD" }, |
|
5751
|
|
|
|
|
|
|
ExcludedIntervalsSequence => { GRP => "0018", ELEM => "9803", VR => "SQ" }, |
|
5752
|
|
|
|
|
|
|
ExclusionStartDateTime => { GRP => "0018", ELEM => "9804", VR => "DT" }, |
|
5753
|
|
|
|
|
|
|
ExclusionDuration => { GRP => "0018", ELEM => "9805", VR => "FD" }, |
|
5754
|
|
|
|
|
|
|
USImageDescriptionSequence => { GRP => "0018", ELEM => "9806", VR => "SQ" }, |
|
5755
|
|
|
|
|
|
|
ImageDataTypeSequence => { GRP => "0018", ELEM => "9807", VR => "SQ" }, |
|
5756
|
|
|
|
|
|
|
DataType => { GRP => "0018", ELEM => "9808", VR => "CS" }, |
|
5757
|
|
|
|
|
|
|
TransducerScanPatternCodeSequence => { GRP => "0018", ELEM => "9809", VR => "SQ" }, |
|
5758
|
|
|
|
|
|
|
AliasedDataType => { GRP => "0018", ELEM => "980B", VR => "CS" }, |
|
5759
|
|
|
|
|
|
|
PositionMeasuringDeviceUsed => { GRP => "0018", ELEM => "980C", VR => "CS" }, |
|
5760
|
|
|
|
|
|
|
TransducerGeometryCodeSequence => { GRP => "0018", ELEM => "980D", VR => "SQ" }, |
|
5761
|
|
|
|
|
|
|
TransducerBeamSteeringCodeSequence => { GRP => "0018", ELEM => "980E", VR => "SQ" }, |
|
5762
|
|
|
|
|
|
|
TransducerApplicationCodeSequence => { GRP => "0018", ELEM => "980F", VR => "SQ" }, |
|
5763
|
|
|
|
|
|
|
ImagePositionVolume => { GRP => "0020", ELEM => "9301", VR => "FD" }, |
|
5764
|
|
|
|
|
|
|
ImageOrientationVolume => { GRP => "0020", ELEM => "9302", VR => "FD" }, |
|
5765
|
|
|
|
|
|
|
UltrasoundAcquisitionGeometry => { GRP => "0020", ELEM => "9307", VR => "CS" }, |
|
5766
|
|
|
|
|
|
|
ApexPosition => { GRP => "0020", ELEM => "9308", VR => "FD" }, |
|
5767
|
|
|
|
|
|
|
VolumeToTransducerMappingMatrix => { GRP => "0020", ELEM => "9309", VR => "FD" }, |
|
5768
|
|
|
|
|
|
|
VolumeToTableMappingMatrix => { GRP => "0020", ELEM => "930A", VR => "FD" }, |
|
5769
|
|
|
|
|
|
|
PatientFrameOfReferenceSource => { GRP => "0020", ELEM => "930C", VR => "CS" }, |
|
5770
|
|
|
|
|
|
|
TemporalPositionTimeOffset => { GRP => "0020", ELEM => "930D", VR => "FD" }, |
|
5771
|
|
|
|
|
|
|
PlanePositionVolumeSequence => { GRP => "0020", ELEM => "930E", VR => "SQ" }, |
|
5772
|
|
|
|
|
|
|
PlaneOrientationVolumeSequence => { GRP => "0020", ELEM => "930F", VR => "SQ" }, |
|
5773
|
|
|
|
|
|
|
TemporalPositionSequence => { GRP => "0020", ELEM => "9310", VR => "SQ" }, |
|
5774
|
|
|
|
|
|
|
DimensionOrganizationType => { GRP => "0020", ELEM => "9311", VR => "CS" }, |
|
5775
|
|
|
|
|
|
|
VolumeFrameOfReferenceUID => { GRP => "0020", ELEM => "9312", VR => "UI" }, |
|
5776
|
|
|
|
|
|
|
TableFrameOfReferenceUID => { GRP => "0020", ELEM => "9313", VR => "UI" }, |
|
5777
|
|
|
|
|
|
|
AlphaPaletteColorLookupTableDescriptor => { GRP => "0028", ELEM => "1104", VR => "US" }, |
|
5778
|
|
|
|
|
|
|
AlphaPaletteColorLookupTableData => { GRP => "0028", ELEM => "1204", VR => "OW" }, |
|
5779
|
|
|
|
|
|
|
DataFrameAssignmentSequence => { GRP => "0028", ELEM => "1401", VR => "SQ" }, |
|
5780
|
|
|
|
|
|
|
DataPathAssignment => { GRP => "0028", ELEM => "1402", VR => "CS" }, |
|
5781
|
|
|
|
|
|
|
BitsMappedToColorLookupTable => { GRP => "0028", ELEM => "1403", VR => "US" }, |
|
5782
|
|
|
|
|
|
|
BlendingLUT1Sequence => { GRP => "0028", ELEM => "1404", VR => "SQ" }, |
|
5783
|
|
|
|
|
|
|
BlendingLUT1TransferFunction => { GRP => "0028", ELEM => "1405", VR => "CS" }, |
|
5784
|
|
|
|
|
|
|
BlendingWeightConstant => { GRP => "0028", ELEM => "1406", VR => "FD" }, |
|
5785
|
|
|
|
|
|
|
BlendingLookupTableDescriptor => { GRP => "0028", ELEM => "1407", VR => "US" }, |
|
5786
|
|
|
|
|
|
|
BlendingLookupTableData => { GRP => "0028", ELEM => "1408", VR => "OW" }, |
|
5787
|
|
|
|
|
|
|
EnhancedPaletteColorLookupTableSequence => { GRP => "0028", ELEM => "140B", VR => "SQ" }, |
|
5788
|
|
|
|
|
|
|
BlendingLUT2Sequence => { GRP => "0028", ELEM => "140C", VR => "SQ" }, |
|
5789
|
|
|
|
|
|
|
BlendingLUT2TransferFunction => { GRP => "0028", ELEM => "140D", VR => "CS" }, |
|
5790
|
|
|
|
|
|
|
DataPathID => { GRP => "0028", ELEM => "140E", VR => "CS" }, |
|
5791
|
|
|
|
|
|
|
RGBLUTTransferFunction => { GRP => "0028", ELEM => "140F", VR => "CS" }, |
|
5792
|
|
|
|
|
|
|
AlphaLUTTransferFunction => { GRP => "0028", ELEM => "1410", VR => "CS" }, |
|
5793
|
|
|
|
|
|
|
PerformedProtocolType => { GRP => "0040", ELEM => "0261", VR => "CS" }, |
|
5794
|
|
|
|
|
|
|
RETIRED_MRDRDirectoryRecordOffset => { GRP => "0004", ELEM => "1504", VR => "up" }, |
|
5795
|
|
|
|
|
|
|
RETIRED_NumberOfReferences => { GRP => "0004", ELEM => "1600", VR => "UL" }, |
|
5796
|
|
|
|
|
|
|
RETIRED_OverlayDate => { GRP => "0008", ELEM => "0024", VR => "DA" }, |
|
5797
|
|
|
|
|
|
|
RETIRED_CurveDate => { GRP => "0008", ELEM => "0025", VR => "DA" }, |
|
5798
|
|
|
|
|
|
|
RETIRED_OverlayTime => { GRP => "0008", ELEM => "0034", VR => "TM" }, |
|
5799
|
|
|
|
|
|
|
RETIRED_CurveTime => { GRP => "0008", ELEM => "0035", VR => "TM" }, |
|
5800
|
|
|
|
|
|
|
RETIRED_NuclearMedicineSeriesType => { GRP => "0008", ELEM => "0042", VR => "CS" }, |
|
5801
|
|
|
|
|
|
|
RETIRED_ReferencedResultsSequence => { GRP => "0008", ELEM => "1100", VR => "SQ" }, |
|
5802
|
|
|
|
|
|
|
RETIRED_ReferencedOverlaySequence => { GRP => "0008", ELEM => "1130", VR => "SQ" }, |
|
5803
|
|
|
|
|
|
|
RETIRED_ReferencedCurveSequence => { GRP => "0008", ELEM => "1145", VR => "SQ" }, |
|
5804
|
|
|
|
|
|
|
RETIRED_LossyImageCompressionRetired => { GRP => "0008", ELEM => "2110", VR => "CS" }, |
|
5805
|
|
|
|
|
|
|
RETIRED_TransducerPosition => { GRP => "0008", ELEM => "2200", VR => "CS" }, |
|
5806
|
|
|
|
|
|
|
RETIRED_TransducerOrientation => { GRP => "0008", ELEM => "2204", VR => "CS" }, |
|
5807
|
|
|
|
|
|
|
RETIRED_AnatomicStructure => { GRP => "0008", ELEM => "2208", VR => "CS" }, |
|
5808
|
|
|
|
|
|
|
RETIRED_TransducerPositionSequence => { GRP => "0008", ELEM => "2240", VR => "SQ" }, |
|
5809
|
|
|
|
|
|
|
RETIRED_TransducerPositionModifierSequence => { GRP => "0008", ELEM => "2242", VR => "SQ" }, |
|
5810
|
|
|
|
|
|
|
RETIRED_TransducerOrientationSequence => { GRP => "0008", ELEM => "2244", VR => "SQ" }, |
|
5811
|
|
|
|
|
|
|
RETIRED_TransducerOrientationModifierSequence => { GRP => "0008", ELEM => "2246", VR => "SQ" }, |
|
5812
|
|
|
|
|
|
|
RETIRED_AnatomicStructureSpaceOrRegionCodeSequenceTrial => { GRP => "0008", ELEM => "2251", VR => "SQ" }, |
|
5813
|
|
|
|
|
|
|
RETIRED_AnatomicPortalOfEntranceCodeSequenceTrial => { GRP => "0008", ELEM => "2253", VR => "SQ" }, |
|
5814
|
|
|
|
|
|
|
RETIRED_AnatomicApproachDirectionCodeSequenceTrial => { GRP => "0008", ELEM => "2255", VR => "SQ" }, |
|
5815
|
|
|
|
|
|
|
RETIRED_AnatomicPerspectiveDescriptionTrial => { GRP => "0008", ELEM => "2256", VR => "ST" }, |
|
5816
|
|
|
|
|
|
|
RETIRED_AnatomicPerspectiveCodeSequenceTrial => { GRP => "0008", ELEM => "2257", VR => "SQ" }, |
|
5817
|
|
|
|
|
|
|
RETIRED_AnatomicLocationOfExaminingInstrumentDescriptionTrial => { GRP => "0008", ELEM => "2258", VR => "ST" }, |
|
5818
|
|
|
|
|
|
|
RETIRED_AnatomicLocationOfExaminingInstrumentCodeSequenceTrial => { GRP => "0008", ELEM => "2259", VR => "SQ" }, |
|
5819
|
|
|
|
|
|
|
RETIRED_AnatomicStructureSpaceOrRegionModifierCodeSequenceTrial => { GRP => "0008", ELEM => "225A", VR => "SQ" }, |
|
5820
|
|
|
|
|
|
|
RETIRED_OnAxisBackgroundAnatomicStructureCodeSequenceTrial => { GRP => "0008", ELEM => "225C", VR => "SQ" }, |
|
5821
|
|
|
|
|
|
|
RETIRED_Radionuclide => { GRP => "0018", ELEM => "0030", VR => "LO" }, |
|
5822
|
|
|
|
|
|
|
RETIRED_EnergyWindowCenterline => { GRP => "0018", ELEM => "0032", VR => "DS" }, |
|
5823
|
|
|
|
|
|
|
RETIRED_EnergyWindowTotalWidth => { GRP => "0018", ELEM => "0033", VR => "DS" }, |
|
5824
|
|
|
|
|
|
|
RETIRED_TherapyType => { GRP => "0018", ELEM => "0037", VR => "CS" }, |
|
5825
|
|
|
|
|
|
|
RETIRED_TherapyDescription => { GRP => "0018", ELEM => "0039", VR => "CS" }, |
|
5826
|
|
|
|
|
|
|
RETIRED_HardcopyCreationDeviceID => { GRP => "0018", ELEM => "1011", VR => "LO" }, |
|
5827
|
|
|
|
|
|
|
RETIRED_HardcopyDeviceManufacturer => { GRP => "0018", ELEM => "1017", VR => "LO" }, |
|
5828
|
|
|
|
|
|
|
RETIRED_HardcopyDeviceSoftwareVersion => { GRP => "0018", ELEM => "101A", VR => "LO" }, |
|
5829
|
|
|
|
|
|
|
RETIRED_HardcopyDeviceManufacturersModelName => { GRP => "0018", ELEM => "101B", VR => "LO" }, |
|
5830
|
|
|
|
|
|
|
RETIRED_AngularPosition => { GRP => "0018", ELEM => "1141", VR => "DS" }, |
|
5831
|
|
|
|
|
|
|
RETIRED_RotationOffset => { GRP => "0018", ELEM => "1146", VR => "DS" }, |
|
5832
|
|
|
|
|
|
|
RETIRED_PostprocessingFunction => { GRP => "0018", ELEM => "5021", VR => "LO" }, |
|
5833
|
|
|
|
|
|
|
RETIRED_ImageTransformationMatrix => { GRP => "0018", ELEM => "5210", VR => "DS" }, |
|
5834
|
|
|
|
|
|
|
RETIRED_ImageTranslationVector => { GRP => "0018", ELEM => "5212", VR => "DS" }, |
|
5835
|
|
|
|
|
|
|
RETIRED_DopplerSampleVolumeXPositionRetired => { GRP => "0018", ELEM => "6038", VR => "UL" }, |
|
5836
|
|
|
|
|
|
|
RETIRED_DopplerSampleVolumeYPositionRetired => { GRP => "0018", ELEM => "603A", VR => "UL" }, |
|
5837
|
|
|
|
|
|
|
RETIRED_TMLinePositionX0Retired => { GRP => "0018", ELEM => "603C", VR => "UL" }, |
|
5838
|
|
|
|
|
|
|
RETIRED_TMLinePositionY0Retired => { GRP => "0018", ELEM => "603E", VR => "UL" }, |
|
5839
|
|
|
|
|
|
|
RETIRED_TMLinePositionX1Retired => { GRP => "0018", ELEM => "6040", VR => "UL" }, |
|
5840
|
|
|
|
|
|
|
RETIRED_TMLinePositionY1Retired => { GRP => "0018", ELEM => "6042", VR => "UL" }, |
|
5841
|
|
|
|
|
|
|
RETIRED_ParallelReductionFactorInPlaneRetired => { GRP => "0018", ELEM => "9096", VR => "FD" }, |
|
5842
|
|
|
|
|
|
|
RETIRED_BulkMotionStatus => { GRP => "0018", ELEM => "9166", VR => "CS" }, |
|
5843
|
|
|
|
|
|
|
RETIRED_ChemicalShiftsMinimumIntegrationLimitInHz => { GRP => "0018", ELEM => "9195", VR => "FD" }, |
|
5844
|
|
|
|
|
|
|
RETIRED_ChemicalShiftsMaximumIntegrationLimitInHz => { GRP => "0018", ELEM => "9196", VR => "FD" }, |
|
5845
|
|
|
|
|
|
|
RETIRED_Attribute00189445UsedInadvertentlyInAProduct => { GRP => "0018", ELEM => "9445", VR => "UN" }, |
|
5846
|
|
|
|
|
|
|
RETIRED_IsotopeNumber => { GRP => "0020", ELEM => "0014", VR => "IS" }, |
|
5847
|
|
|
|
|
|
|
RETIRED_PhaseNumber => { GRP => "0020", ELEM => "0015", VR => "IS" }, |
|
5848
|
|
|
|
|
|
|
RETIRED_IntervalNumber => { GRP => "0020", ELEM => "0016", VR => "IS" }, |
|
5849
|
|
|
|
|
|
|
RETIRED_TimeSlotNumber => { GRP => "0020", ELEM => "0017", VR => "IS" }, |
|
5850
|
|
|
|
|
|
|
RETIRED_AngleNumber => { GRP => "0020", ELEM => "0018", VR => "IS" }, |
|
5851
|
|
|
|
|
|
|
RETIRED_OverlayNumber => { GRP => "0020", ELEM => "0022", VR => "IS" }, |
|
5852
|
|
|
|
|
|
|
RETIRED_CurveNumber => { GRP => "0020", ELEM => "0024", VR => "IS" }, |
|
5853
|
|
|
|
|
|
|
RETIRED_LookupTableNumber => { GRP => "0020", ELEM => "0026", VR => "IS" }, |
|
5854
|
|
|
|
|
|
|
RETIRED_SeriesInStudy => { GRP => "0020", ELEM => "1000", VR => "IS" }, |
|
5855
|
|
|
|
|
|
|
RETIRED_AcquisitionsInStudy => { GRP => "0020", ELEM => "1004", VR => "IS" }, |
|
5856
|
|
|
|
|
|
|
RETIRED_OtherStudyNumbers => { GRP => "0020", ELEM => "1070", VR => "IS" }, |
|
5857
|
|
|
|
|
|
|
RETIRED_Planes => { GRP => "0028", ELEM => "0012", VR => "US" }, |
|
5858
|
|
|
|
|
|
|
RETIRED_Attribute00280020UsedInadvertentlyInAProduct => { GRP => "0028", ELEM => "0020", VR => "UN" }, |
|
5859
|
|
|
|
|
|
|
RETIRED_SmallestImagePixelValueInPlane => { GRP => "0028", ELEM => "0110", VR => "xs" }, |
|
5860
|
|
|
|
|
|
|
RETIRED_LargestImagePixelValueInPlane => { GRP => "0028", ELEM => "0111", VR => "xs" }, |
|
5861
|
|
|
|
|
|
|
RETIRED_LargeRedPaletteColorLookupTableDescriptor => { GRP => "0028", ELEM => "1111", VR => "xs" }, |
|
5862
|
|
|
|
|
|
|
RETIRED_LargeGreenPaletteColorLookupTableDescriptor => { GRP => "0028", ELEM => "1112", VR => "xs" }, |
|
5863
|
|
|
|
|
|
|
RETIRED_LargeBluePaletteColorLookupTableDescriptor => { GRP => "0028", ELEM => "1113", VR => "xs" }, |
|
5864
|
|
|
|
|
|
|
RETIRED_LargeRedPaletteColorLookupTableData => { GRP => "0028", ELEM => "1211", VR => "OW" }, |
|
5865
|
|
|
|
|
|
|
RETIRED_LargeGreenPaletteColorLookupTableData => { GRP => "0028", ELEM => "1212", VR => "OW" }, |
|
5866
|
|
|
|
|
|
|
RETIRED_LargeBluePaletteColorLookupTableData => { GRP => "0028", ELEM => "1213", VR => "OW" }, |
|
5867
|
|
|
|
|
|
|
RETIRED_LargePaletteColorLookupTableUID => { GRP => "0028", ELEM => "1214", VR => "UI" }, |
|
5868
|
|
|
|
|
|
|
RETIRED_BiPlaneAcquisitionSequence => { GRP => "0028", ELEM => "5000", VR => "SQ" }, |
|
5869
|
|
|
|
|
|
|
RETIRED_MaskPointers => { GRP => "0028", ELEM => "6030", VR => "US" }, |
|
5870
|
|
|
|
|
|
|
RETIRED_LargestMonochromePixelValue => { GRP => "0028", ELEM => "9099", VR => "US" }, |
|
5871
|
|
|
|
|
|
|
RETIRED_StudyStatusID => { GRP => "0032", ELEM => "000A", VR => "CS" }, |
|
5872
|
|
|
|
|
|
|
RETIRED_StudyPriorityID => { GRP => "0032", ELEM => "000C", VR => "CS" }, |
|
5873
|
|
|
|
|
|
|
RETIRED_StudyIDIssuer => { GRP => "0032", ELEM => "0012", VR => "LO" }, |
|
5874
|
|
|
|
|
|
|
RETIRED_StudyVerifiedDate => { GRP => "0032", ELEM => "0032", VR => "DA" }, |
|
5875
|
|
|
|
|
|
|
RETIRED_StudyVerifiedTime => { GRP => "0032", ELEM => "0033", VR => "TM" }, |
|
5876
|
|
|
|
|
|
|
RETIRED_StudyReadDate => { GRP => "0032", ELEM => "0034", VR => "DA" }, |
|
5877
|
|
|
|
|
|
|
RETIRED_StudyReadTime => { GRP => "0032", ELEM => "0035", VR => "TM" }, |
|
5878
|
|
|
|
|
|
|
RETIRED_ScheduledStudyStartDate => { GRP => "0032", ELEM => "1000", VR => "DA" }, |
|
5879
|
|
|
|
|
|
|
RETIRED_ScheduledStudyStartTime => { GRP => "0032", ELEM => "1001", VR => "TM" }, |
|
5880
|
|
|
|
|
|
|
RETIRED_ScheduledStudyStopDate => { GRP => "0032", ELEM => "1010", VR => "DA" }, |
|
5881
|
|
|
|
|
|
|
RETIRED_ScheduledStudyStopTime => { GRP => "0032", ELEM => "1011", VR => "TM" }, |
|
5882
|
|
|
|
|
|
|
RETIRED_ScheduledStudyLocation => { GRP => "0032", ELEM => "1020", VR => "LO" }, |
|
5883
|
|
|
|
|
|
|
RETIRED_ScheduledStudyLocationAETitle => { GRP => "0032", ELEM => "1021", VR => "AE" }, |
|
5884
|
|
|
|
|
|
|
RETIRED_ReasonForStudy => { GRP => "0032", ELEM => "1030", VR => "LO" }, |
|
5885
|
|
|
|
|
|
|
RETIRED_StudyArrivalDate => { GRP => "0032", ELEM => "1040", VR => "DA" }, |
|
5886
|
|
|
|
|
|
|
RETIRED_StudyArrivalTime => { GRP => "0032", ELEM => "1041", VR => "TM" }, |
|
5887
|
|
|
|
|
|
|
RETIRED_StudyCompletionDate => { GRP => "0032", ELEM => "1050", VR => "DA" }, |
|
5888
|
|
|
|
|
|
|
RETIRED_StudyCompletionTime => { GRP => "0032", ELEM => "1051", VR => "TM" }, |
|
5889
|
|
|
|
|
|
|
RETIRED_StudyComponentStatusID => { GRP => "0032", ELEM => "1055", VR => "CS" }, |
|
5890
|
|
|
|
|
|
|
RETIRED_StudyComments => { GRP => "0032", ELEM => "4000", VR => "LT" }, |
|
5891
|
|
|
|
|
|
|
RETIRED_ScheduledAdmissionDate => { GRP => "0038", ELEM => "001A", VR => "DA" }, |
|
5892
|
|
|
|
|
|
|
RETIRED_ScheduledAdmissionTime => { GRP => "0038", ELEM => "001B", VR => "TM" }, |
|
5893
|
|
|
|
|
|
|
RETIRED_ScheduledDischargeDate => { GRP => "0038", ELEM => "001C", VR => "DA" }, |
|
5894
|
|
|
|
|
|
|
RETIRED_ScheduledDischargeTime => { GRP => "0038", ELEM => "001D", VR => "TM" }, |
|
5895
|
|
|
|
|
|
|
RETIRED_ScheduledPatientInstitutionResidence => { GRP => "0038", ELEM => "001E", VR => "LO" }, |
|
5896
|
|
|
|
|
|
|
RETIRED_DischargeDate => { GRP => "0038", ELEM => "0030", VR => "DA" }, |
|
5897
|
|
|
|
|
|
|
RETIRED_DischargeTime => { GRP => "0038", ELEM => "0032", VR => "TM" }, |
|
5898
|
|
|
|
|
|
|
RETIRED_DischargeDiagnosisDescription => { GRP => "0038", ELEM => "0040", VR => "LO" }, |
|
5899
|
|
|
|
|
|
|
RETIRED_DischargeDiagnosisCodeSequence => { GRP => "0038", ELEM => "0044", VR => "SQ" }, |
|
5900
|
|
|
|
|
|
|
RETIRED_DistanceSourceToSupport => { GRP => "0040", ELEM => "0307", VR => "DS" }, |
|
5901
|
|
|
|
|
|
|
RETIRED_ReferencedProcedureStepSequence => { GRP => "0040", ELEM => "0330", VR => "SQ" }, |
|
5902
|
|
|
|
|
|
|
RETIRED_SpecimenDescriptionSequenceTrial => { GRP => "0040", ELEM => "0552", VR => "SQ" }, |
|
5903
|
|
|
|
|
|
|
RETIRED_SpecimenDescriptionTrial => { GRP => "0040", ELEM => "0553", VR => "ST" }, |
|
5904
|
|
|
|
|
|
|
RETIRED_VitalStainCodeSequenceTrial => { GRP => "0040", ELEM => "09F8", VR => "SQ" }, |
|
5905
|
|
|
|
|
|
|
RETIRED_PlacerOrderNumberProcedure => { GRP => "0040", ELEM => "1006", VR => "SH" }, |
|
5906
|
|
|
|
|
|
|
RETIRED_FillerOrderNumberProcedure => { GRP => "0040", ELEM => "1007", VR => "SH" }, |
|
5907
|
|
|
|
|
|
|
RETIRED_ReasonForTheImagingServiceRequest => { GRP => "0040", ELEM => "2001", VR => "LO" }, |
|
5908
|
|
|
|
|
|
|
RETIRED_PlacerOrderNumberImagingServiceRequestRetired => { GRP => "0040", ELEM => "2006", VR => "SH" }, |
|
5909
|
|
|
|
|
|
|
RETIRED_FillerOrderNumberImagingServiceRequestRetired => { GRP => "0040", ELEM => "2007", VR => "SH" }, |
|
5910
|
|
|
|
|
|
|
RETIRED_EquivalentCDADocumentSequence => { GRP => "0040", ELEM => "A090", VR => "SQ" }, |
|
5911
|
|
|
|
|
|
|
RETIRED_AddressTrial => { GRP => "0040", ELEM => "A353", VR => "ST" }, |
|
5912
|
|
|
|
|
|
|
RETIRED_TelephoneNumberTrial => { GRP => "0040", ELEM => "A354", VR => "LO" }, |
|
5913
|
|
|
|
|
|
|
RETIRED_TemplateVersion => { GRP => "0040", ELEM => "DB06", VR => "DT" }, |
|
5914
|
|
|
|
|
|
|
RETIRED_TemplateLocalVersion => { GRP => "0040", ELEM => "DB07", VR => "DT" }, |
|
5915
|
|
|
|
|
|
|
RETIRED_TemplateExtensionFlag => { GRP => "0040", ELEM => "DB0B", VR => "CS" }, |
|
5916
|
|
|
|
|
|
|
RETIRED_TemplateExtensionOrganizationUID => { GRP => "0040", ELEM => "DB0C", VR => "UI" }, |
|
5917
|
|
|
|
|
|
|
RETIRED_TemplateExtensionCreatorUID => { GRP => "0040", ELEM => "DB0D", VR => "UI" }, |
|
5918
|
|
|
|
|
|
|
RETIRED_CountsIncluded => { GRP => "0054", ELEM => "1400", VR => "CS" }, |
|
5919
|
|
|
|
|
|
|
RETIRED_DeadTimeCorrectionFlag => { GRP => "0054", ELEM => "1401", VR => "CS" }, |
|
5920
|
|
|
|
|
|
|
RETIRED_ImageRotationRetired => { GRP => "0070", ELEM => "0040", VR => "IS" }, |
|
5921
|
|
|
|
|
|
|
RETIRED_DisplayedAreaTopLeftHandCornerTrial => { GRP => "0070", ELEM => "0050", VR => "US" }, |
|
5922
|
|
|
|
|
|
|
RETIRED_DisplayedAreaBottomRightHandCornerTrial => { GRP => "0070", ELEM => "0051", VR => "US" }, |
|
5923
|
|
|
|
|
|
|
RETIRED_GraphicLayerRecommendedDisplayRGBValue => { GRP => "0070", ELEM => "0067", VR => "US" }, |
|
5924
|
|
|
|
|
|
|
RETIRED_TopicTitle => { GRP => "0088", ELEM => "0904", VR => "LO" }, |
|
5925
|
|
|
|
|
|
|
RETIRED_TopicSubject => { GRP => "0088", ELEM => "0906", VR => "ST" }, |
|
5926
|
|
|
|
|
|
|
RETIRED_TopicAuthor => { GRP => "0088", ELEM => "0910", VR => "LO" }, |
|
5927
|
|
|
|
|
|
|
RETIRED_TopicKeywords => { GRP => "0088", ELEM => "0912", VR => "LO" }, |
|
5928
|
|
|
|
|
|
|
RETIRED_ColorImagePrintingFlag => { GRP => "2000", ELEM => "0062", VR => "CS" }, |
|
5929
|
|
|
|
|
|
|
RETIRED_CollationFlag => { GRP => "2000", ELEM => "0063", VR => "CS" }, |
|
5930
|
|
|
|
|
|
|
RETIRED_AnnotationFlag => { GRP => "2000", ELEM => "0065", VR => "CS" }, |
|
5931
|
|
|
|
|
|
|
RETIRED_ImageOverlayFlag => { GRP => "2000", ELEM => "0067", VR => "CS" }, |
|
5932
|
|
|
|
|
|
|
RETIRED_PresentationLUTFlag => { GRP => "2000", ELEM => "0069", VR => "CS" }, |
|
5933
|
|
|
|
|
|
|
RETIRED_ImageBoxPresentationLUTFlag => { GRP => "2000", ELEM => "006A", VR => "CS" }, |
|
5934
|
|
|
|
|
|
|
RETIRED_ReferencedStoredPrintSequence => { GRP => "2000", ELEM => "0510", VR => "SQ" }, |
|
5935
|
|
|
|
|
|
|
RETIRED_ReferencedImageOverlayBoxSequence => { GRP => "2020", ELEM => "0130", VR => "SQ" }, |
|
5936
|
|
|
|
|
|
|
RETIRED_ReferencedVOILUTBoxSequence => { GRP => "2020", ELEM => "0140", VR => "SQ" }, |
|
5937
|
|
|
|
|
|
|
RETIRED_ReferencedOverlayPlaneSequence => { GRP => "2040", ELEM => "0010", VR => "SQ" }, |
|
5938
|
|
|
|
|
|
|
RETIRED_ReferencedOverlayPlaneGroups => { GRP => "2040", ELEM => "0011", VR => "US" }, |
|
5939
|
|
|
|
|
|
|
RETIRED_OverlayPixelDataSequence => { GRP => "2040", ELEM => "0020", VR => "SQ" }, |
|
5940
|
|
|
|
|
|
|
RETIRED_OverlayMagnificationType => { GRP => "2040", ELEM => "0060", VR => "CS" }, |
|
5941
|
|
|
|
|
|
|
RETIRED_OverlaySmoothingType => { GRP => "2040", ELEM => "0070", VR => "CS" }, |
|
5942
|
|
|
|
|
|
|
RETIRED_OverlayOrImageMagnification => { GRP => "2040", ELEM => "0072", VR => "CS" }, |
|
5943
|
|
|
|
|
|
|
RETIRED_MagnifyToNumberOfColumns => { GRP => "2040", ELEM => "0074", VR => "US" }, |
|
5944
|
|
|
|
|
|
|
RETIRED_OverlayForegroundDensity => { GRP => "2040", ELEM => "0080", VR => "CS" }, |
|
5945
|
|
|
|
|
|
|
RETIRED_OverlayBackgroundDensity => { GRP => "2040", ELEM => "0082", VR => "CS" }, |
|
5946
|
|
|
|
|
|
|
RETIRED_OverlayMode => { GRP => "2040", ELEM => "0090", VR => "CS" }, |
|
5947
|
|
|
|
|
|
|
RETIRED_ThresholdDensity => { GRP => "2040", ELEM => "0100", VR => "CS" }, |
|
5948
|
|
|
|
|
|
|
RETIRED_ReferencedImageBoxSequenceRetired => { GRP => "2040", ELEM => "0500", VR => "SQ" }, |
|
5949
|
|
|
|
|
|
|
RETIRED_PrintJobID => { GRP => "2100", ELEM => "0010", VR => "SH" }, |
|
5950
|
|
|
|
|
|
|
RETIRED_DestinationAE => { GRP => "2100", ELEM => "0140", VR => "AE" }, |
|
5951
|
|
|
|
|
|
|
RETIRED_ReferencedPrintJobSequencePullStoredPrint => { GRP => "2100", ELEM => "0500", VR => "SQ" }, |
|
5952
|
|
|
|
|
|
|
RETIRED_PrintQueueID => { GRP => "2110", ELEM => "0099", VR => "SH" }, |
|
5953
|
|
|
|
|
|
|
RETIRED_QueueStatus => { GRP => "2120", ELEM => "0010", VR => "CS" }, |
|
5954
|
|
|
|
|
|
|
RETIRED_PrintJobDescriptionSequence => { GRP => "2120", ELEM => "0050", VR => "SQ" }, |
|
5955
|
|
|
|
|
|
|
RETIRED_ReferencedPrintJobSequence => { GRP => "2120", ELEM => "0070", VR => "SQ" }, |
|
5956
|
|
|
|
|
|
|
RETIRED_PrintManagementCapabilitiesSequence => { GRP => "2130", ELEM => "0010", VR => "SQ" }, |
|
5957
|
|
|
|
|
|
|
RETIRED_PrinterCharacteristicsSequence => { GRP => "2130", ELEM => "0015", VR => "SQ" }, |
|
5958
|
|
|
|
|
|
|
RETIRED_FilmBoxContentSequence => { GRP => "2130", ELEM => "0030", VR => "SQ" }, |
|
5959
|
|
|
|
|
|
|
RETIRED_ImageBoxContentSequence => { GRP => "2130", ELEM => "0040", VR => "SQ" }, |
|
5960
|
|
|
|
|
|
|
RETIRED_AnnotationContentSequence => { GRP => "2130", ELEM => "0050", VR => "SQ" }, |
|
5961
|
|
|
|
|
|
|
RETIRED_ImageOverlayBoxContentSequence => { GRP => "2130", ELEM => "0060", VR => "SQ" }, |
|
5962
|
|
|
|
|
|
|
RETIRED_PresentationLUTContentSequence => { GRP => "2130", ELEM => "0080", VR => "SQ" }, |
|
5963
|
|
|
|
|
|
|
RETIRED_ProposedStudySequence => { GRP => "2130", ELEM => "00A0", VR => "SQ" }, |
|
5964
|
|
|
|
|
|
|
RETIRED_OriginalImageSequence => { GRP => "2130", ELEM => "00C0", VR => "SQ" }, |
|
5965
|
|
|
|
|
|
|
RETIRED_ResultsID => { GRP => "4008", ELEM => "0040", VR => "SH" }, |
|
5966
|
|
|
|
|
|
|
RETIRED_ResultsIDIssuer => { GRP => "4008", ELEM => "0042", VR => "LO" }, |
|
5967
|
|
|
|
|
|
|
RETIRED_ReferencedInterpretationSequence => { GRP => "4008", ELEM => "0050", VR => "SQ" }, |
|
5968
|
|
|
|
|
|
|
RETIRED_InterpretationRecordedDate => { GRP => "4008", ELEM => "0100", VR => "DA" }, |
|
5969
|
|
|
|
|
|
|
RETIRED_InterpretationRecordedTime => { GRP => "4008", ELEM => "0101", VR => "TM" }, |
|
5970
|
|
|
|
|
|
|
RETIRED_InterpretationRecorder => { GRP => "4008", ELEM => "0102", VR => "PN" }, |
|
5971
|
|
|
|
|
|
|
RETIRED_ReferenceToRecordedSound => { GRP => "4008", ELEM => "0103", VR => "LO" }, |
|
5972
|
|
|
|
|
|
|
RETIRED_InterpretationTranscriptionDate => { GRP => "4008", ELEM => "0108", VR => "DA" }, |
|
5973
|
|
|
|
|
|
|
RETIRED_InterpretationTranscriptionTime => { GRP => "4008", ELEM => "0109", VR => "TM" }, |
|
5974
|
|
|
|
|
|
|
RETIRED_InterpretationTranscriber => { GRP => "4008", ELEM => "010A", VR => "PN" }, |
|
5975
|
|
|
|
|
|
|
RETIRED_InterpretationText => { GRP => "4008", ELEM => "010B", VR => "ST" }, |
|
5976
|
|
|
|
|
|
|
RETIRED_InterpretationAuthor => { GRP => "4008", ELEM => "010C", VR => "PN" }, |
|
5977
|
|
|
|
|
|
|
RETIRED_InterpretationApproverSequence => { GRP => "4008", ELEM => "0111", VR => "SQ" }, |
|
5978
|
|
|
|
|
|
|
RETIRED_InterpretationApprovalDate => { GRP => "4008", ELEM => "0112", VR => "DA" }, |
|
5979
|
|
|
|
|
|
|
RETIRED_InterpretationApprovalTime => { GRP => "4008", ELEM => "0113", VR => "TM" }, |
|
5980
|
|
|
|
|
|
|
RETIRED_PhysicianApprovingInterpretation => { GRP => "4008", ELEM => "0114", VR => "PN" }, |
|
5981
|
|
|
|
|
|
|
RETIRED_InterpretationDiagnosisDescription => { GRP => "4008", ELEM => "0115", VR => "LT" }, |
|
5982
|
|
|
|
|
|
|
RETIRED_InterpretationDiagnosisCodeSequence => { GRP => "4008", ELEM => "0117", VR => "SQ" }, |
|
5983
|
|
|
|
|
|
|
RETIRED_ResultsDistributionListSequence => { GRP => "4008", ELEM => "0118", VR => "SQ" }, |
|
5984
|
|
|
|
|
|
|
RETIRED_DistributionName => { GRP => "4008", ELEM => "0119", VR => "PN" }, |
|
5985
|
|
|
|
|
|
|
RETIRED_DistributionAddress => { GRP => "4008", ELEM => "011A", VR => "LO" }, |
|
5986
|
|
|
|
|
|
|
RETIRED_InterpretationID => { GRP => "4008", ELEM => "0200", VR => "SH" }, |
|
5987
|
|
|
|
|
|
|
RETIRED_InterpretationIDIssuer => { GRP => "4008", ELEM => "0202", VR => "LO" }, |
|
5988
|
|
|
|
|
|
|
RETIRED_InterpretationTypeID => { GRP => "4008", ELEM => "0210", VR => "CS" }, |
|
5989
|
|
|
|
|
|
|
RETIRED_InterpretationStatusID => { GRP => "4008", ELEM => "0212", VR => "CS" }, |
|
5990
|
|
|
|
|
|
|
RETIRED_Impressions => { GRP => "4008", ELEM => "0300", VR => "ST" }, |
|
5991
|
|
|
|
|
|
|
RETIRED_ResultsComments => { GRP => "4008", ELEM => "4000", VR => "ST" }, |
|
5992
|
|
|
|
|
|
|
ACR_NEMA_CommandGroupLengthToEnd => { GRP => "0000", ELEM => "0001", VR => "UL" }, |
|
5993
|
|
|
|
|
|
|
ACR_NEMA_CommandRecognitionCode => { GRP => "0000", ELEM => "0010", VR => "CS" }, |
|
5994
|
|
|
|
|
|
|
ACR_NEMA_Initiator => { GRP => "0000", ELEM => "0200", VR => "LO" }, |
|
5995
|
|
|
|
|
|
|
ACR_NEMA_Receiver => { GRP => "0000", ELEM => "0300", VR => "LO" }, |
|
5996
|
|
|
|
|
|
|
ACR_NEMA_FindLocation => { GRP => "0000", ELEM => "0400", VR => "LO" }, |
|
5997
|
|
|
|
|
|
|
ACR_NEMA_NumberOfMatches => { GRP => "0000", ELEM => "0850", VR => "US" }, |
|
5998
|
|
|
|
|
|
|
ACR_NEMA_ResponseSequenceNumber => { GRP => "0000", ELEM => "0860", VR => "US" }, |
|
5999
|
|
|
|
|
|
|
ACR_NEMA_DialogReceiver => { GRP => "0000", ELEM => "4000", VR => "LO" }, |
|
6000
|
|
|
|
|
|
|
ACR_NEMA_TerminalType => { GRP => "0000", ELEM => "4010", VR => "LO" }, |
|
6001
|
|
|
|
|
|
|
ACR_NEMA_MessageSetID => { GRP => "0000", ELEM => "5010", VR => "LO" }, |
|
6002
|
|
|
|
|
|
|
ACR_NEMA_EndMessageSet => { GRP => "0000", ELEM => "5020", VR => "LO" }, |
|
6003
|
|
|
|
|
|
|
ACR_NEMA_DisplayFormat => { GRP => "0000", ELEM => "5110", VR => "LO" }, |
|
6004
|
|
|
|
|
|
|
ACR_NEMA_PagePositionID => { GRP => "0000", ELEM => "5120", VR => "LO" }, |
|
6005
|
|
|
|
|
|
|
ACR_NEMA_TextFormatID => { GRP => "0000", ELEM => "5130", VR => "LO" }, |
|
6006
|
|
|
|
|
|
|
ACR_NEMA_NormalReverse => { GRP => "0000", ELEM => "5140", VR => "CS" }, |
|
6007
|
|
|
|
|
|
|
ACR_NEMA_AddGrayScale => { GRP => "0000", ELEM => "5150", VR => "CS" }, |
|
6008
|
|
|
|
|
|
|
ACR_NEMA_Borders => { GRP => "0000", ELEM => "5160", VR => "CS" }, |
|
6009
|
|
|
|
|
|
|
ACR_NEMA_Copies => { GRP => "0000", ELEM => "5170", VR => "IS" }, |
|
6010
|
|
|
|
|
|
|
ACR_NEMA_MagnificationType => { GRP => "0000", ELEM => "5180", VR => "LO" }, |
|
6011
|
|
|
|
|
|
|
ACR_NEMA_Erase => { GRP => "0000", ELEM => "5190", VR => "LO" }, |
|
6012
|
|
|
|
|
|
|
ACR_NEMA_Print => { GRP => "0000", ELEM => "51A0", VR => "CS" }, |
|
6013
|
|
|
|
|
|
|
ACR_NEMA_Overlays => { GRP => "0000", ELEM => "51B0", VR => "US" }, |
|
6014
|
|
|
|
|
|
|
ACR_NEMA_IdentifyingGroupLengthToEnd => { GRP => "0008", ELEM => "0001", VR => "UL" }, |
|
6015
|
|
|
|
|
|
|
ACR_NEMA_RecognitionCode => { GRP => "0008", ELEM => "0010", VR => "LO" }, |
|
6016
|
|
|
|
|
|
|
ACR_NEMA_OldDataSetType => { GRP => "0008", ELEM => "0040", VR => "US" }, |
|
6017
|
|
|
|
|
|
|
ACR_NEMA_DataSetSubtype => { GRP => "0008", ELEM => "0041", VR => "LO" }, |
|
6018
|
|
|
|
|
|
|
ACR_NEMA_NetworkID => { GRP => "0008", ELEM => "1000", VR => "LO" }, |
|
6019
|
|
|
|
|
|
|
ACR_NEMA_IdentifyingComments => { GRP => "0008", ELEM => "4000", VR => "LT" }, |
|
6020
|
|
|
|
|
|
|
ACR_NEMA_InsurancePlanIdentification => { GRP => "0010", ELEM => "1050", VR => "LT" }, |
|
6021
|
|
|
|
|
|
|
ACR_NEMA_UpperLowerPixelValues => { GRP => "0018", ELEM => "1240", VR => "IS" }, |
|
6022
|
|
|
|
|
|
|
ACR_NEMA_AcquisitionComments => { GRP => "0018", ELEM => "4000", VR => "LT" }, |
|
6023
|
|
|
|
|
|
|
ACR_NEMA_DynamicRange => { GRP => "0018", ELEM => "5030", VR => "DS" }, |
|
6024
|
|
|
|
|
|
|
ACR_NEMA_TotalGain => { GRP => "0018", ELEM => "5040", VR => "DS" }, |
|
6025
|
|
|
|
|
|
|
ACR_NEMA_ImagePosition => { GRP => "0020", ELEM => "0030", VR => "DS" }, |
|
6026
|
|
|
|
|
|
|
ACR_NEMA_ImageOrientation => { GRP => "0020", ELEM => "0035", VR => "DS" }, |
|
6027
|
|
|
|
|
|
|
ACR_NEMA_Location => { GRP => "0020", ELEM => "0050", VR => "DS" }, |
|
6028
|
|
|
|
|
|
|
ACR_NEMA_ImageGeometryType => { GRP => "0020", ELEM => "0070", VR => "LO" }, |
|
6029
|
|
|
|
|
|
|
ACR_NEMA_MaskingImage => { GRP => "0020", ELEM => "0080", VR => "LO" }, |
|
6030
|
|
|
|
|
|
|
ACR_NEMA_AcquisitionsInSeries => { GRP => "0020", ELEM => "1001", VR => "IS" }, |
|
6031
|
|
|
|
|
|
|
ACR_NEMA_ImagesInSeries => { GRP => "0020", ELEM => "1003", VR => "IS" }, |
|
6032
|
|
|
|
|
|
|
ACR_NEMA_ImagesInStudy => { GRP => "0020", ELEM => "1005", VR => "IS" }, |
|
6033
|
|
|
|
|
|
|
ACR_NEMA_Reference => { GRP => "0020", ELEM => "1020", VR => "LO" }, |
|
6034
|
|
|
|
|
|
|
ACR_NEMA_ModifyingDeviceID => { GRP => "0020", ELEM => "3401", VR => "LO" }, |
|
6035
|
|
|
|
|
|
|
ACR_NEMA_ModifiedImageID => { GRP => "0020", ELEM => "3402", VR => "LO" }, |
|
6036
|
|
|
|
|
|
|
ACR_NEMA_ModifiedImageDate => { GRP => "0020", ELEM => "3403", VR => "DA" }, |
|
6037
|
|
|
|
|
|
|
ACR_NEMA_ModifyingDeviceManufacturer => { GRP => "0020", ELEM => "3404", VR => "LO" }, |
|
6038
|
|
|
|
|
|
|
ACR_NEMA_ModifiedImageTime => { GRP => "0020", ELEM => "3405", VR => "TM" }, |
|
6039
|
|
|
|
|
|
|
ACR_NEMA_ModifiedImageDescription => { GRP => "0020", ELEM => "3406", VR => "LO" }, |
|
6040
|
|
|
|
|
|
|
ACR_NEMA_OriginalImageIdentification => { GRP => "0020", ELEM => "5000", VR => "AT" }, |
|
6041
|
|
|
|
|
|
|
ACR_NEMA_OriginalImageIdentificationNomenclature => { GRP => "0020", ELEM => "5002", VR => "LO" }, |
|
6042
|
|
|
|
|
|
|
ACR_NEMA_ImageDimensions => { GRP => "0028", ELEM => "0005", VR => "US" }, |
|
6043
|
|
|
|
|
|
|
ACR_NEMA_ImageFormat => { GRP => "0028", ELEM => "0040", VR => "CS" }, |
|
6044
|
|
|
|
|
|
|
ACR_NEMA_ManipulatedImage => { GRP => "0028", ELEM => "0050", VR => "LO" }, |
|
6045
|
|
|
|
|
|
|
ACR_NEMA_CompressionCode => { GRP => "0028", ELEM => "0060", VR => "CS" }, |
|
6046
|
|
|
|
|
|
|
ACR_NEMA_SmallestValidPixelValue => { GRP => "0028", ELEM => "0104", VR => "xs" }, |
|
6047
|
|
|
|
|
|
|
ACR_NEMA_LargestValidPixelValue => { GRP => "0028", ELEM => "0105", VR => "xs" }, |
|
6048
|
|
|
|
|
|
|
ACR_NEMA_ImageLocation => { GRP => "0028", ELEM => "0200", VR => "US" }, |
|
6049
|
|
|
|
|
|
|
ACR_NEMA_GrayScale => { GRP => "0028", ELEM => "1080", VR => "CS" }, |
|
6050
|
|
|
|
|
|
|
ACR_NEMA_GrayLookupTableDescriptor => { GRP => "0028", ELEM => "1100", VR => "xs" }, |
|
6051
|
|
|
|
|
|
|
ACR_NEMA_GrayLookupTableData => { GRP => "0028", ELEM => "1200", VR => "xs" }, |
|
6052
|
|
|
|
|
|
|
ACR_NEMA_ImagePresentationComments => { GRP => "0028", ELEM => "4000", VR => "LT" }, |
|
6053
|
|
|
|
|
|
|
ACR_NEMA_TextGroupLength => { GRP => "4000", ELEM => "0000", VR => "UL" }, |
|
6054
|
|
|
|
|
|
|
ACR_NEMA_TextArbitrary => { GRP => "4000", ELEM => "0010", VR => "LT" }, |
|
6055
|
|
|
|
|
|
|
ACR_NEMA_TextComments => { GRP => "4000", ELEM => "4000", VR => "LT" }, |
|
6056
|
|
|
|
|
|
|
ACR_NEMA_2C_CompressionRecognitionCode => { GRP => "0028", ELEM => "005F", VR => "CS" }, |
|
6057
|
|
|
|
|
|
|
ACR_NEMA_2C_CompressionOriginator => { GRP => "0028", ELEM => "0061", VR => "SH" }, |
|
6058
|
|
|
|
|
|
|
ACR_NEMA_2C_CompressionLabel => { GRP => "0028", ELEM => "0062", VR => "SH" }, |
|
6059
|
|
|
|
|
|
|
ACR_NEMA_2C_CompressionDescription => { GRP => "0028", ELEM => "0063", VR => "SH" }, |
|
6060
|
|
|
|
|
|
|
ACR_NEMA_2C_CompressionSequence => { GRP => "0028", ELEM => "0065", VR => "CS" }, |
|
6061
|
|
|
|
|
|
|
ACR_NEMA_2C_CompressionStepPointers => { GRP => "0028", ELEM => "0066", VR => "AT" }, |
|
6062
|
|
|
|
|
|
|
ACR_NEMA_2C_RepeatInterval => { GRP => "0028", ELEM => "0068", VR => "US" }, |
|
6063
|
|
|
|
|
|
|
ACR_NEMA_2C_BitsGrouped => { GRP => "0028", ELEM => "0069", VR => "US" }, |
|
6064
|
|
|
|
|
|
|
ACR_NEMA_2C_PerimeterTable => { GRP => "0028", ELEM => "0070", VR => "US" }, |
|
6065
|
|
|
|
|
|
|
ACR_NEMA_2C_PerimeterValue => { GRP => "0028", ELEM => "0071", VR => "xs" }, |
|
6066
|
|
|
|
|
|
|
ACR_NEMA_2C_PredictorRows => { GRP => "0028", ELEM => "0080", VR => "US" }, |
|
6067
|
|
|
|
|
|
|
ACR_NEMA_2C_PredictorColumns => { GRP => "0028", ELEM => "0081", VR => "US" }, |
|
6068
|
|
|
|
|
|
|
ACR_NEMA_2C_PredictorConstants => { GRP => "0028", ELEM => "0082", VR => "US" }, |
|
6069
|
|
|
|
|
|
|
ACR_NEMA_2C_BlockedPixels => { GRP => "0028", ELEM => "0090", VR => "CS" }, |
|
6070
|
|
|
|
|
|
|
ACR_NEMA_2C_BlockRows => { GRP => "0028", ELEM => "0091", VR => "US" }, |
|
6071
|
|
|
|
|
|
|
ACR_NEMA_2C_BlockColumns => { GRP => "0028", ELEM => "0092", VR => "US" }, |
|
6072
|
|
|
|
|
|
|
ACR_NEMA_2C_RowOverlap => { GRP => "0028", ELEM => "0093", VR => "US" }, |
|
6073
|
|
|
|
|
|
|
ACR_NEMA_2C_ColumnOverlap => { GRP => "0028", ELEM => "0094", VR => "US" }, |
|
6074
|
|
|
|
|
|
|
ACR_NEMA_2C_TransformLabel => { GRP => "0028", ELEM => "0400", VR => "CS" }, |
|
6075
|
|
|
|
|
|
|
ACR_NEMA_2C_TransformVersionNumber => { GRP => "0028", ELEM => "0401", VR => "CS" }, |
|
6076
|
|
|
|
|
|
|
ACR_NEMA_2C_NumberOfTransformSteps => { GRP => "0028", ELEM => "0402", VR => "US" }, |
|
6077
|
|
|
|
|
|
|
ACR_NEMA_2C_SequenceOfCompressedData => { GRP => "0028", ELEM => "0403", VR => "CS" }, |
|
6078
|
|
|
|
|
|
|
ACR_NEMA_2C_DetailsOfCoefficients => { GRP => "0028", ELEM => "0404", VR => "AT" }, |
|
6079
|
|
|
|
|
|
|
ACR_NEMA_2C_RowsForNthOrderCoefficients => { GRP => "0028", ELEM => "0410", VR => "US" }, |
|
6080
|
|
|
|
|
|
|
ACR_NEMA_2C_ColumnsForNthOrderCoefficients => { GRP => "0028", ELEM => "0411", VR => "US" }, |
|
6081
|
|
|
|
|
|
|
ACR_NEMA_2C_CoefficientCoding => { GRP => "0028", ELEM => "0412", VR => "CS" }, |
|
6082
|
|
|
|
|
|
|
ACR_NEMA_2C_CoefficientCodingPointers => { GRP => "0028", ELEM => "0413", VR => "AT" }, |
|
6083
|
|
|
|
|
|
|
ACR_NEMA_2C_DCTLabel => { GRP => "0028", ELEM => "0700", VR => "CS" }, |
|
6084
|
|
|
|
|
|
|
ACR_NEMA_2C_DataBlockDescription => { GRP => "0028", ELEM => "0701", VR => "CS" }, |
|
6085
|
|
|
|
|
|
|
ACR_NEMA_2C_DataBlock => { GRP => "0028", ELEM => "0702", VR => "AT" }, |
|
6086
|
|
|
|
|
|
|
ACR_NEMA_2C_NormalizationFactorFormat => { GRP => "0028", ELEM => "0710", VR => "US" }, |
|
6087
|
|
|
|
|
|
|
ACR_NEMA_2C_ZonalMapNumberFormat => { GRP => "0028", ELEM => "0720", VR => "US" }, |
|
6088
|
|
|
|
|
|
|
ACR_NEMA_2C_ZonalMapLocation => { GRP => "0028", ELEM => "0721", VR => "AT" }, |
|
6089
|
|
|
|
|
|
|
ACR_NEMA_2C_ZonalMapFormat => { GRP => "0028", ELEM => "0722", VR => "US" }, |
|
6090
|
|
|
|
|
|
|
ACR_NEMA_2C_AdaptiveMapFormat => { GRP => "0028", ELEM => "0730", VR => "US" }, |
|
6091
|
|
|
|
|
|
|
ACR_NEMA_2C_CodeNumberFormat => { GRP => "0028", ELEM => "0740", VR => "US" }, |
|
6092
|
|
|
|
|
|
|
ACR_NEMA_2C_CodeLabel => { GRP => "0028", ELEM => "0800", VR => "CS" }, |
|
6093
|
|
|
|
|
|
|
ACR_NEMA_2C_NumberOfTables => { GRP => "0028", ELEM => "0802", VR => "US" }, |
|
6094
|
|
|
|
|
|
|
ACR_NEMA_2C_CodeTableLocation => { GRP => "0028", ELEM => "0803", VR => "AT" }, |
|
6095
|
|
|
|
|
|
|
ACR_NEMA_2C_BitsForCodeWord => { GRP => "0028", ELEM => "0804", VR => "US" }, |
|
6096
|
|
|
|
|
|
|
ACR_NEMA_2C_ImageDataLocation => { GRP => "0028", ELEM => "0808", VR => "AT" }, |
|
6097
|
|
|
|
|
|
|
ACR_NEMA_2C_CodeTableGroupLength => { GRP => "1000", ELEM => "0000", VR => "UL" }, |
|
6098
|
|
|
|
|
|
|
ACR_NEMA_2C_EscapeTriplet => { GRP => "1000", ELEM => "0010", VR => "US" }, |
|
6099
|
|
|
|
|
|
|
ACR_NEMA_2C_RunLengthTriplet => { GRP => "1000", ELEM => "0011", VR => "US" }, |
|
6100
|
|
|
|
|
|
|
ACR_NEMA_2C_HuffmanTableSize => { GRP => "1000", ELEM => "0012", VR => "US" }, |
|
6101
|
|
|
|
|
|
|
ACR_NEMA_2C_HuffmanTableTriplet => { GRP => "1000", ELEM => "0013", VR => "US" }, |
|
6102
|
|
|
|
|
|
|
ACR_NEMA_2C_ShiftTableSize => { GRP => "1000", ELEM => "0014", VR => "US" }, |
|
6103
|
|
|
|
|
|
|
ACR_NEMA_2C_ShiftTableTriplet => { GRP => "1000", ELEM => "0015", VR => "US" }, |
|
6104
|
|
|
|
|
|
|
ACR_NEMA_2C_ZonalMapGroupLength => { GRP => "1010", ELEM => "0000", VR => "UL" }, |
|
6105
|
|
|
|
|
|
|
ACR_NEMA_2C_ZonalMap => { GRP => "1010", ELEM => "0004", VR => "US" }, |
|
6106
|
|
|
|
|
|
|
ACR_NEMA_2C_CoefficientsSDVN => { GRP => "7FE0", ELEM => "0020", VR => "OW" }, |
|
6107
|
|
|
|
|
|
|
ACR_NEMA_2C_CoefficientsSDHN => { GRP => "7FE0", ELEM => "0030", VR => "OW" }, |
|
6108
|
|
|
|
|
|
|
ACR_NEMA_2C_CoefficientsSDDN => { GRP => "7FE0", ELEM => "0040", VR => "OW" }, |
|
6109
|
|
|
|
|
|
|
%dcmtk360DicomDictionary, |
|
6110
|
|
|
|
|
|
|
); |
|
6111
|
|
|
|
|
|
|
|
|
6112
|
|
|
|
|
|
|
our %reverseDicomDictionary; |
|
6113
|
|
|
|
|
|
|
sub import |
|
6114
|
|
|
|
|
|
|
{ |
|
6115
|
|
|
|
|
|
|
my @ExporterList = (); |
|
6116
|
|
|
|
|
|
|
my %h; |
|
6117
|
|
|
|
|
|
|
while (my $x = shift) |
|
6118
|
|
|
|
|
|
|
{ |
|
6119
|
|
|
|
|
|
|
push @ExporterList, $x unless $x =~ m/ADDITIONAL_TAGS/; |
|
6120
|
|
|
|
|
|
|
$h{ADDITIONAL_TAGS} = shift if $x =~ m/ADDITIONAL_TAGS/; |
|
6121
|
|
|
|
|
|
|
} |
|
6122
|
|
|
|
|
|
|
%dcmtkDicomDictionary = (%dcmtkDicomDictionary, %{$h{ADDITIONAL_TAGS}}) if defined $h{ADDITIONAL_TAGS}; |
|
6123
|
|
|
|
|
|
|
while (my ($dcm_dict_name, $entryref) = each %dcmtkDicomDictionary) { |
|
6124
|
|
|
|
|
|
|
my $key = $entryref->{GRP} . $entryref->{ELEM}; |
|
6125
|
|
|
|
|
|
|
my $valRef = {DCM_DICT_NAME => $dcm_dict_name, VR => $entryref->{VR} }; |
|
6126
|
|
|
|
|
|
|
if (defined $Image::DCMTK::reverseDicomDictionary{$key} ) |
|
6127
|
|
|
|
|
|
|
{ |
|
6128
|
|
|
|
|
|
|
#duplicate keys, prefer unadorned to "ACR_NEMA" to "RETIRED" |
|
6129
|
|
|
|
|
|
|
if ($dcm_dict_name =~ m/^RETIRED/) |
|
6130
|
|
|
|
|
|
|
{ |
|
6131
|
|
|
|
|
|
|
# can't be prefered |
|
6132
|
|
|
|
|
|
|
} |
|
6133
|
|
|
|
|
|
|
elsif ($dcm_dict_name =~ m/^ACR_NEMA/) |
|
6134
|
|
|
|
|
|
|
{ |
|
6135
|
|
|
|
|
|
|
# only beats RETIRED |
|
6136
|
|
|
|
|
|
|
$Image::DCMTK::reverseDicomDictionary{$key} = $valRef if $Image::DCMTK::reverseDicomDictionary{$key}->{ DCM_DICT_NAME } =~ m/^RETIRED/; |
|
6137
|
|
|
|
|
|
|
} |
|
6138
|
|
|
|
|
|
|
else |
|
6139
|
|
|
|
|
|
|
{ |
|
6140
|
|
|
|
|
|
|
# always wins, hope it isn't colliding with another tag |
|
6141
|
|
|
|
|
|
|
$Image::DCMTK::reverseDicomDictionary{$key} = $valRef; |
|
6142
|
|
|
|
|
|
|
} |
|
6143
|
|
|
|
|
|
|
} |
|
6144
|
|
|
|
|
|
|
else |
|
6145
|
|
|
|
|
|
|
{ |
|
6146
|
|
|
|
|
|
|
$Image::DCMTK::reverseDicomDictionary{$key} = $valRef; |
|
6147
|
|
|
|
|
|
|
} |
|
6148
|
|
|
|
|
|
|
}; |
|
6149
|
|
|
|
|
|
|
Image::DCMTK->export_to_level(1, @ExporterList); |
|
6150
|
|
|
|
|
|
|
} |
|
6151
|
|
|
|
|
|
|
|
|
6152
|
|
|
|
|
|
|
# exported package globals go here |
|
6153
|
|
|
|
|
|
|
|
|
6154
|
|
|
|
|
|
|
|
|
6155
|
|
|
|
|
|
|
# TODO these command lines do not exist here!, they are from Getopt::CommandLineExports!!! |
|
6156
|
|
|
|
|
|
|
my %cmdLines = ( |
|
6157
|
|
|
|
|
|
|
makeXMLElement => [qw/GRP=s ELEM=s VR=s VM=i LEN=i DCM_DICT_NAME=s NAME=s VALUE=s BINARY=s/], |
|
6158
|
|
|
|
|
|
|
returnTagAsXML => [qw/GRP=s ELEM=s VR=s VM=i LEN=i DCM_DICT_NAME=s NAME=s VALUE=s BINARY=s LEN=i CARDINALITY=i/], |
|
6159
|
|
|
|
|
|
|
openXMLItem => [qw/LEN=i CARDINALITY=i/], |
|
6160
|
|
|
|
|
|
|
openXMLSequence => [qw/GRP=s ELEM=s VR=s VM=i LEN=i DCM_DICT_NAME=s NAME=s CARDINALITY=i/], |
|
6161
|
|
|
|
|
|
|
closeXMLItem => [qw//], |
|
6162
|
|
|
|
|
|
|
closeXMLSequence => [qw//], |
|
6163
|
|
|
|
|
|
|
parseDCMDump => [qw/DCM_DUMP=s@ REGULAR_EXPRESSION=s DCM_TAGS_REQUESTED=s@/], |
|
6164
|
|
|
|
|
|
|
parseDCMDumpForSequences => [qw/DCM_DUMP=s@ REGULAR_EXPRESSION=s DCM_SEQUENCES_REQUESTED=s@/], |
|
6165
|
|
|
|
|
|
|
parseDCMDumpForTagLists => [qw/DCM_DUMP=s@ REGULAR_EXPRESSION=s DCM_TAGS_REQUESTED=s@/], |
|
6166
|
|
|
|
|
|
|
parseDCMXMLDump => [qw/DCM_DUMP=s@ REGULAR_EXPRESSION=s DCM_TAGS_REQUESTED=s@/], |
|
6167
|
|
|
|
|
|
|
parseDCMXMLDumpForSequences => [qw/DCM_DUMP=s@ REGULAR_EXPRESSION=s DCM_SEQUENCES_REQUESTED=s@/], |
|
6168
|
|
|
|
|
|
|
parseDCMXMLDumpForTagLists => [qw/DCM_DUMP=s@ REGULAR_EXPRESSION=s DCM_TAGS_REQUESTED=s@/], |
|
6169
|
|
|
|
|
|
|
modifyAnImage => [qw/SOURCE_FILENAME=s DESTINATION_FILENAME=s TAG_CHANGE_LINE=s/], |
|
6170
|
|
|
|
|
|
|
openDicomFile => [qw/DCM_FILENAME=s/], |
|
6171
|
|
|
|
|
|
|
); |
|
6172
|
|
|
|
|
|
|
|
|
6173
|
|
|
|
|
|
|
=head2 openDicomFile |
|
6174
|
|
|
|
|
|
|
|
|
6175
|
|
|
|
|
|
|
Read a Dicom File and generate a Dicom object |
|
6176
|
|
|
|
|
|
|
|
|
6177
|
|
|
|
|
|
|
=cut |
|
6178
|
|
|
|
|
|
|
|
|
6179
|
|
|
|
|
|
|
sub openDicomFile |
|
6180
|
|
|
|
|
|
|
{ |
|
6181
|
|
|
|
|
|
|
my %h = ( |
|
6182
|
|
|
|
|
|
|
DCM_FILENAME => undef, |
|
6183
|
|
|
|
|
|
|
( parseArgs \@_, @{$Image::DCMTK::cmdLines{openDicomFile}}), |
|
6184
|
|
|
|
|
|
|
); |
|
6185
|
|
|
|
|
|
|
my $dump = io("dcm2xml $h{DCM_FILENAME}")->pipe; |
|
6186
|
|
|
|
|
|
|
my $dicomHash = XML::Simple::XMLin($dump, SuppressEmpty => undef); |
|
6187
|
|
|
|
|
|
|
return $dicomHash; |
|
6188
|
|
|
|
|
|
|
} |
|
6189
|
|
|
|
|
|
|
|
|
6190
|
|
|
|
|
|
|
=head2 returnTagAsXML |
|
6191
|
|
|
|
|
|
|
|
|
6192
|
|
|
|
|
|
|
Return an XML formatted string version of a given DICOM tag |
|
6193
|
|
|
|
|
|
|
|
|
6194
|
|
|
|
|
|
|
You may use either a Group and Element type tag or a DICOM Dictionary Common Name (PatientID for example) |
|
6195
|
|
|
|
|
|
|
|
|
6196
|
|
|
|
|
|
|
This function really just calls open/closeXMLSequence open/closeXMLItem or makeXMLElement as needed |
|
6197
|
|
|
|
|
|
|
|
|
6198
|
|
|
|
|
|
|
=cut |
|
6199
|
|
|
|
|
|
|
|
|
6200
|
|
|
|
|
|
|
sub returnTagAsXML |
|
6201
|
|
|
|
|
|
|
{ |
|
6202
|
|
|
|
|
|
|
my %h = ( |
|
6203
|
|
|
|
|
|
|
GRP => undef, |
|
6204
|
|
|
|
|
|
|
ELEM => undef, |
|
6205
|
|
|
|
|
|
|
VR => undef, |
|
6206
|
|
|
|
|
|
|
VM => 1, |
|
6207
|
|
|
|
|
|
|
NAME => "None", |
|
6208
|
|
|
|
|
|
|
DCM_DICT_NAME => undef, |
|
6209
|
|
|
|
|
|
|
VALUE => undef, |
|
6210
|
|
|
|
|
|
|
BINARY => undef, |
|
6211
|
|
|
|
|
|
|
CARDINALITY => 1, |
|
6212
|
|
|
|
|
|
|
LEN => 10, |
|
6213
|
|
|
|
|
|
|
( parseArgs \@_, @{$Image::DCMTK::cmdLines{returnTagAsXML}}), |
|
6214
|
|
|
|
|
|
|
); |
|
6215
|
|
|
|
|
|
|
@h{ keys %{$Image::DCMTK::dcmtkDicomDictionary{$h{DCM_DICT_NAME}}}, 'NAME' } = (values %{$Image::DCMTK::dcmtkDicomDictionary{$h{DCM_DICT_NAME}}}, $h{DCM_DICT_NAME}) if defined $h{DCM_DICT_NAME} and defined $Image::DCMTK::dcmtkDicomDictionary{$h{DCM_DICT_NAME}}; |
|
6216
|
|
|
|
|
|
|
return openXMLSequence (\%h) if ( $h{ VR } eq 'SQ' ); |
|
6217
|
|
|
|
|
|
|
return closeXMLSequence() if ( $h{ ELEM } eq 'E0DD' and $h{ GRP } eq 'FFFE'); |
|
6218
|
|
|
|
|
|
|
return openXMLItem(\%h) if ( $h{ ELEM } eq 'E000' and $h{ GRP } eq 'FFFE'); |
|
6219
|
|
|
|
|
|
|
return closeXMLItem() if ( $h{ ELEM } eq 'E00D' and $h{ GRP } eq 'FFFE'); |
|
6220
|
|
|
|
|
|
|
return makeXMLElement(\%h); |
|
6221
|
|
|
|
|
|
|
} |
|
6222
|
|
|
|
|
|
|
|
|
6223
|
|
|
|
|
|
|
=head2 makeXMLElement |
|
6224
|
|
|
|
|
|
|
|
|
6225
|
|
|
|
|
|
|
Return an XML formatted string version of a given "normal" DICOM tag (not a Item or a Sequence structure) |
|
6226
|
|
|
|
|
|
|
|
|
6227
|
|
|
|
|
|
|
=cut |
|
6228
|
|
|
|
|
|
|
|
|
6229
|
|
|
|
|
|
|
sub makeXMLElement |
|
6230
|
|
|
|
|
|
|
{ |
|
6231
|
|
|
|
|
|
|
my %h = ( |
|
6232
|
|
|
|
|
|
|
GRP => undef, |
|
6233
|
|
|
|
|
|
|
ELEM => undef, |
|
6234
|
|
|
|
|
|
|
VR => undef, |
|
6235
|
|
|
|
|
|
|
VM => 1, |
|
6236
|
|
|
|
|
|
|
LEN => undef, |
|
6237
|
|
|
|
|
|
|
NAME => "None", |
|
6238
|
|
|
|
|
|
|
DCM_DICT_NAME => undef, |
|
6239
|
|
|
|
|
|
|
VALUE => undef, |
|
6240
|
|
|
|
|
|
|
BINARY => undef, |
|
6241
|
|
|
|
|
|
|
( parseArgs \@_, @{$Image::DCMTK::cmdLines{makeXMLElement}}), |
|
6242
|
|
|
|
|
|
|
); |
|
6243
|
|
|
|
|
|
|
return if defined $h{DCM_DICT_NAME} and not defined $Image::DCMTK::dcmtkDicomDictionary{$h{DCM_DICT_NAME}}; |
|
6244
|
|
|
|
|
|
|
# print formatHash \%h if not defined $h{LEN} and not defined $h{VALUE}; |
|
6245
|
|
|
|
|
|
|
$h{LEN} = length $h{VALUE} if not defined $h{LEN}; |
|
6246
|
|
|
|
|
|
|
my $binField = defined $h{BINARY} ? qq! binary="yes"! : qq!!; |
|
6247
|
|
|
|
|
|
|
@h{ keys %{$Image::DCMTK::dcmtkDicomDictionary{$h{DCM_DICT_NAME}}}, 'NAME' } = (values %{$Image::DCMTK::dcmtkDicomDictionary{$h{DCM_DICT_NAME}}}, $h{DCM_DICT_NAME}) if defined $h{DCM_DICT_NAME} and defined $Image::DCMTK::dcmtkDicomDictionary{$h{DCM_DICT_NAME}}; |
|
6248
|
|
|
|
|
|
|
# print formatHash \%h if not defined $h{NAME}; |
|
6249
|
|
|
|
|
|
|
# print "Possibly Private Tag: Clearing NAME\n" if not defined $h{NAME}; |
|
6250
|
|
|
|
|
|
|
$h{NAME} = "" if not defined $h{NAME}; |
|
6251
|
|
|
|
|
|
|
return if ( $h{ VR } eq 'SQ' or ( $h{ ELEM } eq 'E0DD' and $h{ GRP } eq 'FFFE') or ( $h{ ELEM } eq 'E000' and $h{ GRP } eq 'FFFE') or ( $h{ ELEM } eq 'E00D' and $h{ GRP } eq 'FFFE') ); |
|
6252
|
|
|
|
|
|
|
return if not defined $h{VALUE}; |
|
6253
|
|
|
|
|
|
|
return qq!! if $h{VALUE} eq 'no value available'; |
|
6254
|
|
|
|
|
|
|
return qq!$h{VALUE}! if $h{VALUE} ne 'no value available'; |
|
6255
|
|
|
|
|
|
|
} |
|
6256
|
|
|
|
|
|
|
|
|
6257
|
|
|
|
|
|
|
=head2 openXMLItem |
|
6258
|
|
|
|
|
|
|
|
|
6259
|
|
|
|
|
|
|
Return an XML formatted string of the DICOM "Open Item" tag |
|
6260
|
|
|
|
|
|
|
|
|
6261
|
|
|
|
|
|
|
=cut |
|
6262
|
|
|
|
|
|
|
|
|
6263
|
|
|
|
|
|
|
sub openXMLItem |
|
6264
|
|
|
|
|
|
|
{ |
|
6265
|
|
|
|
|
|
|
my %h = ( |
|
6266
|
|
|
|
|
|
|
CARDINALITY => 1, |
|
6267
|
|
|
|
|
|
|
LEN => 10, |
|
6268
|
|
|
|
|
|
|
( parseArgs \@_, @{$Image::DCMTK::cmdLines{openXMLItem}}), |
|
6269
|
|
|
|
|
|
|
); |
|
6270
|
|
|
|
|
|
|
return qq'- ';
|
|
6271
|
|
|
|
|
|
|
} |
|
6272
|
|
|
|
|
|
|
|
|
6273
|
|
|
|
|
|
|
=head2 closeXMLItem |
|
6274
|
|
|
|
|
|
|
|
|
6275
|
|
|
|
|
|
|
Return an XML formatted string of the DICOM "Close Item" tag |
|
6276
|
|
|
|
|
|
|
|
|
6277
|
|
|
|
|
|
|
=cut |
|
6278
|
|
|
|
|
|
|
|
|
6279
|
|
|
|
|
|
|
|
|
6280
|
|
|
|
|
|
|
sub closeXMLItem |
|
6281
|
|
|
|
|
|
|
{ |
|
6282
|
|
|
|
|
|
|
return qq''; |
|
6283
|
|
|
|
|
|
|
} |
|
6284
|
|
|
|
|
|
|
|
|
6285
|
|
|
|
|
|
|
=head2 openXMLSequence |
|
6286
|
|
|
|
|
|
|
|
|
6287
|
|
|
|
|
|
|
Return an XML formatted string of an DICOM "Open Sequence" tag |
|
6288
|
|
|
|
|
|
|
|
|
6289
|
|
|
|
|
|
|
=cut |
|
6290
|
|
|
|
|
|
|
|
|
6291
|
|
|
|
|
|
|
sub openXMLSequence |
|
6292
|
|
|
|
|
|
|
{ |
|
6293
|
|
|
|
|
|
|
my %h = ( |
|
6294
|
|
|
|
|
|
|
GRP => undef, |
|
6295
|
|
|
|
|
|
|
ELEM => undef, |
|
6296
|
|
|
|
|
|
|
VR => "SQ", |
|
6297
|
|
|
|
|
|
|
CARDINALITY => 1, |
|
6298
|
|
|
|
|
|
|
LEN => 10, |
|
6299
|
|
|
|
|
|
|
DCM_DICT_NAME => undef, |
|
6300
|
|
|
|
|
|
|
NAME => "None", |
|
6301
|
|
|
|
|
|
|
( parseArgs \@_, @{$Image::DCMTK::cmdLines{openXMLSequence}}), |
|
6302
|
|
|
|
|
|
|
); |
|
6303
|
|
|
|
|
|
|
@h{ keys %{$Image::DCMTK::dcmtkDicomDictionary{$h{DCM_DICT_NAME}}}, 'NAME' } = (values %{$Image::DCMTK::dcmtkDicomDictionary{$h{DCM_DICT_NAME}}}, $h{DCM_DICT_NAME}) if defined $h{DCM_DICT_NAME} and defined $Image::DCMTK::dcmtkDicomDictionary{$h{DCM_DICT_NAME}}; |
|
6304
|
|
|
|
|
|
|
return qq''; |
|
6305
|
|
|
|
|
|
|
} |
|
6306
|
|
|
|
|
|
|
|
|
6307
|
|
|
|
|
|
|
=head2 closeXMLSequence |
|
6308
|
|
|
|
|
|
|
|
|
6309
|
|
|
|
|
|
|
Return an XML formatted string of an DICOM "Close Sequence" tag |
|
6310
|
|
|
|
|
|
|
|
|
6311
|
|
|
|
|
|
|
=cut |
|
6312
|
|
|
|
|
|
|
|
|
6313
|
|
|
|
|
|
|
sub closeXMLSequence |
|
6314
|
|
|
|
|
|
|
{ |
|
6315
|
|
|
|
|
|
|
return qq''; |
|
6316
|
|
|
|
|
|
|
} |
|
6317
|
|
|
|
|
|
|
|
|
6318
|
|
|
|
|
|
|
=head2 parseDCMXMLDumpForTagLists |
|
6319
|
|
|
|
|
|
|
|
|
6320
|
|
|
|
|
|
|
|
|
6321
|
|
|
|
|
|
|
=cut |
|
6322
|
|
|
|
|
|
|
|
|
6323
|
|
|
|
|
|
|
sub parseDCMXMLDumpForTagLists |
|
6324
|
|
|
|
|
|
|
{ |
|
6325
|
|
|
|
|
|
|
my %h = ( |
|
6326
|
|
|
|
|
|
|
# DCM_DUMP => undef, |
|
6327
|
|
|
|
|
|
|
# DCM_TAGS_REQUESTED => undef, |
|
6328
|
|
|
|
|
|
|
REGULAR_EXPRESSION => q%<(?'item'item).*card=\"(?'card'[0-9]+)\".*len=\"(?'len'[0-9]+)\"|<(?'sequence'sequence).*tag=\"(?'group'[0-9a-fA-F]{4})\,(?'elem'[0-9a-fA-F]{4})\".*vr=\"(?'vr'[a-zA-Z\?][a-zA-Z\?])\".*card=\"(?'card'[0-9]+)\".*len=\"(?'len'[0-9]+)\"|<(?'endsequence'\/sequence)|<(?'enditem'\/item)|<(?'element'element).*tag=\"(?'group'[0-9a-fA-F]{4})\,(?'elem'[0-9a-fA-F]{4})\".*vr=\"(?'vr'[a-zA-Z\?][a-zA-Z\?])\".*\>(?'value'.*)\<%, |
|
6329
|
|
|
|
|
|
|
( parseArgs \@_, @{$Image::DCMTK::cmdLines{parseDCMXMLDumpForTagLists}}), |
|
6330
|
|
|
|
|
|
|
); |
|
6331
|
|
|
|
|
|
|
my @DCMHash; |
|
6332
|
|
|
|
|
|
|
my $dcmDumpOrdinal = 0; |
|
6333
|
|
|
|
|
|
|
my %reqTags = map {$_ => 1 } @{$h{DCM_TAGS_REQUESTED}}; |
|
6334
|
|
|
|
|
|
|
my %recognizedTags; |
|
6335
|
|
|
|
|
|
|
my @sequenceNames; |
|
6336
|
|
|
|
|
|
|
foreach my $line (@{$h{DCM_DUMP}}) |
|
6337
|
|
|
|
|
|
|
{ |
|
6338
|
|
|
|
|
|
|
$line =~ qr/$h{REGULAR_EXPRESSION}/; |
|
6339
|
|
|
|
|
|
|
my $group; |
|
6340
|
|
|
|
|
|
|
my $elem; |
|
6341
|
|
|
|
|
|
|
my $vr; |
|
6342
|
|
|
|
|
|
|
my $value; |
|
6343
|
|
|
|
|
|
|
$group = uc($+{ group }) if defined $+{ group }; |
|
6344
|
|
|
|
|
|
|
$group = 'FFFE' if defined $+{ item } or defined $+{ endsequence } or defined $+{ enditem }; |
|
6345
|
|
|
|
|
|
|
$elem = uc($+{ elem }) if defined $+{ elem }; |
|
6346
|
|
|
|
|
|
|
$elem = 'E000' if defined $+{ item }; |
|
6347
|
|
|
|
|
|
|
$elem = 'E00D' if defined $+{ enditem }; |
|
6348
|
|
|
|
|
|
|
$elem = 'E0DD' if defined $+{ endsequence }; |
|
6349
|
|
|
|
|
|
|
$vr = uc($+{ vr }) if defined $+{ vr }; |
|
6350
|
|
|
|
|
|
|
$vr = 'IT' if defined $+{ item }; |
|
6351
|
|
|
|
|
|
|
$vr = 'UN' if defined $+{ enditem } or defined $+{ endsequence }; |
|
6352
|
|
|
|
|
|
|
$value = $+{ value } if defined $+{ value }; |
|
6353
|
|
|
|
|
|
|
$value = $+{ card } if defined $+{ card }; |
|
6354
|
|
|
|
|
|
|
$value = 'EndItem' if defined $+{ enditem }; |
|
6355
|
|
|
|
|
|
|
$value = 'EndSeq' if defined $+{ endsequence }; |
|
6356
|
|
|
|
|
|
|
next if not defined $group; # skip if unrecognized XML (like , etc) |
|
6357
|
|
|
|
|
|
|
next if ( uc($group) eq 'FFFC' and uc($elem) eq 'FFFC' ); |
|
6358
|
|
|
|
|
|
|
next if ( uc($group) eq '7FE0' and uc($elem) eq '0010' ); #skip pixel data |
|
6359
|
|
|
|
|
|
|
my $name = $Image::DCMTK::reverseDicomDictionary{ $group . $elem }->{DCM_DICT_NAME}; |
|
6360
|
|
|
|
|
|
|
$name = "PrivateTag" if not defined $name; |
|
6361
|
|
|
|
|
|
|
push @sequenceNames, $name if $vr eq 'SQ'; |
|
6362
|
|
|
|
|
|
|
pop @sequenceNames if (uc($group) eq 'FFFE' and uc($elem) eq 'E0DD'); |
|
6363
|
|
|
|
|
|
|
my $nameWithSeq = join (".", (@sequenceNames, $name) ) if $vr ne 'SQ'; |
|
6364
|
|
|
|
|
|
|
$nameWithSeq = join (".", (@sequenceNames) ) if $vr eq 'SQ'; |
|
6365
|
|
|
|
|
|
|
push @{$recognizedTags{$nameWithSeq}}, $value if defined $reqTags{$nameWithSeq}; |
|
6366
|
|
|
|
|
|
|
push @DCMHash, |
|
6367
|
|
|
|
|
|
|
{ |
|
6368
|
|
|
|
|
|
|
ORDINAL => $dcmDumpOrdinal, |
|
6369
|
|
|
|
|
|
|
GRP => $group, |
|
6370
|
|
|
|
|
|
|
ELEM => $elem, |
|
6371
|
|
|
|
|
|
|
VR => $vr, |
|
6372
|
|
|
|
|
|
|
VALUE => $value, |
|
6373
|
|
|
|
|
|
|
NAME => $nameWithSeq, |
|
6374
|
|
|
|
|
|
|
}; |
|
6375
|
|
|
|
|
|
|
$dcmDumpOrdinal += 1; |
|
6376
|
|
|
|
|
|
|
} |
|
6377
|
|
|
|
|
|
|
return {DCM_TAGS => \@DCMHash, RECOGNIZED_TAGS => \%recognizedTags }; |
|
6378
|
|
|
|
|
|
|
}; |
|
6379
|
|
|
|
|
|
|
|
|
6380
|
|
|
|
|
|
|
=head2 parseDCMXMLDumpForSequences |
|
6381
|
|
|
|
|
|
|
|
|
6382
|
|
|
|
|
|
|
|
|
6383
|
|
|
|
|
|
|
=cut |
|
6384
|
|
|
|
|
|
|
|
|
6385
|
|
|
|
|
|
|
|
|
6386
|
|
|
|
|
|
|
sub parseDCMXMLDumpForSequences |
|
6387
|
|
|
|
|
|
|
{ |
|
6388
|
|
|
|
|
|
|
my %h = ( |
|
6389
|
|
|
|
|
|
|
# DCM_DUMP => undef, |
|
6390
|
|
|
|
|
|
|
# DCM_SEQUENCES_REQUESTED => undef, |
|
6391
|
|
|
|
|
|
|
REGULAR_EXPRESSION => q%<(?'item'item).*card=\"(?'card'[0-9]+)\".*len=\"(?'len'[0-9]+)\"|<(?'sequence'sequence).*tag=\"(?'group'[0-9a-fA-F]{4})\,(?'elem'[0-9a-fA-F]{4})\".*vr=\"(?'vr'[a-zA-Z\?][a-zA-Z\?])\".*card=\"(?'card'[0-9]+)\".*len=\"(?'len'[0-9]+)\"|<(?'endsequence'\/sequence)|<(?'enditem'\/item)|<(?'element'element).*tag=\"(?'group'[0-9a-fA-F]{4})\,(?'elem'[0-9a-fA-F]{4})\".*vr=\"(?'vr'[a-zA-Z\?][a-zA-Z\?])\".*\>(?'value'.*)\<%, |
|
6392
|
|
|
|
|
|
|
( parseArgs \@_, @{$Image::DCMTK::cmdLines{parseDCMXMLDumpForSequences}}), |
|
6393
|
|
|
|
|
|
|
); |
|
6394
|
|
|
|
|
|
|
my @DCMHash; |
|
6395
|
|
|
|
|
|
|
my $dcmDumpOrdinal = 0; |
|
6396
|
|
|
|
|
|
|
my %reqTags = map {$_ => 1 } @{$h{DCM_SEQUENCES_REQUESTED}}; |
|
6397
|
|
|
|
|
|
|
my %recognizedSequences; |
|
6398
|
|
|
|
|
|
|
my $foundASeq; |
|
6399
|
|
|
|
|
|
|
my $seqDepth = 0; |
|
6400
|
|
|
|
|
|
|
my $sequenceName; |
|
6401
|
|
|
|
|
|
|
foreach my $line (@{$h{DCM_DUMP}}) |
|
6402
|
|
|
|
|
|
|
{ |
|
6403
|
|
|
|
|
|
|
$line =~ qr/$h{REGULAR_EXPRESSION}/; |
|
6404
|
|
|
|
|
|
|
my $group; |
|
6405
|
|
|
|
|
|
|
my $elem; |
|
6406
|
|
|
|
|
|
|
my $vr; |
|
6407
|
|
|
|
|
|
|
my $value; |
|
6408
|
|
|
|
|
|
|
$group = $+{ group } if defined $+{ group }; |
|
6409
|
|
|
|
|
|
|
$group = 'FFFE' if defined $+{ item } or defined $+{ endsequence } or defined $+{ enditem }; |
|
6410
|
|
|
|
|
|
|
$elem = $+{ elem } if defined $+{ elem }; |
|
6411
|
|
|
|
|
|
|
$elem = 'E000' if defined $+{ item }; |
|
6412
|
|
|
|
|
|
|
$elem = 'E00D' if defined $+{ enditem }; |
|
6413
|
|
|
|
|
|
|
$elem = 'E0DD' if defined $+{ endsequence }; |
|
6414
|
|
|
|
|
|
|
$vr = $+{ vr } if defined $+{ vr }; |
|
6415
|
|
|
|
|
|
|
$vr = 'IT' if defined $+{ item }; |
|
6416
|
|
|
|
|
|
|
$vr = 'UN' if defined $+{ enditem } or defined $+{ endsequence }; |
|
6417
|
|
|
|
|
|
|
$value = $+{ value } if defined $+{ value }; |
|
6418
|
|
|
|
|
|
|
$value = $+{ card } if defined $+{ card }; |
|
6419
|
|
|
|
|
|
|
$value = 'EndItem' if defined $+{ enditem }; |
|
6420
|
|
|
|
|
|
|
$value = 'EndSeq' if defined $+{ endsequence }; |
|
6421
|
|
|
|
|
|
|
next if not defined $group; # skip if unrecognized XML (like , etc) |
|
6422
|
|
|
|
|
|
|
next if ( uc($group) eq 'FFFC' and uc($elem) eq 'FFFC' ); |
|
6423
|
|
|
|
|
|
|
next if ( uc($group) eq '7FE0' and uc($elem) eq '0010' ); #skip pixel data |
|
6424
|
|
|
|
|
|
|
my $name = $Image::DCMTK::reverseDicomDictionary{ $group . $elem }->{DCM_DICT_NAME}; |
|
6425
|
|
|
|
|
|
|
$name = "PrivateTag" if not defined $name; |
|
6426
|
|
|
|
|
|
|
push @DCMHash, |
|
6427
|
|
|
|
|
|
|
{ |
|
6428
|
|
|
|
|
|
|
ORDINAL => $dcmDumpOrdinal, |
|
6429
|
|
|
|
|
|
|
GRP => $group, |
|
6430
|
|
|
|
|
|
|
ELEM => $elem, |
|
6431
|
|
|
|
|
|
|
VR => $vr, |
|
6432
|
|
|
|
|
|
|
VALUE => $value, |
|
6433
|
|
|
|
|
|
|
NAME => $name, |
|
6434
|
|
|
|
|
|
|
}; |
|
6435
|
|
|
|
|
|
|
if (defined $reqTags{$name} and not defined $foundASeq) |
|
6436
|
|
|
|
|
|
|
{ |
|
6437
|
|
|
|
|
|
|
$foundASeq = 'yes'; |
|
6438
|
|
|
|
|
|
|
$sequenceName = $name; |
|
6439
|
|
|
|
|
|
|
++$seqDepth; |
|
6440
|
|
|
|
|
|
|
push @{$recognizedSequences{$sequenceName}}, |
|
6441
|
|
|
|
|
|
|
{ |
|
6442
|
|
|
|
|
|
|
ORDINAL => $dcmDumpOrdinal, |
|
6443
|
|
|
|
|
|
|
GRP => $group, |
|
6444
|
|
|
|
|
|
|
ELEM => $elem, |
|
6445
|
|
|
|
|
|
|
VR => $vr, |
|
6446
|
|
|
|
|
|
|
VALUE => $value, |
|
6447
|
|
|
|
|
|
|
NAME => $name, |
|
6448
|
|
|
|
|
|
|
}; |
|
6449
|
|
|
|
|
|
|
$dcmDumpOrdinal += 1; |
|
6450
|
|
|
|
|
|
|
next; |
|
6451
|
|
|
|
|
|
|
} |
|
6452
|
|
|
|
|
|
|
if (defined $foundASeq) |
|
6453
|
|
|
|
|
|
|
{ |
|
6454
|
|
|
|
|
|
|
push @{$recognizedSequences{$sequenceName}}, |
|
6455
|
|
|
|
|
|
|
{ |
|
6456
|
|
|
|
|
|
|
ORDINAL => $dcmDumpOrdinal, |
|
6457
|
|
|
|
|
|
|
GRP => $group, |
|
6458
|
|
|
|
|
|
|
ELEM => $elem, |
|
6459
|
|
|
|
|
|
|
VR => $vr, |
|
6460
|
|
|
|
|
|
|
VALUE => $value, |
|
6461
|
|
|
|
|
|
|
NAME => $name, |
|
6462
|
|
|
|
|
|
|
}; |
|
6463
|
|
|
|
|
|
|
--$seqDepth if (uc($group) eq 'FFFE' and uc($elem) eq 'E0DD'); |
|
6464
|
|
|
|
|
|
|
undef $foundASeq if $seqDepth == 0; |
|
6465
|
|
|
|
|
|
|
++$seqDepth if uc($vr) eq 'SQ'; |
|
6466
|
|
|
|
|
|
|
} |
|
6467
|
|
|
|
|
|
|
$dcmDumpOrdinal += 1; |
|
6468
|
|
|
|
|
|
|
} |
|
6469
|
|
|
|
|
|
|
return {DCM_TAGS => \@DCMHash, RECOGNIZED_SEQUENCES => \%recognizedSequences }; |
|
6470
|
|
|
|
|
|
|
}; |
|
6471
|
|
|
|
|
|
|
|
|
6472
|
|
|
|
|
|
|
=head2 parseDCMXMLDump |
|
6473
|
|
|
|
|
|
|
|
|
6474
|
|
|
|
|
|
|
|
|
6475
|
|
|
|
|
|
|
=cut |
|
6476
|
|
|
|
|
|
|
|
|
6477
|
|
|
|
|
|
|
sub parseDCMXMLDump |
|
6478
|
|
|
|
|
|
|
{ |
|
6479
|
|
|
|
|
|
|
my %h = ( |
|
6480
|
|
|
|
|
|
|
# DCM_DUMP => undef, |
|
6481
|
|
|
|
|
|
|
# DCM_TAGS_REQUESTED => undef, |
|
6482
|
|
|
|
|
|
|
REGULAR_EXPRESSION => q%<(?'item'item).*card=\"(?'card'[0-9]+)\".*len=\"(?'len'[0-9]+)\"|<(?'sequence'sequence).*tag=\"(?'group'[0-9a-fA-F]{4})\,(?'elem'[0-9a-fA-F]{4})\".*vr=\"(?'vr'[a-zA-Z\?][a-zA-Z\?])\".*card=\"(?'card'[0-9]+)\".*len=\"(?'len'[0-9]+)\"|<(?'endsequence'\/sequence)|<(?'enditem'\/item)|<(?'element'element).*tag=\"(?'group'[0-9a-fA-F]{4})\,(?'elem'[0-9a-fA-F]{4})\".*vr=\"(?'vr'[a-zA-Z\?][a-zA-Z\?])\".*\>(?'value'.*)\<%, |
|
6483
|
|
|
|
|
|
|
( parseArgs \@_, @{$Image::DCMTK::cmdLines{parseDCMXMLDump}}), |
|
6484
|
|
|
|
|
|
|
); |
|
6485
|
|
|
|
|
|
|
my $retref = parseDCMXMLDumpForTagLists \%h; |
|
6486
|
|
|
|
|
|
|
my %recognizedTags; |
|
6487
|
|
|
|
|
|
|
while (my ($key, $val) = each %{ $retref->{ RECOGNIZED_TAGS }} ) |
|
6488
|
|
|
|
|
|
|
{ |
|
6489
|
|
|
|
|
|
|
$recognizedTags{$key} = @{$val}[0] if defined @{$val}[0]; |
|
6490
|
|
|
|
|
|
|
} |
|
6491
|
|
|
|
|
|
|
return {DCM_TAGS => $retref->{ DCM_TAGS }, RECOGNIZED_TAGS => \%recognizedTags }; |
|
6492
|
|
|
|
|
|
|
}; |
|
6493
|
|
|
|
|
|
|
|
|
6494
|
|
|
|
|
|
|
=head2 parseDCMDumpForSequences |
|
6495
|
|
|
|
|
|
|
|
|
6496
|
|
|
|
|
|
|
|
|
6497
|
|
|
|
|
|
|
=cut |
|
6498
|
|
|
|
|
|
|
|
|
6499
|
|
|
|
|
|
|
|
|
6500
|
|
|
|
|
|
|
sub parseDCMDumpForSequences |
|
6501
|
|
|
|
|
|
|
{ |
|
6502
|
|
|
|
|
|
|
my %h = ( |
|
6503
|
|
|
|
|
|
|
# DCM_DUMP => undef, |
|
6504
|
|
|
|
|
|
|
# DCM_SEQUENCES_REQUESTED => undef, |
|
6505
|
|
|
|
|
|
|
REGULAR_EXPRESSION => q%^\s*\((?'group'[0-9a-fA-F]{4})\,(?'elem'[0-9a-fA-F]{4})\)\s*(?'vr'[a-zA-Z\?][a-zA-Z\?])\s*\[?\(?(?'value'.*)\)?\]?.*?$%, |
|
6506
|
|
|
|
|
|
|
( parseArgs \@_, @{$Image::DCMTK::cmdLines{parseDCMDumpForSequences}}), |
|
6507
|
|
|
|
|
|
|
); |
|
6508
|
|
|
|
|
|
|
my @filteredDCMDump; |
|
6509
|
|
|
|
|
|
|
my @DCMHash; |
|
6510
|
|
|
|
|
|
|
my $dcmDumpOrdinal = 0; |
|
6511
|
|
|
|
|
|
|
my %reqTags = map {$_ => 1 } @{$h{DCM_SEQUENCES_REQUESTED}}; |
|
6512
|
|
|
|
|
|
|
my %recognizedSequences; |
|
6513
|
|
|
|
|
|
|
my $foundASeq; |
|
6514
|
|
|
|
|
|
|
my $seqDepth = 0; |
|
6515
|
|
|
|
|
|
|
my $sequenceName; |
|
6516
|
|
|
|
|
|
|
#needed to handle embeded new lines |
|
6517
|
|
|
|
|
|
|
foreach my $line (@{$h{DCM_DUMP}}) |
|
6518
|
|
|
|
|
|
|
{ |
|
6519
|
|
|
|
|
|
|
$line =~ s/#.*?//; |
|
6520
|
|
|
|
|
|
|
if ($line =~ /\s*\([0-9a-fA-F]{4}\,[0-9a-fA-F]{4}\)/ ) |
|
6521
|
|
|
|
|
|
|
{ |
|
6522
|
|
|
|
|
|
|
push @filteredDCMDump, $line; |
|
6523
|
|
|
|
|
|
|
} |
|
6524
|
|
|
|
|
|
|
else |
|
6525
|
|
|
|
|
|
|
{ |
|
6526
|
|
|
|
|
|
|
my $newline = pop @filteredDCMDump; |
|
6527
|
|
|
|
|
|
|
$newline =~ s/\r//g if defined $newline; |
|
6528
|
|
|
|
|
|
|
$newline =~ s/\n//g if defined $newline; |
|
6529
|
|
|
|
|
|
|
$newline = $newline . "
" . $line if defined $newline; |
|
6530
|
|
|
|
|
|
|
push @filteredDCMDump, $newline if defined $newline; |
|
6531
|
|
|
|
|
|
|
} |
|
6532
|
|
|
|
|
|
|
} |
|
6533
|
|
|
|
|
|
|
foreach my $line (@filteredDCMDump) |
|
6534
|
|
|
|
|
|
|
{ |
|
6535
|
|
|
|
|
|
|
$line =~ qr/$h{REGULAR_EXPRESSION}/; |
|
6536
|
|
|
|
|
|
|
my $group = $+{ group }; |
|
6537
|
|
|
|
|
|
|
my $elem = $+{ elem }; |
|
6538
|
|
|
|
|
|
|
my $vr = $+{ vr }; |
|
6539
|
|
|
|
|
|
|
my $value = $+{ value }; |
|
6540
|
|
|
|
|
|
|
$value =~ s/\)\s*$//; |
|
6541
|
|
|
|
|
|
|
$value =~ s/\]\s*$//; |
|
6542
|
|
|
|
|
|
|
$value =~ s/\s+$//; |
|
6543
|
|
|
|
|
|
|
my $name = $Image::DCMTK::reverseDicomDictionary{ $group . $elem }->{DCM_DICT_NAME}; |
|
6544
|
|
|
|
|
|
|
$name = "PrivateTag" if not defined $name; |
|
6545
|
|
|
|
|
|
|
push @DCMHash, |
|
6546
|
|
|
|
|
|
|
{ |
|
6547
|
|
|
|
|
|
|
ORDINAL => $dcmDumpOrdinal, |
|
6548
|
|
|
|
|
|
|
GRP => $group, |
|
6549
|
|
|
|
|
|
|
ELEM => $elem, |
|
6550
|
|
|
|
|
|
|
VR => $vr, |
|
6551
|
|
|
|
|
|
|
VALUE => $value, |
|
6552
|
|
|
|
|
|
|
NAME => $name, |
|
6553
|
|
|
|
|
|
|
}; |
|
6554
|
|
|
|
|
|
|
if (defined $reqTags{$name} and not defined $foundASeq) |
|
6555
|
|
|
|
|
|
|
{ |
|
6556
|
|
|
|
|
|
|
$foundASeq = 'yes'; |
|
6557
|
|
|
|
|
|
|
$sequenceName = $name; |
|
6558
|
|
|
|
|
|
|
++$seqDepth; |
|
6559
|
|
|
|
|
|
|
push @{$recognizedSequences{$sequenceName}}, |
|
6560
|
|
|
|
|
|
|
{ |
|
6561
|
|
|
|
|
|
|
ORDINAL => $dcmDumpOrdinal, |
|
6562
|
|
|
|
|
|
|
GRP => $group, |
|
6563
|
|
|
|
|
|
|
ELEM => $elem, |
|
6564
|
|
|
|
|
|
|
VR => $vr, |
|
6565
|
|
|
|
|
|
|
VALUE => $value, |
|
6566
|
|
|
|
|
|
|
NAME => $name, |
|
6567
|
|
|
|
|
|
|
}; |
|
6568
|
|
|
|
|
|
|
$dcmDumpOrdinal += 1; |
|
6569
|
|
|
|
|
|
|
next; |
|
6570
|
|
|
|
|
|
|
} |
|
6571
|
|
|
|
|
|
|
if (defined $foundASeq) |
|
6572
|
|
|
|
|
|
|
{ |
|
6573
|
|
|
|
|
|
|
push @{$recognizedSequences{$sequenceName}}, |
|
6574
|
|
|
|
|
|
|
{ |
|
6575
|
|
|
|
|
|
|
ORDINAL => $dcmDumpOrdinal, |
|
6576
|
|
|
|
|
|
|
GRP => $group, |
|
6577
|
|
|
|
|
|
|
ELEM => $elem, |
|
6578
|
|
|
|
|
|
|
VR => $vr, |
|
6579
|
|
|
|
|
|
|
VALUE => $value, |
|
6580
|
|
|
|
|
|
|
NAME => $name, |
|
6581
|
|
|
|
|
|
|
}; |
|
6582
|
|
|
|
|
|
|
--$seqDepth if (uc($group) eq 'FFFE' and uc($elem) eq 'E0DD'); |
|
6583
|
|
|
|
|
|
|
undef $foundASeq if $seqDepth == 0; |
|
6584
|
|
|
|
|
|
|
++$seqDepth if uc($vr) eq 'SQ'; |
|
6585
|
|
|
|
|
|
|
} |
|
6586
|
|
|
|
|
|
|
$dcmDumpOrdinal += 1; |
|
6587
|
|
|
|
|
|
|
} |
|
6588
|
|
|
|
|
|
|
return {DCM_TAGS => \@DCMHash, RECOGNIZED_SEQUENCES => \%recognizedSequences }; |
|
6589
|
|
|
|
|
|
|
}; |
|
6590
|
|
|
|
|
|
|
|
|
6591
|
|
|
|
|
|
|
=head2 parseDCMDumpForTagLists |
|
6592
|
|
|
|
|
|
|
|
|
6593
|
|
|
|
|
|
|
|
|
6594
|
|
|
|
|
|
|
=cut |
|
6595
|
|
|
|
|
|
|
|
|
6596
|
|
|
|
|
|
|
sub parseDCMDumpForTagLists |
|
6597
|
|
|
|
|
|
|
{ |
|
6598
|
|
|
|
|
|
|
my %h = ( |
|
6599
|
|
|
|
|
|
|
# DCM_DUMP => undef, |
|
6600
|
|
|
|
|
|
|
# DCM_TAGS_REQUESTED => undef, |
|
6601
|
|
|
|
|
|
|
REGULAR_EXPRESSION => q%^\s*\((?'group'[0-9a-fA-F]{4})\,(?'elem'[0-9a-fA-F]{4})\)\s*(?'vr'[a-zA-Z\?][a-zA-Z\?])\s*\[?\(?(?'value'.*)\)?\]?.*?$%, |
|
6602
|
|
|
|
|
|
|
( parseArgs \@_, @{$Image::DCMTK::cmdLines{parseDCMDumpForTagLists}}), |
|
6603
|
|
|
|
|
|
|
); |
|
6604
|
|
|
|
|
|
|
my @filteredDCMDump; |
|
6605
|
|
|
|
|
|
|
my @DCMHash; |
|
6606
|
|
|
|
|
|
|
my $dcmDumpOrdinal = 0; |
|
6607
|
|
|
|
|
|
|
my %reqTags = map {$_ => 1 } @{$h{DCM_TAGS_REQUESTED}}; |
|
6608
|
|
|
|
|
|
|
my %recognizedTags; |
|
6609
|
|
|
|
|
|
|
my @sequenceNames; |
|
6610
|
|
|
|
|
|
|
#needed to handle embeded new lines |
|
6611
|
|
|
|
|
|
|
foreach my $line (@{$h{DCM_DUMP}}) |
|
6612
|
|
|
|
|
|
|
{ |
|
6613
|
|
|
|
|
|
|
$line =~ s/#[^\)\]]*?$//; |
|
6614
|
|
|
|
|
|
|
if ($line =~ /\s*\([0-9a-fA-F]{4}\,[0-9a-fA-F]{4}\)/ ) |
|
6615
|
|
|
|
|
|
|
{ |
|
6616
|
|
|
|
|
|
|
push @filteredDCMDump, $line; |
|
6617
|
|
|
|
|
|
|
} |
|
6618
|
|
|
|
|
|
|
elsif ($line =~ /^\s*$/) |
|
6619
|
|
|
|
|
|
|
{ |
|
6620
|
|
|
|
|
|
|
} |
|
6621
|
|
|
|
|
|
|
else |
|
6622
|
|
|
|
|
|
|
{ |
|
6623
|
|
|
|
|
|
|
my $newline = pop @filteredDCMDump; |
|
6624
|
|
|
|
|
|
|
$newline =~ s/\r//g if defined $newline; |
|
6625
|
|
|
|
|
|
|
$newline =~ s/\n//g if defined $newline; |
|
6626
|
|
|
|
|
|
|
$newline = $newline . "
" . $line if defined $newline; |
|
6627
|
|
|
|
|
|
|
push @filteredDCMDump, $newline if defined $newline; |
|
6628
|
|
|
|
|
|
|
} |
|
6629
|
|
|
|
|
|
|
} |
|
6630
|
|
|
|
|
|
|
foreach my $line (@filteredDCMDump) |
|
6631
|
|
|
|
|
|
|
{ |
|
6632
|
|
|
|
|
|
|
$line =~ qr/$h{REGULAR_EXPRESSION}/; |
|
6633
|
|
|
|
|
|
|
my $group = uc($+{ group }); |
|
6634
|
|
|
|
|
|
|
my $elem = uc($+{ elem }); |
|
6635
|
|
|
|
|
|
|
my $vr = $+{ vr }; |
|
6636
|
|
|
|
|
|
|
my $value = $+{ value }; |
|
6637
|
|
|
|
|
|
|
next if not defined $value; |
|
6638
|
|
|
|
|
|
|
$value =~ s/\)\s*$//; |
|
6639
|
|
|
|
|
|
|
$value =~ s/\]\s*$//; |
|
6640
|
|
|
|
|
|
|
$value =~ s/\s+$//; |
|
6641
|
|
|
|
|
|
|
my $name = $Image::DCMTK::reverseDicomDictionary{ $group . $elem }->{DCM_DICT_NAME}; |
|
6642
|
|
|
|
|
|
|
$name = "PrivateTag" if not defined $name; |
|
6643
|
|
|
|
|
|
|
|
|
6644
|
|
|
|
|
|
|
push @sequenceNames, $name if $vr eq 'SQ'; |
|
6645
|
|
|
|
|
|
|
pop @sequenceNames if (uc($group) eq 'FFFE' and uc($elem) eq 'E0DD'); |
|
6646
|
|
|
|
|
|
|
my $nameWithSeq = join (".", (@sequenceNames, $name) ) if $vr ne 'SQ'; |
|
6647
|
|
|
|
|
|
|
$nameWithSeq = join (".", (@sequenceNames) ) if $vr eq 'SQ'; |
|
6648
|
|
|
|
|
|
|
push @{$recognizedTags{$nameWithSeq}}, $value if defined $reqTags{$nameWithSeq}; |
|
6649
|
|
|
|
|
|
|
push @DCMHash, |
|
6650
|
|
|
|
|
|
|
{ |
|
6651
|
|
|
|
|
|
|
ORDINAL => $dcmDumpOrdinal, |
|
6652
|
|
|
|
|
|
|
GRP => $group, |
|
6653
|
|
|
|
|
|
|
ELEM => $elem, |
|
6654
|
|
|
|
|
|
|
VR => $vr, |
|
6655
|
|
|
|
|
|
|
VALUE => $value, |
|
6656
|
|
|
|
|
|
|
NAME => $nameWithSeq, |
|
6657
|
|
|
|
|
|
|
}; |
|
6658
|
|
|
|
|
|
|
$dcmDumpOrdinal += 1; |
|
6659
|
|
|
|
|
|
|
} |
|
6660
|
|
|
|
|
|
|
|
|
6661
|
|
|
|
|
|
|
return {DCM_TAGS => \@DCMHash, RECOGNIZED_TAGS => \%recognizedTags }; |
|
6662
|
|
|
|
|
|
|
}; |
|
6663
|
|
|
|
|
|
|
|
|
6664
|
|
|
|
|
|
|
=head2 parseDCMDump |
|
6665
|
|
|
|
|
|
|
|
|
6666
|
|
|
|
|
|
|
|
|
6667
|
|
|
|
|
|
|
=cut |
|
6668
|
|
|
|
|
|
|
|
|
6669
|
|
|
|
|
|
|
sub parseDCMDump |
|
6670
|
|
|
|
|
|
|
{ |
|
6671
|
|
|
|
|
|
|
my %h = ( |
|
6672
|
|
|
|
|
|
|
# DCM_DUMP => undef, |
|
6673
|
|
|
|
|
|
|
# DCM_TAGS_REQUESTED => undef, |
|
6674
|
|
|
|
|
|
|
REGULAR_EXPRESSION => q%^\s*\((?'group'[0-9a-fA-F]{4})\,(?'elem'[0-9a-fA-F]{4})\)\s*(?'vr'[a-zA-Z\?][a-zA-Z\?])\s*\[?\(?(?'value'.*)\)?\]?.*?$%, |
|
6675
|
|
|
|
|
|
|
( parseArgs \@_, @{$Image::DCMTK::cmdLines{parseDCMDump}}), |
|
6676
|
|
|
|
|
|
|
); |
|
6677
|
|
|
|
|
|
|
my $retref = parseDCMDumpForTagLists \%h; |
|
6678
|
|
|
|
|
|
|
my %recognizedTags; |
|
6679
|
|
|
|
|
|
|
while (my ($key, $val) = each %{ $retref->{ RECOGNIZED_TAGS }} ) |
|
6680
|
|
|
|
|
|
|
{ |
|
6681
|
|
|
|
|
|
|
$recognizedTags{$key} = @{$val}[0] if defined @{$val}[0]; |
|
6682
|
|
|
|
|
|
|
} |
|
6683
|
|
|
|
|
|
|
return {DCM_TAGS => $retref->{ DCM_TAGS }, RECOGNIZED_TAGS => \%recognizedTags }; |
|
6684
|
|
|
|
|
|
|
}; |
|
6685
|
|
|
|
|
|
|
|
|
6686
|
|
|
|
|
|
|
=head2 modifyAnImage |
|
6687
|
|
|
|
|
|
|
|
|
6688
|
|
|
|
|
|
|
|
|
6689
|
|
|
|
|
|
|
=cut |
|
6690
|
|
|
|
|
|
|
|
|
6691
|
|
|
|
|
|
|
sub modifyAnImage |
|
6692
|
|
|
|
|
|
|
{ |
|
6693
|
|
|
|
|
|
|
my %h = ( |
|
6694
|
|
|
|
|
|
|
# SOURCE_FILENAME => undef, |
|
6695
|
|
|
|
|
|
|
# DESTINATION_FILENAME => undef, |
|
6696
|
|
|
|
|
|
|
# TAG_CHANGE_LINE => undef, |
|
6697
|
|
|
|
|
|
|
DEBUG => 0, |
|
6698
|
|
|
|
|
|
|
( parseArgs \@_, @{$Image::DCMTK::cmdLines{modifyAnImage}}), |
|
6699
|
|
|
|
|
|
|
); |
|
6700
|
|
|
|
|
|
|
my $inFilename = $h{SOURCE_FILENAME}; |
|
6701
|
|
|
|
|
|
|
my $outFilename = $h{DESTINATION_FILENAME}; |
|
6702
|
|
|
|
|
|
|
my $tagChangeLine = $h{TAG_CHANGE_LINE}; |
|
6703
|
|
|
|
|
|
|
qx%cp -p $inFilename $outFilename% if ( $inFilename ne $outFilename ); |
|
6704
|
|
|
|
|
|
|
my $commandLine = qq(dcmodify -m "${tagChangeLine}" ${outFilename}); |
|
6705
|
|
|
|
|
|
|
print "$commandLine \n" if $h{DEBUG}; |
|
6706
|
|
|
|
|
|
|
my @results = qx/$commandLine/; |
|
6707
|
|
|
|
|
|
|
if ($? > 0) |
|
6708
|
|
|
|
|
|
|
{ |
|
6709
|
|
|
|
|
|
|
$commandLine = qq(dcmodify -i "${tagChangeLine}" ${outFilename}); |
|
6710
|
|
|
|
|
|
|
print "$commandLine \n" if $h{DEBUG}; |
|
6711
|
|
|
|
|
|
|
@results = qx/$commandLine/; |
|
6712
|
|
|
|
|
|
|
} |
|
6713
|
|
|
|
|
|
|
my $bakfile = ${outFilename} . ".bak"; |
|
6714
|
|
|
|
|
|
|
qx[rm -f ${bakfile}] if ( -e ${bakfile} ); |
|
6715
|
|
|
|
|
|
|
return @results; |
|
6716
|
|
|
|
|
|
|
} |
|
6717
|
|
|
|
|
|
|
|
|
6718
|
|
|
|
|
|
|
|
|
6719
|
|
|
|
|
|
|
=head1 AUTHOR |
|
6720
|
|
|
|
|
|
|
|
|
6721
|
|
|
|
|
|
|
Robert Haxton, C<< >> |
|
6722
|
|
|
|
|
|
|
|
|
6723
|
|
|
|
|
|
|
=head1 BUGS |
|
6724
|
|
|
|
|
|
|
|
|
6725
|
|
|
|
|
|
|
Please report any bugs or feature requests to C, or through |
|
6726
|
|
|
|
|
|
|
the web interface at L. I will be notified, and then you'll |
|
6727
|
|
|
|
|
|
|
automatically be notified of progress on your bug as I make changes. |
|
6728
|
|
|
|
|
|
|
|
|
6729
|
|
|
|
|
|
|
|
|
6730
|
|
|
|
|
|
|
|
|
6731
|
|
|
|
|
|
|
|
|
6732
|
|
|
|
|
|
|
=head1 SUPPORT |
|
6733
|
|
|
|
|
|
|
|
|
6734
|
|
|
|
|
|
|
You can find documentation for this module with the perldoc command. |
|
6735
|
|
|
|
|
|
|
|
|
6736
|
|
|
|
|
|
|
perldoc Image::DCMTK |
|
6737
|
|
|
|
|
|
|
|
|
6738
|
|
|
|
|
|
|
|
|
6739
|
|
|
|
|
|
|
You can also look for information at: |
|
6740
|
|
|
|
|
|
|
|
|
6741
|
|
|
|
|
|
|
=over 4 |
|
6742
|
|
|
|
|
|
|
|
|
6743
|
|
|
|
|
|
|
=item * RT: CPAN's request tracker (report bugs here) |
|
6744
|
|
|
|
|
|
|
|
|
6745
|
|
|
|
|
|
|
L |
|
6746
|
|
|
|
|
|
|
|
|
6747
|
|
|
|
|
|
|
=item * AnnoCPAN: Annotated CPAN documentation |
|
6748
|
|
|
|
|
|
|
|
|
6749
|
|
|
|
|
|
|
L |
|
6750
|
|
|
|
|
|
|
|
|
6751
|
|
|
|
|
|
|
=item * CPAN Ratings |
|
6752
|
|
|
|
|
|
|
|
|
6753
|
|
|
|
|
|
|
L |
|
6754
|
|
|
|
|
|
|
|
|
6755
|
|
|
|
|
|
|
=item * Search CPAN |
|
6756
|
|
|
|
|
|
|
|
|
6757
|
|
|
|
|
|
|
L |
|
6758
|
|
|
|
|
|
|
|
|
6759
|
|
|
|
|
|
|
=item * Code Repository |
|
6760
|
|
|
|
|
|
|
|
|
6761
|
|
|
|
|
|
|
L |
|
6762
|
|
|
|
|
|
|
|
|
6763
|
|
|
|
|
|
|
=back |
|
6764
|
|
|
|
|
|
|
|
|
6765
|
|
|
|
|
|
|
|
|
6766
|
|
|
|
|
|
|
=head1 ACKNOWLEDGEMENTS |
|
6767
|
|
|
|
|
|
|
|
|
6768
|
|
|
|
|
|
|
|
|
6769
|
|
|
|
|
|
|
=head1 LICENSE AND COPYRIGHT |
|
6770
|
|
|
|
|
|
|
|
|
6771
|
|
|
|
|
|
|
Copyright 2008-2012 Robert Haxton. |
|
6772
|
|
|
|
|
|
|
|
|
6773
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify it |
|
6774
|
|
|
|
|
|
|
under the terms of either: the GNU General Public License as published |
|
6775
|
|
|
|
|
|
|
by the Free Software Foundation; or the Artistic License. |
|
6776
|
|
|
|
|
|
|
|
|
6777
|
|
|
|
|
|
|
See http://dev.perl.org/licenses/ for more information. |
|
6778
|
|
|
|
|
|
|
|
|
6779
|
|
|
|
|
|
|
=cut |
|
6780
|
|
|
|
|
|
|
|
|
6781
|
|
|
|
|
|
|
1; # End of Image::DCMTK |