| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
#------------------------------------------------------------------------------ |
|
2
|
|
|
|
|
|
|
# File: DICOM.pm |
|
3
|
|
|
|
|
|
|
# |
|
4
|
|
|
|
|
|
|
# Description: Read DICOM and ACR-NEMA medical images |
|
5
|
|
|
|
|
|
|
# |
|
6
|
|
|
|
|
|
|
# Revisions: 2005/11/09 - P. Harvey Created |
|
7
|
|
|
|
|
|
|
# 2009/11/19 - P. Harvey Added private GE tags from ref 4 |
|
8
|
|
|
|
|
|
|
# 2009/12/11 - P. Harvey Updated to DICOM 2008 spec |
|
9
|
|
|
|
|
|
|
# 2010/04/08 - P. Harvey Updated to DICOM 2009 spec |
|
10
|
|
|
|
|
|
|
# |
|
11
|
|
|
|
|
|
|
# References: 1) http://medical.nema.org/ |
|
12
|
|
|
|
|
|
|
# 2) http://www.sph.sc.edu/comd/rorden/dicom.html |
|
13
|
|
|
|
|
|
|
# 3) http://www.dclunie.com/ |
|
14
|
|
|
|
|
|
|
# 4) http://www.gehealthcare.com/usen/interoperability/dicom/docs/2258357r3.pdf |
|
15
|
|
|
|
|
|
|
#------------------------------------------------------------------------------ |
|
16
|
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
package Image::ExifTool::DICOM; |
|
18
|
|
|
|
|
|
|
|
|
19
|
1
|
|
|
1
|
|
6614
|
use strict; |
|
|
1
|
|
|
|
|
1
|
|
|
|
1
|
|
|
|
|
38
|
|
|
20
|
1
|
|
|
1
|
|
3
|
use vars qw($VERSION %uid); |
|
|
1
|
|
|
|
|
2
|
|
|
|
1
|
|
|
|
|
42
|
|
|
21
|
1
|
|
|
1
|
|
3
|
use Image::ExifTool qw(:DataAccess :Utils); |
|
|
1
|
|
|
|
|
2
|
|
|
|
1
|
|
|
|
|
32344
|
|
|
22
|
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
$VERSION = '1.25'; |
|
24
|
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
# DICOM VR (Value Representation) format conversions |
|
26
|
|
|
|
|
|
|
my %dicomFormat = ( |
|
27
|
|
|
|
|
|
|
FD => 'double', |
|
28
|
|
|
|
|
|
|
FL => 'float', |
|
29
|
|
|
|
|
|
|
OB => 'int8u', |
|
30
|
|
|
|
|
|
|
OF => 'float', |
|
31
|
|
|
|
|
|
|
OW => 'int16u', |
|
32
|
|
|
|
|
|
|
SL => 'int32s', |
|
33
|
|
|
|
|
|
|
SS => 'int16s', |
|
34
|
|
|
|
|
|
|
UL => 'int32u', |
|
35
|
|
|
|
|
|
|
US => 'int16u', |
|
36
|
|
|
|
|
|
|
); |
|
37
|
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
# VR elements with 32-bit length in explicit VR syntax |
|
39
|
|
|
|
|
|
|
my %vr32 = ( OB=>1, OW=>1, OF=>1, SQ=>1, UT=>1, UN=>1 ); |
|
40
|
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
# data elements with implicit VR regardless of syntax |
|
42
|
|
|
|
|
|
|
my %implicitVR = ( |
|
43
|
|
|
|
|
|
|
'FFFE,E000' => 1, |
|
44
|
|
|
|
|
|
|
'FFFE,E00D' => 1, |
|
45
|
|
|
|
|
|
|
'FFFE,E0DD' => 1, |
|
46
|
|
|
|
|
|
|
); |
|
47
|
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
# DICOM tags |
|
49
|
|
|
|
|
|
|
# Note: "XxxGroupLength" tags are generated automatically if they don't exist |
|
50
|
|
|
|
|
|
|
%Image::ExifTool::DICOM::Main = ( |
|
51
|
|
|
|
|
|
|
GROUPS => { 2 => 'Image' }, |
|
52
|
|
|
|
|
|
|
VARS => { NO_LOOKUP => 1 }, # omit tags from lookup (way too many!) |
|
53
|
|
|
|
|
|
|
NOTES => q{ |
|
54
|
|
|
|
|
|
|
The DICOM (Digital Imaging and Communications in Medicine) format is based |
|
55
|
|
|
|
|
|
|
on the ACR-NEMA specification, but adds a file header and a number of new |
|
56
|
|
|
|
|
|
|
tags. ExifTool will extract information from either type of file. The Tag |
|
57
|
|
|
|
|
|
|
ID's in the following table are the tag group and element numbers in |
|
58
|
|
|
|
|
|
|
hexadecimal, as given in the DICOM specification (see |
|
59
|
|
|
|
|
|
|
L). The table below contains tags |
|
60
|
|
|
|
|
|
|
from the DICOM 2026b and earlier specifications plus some vendor-specific |
|
61
|
|
|
|
|
|
|
private tags. |
|
62
|
|
|
|
|
|
|
|
|
63
|
|
|
|
|
|
|
Note that DICOM information may be saved in other file formats using the |
|
64
|
|
|
|
|
|
|
L. |
|
65
|
|
|
|
|
|
|
}, |
|
66
|
|
|
|
|
|
|
# file meta information group (names end with VR) |
|
67
|
|
|
|
|
|
|
'0002,0000' => { VR => 'UL', Name => 'FileMetaInfoGroupLength' }, |
|
68
|
|
|
|
|
|
|
'0002,0001' => { VR => 'OB', Name => 'FileMetaInfoVersion' }, |
|
69
|
|
|
|
|
|
|
'0002,0002' => { VR => 'UI', Name => 'MediaStorageSOPClassUID' }, |
|
70
|
|
|
|
|
|
|
'0002,0003' => { VR => 'UI', Name => 'MediaStorageSOPInstanceUID' }, |
|
71
|
|
|
|
|
|
|
'0002,0010' => { VR => 'UI', Name => 'TransferSyntaxUID' }, |
|
72
|
|
|
|
|
|
|
'0002,0012' => { VR => 'UI', Name => 'ImplementationClassUID' }, |
|
73
|
|
|
|
|
|
|
'0002,0013' => { VR => 'SH', Name => 'ImplementationVersionName' }, |
|
74
|
|
|
|
|
|
|
'0002,0016' => { VR => 'AE', Name => 'SourceApplicationEntityTitle' }, |
|
75
|
|
|
|
|
|
|
'0002,0017' => { VR => 'AE', Name => 'SendingApplicationEntityTitle' }, |
|
76
|
|
|
|
|
|
|
'0002,0018' => { VR => 'AE', Name => 'ReceivingApplicationEntityTitle' }, |
|
77
|
|
|
|
|
|
|
'0002,0026' => { VR => 'UR', Name => 'SourcePresentationAddress' }, |
|
78
|
|
|
|
|
|
|
'0002,0027' => { VR => 'UR', Name => 'SendingPresentationAddress' }, |
|
79
|
|
|
|
|
|
|
'0002,0028' => { VR => 'UR', Name => 'ReceivingPresentationAddress' }, |
|
80
|
|
|
|
|
|
|
'0002,0031' => { VR => 'OB', Name => 'RTVMetaInformationVersion' }, |
|
81
|
|
|
|
|
|
|
'0002,0032' => { VR => 'UI', Name => 'RTVCommunicationSOPClassUID' }, |
|
82
|
|
|
|
|
|
|
'0002,0033' => { VR => 'UI', Name => 'RTVCommunicationSOPInstanceUID' }, |
|
83
|
|
|
|
|
|
|
'0002,0035' => { VR => 'OB', Name => 'RTVSourceIdentifier' }, |
|
84
|
|
|
|
|
|
|
'0002,0036' => { VR => 'OB', Name => 'RTVFlowIdentifier' }, |
|
85
|
|
|
|
|
|
|
'0002,0037' => { VR => 'UL', Name => 'RTVFlowRTPSamplingRate' }, |
|
86
|
|
|
|
|
|
|
'0002,0038' => { VR => 'FD', Name => 'RTVFlowActualFrameDuration' }, |
|
87
|
|
|
|
|
|
|
'0002,0100' => { VR => 'UI', Name => 'PrivateInformationCreatorUID' }, |
|
88
|
|
|
|
|
|
|
'0002,0102' => { VR => 'OB', Name => 'PrivateInformation' }, |
|
89
|
|
|
|
|
|
|
# directory structuring group |
|
90
|
|
|
|
|
|
|
'0004,1130' => { VR => 'CS', Name => 'FileSetID' }, |
|
91
|
|
|
|
|
|
|
'0004,1141' => { VR => 'CS', Name => 'FileSetDescriptorFileID' }, |
|
92
|
|
|
|
|
|
|
'0004,1142' => { VR => 'CS', Name => 'SpecificCharacterSetOfFile' }, |
|
93
|
|
|
|
|
|
|
'0004,1200' => { VR => 'UL', Name => 'FirstDirectoryRecordOffset' }, |
|
94
|
|
|
|
|
|
|
'0004,1202' => { VR => 'UL', Name => 'LastDirectoryRecordOffset' }, |
|
95
|
|
|
|
|
|
|
'0004,1212' => { VR => 'US', Name => 'FileSetConsistencyFlag' }, |
|
96
|
|
|
|
|
|
|
'0004,1220' => { VR => 'SQ', Name => 'DirectoryRecordSequence' }, |
|
97
|
|
|
|
|
|
|
'0004,1400' => { VR => 'UL', Name => 'OffsetOfNextDirectoryRecord' }, |
|
98
|
|
|
|
|
|
|
'0004,1410' => { VR => 'US', Name => 'RecordInUseFlag' }, |
|
99
|
|
|
|
|
|
|
'0004,1420' => { VR => 'UL', Name => 'LowerLevelDirectoryEntityOffset' }, |
|
100
|
|
|
|
|
|
|
'0004,1430' => { VR => 'CS', Name => 'DirectoryRecordType' }, |
|
101
|
|
|
|
|
|
|
'0004,1432' => { VR => 'UI', Name => 'PrivateRecordUID' }, |
|
102
|
|
|
|
|
|
|
'0004,1500' => { VR => 'CS', Name => 'ReferencedFileID' }, |
|
103
|
|
|
|
|
|
|
'0004,1504' => { VR => 'UL', Name => 'MRDRDirectoryRecordOffset' }, |
|
104
|
|
|
|
|
|
|
'0004,1510' => { VR => 'UI', Name => 'ReferencedSOPClassUIDInFile' }, |
|
105
|
|
|
|
|
|
|
'0004,1511' => { VR => 'UI', Name => 'ReferencedSOPInstanceUIDInFile' }, |
|
106
|
|
|
|
|
|
|
'0004,1512' => { VR => 'UI', Name => 'ReferencedTransferSyntaxUIDInFile' }, |
|
107
|
|
|
|
|
|
|
'0004,151A' => { VR => 'UI', Name => 'ReferencedRelatedSOPClassUIDInFile' }, |
|
108
|
|
|
|
|
|
|
'0004,1600' => { VR => 'UL', Name => 'NumberOfReferences' }, |
|
109
|
|
|
|
|
|
|
'0006,0001' => { VR => 'SQ', Name => 'CurrentFrameFunctionalGroupsSeq' }, |
|
110
|
|
|
|
|
|
|
# identifying group |
|
111
|
|
|
|
|
|
|
'0008,0000' => { VR => 'UL', Name => 'IdentifyingGroupLength' }, |
|
112
|
|
|
|
|
|
|
'0008,0001' => { VR => 'UL', Name => 'LengthToEnd' }, |
|
113
|
|
|
|
|
|
|
'0008,0005' => { VR => 'CS', Name => 'SpecificCharacterSet' }, |
|
114
|
|
|
|
|
|
|
'0008,0006' => { VR => 'SQ', Name => 'LanguageCodeSequence' }, |
|
115
|
|
|
|
|
|
|
'0008,0008' => { VR => 'CS', Name => 'ImageType' }, |
|
116
|
|
|
|
|
|
|
'0008,0010' => { VR => 'SH', Name => 'RecognitionCode' }, |
|
117
|
|
|
|
|
|
|
'0008,0012' => { VR => 'DA', Name => 'InstanceCreationDate' }, |
|
118
|
|
|
|
|
|
|
'0008,0013' => { VR => 'TM', Name => 'InstanceCreationTime' }, |
|
119
|
|
|
|
|
|
|
'0008,0014' => { VR => 'UI', Name => 'InstanceCreatorUID' }, |
|
120
|
|
|
|
|
|
|
'0008,0015' => { VR => 'DT', Name => 'InstanceCoercionDateTime' }, |
|
121
|
|
|
|
|
|
|
'0008,0016' => { VR => 'UI', Name => 'SOPClassUID' }, |
|
122
|
|
|
|
|
|
|
'0008,0017' => { VR => 'UI', Name => 'AcquisitionUID' }, |
|
123
|
|
|
|
|
|
|
'0008,0018' => { VR => 'UI', Name => 'SOPInstanceUID' }, |
|
124
|
|
|
|
|
|
|
'0008,0019' => { VR => 'UI', Name => 'PyramidUID' }, |
|
125
|
|
|
|
|
|
|
'0008,001A' => { VR => 'UI', Name => 'RelatedGeneralSOPClassUID' }, |
|
126
|
|
|
|
|
|
|
'0008,001B' => { VR => 'UI', Name => 'OriginalSpecializedSOPClassUID' }, |
|
127
|
|
|
|
|
|
|
'0008,001C' => { VR => 'CS', Name => 'SyntheticData' }, |
|
128
|
|
|
|
|
|
|
'0008,001D' => { VR => 'SQ', Name => 'SensitiveContentCodeSequence' }, |
|
129
|
|
|
|
|
|
|
'0008,0020' => { VR => 'DA', Name => 'StudyDate' }, |
|
130
|
|
|
|
|
|
|
'0008,0021' => { VR => 'DA', Name => 'SeriesDate' }, |
|
131
|
|
|
|
|
|
|
'0008,0022' => { VR => 'DA', Name => 'AcquisitionDate' }, |
|
132
|
|
|
|
|
|
|
'0008,0023' => { VR => 'DA', Name => 'ContentDate' }, |
|
133
|
|
|
|
|
|
|
'0008,0024' => { VR => 'DA', Name => 'OverlayDate' }, |
|
134
|
|
|
|
|
|
|
'0008,0025' => { VR => 'DA', Name => 'CurveDate' }, |
|
135
|
|
|
|
|
|
|
'0008,002A' => { VR => 'DT', Name => 'AcquisitionDateTime' }, |
|
136
|
|
|
|
|
|
|
'0008,0030' => { VR => 'TM', Name => 'StudyTime' }, |
|
137
|
|
|
|
|
|
|
'0008,0031' => { VR => 'TM', Name => 'SeriesTime' }, |
|
138
|
|
|
|
|
|
|
'0008,0032' => { VR => 'TM', Name => 'AcquisitionTime' }, |
|
139
|
|
|
|
|
|
|
'0008,0033' => { VR => 'TM', Name => 'ContentTime' }, |
|
140
|
|
|
|
|
|
|
'0008,0034' => { VR => 'TM', Name => 'OverlayTime' }, |
|
141
|
|
|
|
|
|
|
'0008,0035' => { VR => 'TM', Name => 'CurveTime' }, |
|
142
|
|
|
|
|
|
|
'0008,0040' => { VR => 'US', Name => 'DataSetType' }, |
|
143
|
|
|
|
|
|
|
'0008,0041' => { VR => 'LO', Name => 'DataSetSubtype' }, |
|
144
|
|
|
|
|
|
|
'0008,0042' => { VR => 'CS', Name => 'NuclearMedicineSeriesType' }, |
|
145
|
|
|
|
|
|
|
'0008,0050' => { VR => 'SH', Name => 'AccessionNumber' }, |
|
146
|
|
|
|
|
|
|
'0008,0051' => { VR => 'SQ', Name => 'IssuerOfAccessionNumberSequence' }, |
|
147
|
|
|
|
|
|
|
'0008,0052' => { VR => 'CS', Name => 'QueryRetrieveLevel' }, |
|
148
|
|
|
|
|
|
|
'0008,0053' => { VR => 'CS', Name => 'QueryRetrieveView' }, |
|
149
|
|
|
|
|
|
|
'0008,0054' => { VR => 'AE', Name => 'RetrieveAETitle' }, |
|
150
|
|
|
|
|
|
|
'0008,0055' => { VR => 'AE', Name => 'StationAETitle' }, |
|
151
|
|
|
|
|
|
|
'0008,0056' => { VR => 'CS', Name => 'InstanceAvailability' }, |
|
152
|
|
|
|
|
|
|
'0008,0058' => { VR => 'UI', Name => 'FailedSOPInstanceUIDList' }, |
|
153
|
|
|
|
|
|
|
'0008,0060' => { VR => 'CS', Name => 'Modality' }, |
|
154
|
|
|
|
|
|
|
'0008,0061' => { VR => 'CS', Name => 'ModalitiesInStudy' }, |
|
155
|
|
|
|
|
|
|
'0008,0062' => { VR => 'UI', Name => 'SOPClassesInStudy' }, |
|
156
|
|
|
|
|
|
|
'0008,0063' => { VR => 'SQ', Name => 'AnatomicRegionsInStudyCodeSequence' }, |
|
157
|
|
|
|
|
|
|
'0008,0064' => { VR => 'CS', Name => 'ConversionType' }, |
|
158
|
|
|
|
|
|
|
'0008,0068' => { VR => 'CS', Name => 'PresentationIntentType' }, |
|
159
|
|
|
|
|
|
|
'0008,0070' => { VR => 'LO', Name => 'Manufacturer' }, |
|
160
|
|
|
|
|
|
|
'0008,0080' => { VR => 'LO', Name => 'InstitutionName' }, |
|
161
|
|
|
|
|
|
|
'0008,0081' => { VR => 'ST', Name => 'InstitutionAddress' }, |
|
162
|
|
|
|
|
|
|
'0008,0082' => { VR => 'SQ', Name => 'InstitutionCodeSequence' }, |
|
163
|
|
|
|
|
|
|
'0008,0090' => { VR => 'PN', Name => 'ReferringPhysicianName' }, |
|
164
|
|
|
|
|
|
|
'0008,0092' => { VR => 'ST', Name => 'ReferringPhysicianAddress' }, |
|
165
|
|
|
|
|
|
|
'0008,0094' => { VR => 'SH', Name => 'ReferringPhysicianTelephoneNumber' }, |
|
166
|
|
|
|
|
|
|
'0008,0096' => { VR => 'SQ', Name => 'ReferringPhysicianIDSequence' }, |
|
167
|
|
|
|
|
|
|
'0008,009C' => { VR => 'PN', Name => 'ConsultingPhysicianName' }, |
|
168
|
|
|
|
|
|
|
'0008,009D' => { VR => 'SQ', Name => 'ConsultingPhysicianIDSequence' }, |
|
169
|
|
|
|
|
|
|
'0008,0100' => { VR => 'SH', Name => 'CodeValue' }, |
|
170
|
|
|
|
|
|
|
'0008,0101' => { VR => 'LO', Name => 'ExtendedCodeValue' }, |
|
171
|
|
|
|
|
|
|
'0008,0102' => { VR => 'SH', Name => 'CodingSchemeDesignator' }, |
|
172
|
|
|
|
|
|
|
'0008,0103' => { VR => 'SH', Name => 'CodingSchemeVersion' }, |
|
173
|
|
|
|
|
|
|
'0008,0104' => { VR => 'LO', Name => 'CodeMeaning' }, |
|
174
|
|
|
|
|
|
|
'0008,0105' => { VR => 'CS', Name => 'MappingResource' }, |
|
175
|
|
|
|
|
|
|
'0008,0106' => { VR => 'DT', Name => 'ContextGroupVersion' }, |
|
176
|
|
|
|
|
|
|
'0008,0107' => { VR => 'DT', Name => 'ContextGroupLocalVersion' }, |
|
177
|
|
|
|
|
|
|
'0008,0108' => { VR => 'LT', Name => 'ExtendedCodeMeaning' }, |
|
178
|
|
|
|
|
|
|
'0008,0109' => { VR => 'SQ', Name => 'CodingSchemeResourcesSequence' }, |
|
179
|
|
|
|
|
|
|
'0008,010A' => { VR => 'CS', Name => 'CodingSchemeURLType' }, |
|
180
|
|
|
|
|
|
|
'0008,010B' => { VR => 'CS', Name => 'ContextGroupExtensionFlag' }, |
|
181
|
|
|
|
|
|
|
'0008,010C' => { VR => 'UI', Name => 'CodingSchemeUID' }, |
|
182
|
|
|
|
|
|
|
'0008,010D' => { VR => 'UI', Name => 'ContextGroupExtensionCreatorUID' }, |
|
183
|
|
|
|
|
|
|
'0008,010E' => { VR => 'UR', Name => 'CodingSchemeURL' }, |
|
184
|
|
|
|
|
|
|
'0008,010F' => { VR => 'CS', Name => 'ContextIdentifier' }, |
|
185
|
|
|
|
|
|
|
'0008,0110' => { VR => 'SQ', Name => 'CodingSchemeIDSequence' }, |
|
186
|
|
|
|
|
|
|
'0008,0112' => { VR => 'LO', Name => 'CodingSchemeRegistry' }, |
|
187
|
|
|
|
|
|
|
'0008,0114' => { VR => 'ST', Name => 'CodingSchemeExternalID' }, |
|
188
|
|
|
|
|
|
|
'0008,0115' => { VR => 'ST', Name => 'CodingSchemeName' }, |
|
189
|
|
|
|
|
|
|
'0008,0116' => { VR => 'ST', Name => 'ResponsibleOrganization' }, |
|
190
|
|
|
|
|
|
|
'0008,0117' => { VR => 'UI', Name => 'ContextUID' }, |
|
191
|
|
|
|
|
|
|
'0008,0118' => { VR => 'UI', Name => 'MappingResourceUID' }, |
|
192
|
|
|
|
|
|
|
'0008,0119' => { VR => 'UC', Name => 'LongCodeValue' }, |
|
193
|
|
|
|
|
|
|
'0008,0120' => { VR => 'UR', Name => 'URNCodeValue' }, |
|
194
|
|
|
|
|
|
|
'0008,0121' => { VR => 'SQ', Name => 'EquivalentCodeSequence' }, |
|
195
|
|
|
|
|
|
|
'0008,0122' => { VR => 'LO', Name => 'MappingResourceName' }, |
|
196
|
|
|
|
|
|
|
'0008,0123' => { VR => 'SQ', Name => 'ContextGroupIDSequence' }, |
|
197
|
|
|
|
|
|
|
'0008,0124' => { VR => 'SQ', Name => 'MappingResourceIDSequence' }, |
|
198
|
|
|
|
|
|
|
'0008,0201' => { VR => 'SH', Name => 'TimezoneOffsetFromUTC' }, |
|
199
|
|
|
|
|
|
|
'0008,0220' => { VR => 'SQ', Name => 'ResponsibleGroupCodeSequence' }, |
|
200
|
|
|
|
|
|
|
'0008,0221' => { VR => 'CS', Name => 'EquipmentModality' }, |
|
201
|
|
|
|
|
|
|
'0008,0222' => { VR => 'LO', Name => 'ManufacturerRelatedModelGroup' }, |
|
202
|
|
|
|
|
|
|
'0008,0300' => { VR => 'SQ', Name => 'PrivateDataElementCharacteristics' }, |
|
203
|
|
|
|
|
|
|
'0008,0301' => { VR => 'US', Name => 'PrivateGroupReference' }, |
|
204
|
|
|
|
|
|
|
'0008,0302' => { VR => 'LO', Name => 'PrivateCreatorReference' }, |
|
205
|
|
|
|
|
|
|
'0008,0303' => { VR => 'CS', Name => 'BlockIdentifyingInformationStatus' }, |
|
206
|
|
|
|
|
|
|
'0008,0304' => { VR => 'US', Name => 'NonidentifyingPrivateElements' }, |
|
207
|
|
|
|
|
|
|
'0008,0305' => { VR => 'SQ', Name => 'DeidentificationActionSequence' }, |
|
208
|
|
|
|
|
|
|
'0008,0306' => { VR => 'US', Name => 'IdentifyingPrivateElements' }, |
|
209
|
|
|
|
|
|
|
'0008,0307' => { VR => 'CS', Name => 'DeidentificationAction' }, |
|
210
|
|
|
|
|
|
|
'0008,0308' => { VR => 'US', Name => 'PrivateDataElement' }, |
|
211
|
|
|
|
|
|
|
'0008,0309' => { VR => 'UL', Name => 'PrivateDataElementValueMult' }, |
|
212
|
|
|
|
|
|
|
'0008,030A' => { VR => 'CS', Name => 'PrivateDataElementValueRep' }, |
|
213
|
|
|
|
|
|
|
'0008,030B' => { VR => 'UL', Name => 'PrivateDataElementNumberOfItems' }, |
|
214
|
|
|
|
|
|
|
'0008,030C' => { VR => 'UC', Name => 'PrivateDataElementName' }, |
|
215
|
|
|
|
|
|
|
'0008,030D' => { VR => 'UC', Name => 'PrivateDataElementKeyword' }, |
|
216
|
|
|
|
|
|
|
'0008,030E' => { VR => 'UT', Name => 'PrivateDataElementDescription' }, |
|
217
|
|
|
|
|
|
|
'0008,030F' => { VR => 'UT', Name => 'PrivateDataElementEncoding' }, |
|
218
|
|
|
|
|
|
|
'0008,0310' => { VR => 'SQ', Name => 'PrivateDataElementDefinitionSeq' }, |
|
219
|
|
|
|
|
|
|
'0008,0400' => { VR => 'SQ', Name => 'ScopeOfInventorySequence' }, |
|
220
|
|
|
|
|
|
|
'0008,0401' => { VR => 'LT', Name => 'InventoryPurpose' }, |
|
221
|
|
|
|
|
|
|
'0008,0402' => { VR => 'LT', Name => 'InventoryInstanceDescription' }, |
|
222
|
|
|
|
|
|
|
'0008,0403' => { VR => 'CS', Name => 'InventoryLevel' }, |
|
223
|
|
|
|
|
|
|
'0008,0404' => { VR => 'DT', Name => 'ItemInventoryDateTime' }, |
|
224
|
|
|
|
|
|
|
'0008,0405' => { VR => 'CS', Name => 'RemovedFromOperationalUse' }, |
|
225
|
|
|
|
|
|
|
'0008,0406' => { VR => 'SQ', Name => 'ReasonForRemovalCodeSequence' }, |
|
226
|
|
|
|
|
|
|
'0008,0407' => { VR => 'UR', Name => 'StoredInstanceBaseURI' }, |
|
227
|
|
|
|
|
|
|
'0008,0408' => { VR => 'UR', Name => 'FolderAccessURI' }, |
|
228
|
|
|
|
|
|
|
'0008,0409' => { VR => 'UR', Name => 'FileAccessURI' }, |
|
229
|
|
|
|
|
|
|
'0008,040A' => { VR => 'CS', Name => 'ContainerFileType' }, |
|
230
|
|
|
|
|
|
|
'0008,040B' => { VR => 'UR', Name => 'FilenameInContainer' }, |
|
231
|
|
|
|
|
|
|
'0008,040C' => { VR => 'UV', Name => 'FileOffsetInContainer' }, |
|
232
|
|
|
|
|
|
|
'0008,040D' => { VR => 'UV', Name => 'FileLengthInContainer' }, |
|
233
|
|
|
|
|
|
|
'0008,040E' => { VR => 'UI', Name => 'StoredInstanceTransferSyntaxUID' }, |
|
234
|
|
|
|
|
|
|
'0008,040F' => { VR => 'CS', Name => 'ExtendedMatchingMechanisms' }, |
|
235
|
|
|
|
|
|
|
'0008,0410' => { VR => 'SQ', Name => 'RangeMatchingSequence' }, |
|
236
|
|
|
|
|
|
|
'0008,0411' => { VR => 'SQ', Name => 'ListOfUIDMatchingSequence' }, |
|
237
|
|
|
|
|
|
|
'0008,0412' => { VR => 'SQ', Name => 'EmptyValueMatchingSequence' }, |
|
238
|
|
|
|
|
|
|
'0008,0413' => { VR => 'SQ', Name => 'GeneralMatchingSequence' }, |
|
239
|
|
|
|
|
|
|
'0008,0414' => { VR => 'US', Name => 'RequestedStatusInterval' }, |
|
240
|
|
|
|
|
|
|
'0008,0415' => { VR => 'CS', Name => 'RetainInstances' }, |
|
241
|
|
|
|
|
|
|
'0008,0416' => { VR => 'DT', Name => 'ExpirationDateTime' }, |
|
242
|
|
|
|
|
|
|
'0008,0417' => { VR => 'CS', Name => 'TransactionStatus' }, |
|
243
|
|
|
|
|
|
|
'0008,0418' => { VR => 'LT', Name => 'TransactionStatusComment' }, |
|
244
|
|
|
|
|
|
|
'0008,0419' => { VR => 'SQ', Name => 'FileSetAccessSequence' }, |
|
245
|
|
|
|
|
|
|
'0008,041A' => { VR => 'SQ', Name => 'FileAccessSequence' }, |
|
246
|
|
|
|
|
|
|
'0008,041B' => { VR => 'OB', Name => 'RecordKey' }, |
|
247
|
|
|
|
|
|
|
'0008,041C' => { VR => 'OB', Name => 'PriorRecordKey' }, |
|
248
|
|
|
|
|
|
|
'0008,041D' => { VR => 'SQ', Name => 'MetadataSequence' }, |
|
249
|
|
|
|
|
|
|
'0008,041E' => { VR => 'SQ', Name => 'UpdatedMetadataSequence' }, |
|
250
|
|
|
|
|
|
|
'0008,041F' => { VR => 'DT', Name => 'StudyUpdateDateTime' }, |
|
251
|
|
|
|
|
|
|
'0008,0420' => { VR => 'SQ', Name => 'InventoryAccessEndPointsSequence' }, |
|
252
|
|
|
|
|
|
|
'0008,0421' => { VR => 'SQ', Name => 'StudyAccessEndPointsSequence' }, |
|
253
|
|
|
|
|
|
|
'0008,0422' => { VR => 'SQ', Name => 'IncorporatedInventoryInstanceSeq' }, |
|
254
|
|
|
|
|
|
|
'0008,0423' => { VR => 'SQ', Name => 'InventoriedStudiesSequence' }, |
|
255
|
|
|
|
|
|
|
'0008,0424' => { VR => 'SQ', Name => 'InventoriedSeriesSequence' }, |
|
256
|
|
|
|
|
|
|
'0008,0425' => { VR => 'SQ', Name => 'InventoriedInstancesSequence' }, |
|
257
|
|
|
|
|
|
|
'0008,0426' => { VR => 'CS', Name => 'InventoryCompletionStatus' }, |
|
258
|
|
|
|
|
|
|
'0008,0427' => { VR => 'UL', Name => 'NumberOfStudyRecordsInInstance' }, |
|
259
|
|
|
|
|
|
|
'0008,0428' => { VR => 'UV', Name => 'TotalNumberOfStudyRecords' }, |
|
260
|
|
|
|
|
|
|
'0008,0429' => { VR => 'UV', Name => 'MaximumNumberOfRecords' }, |
|
261
|
|
|
|
|
|
|
'0008,1000' => { VR => 'AE', Name => 'NetworkID' }, |
|
262
|
|
|
|
|
|
|
'0008,1010' => { VR => 'SH', Name => 'StationName' }, |
|
263
|
|
|
|
|
|
|
'0008,1030' => { VR => 'LO', Name => 'StudyDescription' }, |
|
264
|
|
|
|
|
|
|
'0008,1032' => { VR => 'SQ', Name => 'ProcedureCodeSequence' }, |
|
265
|
|
|
|
|
|
|
'0008,103E' => { VR => 'LO', Name => 'SeriesDescription' }, |
|
266
|
|
|
|
|
|
|
'0008,103F' => { VR => 'SQ', Name => 'SeriesDescriptionCodeSequence' }, |
|
267
|
|
|
|
|
|
|
'0008,1040' => { VR => 'LO', Name => 'InstitutionalDepartmentName' }, |
|
268
|
|
|
|
|
|
|
'0008,1041' => { VR => 'SQ', Name => 'InstitutionalDepartmentTypeCodeSeq' }, |
|
269
|
|
|
|
|
|
|
'0008,1048' => { VR => 'PN', Name => 'PhysiciansOfRecord' }, |
|
270
|
|
|
|
|
|
|
'0008,1049' => { VR => 'SQ', Name => 'PhysiciansOfRecordIDSequence' }, |
|
271
|
|
|
|
|
|
|
'0008,1050' => { VR => 'PN', Name => 'PerformingPhysicianName' }, |
|
272
|
|
|
|
|
|
|
'0008,1052' => { VR => 'SQ', Name => 'PerformingPhysicianIDSequence' }, |
|
273
|
|
|
|
|
|
|
'0008,1060' => { VR => 'PN', Name => 'NameOfPhysicianReadingStudy' }, |
|
274
|
|
|
|
|
|
|
'0008,1062' => { VR => 'SQ', Name => 'PhysicianReadingStudyIDSequence' }, |
|
275
|
|
|
|
|
|
|
'0008,1070' => { VR => 'PN', Name => 'OperatorsName' }, |
|
276
|
|
|
|
|
|
|
'0008,1072' => { VR => 'SQ', Name => 'OperatorIDSequence' }, |
|
277
|
|
|
|
|
|
|
'0008,1080' => { VR => 'LO', Name => 'AdmittingDiagnosesDescription' }, |
|
278
|
|
|
|
|
|
|
'0008,1084' => { VR => 'SQ', Name => 'AdmittingDiagnosesCodeSequence' }, |
|
279
|
|
|
|
|
|
|
'0008,1088' => { VR => 'LO', Name => 'PyramidDescription' }, |
|
280
|
|
|
|
|
|
|
'0008,1090' => { VR => 'LO', Name => 'ManufacturersModelName' }, |
|
281
|
|
|
|
|
|
|
'0008,1100' => { VR => 'SQ', Name => 'ReferencedResultsSequence' }, |
|
282
|
|
|
|
|
|
|
'0008,1110' => { VR => 'SQ', Name => 'ReferencedStudySequence' }, |
|
283
|
|
|
|
|
|
|
'0008,1111' => { VR => 'SQ', Name => 'ReferencedProcedureStepSequence' }, |
|
284
|
|
|
|
|
|
|
'0008,1112' => { VR => 'SQ', Name => 'ReferencedInstancesBySOPClassSe' }, |
|
285
|
|
|
|
|
|
|
'0008,1115' => { VR => 'SQ', Name => 'ReferencedSeriesSequence' }, |
|
286
|
|
|
|
|
|
|
'0008,1120' => { VR => 'SQ', Name => 'ReferencedPatientSequence' }, |
|
287
|
|
|
|
|
|
|
'0008,1125' => { VR => 'SQ', Name => 'ReferencedVisitSequence' }, |
|
288
|
|
|
|
|
|
|
'0008,1130' => { VR => 'SQ', Name => 'ReferencedOverlaySequence' }, |
|
289
|
|
|
|
|
|
|
'0008,1134' => { VR => 'SQ', Name => 'ReferencedStereometricInstanceSeq' }, |
|
290
|
|
|
|
|
|
|
'0008,113A' => { VR => 'SQ', Name => 'ReferencedWaveformSequence' }, |
|
291
|
|
|
|
|
|
|
'0008,1140' => { VR => 'SQ', Name => 'ReferencedImageSequence' }, |
|
292
|
|
|
|
|
|
|
'0008,1145' => { VR => 'SQ', Name => 'ReferencedCurveSequence' }, |
|
293
|
|
|
|
|
|
|
'0008,114A' => { VR => 'SQ', Name => 'ReferencedInstanceSequence' }, |
|
294
|
|
|
|
|
|
|
'0008,114B' => { VR => 'SQ', Name => 'ReferencedRealWorldValueMappingSeq' }, |
|
295
|
|
|
|
|
|
|
'0008,114C' => { VR => 'SQ', Name => 'ReferencedSegmentationSequence' }, |
|
296
|
|
|
|
|
|
|
'0008,114D' => { VR => 'SQ', Name => 'ReferencedSurfaceSegmentationSeq' }, |
|
297
|
|
|
|
|
|
|
'0008,1150' => { VR => 'UI', Name => 'ReferencedSOPClassUID' }, |
|
298
|
|
|
|
|
|
|
'0008,1155' => { VR => 'UI', Name => 'ReferencedSOPInstanceUID' }, |
|
299
|
|
|
|
|
|
|
'0008,1156' => { VR => 'SQ', Name => 'DefinitionSourceSequence' }, |
|
300
|
|
|
|
|
|
|
'0008,115A' => { VR => 'UI', Name => 'SOPClassesSupported' }, |
|
301
|
|
|
|
|
|
|
'0008,1160' => { VR => 'IS', Name => 'ReferencedFrameNumber' }, |
|
302
|
|
|
|
|
|
|
'0008,1161' => { VR => 'UL', Name => 'SimpleFrameList' }, |
|
303
|
|
|
|
|
|
|
'0008,1162' => { VR => 'UL', Name => 'CalculatedFrameList' }, |
|
304
|
|
|
|
|
|
|
'0008,1163' => { VR => 'FD', Name => 'TimeRange' }, |
|
305
|
|
|
|
|
|
|
'0008,1164' => { VR => 'SQ', Name => 'FrameExtractionSequence' }, |
|
306
|
|
|
|
|
|
|
'0008,1167' => { VR => 'UI', Name => 'MultiFrameSourceSOPInstanceUID' }, |
|
307
|
|
|
|
|
|
|
'0008,1190' => { VR => 'UR', Name => 'RetrieveURL' }, |
|
308
|
|
|
|
|
|
|
'0008,1195' => { VR => 'UI', Name => 'TransactionUID' }, |
|
309
|
|
|
|
|
|
|
'0008,1196' => { VR => 'US', Name => 'WarningReason' }, |
|
310
|
|
|
|
|
|
|
'0008,1197' => { VR => 'US', Name => 'FailureReason' }, |
|
311
|
|
|
|
|
|
|
'0008,1198' => { VR => 'SQ', Name => 'FailedSOPSequence' }, |
|
312
|
|
|
|
|
|
|
'0008,1199' => { VR => 'SQ', Name => 'ReferencedSOPSequence' }, |
|
313
|
|
|
|
|
|
|
'0008,119A' => { VR => 'SQ', Name => 'OtherFailuresSequence' }, |
|
314
|
|
|
|
|
|
|
'0008,119B' => { VR => 'SQ', Name => 'FailedStudySequence' }, |
|
315
|
|
|
|
|
|
|
'0008,1200' => { VR => 'SQ', Name => 'OtherReferencedStudiesSequence' }, |
|
316
|
|
|
|
|
|
|
'0008,1250' => { VR => 'SQ', Name => 'RelatedSeriesSequence' }, |
|
317
|
|
|
|
|
|
|
'0008,1301' => { VR => 'SQ', Name => 'PrincipalDiagnosisCodeSequence' }, |
|
318
|
|
|
|
|
|
|
'0008,1302' => { VR => 'SQ', Name => 'PrimaryDiagnosisCodeSequence' }, |
|
319
|
|
|
|
|
|
|
'0008,1303' => { VR => 'SQ', Name => 'SecondaryDiagnosesCodeSequence' }, |
|
320
|
|
|
|
|
|
|
'0008,1304' => { VR => 'SQ', Name => 'HistologicalDiagnosesCodeSequence' }, |
|
321
|
|
|
|
|
|
|
'0008,2110' => { VR => 'CS', Name => 'LossyImageCompression' }, |
|
322
|
|
|
|
|
|
|
'0008,2111' => { VR => 'ST', Name => 'DerivationDescription' }, |
|
323
|
|
|
|
|
|
|
'0008,2112' => { VR => 'SQ', Name => 'SourceImageSequence' }, |
|
324
|
|
|
|
|
|
|
'0008,2120' => { VR => 'SH', Name => 'StageName' }, |
|
325
|
|
|
|
|
|
|
'0008,2122' => { VR => 'IS', Name => 'StageNumber' }, |
|
326
|
|
|
|
|
|
|
'0008,2124' => { VR => 'IS', Name => 'NumberOfStages' }, |
|
327
|
|
|
|
|
|
|
'0008,2127' => { VR => 'SH', Name => 'ViewName' }, |
|
328
|
|
|
|
|
|
|
'0008,2128' => { VR => 'IS', Name => 'ViewNumber' }, |
|
329
|
|
|
|
|
|
|
'0008,2129' => { VR => 'IS', Name => 'NumberOfEventTimers' }, |
|
330
|
|
|
|
|
|
|
'0008,212A' => { VR => 'IS', Name => 'NumberOfViewsInStage' }, |
|
331
|
|
|
|
|
|
|
'0008,2130' => { VR => 'DS', Name => 'EventElapsedTimes' }, |
|
332
|
|
|
|
|
|
|
'0008,2132' => { VR => 'LO', Name => 'EventTimerNames' }, |
|
333
|
|
|
|
|
|
|
'0008,2133' => { VR => 'SQ', Name => 'EventTimerSequence' }, |
|
334
|
|
|
|
|
|
|
'0008,2134' => { VR => 'FD', Name => 'EventTimeOffset' }, |
|
335
|
|
|
|
|
|
|
'0008,2135' => { VR => 'SQ', Name => 'EventCodeSequence' }, |
|
336
|
|
|
|
|
|
|
'0008,2142' => { VR => 'IS', Name => 'StartTrim' }, |
|
337
|
|
|
|
|
|
|
'0008,2143' => { VR => 'IS', Name => 'StopTrim' }, |
|
338
|
|
|
|
|
|
|
'0008,2144' => { VR => 'IS', Name => 'RecommendedDisplayFrameRate' }, |
|
339
|
|
|
|
|
|
|
'0008,2200' => { VR => 'CS', Name => 'TransducerPosition' }, |
|
340
|
|
|
|
|
|
|
'0008,2204' => { VR => 'CS', Name => 'TransducerOrientation' }, |
|
341
|
|
|
|
|
|
|
'0008,2208' => { VR => 'CS', Name => 'AnatomicStructure' }, |
|
342
|
|
|
|
|
|
|
'0008,2218' => { VR => 'SQ', Name => 'AnatomicRegionSequence' }, |
|
343
|
|
|
|
|
|
|
'0008,2220' => { VR => 'SQ', Name => 'AnatomicRegionModifierSequence' }, |
|
344
|
|
|
|
|
|
|
'0008,2228' => { VR => 'SQ', Name => 'PrimaryAnatomicStructureSequence' }, |
|
345
|
|
|
|
|
|
|
'0008,2229' => { VR => 'SQ', Name => 'AnatomicStructureOrRegionSequence' }, |
|
346
|
|
|
|
|
|
|
'0008,2230' => { VR => 'SQ', Name => 'AnatomicStructureModifierSequence' }, |
|
347
|
|
|
|
|
|
|
'0008,2240' => { VR => 'SQ', Name => 'TransducerPositionSequence' }, |
|
348
|
|
|
|
|
|
|
'0008,2242' => { VR => 'SQ', Name => 'TransducerPositionModifierSequence' }, |
|
349
|
|
|
|
|
|
|
'0008,2244' => { VR => 'SQ', Name => 'TransducerOrientationSequence' }, |
|
350
|
|
|
|
|
|
|
'0008,2246' => { VR => 'SQ', Name => 'TransducerOrientationModifierSeq' }, |
|
351
|
|
|
|
|
|
|
'0008,2251' => { VR => 'SQ', Name => 'AnatomicStructOrRegionCodeSeqTrial' }, |
|
352
|
|
|
|
|
|
|
'0008,2253' => { VR => 'SQ', Name => 'AnatomicEntrancePortalCodeSeqTrial' }, |
|
353
|
|
|
|
|
|
|
'0008,2255' => { VR => 'SQ', Name => 'AnatomicApproachDirCodeSeqTrial' }, |
|
354
|
|
|
|
|
|
|
'0008,2256' => { VR => 'ST', Name => 'AnatomicPerspectiveDescrTrial' }, |
|
355
|
|
|
|
|
|
|
'0008,2257' => { VR => 'SQ', Name => 'AnatomicPerspectiveCodeSeqTrial' }, |
|
356
|
|
|
|
|
|
|
'0008,2258' => { VR => 'ST', Name => 'AnatomicLocationExamInstrDescTrial' }, |
|
357
|
|
|
|
|
|
|
'0008,2259' => { VR => 'SQ', Name => 'AnatomicLocExamInstrCodeSeqTrial' }, |
|
358
|
|
|
|
|
|
|
'0008,225A' => { VR => 'SQ', Name => 'AnatomicStructRegnModCodeSeqTrial' }, |
|
359
|
|
|
|
|
|
|
'0008,225C' => { VR => 'SQ', Name => 'OnAxisBkgAnatomyStructCodeSeqTrial' }, |
|
360
|
|
|
|
|
|
|
'0008,3001' => { VR => 'SQ', Name => 'AlternateRepresentationSequence' }, |
|
361
|
|
|
|
|
|
|
'0008,3002' => { VR => 'UI', Name => 'AvailableTransferSyntaxUID' }, |
|
362
|
|
|
|
|
|
|
'0008,3010' => { VR => 'UI', Name => 'IrradiationEventUID' }, |
|
363
|
|
|
|
|
|
|
'0008,3011' => { VR => 'SQ', Name => 'SourceIrradiationEventSequence' }, |
|
364
|
|
|
|
|
|
|
'0008,3012' => { VR => 'UI', Name => 'RadiopharmaceuticalAdminEventUID' }, |
|
365
|
|
|
|
|
|
|
'0008,4000' => { VR => 'LT', Name => 'IdentifyingComments' }, |
|
366
|
|
|
|
|
|
|
'0008,9007' => { VR => 'CS', Name => 'FrameType' }, |
|
367
|
|
|
|
|
|
|
'0008,9092' => { VR => 'SQ', Name => 'ReferencedImageEvidenceSequence' }, |
|
368
|
|
|
|
|
|
|
'0008,9121' => { VR => 'SQ', Name => 'ReferencedRawDataSequence' }, |
|
369
|
|
|
|
|
|
|
'0008,9123' => { VR => 'UI', Name => 'CreatorVersionUID' }, |
|
370
|
|
|
|
|
|
|
'0008,9124' => { VR => 'SQ', Name => 'DerivationImageSequence' }, |
|
371
|
|
|
|
|
|
|
'0008,9154' => { VR => 'SQ', Name => 'SourceImageEvidenceSequence' }, |
|
372
|
|
|
|
|
|
|
'0008,9205' => { VR => 'CS', Name => 'PixelPresentation' }, |
|
373
|
|
|
|
|
|
|
'0008,9206' => { VR => 'CS', Name => 'VolumetricProperties' }, |
|
374
|
|
|
|
|
|
|
'0008,9207' => { VR => 'CS', Name => 'VolumeBasedCalculationTechnique' }, |
|
375
|
|
|
|
|
|
|
'0008,9208' => { VR => 'CS', Name => 'ComplexImageComponent' }, |
|
376
|
|
|
|
|
|
|
'0008,9209' => { VR => 'CS', Name => 'AcquisitionContrast' }, |
|
377
|
|
|
|
|
|
|
'0008,9215' => { VR => 'SQ', Name => 'DerivationCodeSequence' }, |
|
378
|
|
|
|
|
|
|
'0008,9237' => { VR => 'SQ', Name => 'GrayscalePresentationStateSequence' }, |
|
379
|
|
|
|
|
|
|
'0008,9410' => { VR => 'SQ', Name => 'ReferencedOtherPlaneSequence' }, |
|
380
|
|
|
|
|
|
|
'0008,9458' => { VR => 'SQ', Name => 'FrameDisplaySequence' }, |
|
381
|
|
|
|
|
|
|
'0008,9459' => { VR => 'FL', Name => 'RecommendedDisplayFrameRateInFloat' }, |
|
382
|
|
|
|
|
|
|
'0008,9460' => { VR => 'CS', Name => 'SkipFrameRangeFlag' }, |
|
383
|
|
|
|
|
|
|
# GEMS_IDEN_01 (ref 4) |
|
384
|
|
|
|
|
|
|
'0009,1001' => { VR => 'LO', Name => 'FullFidelity' }, |
|
385
|
|
|
|
|
|
|
'0009,1002' => { VR => 'SH', Name => 'SuiteID' }, |
|
386
|
|
|
|
|
|
|
'0009,1004' => { VR => 'SH', Name => 'ProductID' }, |
|
387
|
|
|
|
|
|
|
'0009,1027' => { VR => 'SL', Name => 'ImageActualDate' }, |
|
388
|
|
|
|
|
|
|
'0009,1030' => { VR => 'SH', Name => 'ServiceID' }, |
|
389
|
|
|
|
|
|
|
'0009,1031' => { VR => 'SH', Name => 'MobileLocationNumber' }, |
|
390
|
|
|
|
|
|
|
'0009,10E3' => { VR => 'UI', Name => 'EquipmentUID' }, |
|
391
|
|
|
|
|
|
|
'0009,10E6' => { VR => 'SH', Name => 'GenesisVersionNow' }, |
|
392
|
|
|
|
|
|
|
'0009,10E7' => { VR => 'UL', Name => 'ExamRecordChecksum' }, |
|
393
|
|
|
|
|
|
|
'0009,10E9' => { VR => 'SL', Name => 'ActualSeriesDataTimeStamp' }, |
|
394
|
|
|
|
|
|
|
# patient group |
|
395
|
|
|
|
|
|
|
'0010,0000' => { VR => 'UL', Name => 'PatientGroupLength' }, |
|
396
|
|
|
|
|
|
|
'0010,0010' => { VR => 'PN', Name => 'PatientName' }, |
|
397
|
|
|
|
|
|
|
'0010,0011' => { VR => 'SQ', Name => 'PersonNamesToUseSequence' }, |
|
398
|
|
|
|
|
|
|
'0010,0012' => { VR => 'LT', Name => 'NameToUse' }, |
|
399
|
|
|
|
|
|
|
'0010,0013' => { VR => 'UT', Name => 'NameToUseComment' }, |
|
400
|
|
|
|
|
|
|
'0010,0014' => { VR => 'SQ', Name => 'ThirdPersonPronounsSequence' }, |
|
401
|
|
|
|
|
|
|
'0010,0015' => { VR => 'SQ', Name => 'PronounCodeSequence' }, |
|
402
|
|
|
|
|
|
|
'0010,0016' => { VR => 'UT', Name => 'PronounComment' }, |
|
403
|
|
|
|
|
|
|
'0010,0020' => { VR => 'LO', Name => 'PatientID' }, |
|
404
|
|
|
|
|
|
|
'0010,0021' => { VR => 'LO', Name => 'IssuerOfPatientID' }, |
|
405
|
|
|
|
|
|
|
'0010,0022' => { VR => 'CS', Name => 'TypeOfPatientID' }, |
|
406
|
|
|
|
|
|
|
'0010,0024' => { VR => 'SQ', Name => 'IssuerOfPatientIDQualifiersSeq' }, |
|
407
|
|
|
|
|
|
|
'0010,0026' => { VR => 'SQ', Name => 'SourcePatientGroupIDSeq' }, |
|
408
|
|
|
|
|
|
|
'0010,0027' => { VR => 'SQ', Name => 'GroupOfPatientsIdentificationSeq' }, |
|
409
|
|
|
|
|
|
|
'0010,0028' => { VR => 'US', Name => 'SubjectRelativePositionInImage' }, |
|
410
|
|
|
|
|
|
|
'0010,0030' => { VR => 'DA', Name => 'PatientBirthDate' }, |
|
411
|
|
|
|
|
|
|
'0010,0032' => { VR => 'TM', Name => 'PatientBirthTime' }, |
|
412
|
|
|
|
|
|
|
'0010,0033' => { VR => 'LO', Name => 'PatientBirthDateInAltCalendar' }, |
|
413
|
|
|
|
|
|
|
'0010,0034' => { VR => 'LO', Name => 'PatientDeathDateInAltCalendar' }, |
|
414
|
|
|
|
|
|
|
'0010,0035' => { VR => 'CS', Name => 'PatientAlternativeCalendar' }, |
|
415
|
|
|
|
|
|
|
'0010,0040' => { VR => 'CS', Name => 'PatientSex' }, |
|
416
|
|
|
|
|
|
|
'0010,0041' => { VR => 'SQ', Name => 'GenderIdentitySequence' }, |
|
417
|
|
|
|
|
|
|
'0010,0042' => { VR => 'UT', Name => 'SexParamsForClinicalUseCategoryCom' }, |
|
418
|
|
|
|
|
|
|
'0010,0043' => { VR => 'SQ', Name => 'SexParamsForClinicalUseCategorySeq' }, |
|
419
|
|
|
|
|
|
|
'0010,0044' => { VR => 'SQ', Name => 'GenderIdentityCodeSequence' }, |
|
420
|
|
|
|
|
|
|
'0010,0045' => { VR => 'UT', Name => 'GenderIdentityComment' }, |
|
421
|
|
|
|
|
|
|
'0010,0046' => { VR => 'SQ', Name => 'SexParamsForClinicalUseCatCodeSeq' }, |
|
422
|
|
|
|
|
|
|
'0010,0047' => { VR => 'UR', Name => 'SexParamsForClinicalUseCategoryRef' }, |
|
423
|
|
|
|
|
|
|
'0010,0050' => { VR => 'SQ', Name => 'PatientInsurancePlanCodeSequence' }, |
|
424
|
|
|
|
|
|
|
'0010,0101' => { VR => 'SQ', Name => 'PatientPrimaryLanguageCodeSeq' }, |
|
425
|
|
|
|
|
|
|
'0010,0102' => { VR => 'SQ', Name => 'PatientPrimaryLanguageCodeModSeq' }, |
|
426
|
|
|
|
|
|
|
'0010,0200' => { VR => 'CS', Name => 'QualityControlSubject' }, |
|
427
|
|
|
|
|
|
|
'0010,0201' => { VR => 'SQ', Name => 'QualityControlSubjectTypeCodeSeq' }, |
|
428
|
|
|
|
|
|
|
'0010,0212' => { VR => 'UC', Name => 'StrainDescription' }, |
|
429
|
|
|
|
|
|
|
'0010,0213' => { VR => 'LO', Name => 'StrainNomenclature' }, |
|
430
|
|
|
|
|
|
|
'0010,0214' => { VR => 'LO', Name => 'StrainStockNumber' }, |
|
431
|
|
|
|
|
|
|
'0010,0215' => { VR => 'SQ', Name => 'StrainSourceRegistryCodeSequence' }, |
|
432
|
|
|
|
|
|
|
'0010,0216' => { VR => 'SQ', Name => 'StrainStockSequence' }, |
|
433
|
|
|
|
|
|
|
'0010,0217' => { VR => 'LO', Name => 'StrainSource' }, |
|
434
|
|
|
|
|
|
|
'0010,0218' => { VR => 'UT', Name => 'StrainAdditionalInformation' }, |
|
435
|
|
|
|
|
|
|
'0010,0219' => { VR => 'SQ', Name => 'StrainCodeSequence' }, |
|
436
|
|
|
|
|
|
|
'0010,0221' => { VR => 'SQ', Name => 'GeneticModificationsSequence' }, |
|
437
|
|
|
|
|
|
|
'0010,0222' => { VR => 'UC', Name => 'GeneticModificationsDescription' }, |
|
438
|
|
|
|
|
|
|
'0010,0223' => { VR => 'LO', Name => 'GeneticModificationsNomenclature' }, |
|
439
|
|
|
|
|
|
|
'0010,0229' => { VR => 'SQ', Name => 'GeneticModificationsCodeSequence' }, |
|
440
|
|
|
|
|
|
|
'0010,1000' => { VR => 'LO', Name => 'OtherPatientIDs' }, |
|
441
|
|
|
|
|
|
|
'0010,1001' => { VR => 'PN', Name => 'OtherPatientNames' }, |
|
442
|
|
|
|
|
|
|
'0010,1002' => { VR => 'SQ', Name => 'OtherPatientIDsSequence' }, |
|
443
|
|
|
|
|
|
|
'0010,1005' => { VR => 'PN', Name => 'PatientBirthName' }, |
|
444
|
|
|
|
|
|
|
'0010,1010' => { VR => 'AS', Name => 'PatientAge' }, |
|
445
|
|
|
|
|
|
|
'0010,1020' => { VR => 'DS', Name => 'PatientSize' }, |
|
446
|
|
|
|
|
|
|
'0010,1021' => { VR => 'SQ', Name => 'PatientSizeCodeSequence' }, |
|
447
|
|
|
|
|
|
|
'0010,1022' => { VR => 'DS', Name => 'PatientBodyMassIndex' }, |
|
448
|
|
|
|
|
|
|
'0010,1023' => { VR => 'DS', Name => 'MeasuredAPDimension' }, |
|
449
|
|
|
|
|
|
|
'0010,1024' => { VR => 'DS', Name => 'MeasuredLateralDimension' }, |
|
450
|
|
|
|
|
|
|
'0010,1030' => { VR => 'DS', Name => 'PatientWeight' }, |
|
451
|
|
|
|
|
|
|
'0010,1040' => { VR => 'LO', Name => 'PatientAddress' }, |
|
452
|
|
|
|
|
|
|
'0010,1050' => { VR => 'LO', Name => 'InsurancePlanIdentification' }, |
|
453
|
|
|
|
|
|
|
'0010,1060' => { VR => 'PN', Name => 'PatientMotherBirthName' }, |
|
454
|
|
|
|
|
|
|
'0010,1080' => { VR => 'LO', Name => 'MilitaryRank' }, |
|
455
|
|
|
|
|
|
|
'0010,1081' => { VR => 'LO', Name => 'BranchOfService' }, |
|
456
|
|
|
|
|
|
|
'0010,1090' => { VR => 'LO', Name => 'MedicalRecordLocator' }, |
|
457
|
|
|
|
|
|
|
'0010,1100' => { VR => 'SQ', Name => 'ReferencedPatientPhotoSequence' }, |
|
458
|
|
|
|
|
|
|
'0010,2000' => { VR => 'LO', Name => 'MedicalAlerts' }, |
|
459
|
|
|
|
|
|
|
'0010,2110' => { VR => 'LO', Name => 'Allergies' }, |
|
460
|
|
|
|
|
|
|
'0010,2150' => { VR => 'LO', Name => 'CountryOfResidence' }, |
|
461
|
|
|
|
|
|
|
'0010,2152' => { VR => 'LO', Name => 'RegionOfResidence' }, |
|
462
|
|
|
|
|
|
|
'0010,2154' => { VR => 'SH', Name => 'PatientTelephoneNumbers' }, |
|
463
|
|
|
|
|
|
|
'0010,2155' => { VR => 'LT', Name => 'PatientTelecomInformation' }, |
|
464
|
|
|
|
|
|
|
'0010,2160' => { VR => 'SH', Name => 'EthnicGroup' }, |
|
465
|
|
|
|
|
|
|
'0010,2161' => { VR => 'SQ', Name => 'EthnicGroupCodeSequence' }, |
|
466
|
|
|
|
|
|
|
'0010,2162' => { VR => 'UC', Name => 'EthnicGroups' }, |
|
467
|
|
|
|
|
|
|
'0010,2180' => { VR => 'SH', Name => 'Occupation' }, |
|
468
|
|
|
|
|
|
|
'0010,21A0' => { VR => 'CS', Name => 'SmokingStatus' }, |
|
469
|
|
|
|
|
|
|
'0010,21B0' => { VR => 'LT', Name => 'AdditionalPatientHistory' }, |
|
470
|
|
|
|
|
|
|
'0010,21C0' => { VR => 'US', Name => 'PregnancyStatus' }, |
|
471
|
|
|
|
|
|
|
'0010,21D0' => { VR => 'DA', Name => 'LastMenstrualDate' }, |
|
472
|
|
|
|
|
|
|
'0010,21F0' => { VR => 'LO', Name => 'PatientReligiousPreference' }, |
|
473
|
|
|
|
|
|
|
'0010,2201' => { VR => 'LO', Name => 'PatientSpeciesDescription' }, |
|
474
|
|
|
|
|
|
|
'0010,2202' => { VR => 'SQ', Name => 'PatientSpeciesCodeSequence' }, |
|
475
|
|
|
|
|
|
|
'0010,2203' => { VR => 'CS', Name => 'PatientSexNeutered' }, |
|
476
|
|
|
|
|
|
|
'0010,2210' => { VR => 'CS', Name => 'AnatomicalOrientationType' }, |
|
477
|
|
|
|
|
|
|
'0010,2292' => { VR => 'LO', Name => 'PatientBreedDescription' }, |
|
478
|
|
|
|
|
|
|
'0010,2293' => { VR => 'SQ', Name => 'PatientBreedCodeSequence' }, |
|
479
|
|
|
|
|
|
|
'0010,2294' => { VR => 'SQ', Name => 'BreedRegistrationSequence' }, |
|
480
|
|
|
|
|
|
|
'0010,2295' => { VR => 'LO', Name => 'BreedRegistrationNumber' }, |
|
481
|
|
|
|
|
|
|
'0010,2296' => { VR => 'SQ', Name => 'BreedRegistryCodeSequence' }, |
|
482
|
|
|
|
|
|
|
'0010,2297' => { VR => 'PN', Name => 'ResponsiblePerson' }, |
|
483
|
|
|
|
|
|
|
'0010,2298' => { VR => 'CS', Name => 'ResponsiblePersonRole' }, |
|
484
|
|
|
|
|
|
|
'0010,2299' => { VR => 'LO', Name => 'ResponsibleOrganization' }, |
|
485
|
|
|
|
|
|
|
'0010,4000' => { VR => 'LT', Name => 'PatientComments' }, |
|
486
|
|
|
|
|
|
|
'0010,9431' => { VR => 'FL', Name => 'ExaminedBodyThickness' }, |
|
487
|
|
|
|
|
|
|
# GEMS_PATI_01 (ref 4) |
|
488
|
|
|
|
|
|
|
'0011,1010' => { VR => 'SS', Name => 'PatientStatus' }, |
|
489
|
|
|
|
|
|
|
# clinical trial group |
|
490
|
|
|
|
|
|
|
'0012,0010' => { VR => 'LO', Name => 'ClinicalTrialSponsorName' }, |
|
491
|
|
|
|
|
|
|
'0012,0020' => { VR => 'LO', Name => 'ClinicalTrialProtocolID' }, |
|
492
|
|
|
|
|
|
|
'0012,0021' => { VR => 'LO', Name => 'ClinicalTrialProtocolName' }, |
|
493
|
|
|
|
|
|
|
'0012,0022' => { VR => 'LO', Name => 'IssuerOfClinicalTrialProtocolID' }, |
|
494
|
|
|
|
|
|
|
'0012,0023' => { VR => 'SQ', Name => 'OtherClinicalTrialProtocolIDsSeq' }, |
|
495
|
|
|
|
|
|
|
'0012,0030' => { VR => 'LO', Name => 'ClinicalTrialSiteID' }, |
|
496
|
|
|
|
|
|
|
'0012,0031' => { VR => 'LO', Name => 'ClinicalTrialSiteName' }, |
|
497
|
|
|
|
|
|
|
'0012,0032' => { VR => 'LO', Name => 'IssuerOfClinicalTrialSiteID' }, |
|
498
|
|
|
|
|
|
|
'0012,0040' => { VR => 'LO', Name => 'ClinicalTrialSubjectID' }, |
|
499
|
|
|
|
|
|
|
'0012,0041' => { VR => 'LO', Name => 'IssuerOfClinicalTrialSubjectID' }, |
|
500
|
|
|
|
|
|
|
'0012,0042' => { VR => 'LO', Name => 'ClinicalTrialSubjectReadingID' }, |
|
501
|
|
|
|
|
|
|
'0012,0043' => { VR => 'LO', Name => 'ClinicalTrialIssuerSubjReadingID' }, |
|
502
|
|
|
|
|
|
|
'0012,0050' => { VR => 'LO', Name => 'ClinicalTrialTimePointID' }, |
|
503
|
|
|
|
|
|
|
'0012,0051' => { VR => 'ST', Name => 'ClinicalTrialTimePointDescription' }, |
|
504
|
|
|
|
|
|
|
'0012,0052' => { VR => 'FD', Name => 'LongitudTemporalOffsetFromEvent' }, |
|
505
|
|
|
|
|
|
|
'0012,0053' => { VR => 'CS', Name => 'LongitudinalTemporalEventType' }, |
|
506
|
|
|
|
|
|
|
'0012,0054' => { VR => 'SQ', Name => 'ClinicalTrialTimePointTypeCodeSeq' }, |
|
507
|
|
|
|
|
|
|
'0012,0055' => { VR => 'LO', Name => 'IssuerOfClinicalTrialTimePointID' }, |
|
508
|
|
|
|
|
|
|
'0012,0060' => { VR => 'LO', Name => 'ClinicalTrialCoordinatingCenter' }, |
|
509
|
|
|
|
|
|
|
'0012,0062' => { VR => 'CS', Name => 'PatientIdentityRemoved' }, |
|
510
|
|
|
|
|
|
|
'0012,0063' => { VR => 'LO', Name => 'DeidentificationMethod' }, |
|
511
|
|
|
|
|
|
|
'0012,0064' => { VR => 'SQ', Name => 'DeidentificationMethodCodeSequence' }, |
|
512
|
|
|
|
|
|
|
'0012,0071' => { VR => 'LO', Name => 'ClinicalTrialSeriesID' }, |
|
513
|
|
|
|
|
|
|
'0012,0072' => { VR => 'LO', Name => 'ClinicalTrialSeriesDescription' }, |
|
514
|
|
|
|
|
|
|
'0012,0073' => { VR => 'LO', Name => 'IssuerOfClinicalTrialSeriesID' }, |
|
515
|
|
|
|
|
|
|
'0012,0081' => { VR => 'LO', Name => 'ClinicalTrialProtoEthicsCommittee' }, |
|
516
|
|
|
|
|
|
|
'0012,0082' => { VR => 'LO', Name => 'ClinicalTrialEthicsCommApprovalNum' }, |
|
517
|
|
|
|
|
|
|
'0012,0083' => { VR => 'SQ', Name => 'ConsentForClinicalTrialUseSequence' }, |
|
518
|
|
|
|
|
|
|
'0012,0084' => { VR => 'CS', Name => 'DistributionType' }, |
|
519
|
|
|
|
|
|
|
'0012,0085' => { VR => 'CS', Name => 'ConsentForDistributionFlag' }, |
|
520
|
|
|
|
|
|
|
'0012,0086' => { VR => 'DA', Name => 'EthicsCommApprovalEffectStartDate' }, |
|
521
|
|
|
|
|
|
|
'0012,0087' => { VR => 'DA', Name => 'EthicsCommApprovalEffectEndDate' }, |
|
522
|
|
|
|
|
|
|
'0014,0023' => { VR => 'ST', Name => 'CADFileFormat' }, |
|
523
|
|
|
|
|
|
|
'0014,0024' => { VR => 'ST', Name => 'ComponentReferenceSystem' }, |
|
524
|
|
|
|
|
|
|
'0014,0025' => { VR => 'ST', Name => 'ComponentManufacturingProcedure' }, |
|
525
|
|
|
|
|
|
|
'0014,0028' => { VR => 'ST', Name => 'ComponentManufacturer' }, |
|
526
|
|
|
|
|
|
|
'0014,0030' => { VR => 'DS', Name => 'MaterialThickness' }, |
|
527
|
|
|
|
|
|
|
'0014,0032' => { VR => 'DS', Name => 'MaterialPipeDiameter' }, |
|
528
|
|
|
|
|
|
|
'0014,0034' => { VR => 'DS', Name => 'MaterialIsolationDiameter' }, |
|
529
|
|
|
|
|
|
|
'0014,0042' => { VR => 'ST', Name => 'MaterialGrade' }, |
|
530
|
|
|
|
|
|
|
'0014,0044' => { VR => 'ST', Name => 'MaterialPropertiesDescription' }, |
|
531
|
|
|
|
|
|
|
'0014,0045' => { VR => 'ST', Name => 'MaterialPropertiesFileFormat' }, |
|
532
|
|
|
|
|
|
|
'0014,0046' => { VR => 'LT', Name => 'MaterialNotes' }, |
|
533
|
|
|
|
|
|
|
'0014,0050' => { VR => 'CS', Name => 'ComponentShape' }, |
|
534
|
|
|
|
|
|
|
'0014,0052' => { VR => 'CS', Name => 'CurvatureType' }, |
|
535
|
|
|
|
|
|
|
'0014,0054' => { VR => 'DS', Name => 'OuterDiameter' }, |
|
536
|
|
|
|
|
|
|
'0014,0056' => { VR => 'DS', Name => 'InnerDiameter' }, |
|
537
|
|
|
|
|
|
|
'0014,0100' => { VR => 'LO', Name => 'ComponentWelderIDs' }, |
|
538
|
|
|
|
|
|
|
'0014,0101' => { VR => 'CS', Name => 'SecondaryApprovalStatus' }, |
|
539
|
|
|
|
|
|
|
'0014,0102' => { VR => 'DA', Name => 'SecondaryReviewDate' }, |
|
540
|
|
|
|
|
|
|
'0014,0103' => { VR => 'TM', Name => 'SecondaryReviewTime' }, |
|
541
|
|
|
|
|
|
|
'0014,0104' => { VR => 'PN', Name => 'SecondaryReviewerName' }, |
|
542
|
|
|
|
|
|
|
'0014,0105' => { VR => 'ST', Name => 'RepairID' }, |
|
543
|
|
|
|
|
|
|
'0014,0106' => { VR => 'SQ', Name => 'MultipleComponentApprovalSequence' }, |
|
544
|
|
|
|
|
|
|
'0014,0107' => { VR => 'CS', Name => 'OtherApprovalStatus' }, |
|
545
|
|
|
|
|
|
|
'0014,0108' => { VR => 'CS', Name => 'OtherSecondaryApprovalStatus' }, |
|
546
|
|
|
|
|
|
|
'0014,0200' => { VR => 'SQ', Name => 'DataElementLabelSequence' }, |
|
547
|
|
|
|
|
|
|
'0014,0201' => { VR => 'SQ', Name => 'DataElementLabelItemSequence' }, |
|
548
|
|
|
|
|
|
|
'0014,0202' => { VR => 'AT', Name => 'DataElement' }, |
|
549
|
|
|
|
|
|
|
'0014,0203' => { VR => 'LO', Name => 'DataElementName' }, |
|
550
|
|
|
|
|
|
|
'0014,0204' => { VR => 'LO', Name => 'DataElementDescription' }, |
|
551
|
|
|
|
|
|
|
'0014,0205' => { VR => 'CS', Name => 'DataElementConditionality' }, |
|
552
|
|
|
|
|
|
|
'0014,0206' => { VR => 'IS', Name => 'DataElementMinimumCharacters' }, |
|
553
|
|
|
|
|
|
|
'0014,0207' => { VR => 'IS', Name => 'DataElementMaximumCharacters' }, |
|
554
|
|
|
|
|
|
|
'0014,1010' => { VR => 'ST', Name => 'ActualEnvironmentalConditions' }, |
|
555
|
|
|
|
|
|
|
'0014,1020' => { VR => 'DA', Name => 'ExpiryDate' }, |
|
556
|
|
|
|
|
|
|
'0014,1040' => { VR => 'ST', Name => 'EnvironmentalConditions' }, |
|
557
|
|
|
|
|
|
|
'0014,2002' => { VR => 'SQ', Name => 'EvaluatorSequence' }, |
|
558
|
|
|
|
|
|
|
'0014,2004' => { VR => 'IS', Name => 'EvaluatorNumber' }, |
|
559
|
|
|
|
|
|
|
'0014,2006' => { VR => 'PN', Name => 'EvaluatorName' }, |
|
560
|
|
|
|
|
|
|
'0014,2008' => { VR => 'IS', Name => 'EvaluationAttempt' }, |
|
561
|
|
|
|
|
|
|
'0014,2012' => { VR => 'SQ', Name => 'IndicationSequence' }, |
|
562
|
|
|
|
|
|
|
'0014,2014' => { VR => 'IS', Name => 'IndicationNumber' }, |
|
563
|
|
|
|
|
|
|
'0014,2016' => { VR => 'SH', Name => 'IndicationLabel' }, |
|
564
|
|
|
|
|
|
|
'0014,2018' => { VR => 'ST', Name => 'IndicationDescription' }, |
|
565
|
|
|
|
|
|
|
'0014,201A' => { VR => 'CS', Name => 'IndicationType' }, |
|
566
|
|
|
|
|
|
|
'0014,201C' => { VR => 'CS', Name => 'IndicationDisposition' }, |
|
567
|
|
|
|
|
|
|
'0014,201E' => { VR => 'SQ', Name => 'IndicationROISequence' }, |
|
568
|
|
|
|
|
|
|
'0014,2030' => { VR => 'SQ', Name => 'IndicationPhysicalPropertySequence' }, |
|
569
|
|
|
|
|
|
|
'0014,2032' => { VR => 'SH', Name => 'PropertyLabel' }, |
|
570
|
|
|
|
|
|
|
'0014,2202' => { VR => 'IS', Name => 'CoordinateSystemNumberOfAxes' }, |
|
571
|
|
|
|
|
|
|
'0014,2204' => { VR => 'SQ', Name => 'CoordinateSystemAxesSequence' }, |
|
572
|
|
|
|
|
|
|
'0014,2206' => { VR => 'ST', Name => 'CoordinateSystemAxisDescription' }, |
|
573
|
|
|
|
|
|
|
'0014,2208' => { VR => 'CS', Name => 'CoordinateSystemDataSetMapping' }, |
|
574
|
|
|
|
|
|
|
'0014,220A' => { VR => 'IS', Name => 'CoordinateSystemAxisNumber' }, |
|
575
|
|
|
|
|
|
|
'0014,220C' => { VR => 'CS', Name => 'CoordinateSystemAxisType' }, |
|
576
|
|
|
|
|
|
|
'0014,220E' => { VR => 'CS', Name => 'CoordinateSystemAxisUnits' }, |
|
577
|
|
|
|
|
|
|
'0014,2210' => { VR => 'OB', Name => 'CoordinateSystemAxisValues' }, |
|
578
|
|
|
|
|
|
|
'0014,2220' => { VR => 'SQ', Name => 'CoordinateSystemTransformSequence' }, |
|
579
|
|
|
|
|
|
|
'0014,2222' => { VR => 'ST', Name => 'TransformDescription' }, |
|
580
|
|
|
|
|
|
|
'0014,2224' => { VR => 'IS', Name => 'TransformNumberOfAxes' }, |
|
581
|
|
|
|
|
|
|
'0014,2226' => { VR => 'IS', Name => 'TransformOrderOfAxes' }, |
|
582
|
|
|
|
|
|
|
'0014,2228' => { VR => 'CS', Name => 'TransformedAxisUnits' }, |
|
583
|
|
|
|
|
|
|
'0014,222A' => { VR => 'DS', Name => 'CoordinateTransformRotationMatrix' }, |
|
584
|
|
|
|
|
|
|
'0014,222C' => { VR => 'DS', Name => 'CoordinateTransformTranslateMatrix' }, |
|
585
|
|
|
|
|
|
|
'0014,3011' => { VR => 'DS', Name => 'InternalDetectorFrameTime' }, |
|
586
|
|
|
|
|
|
|
'0014,3012' => { VR => 'DS', Name => 'NumberOfFramesIntegrated' }, |
|
587
|
|
|
|
|
|
|
'0014,3020' => { VR => 'SQ', Name => 'DetectorTemperatureSequence' }, |
|
588
|
|
|
|
|
|
|
'0014,3022' => { VR => 'ST', Name => 'SensorName' }, |
|
589
|
|
|
|
|
|
|
'0014,3024' => { VR => 'DS', Name => 'HorizontalOffsetOfSensor' }, |
|
590
|
|
|
|
|
|
|
'0014,3026' => { VR => 'DS', Name => 'VerticalOffsetOfSensor' }, |
|
591
|
|
|
|
|
|
|
'0014,3028' => { VR => 'DS', Name => 'SensorTemperature' }, |
|
592
|
|
|
|
|
|
|
'0014,3040' => { VR => 'SQ', Name => 'DarkCurrentSequence' }, |
|
593
|
|
|
|
|
|
|
'0014,3050' => { VR => 'OB', Name => 'DarkCurrentCounts' }, |
|
594
|
|
|
|
|
|
|
'0014,3060' => { VR => 'SQ', Name => 'GainCorrectionReferenceSequence' }, |
|
595
|
|
|
|
|
|
|
'0014,3070' => { VR => 'OB', Name => 'AirCounts' }, |
|
596
|
|
|
|
|
|
|
'0014,3071' => { VR => 'DS', Name => 'KVUsedInGainCalibration' }, |
|
597
|
|
|
|
|
|
|
'0014,3072' => { VR => 'DS', Name => 'MAUsedInGainCalibration' }, |
|
598
|
|
|
|
|
|
|
'0014,3073' => { VR => 'DS', Name => 'NumberOfFramesUsedForIntegration' }, |
|
599
|
|
|
|
|
|
|
'0014,3074' => { VR => 'LO', Name => 'FilterMaterialUsedInGainCal' }, |
|
600
|
|
|
|
|
|
|
'0014,3075' => { VR => 'DS', Name => 'FilterThicknessUsedInGainCal' }, |
|
601
|
|
|
|
|
|
|
'0014,3076' => { VR => 'DA', Name => 'DateOfGainCalibration' }, |
|
602
|
|
|
|
|
|
|
'0014,3077' => { VR => 'TM', Name => 'TimeOfGainCalibration' }, |
|
603
|
|
|
|
|
|
|
'0014,3080' => { VR => 'OB', Name => 'BadPixelImage' }, |
|
604
|
|
|
|
|
|
|
'0014,3099' => { VR => 'LT', Name => 'CalibrationNotes' }, |
|
605
|
|
|
|
|
|
|
'0014,3100' => { VR => 'LT', Name => 'LinearityCorrectionTechnique' }, |
|
606
|
|
|
|
|
|
|
'0014,3101' => { VR => 'LT', Name => 'BeamHardeningCorrectionTechnique' }, |
|
607
|
|
|
|
|
|
|
'0014,4002' => { VR => 'SQ', Name => 'PulserEquipmentSequence' }, |
|
608
|
|
|
|
|
|
|
'0014,4004' => { VR => 'CS', Name => 'PulserType' }, |
|
609
|
|
|
|
|
|
|
'0014,4006' => { VR => 'LT', Name => 'PulserNotes' }, |
|
610
|
|
|
|
|
|
|
'0014,4008' => { VR => 'SQ', Name => 'ReceiverEquipmentSequence' }, |
|
611
|
|
|
|
|
|
|
'0014,400A' => { VR => 'CS', Name => 'AmplifierType' }, |
|
612
|
|
|
|
|
|
|
'0014,400C' => { VR => 'LT', Name => 'ReceiverNotes' }, |
|
613
|
|
|
|
|
|
|
'0014,400E' => { VR => 'SQ', Name => 'PreAmplifierEquipmentSequence' }, |
|
614
|
|
|
|
|
|
|
'0014,400F' => { VR => 'LT', Name => 'PreAmplifierNotes' }, |
|
615
|
|
|
|
|
|
|
'0014,4010' => { VR => 'SQ', Name => 'TransmitTransducerSequence' }, |
|
616
|
|
|
|
|
|
|
'0014,4011' => { VR => 'SQ', Name => 'ReceiveTransducerSequence' }, |
|
617
|
|
|
|
|
|
|
'0014,4012' => { VR => 'US', Name => 'NumberOfElements' }, |
|
618
|
|
|
|
|
|
|
'0014,4013' => { VR => 'CS', Name => 'ElementShape' }, |
|
619
|
|
|
|
|
|
|
'0014,4014' => { VR => 'DS', Name => 'ElementDimensionA' }, |
|
620
|
|
|
|
|
|
|
'0014,4015' => { VR => 'DS', Name => 'ElementDimensionB' }, |
|
621
|
|
|
|
|
|
|
'0014,4016' => { VR => 'DS', Name => 'ElementPitchA' }, |
|
622
|
|
|
|
|
|
|
'0014,4017' => { VR => 'DS', Name => 'MeasuredBeamDimensionA' }, |
|
623
|
|
|
|
|
|
|
'0014,4018' => { VR => 'DS', Name => 'MeasuredBeamDimensionB' }, |
|
624
|
|
|
|
|
|
|
'0014,4019' => { VR => 'DS', Name => 'LocationOfMeasuredBeamDiameter' }, |
|
625
|
|
|
|
|
|
|
'0014,401A' => { VR => 'DS', Name => 'NominalFrequency' }, |
|
626
|
|
|
|
|
|
|
'0014,401B' => { VR => 'DS', Name => 'MeasuredCenterFrequency' }, |
|
627
|
|
|
|
|
|
|
'0014,401C' => { VR => 'DS', Name => 'MeasuredBandwidth' }, |
|
628
|
|
|
|
|
|
|
'0014,401D' => { VR => 'DS', Name => 'ElementPitchB' }, |
|
629
|
|
|
|
|
|
|
'0014,4020' => { VR => 'SQ', Name => 'PulserSettingsSequence' }, |
|
630
|
|
|
|
|
|
|
'0014,4022' => { VR => 'DS', Name => 'PulseWidth' }, |
|
631
|
|
|
|
|
|
|
'0014,4024' => { VR => 'DS', Name => 'ExcitationFrequency' }, |
|
632
|
|
|
|
|
|
|
'0014,4026' => { VR => 'CS', Name => 'ModulationType' }, |
|
633
|
|
|
|
|
|
|
'0014,4028' => { VR => 'DS', Name => 'Damping' }, |
|
634
|
|
|
|
|
|
|
'0014,4030' => { VR => 'SQ', Name => 'ReceiverSettingsSequence' }, |
|
635
|
|
|
|
|
|
|
'0014,4031' => { VR => 'DS', Name => 'AcquiredSoundpathLength' }, |
|
636
|
|
|
|
|
|
|
'0014,4032' => { VR => 'CS', Name => 'AcquisitionCompressionType' }, |
|
637
|
|
|
|
|
|
|
'0014,4033' => { VR => 'IS', Name => 'AcquisitionSampleSize' }, |
|
638
|
|
|
|
|
|
|
'0014,4034' => { VR => 'DS', Name => 'RectifierSmoothing' }, |
|
639
|
|
|
|
|
|
|
'0014,4035' => { VR => 'SQ', Name => 'DACSequence' }, |
|
640
|
|
|
|
|
|
|
'0014,4036' => { VR => 'CS', Name => 'DACType' }, |
|
641
|
|
|
|
|
|
|
'0014,4038' => { VR => 'DS', Name => 'DACGainPoints' }, |
|
642
|
|
|
|
|
|
|
'0014,403A' => { VR => 'DS', Name => 'DACTimePoints' }, |
|
643
|
|
|
|
|
|
|
'0014,403C' => { VR => 'DS', Name => 'DACAmplitude' }, |
|
644
|
|
|
|
|
|
|
'0014,4040' => { VR => 'SQ', Name => 'PreAmplifierSettingsSequence' }, |
|
645
|
|
|
|
|
|
|
'0014,4050' => { VR => 'SQ', Name => 'TransmitTransducerSettingsSequence' }, |
|
646
|
|
|
|
|
|
|
'0014,4051' => { VR => 'SQ', Name => 'ReceiveTransducerSettingsSequence' }, |
|
647
|
|
|
|
|
|
|
'0014,4052' => { VR => 'DS', Name => 'IncidentAngle' }, |
|
648
|
|
|
|
|
|
|
'0014,4054' => { VR => 'ST', Name => 'CouplingTechnique' }, |
|
649
|
|
|
|
|
|
|
'0014,4056' => { VR => 'ST', Name => 'CouplingMedium' }, |
|
650
|
|
|
|
|
|
|
'0014,4057' => { VR => 'DS', Name => 'CouplingVelocity' }, |
|
651
|
|
|
|
|
|
|
'0014,4058' => { VR => 'DS', Name => 'ProbeCenterLocationX' }, |
|
652
|
|
|
|
|
|
|
'0014,4059' => { VR => 'DS', Name => 'ProbeCenterLocationZ' }, |
|
653
|
|
|
|
|
|
|
'0014,405A' => { VR => 'DS', Name => 'SoundPathLength' }, |
|
654
|
|
|
|
|
|
|
'0014,405C' => { VR => 'ST', Name => 'DelayLawIdentifier' }, |
|
655
|
|
|
|
|
|
|
'0014,4060' => { VR => 'SQ', Name => 'GateSettingsSequence' }, |
|
656
|
|
|
|
|
|
|
'0014,4062' => { VR => 'DS', Name => 'GateThreshold' }, |
|
657
|
|
|
|
|
|
|
'0014,4064' => { VR => 'DS', Name => 'VelocityOfSound' }, |
|
658
|
|
|
|
|
|
|
'0014,4070' => { VR => 'SQ', Name => 'CalibrationSettingsSequence' }, |
|
659
|
|
|
|
|
|
|
'0014,4072' => { VR => 'ST', Name => 'CalibrationProcedure' }, |
|
660
|
|
|
|
|
|
|
'0014,4074' => { VR => 'SH', Name => 'ProcedureVersion' }, |
|
661
|
|
|
|
|
|
|
'0014,4076' => { VR => 'DA', Name => 'ProcedureCreationDate' }, |
|
662
|
|
|
|
|
|
|
'0014,4078' => { VR => 'DA', Name => 'ProcedureExpirationDate' }, |
|
663
|
|
|
|
|
|
|
'0014,407A' => { VR => 'DA', Name => 'ProcedureLastModifiedDate' }, |
|
664
|
|
|
|
|
|
|
'0014,407C' => { VR => 'TM', Name => 'CalibrationTime' }, |
|
665
|
|
|
|
|
|
|
'0014,407E' => { VR => 'DA', Name => 'CalibrationDate' }, |
|
666
|
|
|
|
|
|
|
'0014,4080' => { VR => 'SQ', Name => 'ProbeDriveEquipmentSequence' }, |
|
667
|
|
|
|
|
|
|
'0014,4081' => { VR => 'CS', Name => 'DriveType' }, |
|
668
|
|
|
|
|
|
|
'0014,4082' => { VR => 'LT', Name => 'ProbeDriveNotes' }, |
|
669
|
|
|
|
|
|
|
'0014,4083' => { VR => 'SQ', Name => 'DriveProbeSequence' }, |
|
670
|
|
|
|
|
|
|
'0014,4084' => { VR => 'DS', Name => 'ProbeInductance' }, |
|
671
|
|
|
|
|
|
|
'0014,4085' => { VR => 'DS', Name => 'ProbeResistance' }, |
|
672
|
|
|
|
|
|
|
'0014,4086' => { VR => 'SQ', Name => 'ReceiveProbeSequence' }, |
|
673
|
|
|
|
|
|
|
'0014,4087' => { VR => 'SQ', Name => 'ProbeDriveSettingsSequence' }, |
|
674
|
|
|
|
|
|
|
'0014,4088' => { VR => 'DS', Name => 'BridgeResistors' }, |
|
675
|
|
|
|
|
|
|
'0014,4089' => { VR => 'DS', Name => 'ProbeOrientationAngle' }, |
|
676
|
|
|
|
|
|
|
'0014,408B' => { VR => 'DS', Name => 'UserSelectedGainY' }, |
|
677
|
|
|
|
|
|
|
'0014,408C' => { VR => 'DS', Name => 'UserSelectedPhase' }, |
|
678
|
|
|
|
|
|
|
'0014,408D' => { VR => 'DS', Name => 'UserSelectedOffsetX' }, |
|
679
|
|
|
|
|
|
|
'0014,408E' => { VR => 'DS', Name => 'UserSelectedOffsetY' }, |
|
680
|
|
|
|
|
|
|
'0014,4091' => { VR => 'SQ', Name => 'ChannelSettingsSequence' }, |
|
681
|
|
|
|
|
|
|
'0014,4092' => { VR => 'DS', Name => 'ChannelThreshold' }, |
|
682
|
|
|
|
|
|
|
'0014,409A' => { VR => 'SQ', Name => 'ScannerSettingsSequence' }, |
|
683
|
|
|
|
|
|
|
'0014,409B' => { VR => 'ST', Name => 'ScanProcedure' }, |
|
684
|
|
|
|
|
|
|
'0014,409C' => { VR => 'DS', Name => 'TranslationRateX' }, |
|
685
|
|
|
|
|
|
|
'0014,409D' => { VR => 'DS', Name => 'TranslationRateY' }, |
|
686
|
|
|
|
|
|
|
'0014,409F' => { VR => 'DS', Name => 'ChannelOverlap' }, |
|
687
|
|
|
|
|
|
|
'0014,40A0' => { VR => 'LO', Name => 'ImageQualityIndicatorType' }, |
|
688
|
|
|
|
|
|
|
'0014,40A1' => { VR => 'LO', Name => 'ImageQualityIndicatorMaterial' }, |
|
689
|
|
|
|
|
|
|
'0014,40A2' => { VR => 'LO', Name => 'ImageQualityIndicatorSize' }, |
|
690
|
|
|
|
|
|
|
'0014,4101' => { VR => 'SQ', Name => 'WaveDimensionsDefinitionSequence' }, |
|
691
|
|
|
|
|
|
|
'0014,4102' => { VR => 'US', Name => 'WaveDimensionNumber' }, |
|
692
|
|
|
|
|
|
|
'0014,4103' => { VR => 'LO', Name => 'WaveDimensionDescription' }, |
|
693
|
|
|
|
|
|
|
'0014,4104' => { VR => 'US', Name => 'WaveDimensionUnit' }, |
|
694
|
|
|
|
|
|
|
'0014,4105' => { VR => 'CS', Name => 'WaveDimensionValueType' }, |
|
695
|
|
|
|
|
|
|
'0014,4106' => { VR => 'SQ', Name => 'WaveDimensionValuesSequence' }, |
|
696
|
|
|
|
|
|
|
'0014,4107' => { VR => 'US', Name => 'ReferencedWaveDimension' }, |
|
697
|
|
|
|
|
|
|
'0014,4108' => { VR => 'SL', Name => 'IntegerNumericValue' }, |
|
698
|
|
|
|
|
|
|
'0014,4109' => { VR => 'OB', Name => 'ByteNumericValue' }, |
|
699
|
|
|
|
|
|
|
'0014,410A' => { VR => 'OW', Name => 'ShortNumericValue' }, |
|
700
|
|
|
|
|
|
|
'0014,410B' => { VR => 'OF', Name => 'SinglePrecisionFloatingPointValue' }, |
|
701
|
|
|
|
|
|
|
'0014,410C' => { VR => 'OD', Name => 'DoublePrecisionFloatingPointValue' }, |
|
702
|
|
|
|
|
|
|
'0014,5002' => { VR => 'IS', Name => 'LINACEnergy' }, |
|
703
|
|
|
|
|
|
|
'0014,5004' => { VR => 'IS', Name => 'LINACOutput' }, |
|
704
|
|
|
|
|
|
|
'0014,5100' => { VR => 'US', Name => 'ActiveAperture' }, |
|
705
|
|
|
|
|
|
|
'0014,5101' => { VR => 'DS', Name => 'TotalAperture' }, |
|
706
|
|
|
|
|
|
|
'0014,5102' => { VR => 'DS', Name => 'ApertureElevation' }, |
|
707
|
|
|
|
|
|
|
'0014,5103' => { VR => 'DS', Name => 'MainLobeAngle' }, |
|
708
|
|
|
|
|
|
|
'0014,5104' => { VR => 'DS', Name => 'MainRoofAngle' }, |
|
709
|
|
|
|
|
|
|
'0014,5105' => { VR => 'CS', Name => 'ConnectorType' }, |
|
710
|
|
|
|
|
|
|
'0014,5106' => { VR => 'SH', Name => 'WedgeModelNumber' }, |
|
711
|
|
|
|
|
|
|
'0014,5107' => { VR => 'DS', Name => 'WedgeAngleFloat' }, |
|
712
|
|
|
|
|
|
|
'0014,5108' => { VR => 'DS', Name => 'WedgeRoofAngle' }, |
|
713
|
|
|
|
|
|
|
'0014,5109' => { VR => 'CS', Name => 'WedgeElement1Position' }, |
|
714
|
|
|
|
|
|
|
'0014,510A' => { VR => 'DS', Name => 'WedgeMaterialVelocity' }, |
|
715
|
|
|
|
|
|
|
'0014,510B' => { VR => 'SH', Name => 'WedgeMaterial' }, |
|
716
|
|
|
|
|
|
|
'0014,510C' => { VR => 'DS', Name => 'WedgeOffsetZ' }, |
|
717
|
|
|
|
|
|
|
'0014,510D' => { VR => 'DS', Name => 'WedgeOriginOffsetX' }, |
|
718
|
|
|
|
|
|
|
'0014,510E' => { VR => 'DS', Name => 'WedgeTimeDelay' }, |
|
719
|
|
|
|
|
|
|
'0014,510F' => { VR => 'SH', Name => 'WedgeName' }, |
|
720
|
|
|
|
|
|
|
'0014,5110' => { VR => 'SH', Name => 'WedgeManufacturerName' }, |
|
721
|
|
|
|
|
|
|
'0014,5111' => { VR => 'LO', Name => 'WedgeDescription' }, |
|
722
|
|
|
|
|
|
|
'0014,5112' => { VR => 'DS', Name => 'NominalBeamAngle' }, |
|
723
|
|
|
|
|
|
|
'0014,5113' => { VR => 'DS', Name => 'WedgeOffsetX' }, |
|
724
|
|
|
|
|
|
|
'0014,5114' => { VR => 'DS', Name => 'WedgeOffsetY' }, |
|
725
|
|
|
|
|
|
|
'0014,5115' => { VR => 'DS', Name => 'WedgeTotalLength' }, |
|
726
|
|
|
|
|
|
|
'0014,5116' => { VR => 'DS', Name => 'WedgeInContactLength' }, |
|
727
|
|
|
|
|
|
|
'0014,5117' => { VR => 'DS', Name => 'WedgeFrontGap' }, |
|
728
|
|
|
|
|
|
|
'0014,5118' => { VR => 'DS', Name => 'WedgeTotalHeight' }, |
|
729
|
|
|
|
|
|
|
'0014,5119' => { VR => 'DS', Name => 'WedgeFrontHeight' }, |
|
730
|
|
|
|
|
|
|
'0014,511A' => { VR => 'DS', Name => 'WedgeRearHeight' }, |
|
731
|
|
|
|
|
|
|
'0014,511B' => { VR => 'DS', Name => 'WedgeTotalWidth' }, |
|
732
|
|
|
|
|
|
|
'0014,511C' => { VR => 'DS', Name => 'WedgeInContactWidth' }, |
|
733
|
|
|
|
|
|
|
'0014,511D' => { VR => 'DS', Name => 'WedgeChamferHeight' }, |
|
734
|
|
|
|
|
|
|
'0014,511E' => { VR => 'CS', Name => 'WedgeCurve' }, |
|
735
|
|
|
|
|
|
|
'0014,511F' => { VR => 'DS', Name => 'RadiusAlongWedge' }, |
|
736
|
|
|
|
|
|
|
'0014,6001' => { VR => 'SQ', Name => 'ThermalCameraSettingsSequence' }, |
|
737
|
|
|
|
|
|
|
'0014,6002' => { VR => 'DS', Name => 'AcquisitionFrameRate' }, |
|
738
|
|
|
|
|
|
|
'0014,6003' => { VR => 'DS', Name => 'IntegrationTime' }, |
|
739
|
|
|
|
|
|
|
'0014,6004' => { VR => 'DS', Name => 'NumberOfCalibrationFrames' }, |
|
740
|
|
|
|
|
|
|
'0014,6005' => { VR => 'DS', Name => 'NumberOfRowsInFullAcquisitionImage' }, |
|
741
|
|
|
|
|
|
|
'0014,6006' => { VR => 'DS', Name => 'NumberOfColumnsInFullAcqImage' }, |
|
742
|
|
|
|
|
|
|
'0014,6007' => { VR => 'SQ', Name => 'ThermalSourceSettingsSequence' }, |
|
743
|
|
|
|
|
|
|
'0014,6008' => { VR => 'DS', Name => 'SourceHorizontalPitch' }, |
|
744
|
|
|
|
|
|
|
'0014,6009' => { VR => 'DS', Name => 'SourceVerticalPitch' }, |
|
745
|
|
|
|
|
|
|
'0014,600A' => { VR => 'DS', Name => 'SourceHorizontalScanSpeed' }, |
|
746
|
|
|
|
|
|
|
'0014,600B' => { VR => 'DS', Name => 'ThermalSourceModulationFrequency' }, |
|
747
|
|
|
|
|
|
|
'0014,600C' => { VR => 'SQ', Name => 'InductionSourceSettingSequence' }, |
|
748
|
|
|
|
|
|
|
'0014,600D' => { VR => 'DS', Name => 'CoilFrequency' }, |
|
749
|
|
|
|
|
|
|
'0014,600E' => { VR => 'DS', Name => 'CurrentAmplitudeAcrossCoil' }, |
|
750
|
|
|
|
|
|
|
'0014,600F' => { VR => 'SQ', Name => 'FlashSourceSettingSequence' }, |
|
751
|
|
|
|
|
|
|
'0014,6010' => { VR => 'DS', Name => 'FlashDuration' }, |
|
752
|
|
|
|
|
|
|
'0014,6011' => { VR => 'DS', Name => 'FlashFrameNumber' }, |
|
753
|
|
|
|
|
|
|
'0014,6012' => { VR => 'SQ', Name => 'LaserSourceSettingSequence' }, |
|
754
|
|
|
|
|
|
|
'0014,6013' => { VR => 'DS', Name => 'HorizontalLaserSpotDimension' }, |
|
755
|
|
|
|
|
|
|
'0014,6014' => { VR => 'DS', Name => 'VerticalLaserSpotDimension' }, |
|
756
|
|
|
|
|
|
|
'0014,6015' => { VR => 'DS', Name => 'LaserWavelength' }, |
|
757
|
|
|
|
|
|
|
'0014,6016' => { VR => 'DS', Name => 'LaserPower' }, |
|
758
|
|
|
|
|
|
|
'0014,6017' => { VR => 'SQ', Name => 'ForcedGasSettingSequence' }, |
|
759
|
|
|
|
|
|
|
'0014,6018' => { VR => 'SQ', Name => 'VibrationSourceSettingSequence' }, |
|
760
|
|
|
|
|
|
|
'0014,6019' => { VR => 'DS', Name => 'VibrationExcitationFrequency' }, |
|
761
|
|
|
|
|
|
|
'0014,601A' => { VR => 'DS', Name => 'VibrationExcitationVoltage' }, |
|
762
|
|
|
|
|
|
|
'0014,601B' => { VR => 'CS', Name => 'ThermographyDataCaptureMethod' }, |
|
763
|
|
|
|
|
|
|
'0014,601C' => { VR => 'CS', Name => 'ThermalTechnique' }, |
|
764
|
|
|
|
|
|
|
'0014,601D' => { VR => 'SQ', Name => 'ThermalCameraCoreSequence' }, |
|
765
|
|
|
|
|
|
|
'0014,601E' => { VR => 'CS', Name => 'DetectorWavelengthRange' }, |
|
766
|
|
|
|
|
|
|
'0014,601F' => { VR => 'CS', Name => 'ThermalCameraCalibrationType' }, |
|
767
|
|
|
|
|
|
|
'0014,6020' => { VR => 'UV', Name => 'AcquisitionImageCounter' }, |
|
768
|
|
|
|
|
|
|
'0014,6021' => { VR => 'DS', Name => 'FrontPanelTemperature' }, |
|
769
|
|
|
|
|
|
|
'0014,6022' => { VR => 'DS', Name => 'AirGapTemperature' }, |
|
770
|
|
|
|
|
|
|
'0014,6023' => { VR => 'DS', Name => 'VerticalPixelSize' }, |
|
771
|
|
|
|
|
|
|
'0014,6024' => { VR => 'DS', Name => 'HorizontalPixelSize' }, |
|
772
|
|
|
|
|
|
|
'0014,6025' => { VR => 'ST', Name => 'DataStreamingProtocol' }, |
|
773
|
|
|
|
|
|
|
'0014,6026' => { VR => 'SQ', Name => 'LensSequence' }, |
|
774
|
|
|
|
|
|
|
'0014,6027' => { VR => 'DS', Name => 'FieldOfView' }, |
|
775
|
|
|
|
|
|
|
'0014,6028' => { VR => 'LO', Name => 'LensFilterManufacturer' }, |
|
776
|
|
|
|
|
|
|
'0014,6029' => { VR => 'CS', Name => 'CutoffFilterType' }, |
|
777
|
|
|
|
|
|
|
'0014,602A' => { VR => 'DS', Name => 'LensFilterCutOffWavelength' }, |
|
778
|
|
|
|
|
|
|
'0014,602B' => { VR => 'SQ', Name => 'ThermalSourceSequence' }, |
|
779
|
|
|
|
|
|
|
'0014,602C' => { VR => 'CS', Name => 'ThermalSourceMotionState' }, |
|
780
|
|
|
|
|
|
|
'0014,602D' => { VR => 'CS', Name => 'ThermalSourceMotionType' }, |
|
781
|
|
|
|
|
|
|
'0014,602E' => { VR => 'SQ', Name => 'InductionHeatingSequence' }, |
|
782
|
|
|
|
|
|
|
'0014,602F' => { VR => 'ST', Name => 'CoilConfigurationID' }, |
|
783
|
|
|
|
|
|
|
'0014,6030' => { VR => 'DS', Name => 'NumberOfTurnsInCoil' }, |
|
784
|
|
|
|
|
|
|
'0014,6031' => { VR => 'CS', Name => 'ShapeOfIndividualTurn' }, |
|
785
|
|
|
|
|
|
|
'0014,6032' => { VR => 'DS', Name => 'SizeOfIndividualTurn' }, |
|
786
|
|
|
|
|
|
|
'0014,6033' => { VR => 'DS', Name => 'DistanceBetweenTurns' }, |
|
787
|
|
|
|
|
|
|
'0014,6034' => { VR => 'SQ', Name => 'FlashHeatingSequence' }, |
|
788
|
|
|
|
|
|
|
'0014,6035' => { VR => 'DS', Name => 'NumberOfLamps' }, |
|
789
|
|
|
|
|
|
|
'0014,6036' => { VR => 'ST', Name => 'FlashSynchronizationProtocol' }, |
|
790
|
|
|
|
|
|
|
'0014,6037' => { VR => 'CS', Name => 'FlashModificationStatus' }, |
|
791
|
|
|
|
|
|
|
'0014,6038' => { VR => 'SQ', Name => 'LaserHeatingSequence' }, |
|
792
|
|
|
|
|
|
|
'0014,6039' => { VR => 'LO', Name => 'LaserManufacturer' }, |
|
793
|
|
|
|
|
|
|
'0014,603A' => { VR => 'LO', Name => 'LaserModelNumber' }, |
|
794
|
|
|
|
|
|
|
'0014,603B' => { VR => 'ST', Name => 'LaserTypeDescription' }, |
|
795
|
|
|
|
|
|
|
'0014,603C' => { VR => 'SQ', Name => 'ForcedGasHeatingSequence' }, |
|
796
|
|
|
|
|
|
|
'0014,603D' => { VR => 'LO', Name => 'GasUsedForHeatingCoolingPart' }, |
|
797
|
|
|
|
|
|
|
'0014,603E' => { VR => 'SQ', Name => 'VibrationSonicHeatingSequence' }, |
|
798
|
|
|
|
|
|
|
'0014,603F' => { VR => 'LO', Name => 'ProbeManufacturer' }, |
|
799
|
|
|
|
|
|
|
'0014,6040' => { VR => 'LO', Name => 'ProbeModelNumber' }, |
|
800
|
|
|
|
|
|
|
'0014,6041' => { VR => 'DS', Name => 'ApertureSize' }, |
|
801
|
|
|
|
|
|
|
'0014,6042' => { VR => 'DS', Name => 'ProbeResonantFrequency' }, |
|
802
|
|
|
|
|
|
|
'0014,6043' => { VR => 'UT', Name => 'HeatSourceDescription' }, |
|
803
|
|
|
|
|
|
|
'0014,6044' => { VR => 'CS', Name => 'SurfacePrepWithOpticalCoating' }, |
|
804
|
|
|
|
|
|
|
'0014,6045' => { VR => 'ST', Name => 'OpticalCoatingType' }, |
|
805
|
|
|
|
|
|
|
'0014,6046' => { VR => 'DS', Name => 'ThermalConductivityExposedSurface' }, |
|
806
|
|
|
|
|
|
|
'0014,6047' => { VR => 'DS', Name => 'MaterialDensity' }, |
|
807
|
|
|
|
|
|
|
'0014,6048' => { VR => 'DS', Name => 'SpecificHeatOfInspectionSurface' }, |
|
808
|
|
|
|
|
|
|
'0014,6049' => { VR => 'DS', Name => 'EmissivityOfInspectionSurface' }, |
|
809
|
|
|
|
|
|
|
'0014,604A' => { VR => 'CS', Name => 'ElectromagneticClassInspectSurface' }, |
|
810
|
|
|
|
|
|
|
'0014,604C' => { VR => 'DS', Name => 'MovingWindowSize' }, |
|
811
|
|
|
|
|
|
|
'0014,604D' => { VR => 'CS', Name => 'MovingWindowType' }, |
|
812
|
|
|
|
|
|
|
'0014,604E' => { VR => 'DS', Name => 'MovingWindowWeights' }, |
|
813
|
|
|
|
|
|
|
'0014,604F' => { VR => 'DS', Name => 'MovingWindowPitch' }, |
|
814
|
|
|
|
|
|
|
'0014,6050' => { VR => 'CS', Name => 'MovingWindowPaddingScheme' }, |
|
815
|
|
|
|
|
|
|
'0014,6051' => { VR => 'DS', Name => 'MovingWindowPaddingLength' }, |
|
816
|
|
|
|
|
|
|
'0014,6052' => { VR => 'SQ', Name => 'SpatialFilteringParametersSequence' }, |
|
817
|
|
|
|
|
|
|
'0014,6053' => { VR => 'CS', Name => 'SpatialFilteringScheme' }, |
|
818
|
|
|
|
|
|
|
'0014,6056' => { VR => 'DS', Name => 'HorizontalMovingWindowSize' }, |
|
819
|
|
|
|
|
|
|
'0014,6057' => { VR => 'DS', Name => 'VerticalMovingWindowSize' }, |
|
820
|
|
|
|
|
|
|
'0014,6059' => { VR => 'SQ', Name => 'PolynomialFittingSequence' }, |
|
821
|
|
|
|
|
|
|
'0014,605A' => { VR => 'CS', Name => 'FittingDataType' }, |
|
822
|
|
|
|
|
|
|
'0014,605B' => { VR => 'CS', Name => 'OperationOnTimeAxisBeforeFitting' }, |
|
823
|
|
|
|
|
|
|
'0014,605C' => { VR => 'CS', Name => 'OperationPixelIntensBeforeFitting' }, |
|
824
|
|
|
|
|
|
|
'0014,605D' => { VR => 'DS', Name => 'OrderOfPolynomial' }, |
|
825
|
|
|
|
|
|
|
'0014,605E' => { VR => 'CS', Name => 'IndependentVariableForPolyFit' }, |
|
826
|
|
|
|
|
|
|
'0014,605F' => { VR => 'DS', Name => 'PolynomialCoefficients' }, |
|
827
|
|
|
|
|
|
|
'0014,6060' => { VR => 'CS', Name => 'ThermographyPixelDataUnit' }, |
|
828
|
|
|
|
|
|
|
'0016,0001' => { VR => 'DS', Name => 'WhitePoint' }, |
|
829
|
|
|
|
|
|
|
'0016,0002' => { VR => 'DS', Name => 'PrimaryChromaticities' }, |
|
830
|
|
|
|
|
|
|
'0016,0003' => { VR => 'UT', Name => 'BatteryLevel' }, |
|
831
|
|
|
|
|
|
|
'0016,0004' => { VR => 'DS', Name => 'ExposureTimeInSeconds' }, |
|
832
|
|
|
|
|
|
|
'0016,0005' => { VR => 'DS', Name => 'FNumber' }, |
|
833
|
|
|
|
|
|
|
'0016,0006' => { VR => 'IS', Name => 'OECFRows' }, |
|
834
|
|
|
|
|
|
|
'0016,0007' => { VR => 'IS', Name => 'OECFColumns' }, |
|
835
|
|
|
|
|
|
|
'0016,0008' => { VR => 'UC', Name => 'OECFColumnNames' }, |
|
836
|
|
|
|
|
|
|
'0016,0009' => { VR => 'DS', Name => 'OECFValues' }, |
|
837
|
|
|
|
|
|
|
'0016,000A' => { VR => 'IS', Name => 'SpatialFrequencyResponseRows' }, |
|
838
|
|
|
|
|
|
|
'0016,000B' => { VR => 'IS', Name => 'SpatialFrequencyResponseColumns' }, |
|
839
|
|
|
|
|
|
|
'0016,000C' => { VR => 'UC', Name => 'SpatialFrequencyRespColumnNames' }, |
|
840
|
|
|
|
|
|
|
'0016,000D' => { VR => 'DS', Name => 'SpatialFrequencyResponseValues' }, |
|
841
|
|
|
|
|
|
|
'0016,000E' => { VR => 'IS', Name => 'ColorFilterArrayPatternRows' }, |
|
842
|
|
|
|
|
|
|
'0016,000F' => { VR => 'IS', Name => 'ColorFilterArrayPatternColumns' }, |
|
843
|
|
|
|
|
|
|
'0016,0010' => { VR => 'DS', Name => 'ColorFilterArrayPatternValues' }, |
|
844
|
|
|
|
|
|
|
'0016,0011' => { VR => 'US', Name => 'FlashFiringStatus' }, |
|
845
|
|
|
|
|
|
|
'0016,0012' => { VR => 'US', Name => 'FlashReturnStatus' }, |
|
846
|
|
|
|
|
|
|
'0016,0013' => { VR => 'US', Name => 'FlashMode' }, |
|
847
|
|
|
|
|
|
|
'0016,0014' => { VR => 'US', Name => 'FlashFunctionPresent' }, |
|
848
|
|
|
|
|
|
|
'0016,0015' => { VR => 'US', Name => 'FlashRedEyeMode' }, |
|
849
|
|
|
|
|
|
|
'0016,0016' => { VR => 'US', Name => 'ExposureProgram' }, |
|
850
|
|
|
|
|
|
|
'0016,0017' => { VR => 'UT', Name => 'SpectralSensitivity' }, |
|
851
|
|
|
|
|
|
|
'0016,0018' => { VR => 'IS', Name => 'PhotographicSensitivity' }, |
|
852
|
|
|
|
|
|
|
'0016,0019' => { VR => 'IS', Name => 'SelfTimerMode' }, |
|
853
|
|
|
|
|
|
|
'0016,001A' => { VR => 'US', Name => 'SensitivityType' }, |
|
854
|
|
|
|
|
|
|
'0016,001B' => { VR => 'IS', Name => 'StandardOutputSensitivity' }, |
|
855
|
|
|
|
|
|
|
'0016,001C' => { VR => 'IS', Name => 'RecommendedExposureIndex' }, |
|
856
|
|
|
|
|
|
|
'0016,001D' => { VR => 'IS', Name => 'ISOSpeed' }, |
|
857
|
|
|
|
|
|
|
'0016,001E' => { VR => 'IS', Name => 'ISOSpeedLatitudeyyy' }, |
|
858
|
|
|
|
|
|
|
'0016,001F' => { VR => 'IS', Name => 'ISOSpeedLatitudezzz' }, |
|
859
|
|
|
|
|
|
|
'0016,0020' => { VR => 'UT', Name => 'ExifVersion' }, |
|
860
|
|
|
|
|
|
|
'0016,0021' => { VR => 'DS', Name => 'ShutterSpeedValue' }, |
|
861
|
|
|
|
|
|
|
'0016,0022' => { VR => 'DS', Name => 'ApertureValue' }, |
|
862
|
|
|
|
|
|
|
'0016,0023' => { VR => 'DS', Name => 'BrightnessValue' }, |
|
863
|
|
|
|
|
|
|
'0016,0024' => { VR => 'DS', Name => 'ExposureBiasValue' }, |
|
864
|
|
|
|
|
|
|
'0016,0025' => { VR => 'DS', Name => 'MaxApertureValue' }, |
|
865
|
|
|
|
|
|
|
'0016,0026' => { VR => 'DS', Name => 'SubjectDistance' }, |
|
866
|
|
|
|
|
|
|
'0016,0027' => { VR => 'US', Name => 'MeteringMode' }, |
|
867
|
|
|
|
|
|
|
'0016,0028' => { VR => 'US', Name => 'LightSource' }, |
|
868
|
|
|
|
|
|
|
'0016,0029' => { VR => 'DS', Name => 'FocalLength' }, |
|
869
|
|
|
|
|
|
|
'0016,002A' => { VR => 'IS', Name => 'SubjectArea' }, |
|
870
|
|
|
|
|
|
|
'0016,002B' => { VR => 'OB', Name => 'MakerNote' }, |
|
871
|
|
|
|
|
|
|
'0016,0030' => { VR => 'DS', Name => 'Temperature' }, |
|
872
|
|
|
|
|
|
|
'0016,0031' => { VR => 'DS', Name => 'Humidity' }, |
|
873
|
|
|
|
|
|
|
'0016,0032' => { VR => 'DS', Name => 'Pressure' }, |
|
874
|
|
|
|
|
|
|
'0016,0033' => { VR => 'DS', Name => 'WaterDepth' }, |
|
875
|
|
|
|
|
|
|
'0016,0034' => { VR => 'DS', Name => 'Acceleration' }, |
|
876
|
|
|
|
|
|
|
'0016,0035' => { VR => 'DS', Name => 'CameraElevationAngle' }, |
|
877
|
|
|
|
|
|
|
'0016,0036' => { VR => 'DS', Name => 'FlashEnergy' }, |
|
878
|
|
|
|
|
|
|
'0016,0037' => { VR => 'IS', Name => 'SubjectLocation' }, |
|
879
|
|
|
|
|
|
|
'0016,0038' => { VR => 'DS', Name => 'PhotographicExposureIndex' }, |
|
880
|
|
|
|
|
|
|
'0016,0039' => { VR => 'US', Name => 'SensingMethod' }, |
|
881
|
|
|
|
|
|
|
'0016,003A' => { VR => 'US', Name => 'FileSource' }, |
|
882
|
|
|
|
|
|
|
'0016,003B' => { VR => 'US', Name => 'SceneType' }, |
|
883
|
|
|
|
|
|
|
'0016,0041' => { VR => 'US', Name => 'CustomRendered' }, |
|
884
|
|
|
|
|
|
|
'0016,0042' => { VR => 'US', Name => 'ExposureMode' }, |
|
885
|
|
|
|
|
|
|
'0016,0043' => { VR => 'US', Name => 'WhiteBalance' }, |
|
886
|
|
|
|
|
|
|
'0016,0044' => { VR => 'DS', Name => 'DigitalZoomRatio' }, |
|
887
|
|
|
|
|
|
|
'0016,0045' => { VR => 'IS', Name => 'FocalLengthIn35mmFilm' }, |
|
888
|
|
|
|
|
|
|
'0016,0046' => { VR => 'US', Name => 'SceneCaptureType' }, |
|
889
|
|
|
|
|
|
|
'0016,0047' => { VR => 'US', Name => 'GainControl' }, |
|
890
|
|
|
|
|
|
|
'0016,0048' => { VR => 'US', Name => 'Contrast' }, |
|
891
|
|
|
|
|
|
|
'0016,0049' => { VR => 'US', Name => 'Saturation' }, |
|
892
|
|
|
|
|
|
|
'0016,004A' => { VR => 'US', Name => 'Sharpness' }, |
|
893
|
|
|
|
|
|
|
'0016,004B' => { VR => 'OB', Name => 'DeviceSettingDescription' }, |
|
894
|
|
|
|
|
|
|
'0016,004C' => { VR => 'US', Name => 'SubjectDistanceRange' }, |
|
895
|
|
|
|
|
|
|
'0016,004D' => { VR => 'UT', Name => 'CameraOwnerName' }, |
|
896
|
|
|
|
|
|
|
'0016,004E' => { VR => 'DS', Name => 'LensSpecification' }, |
|
897
|
|
|
|
|
|
|
'0016,004F' => { VR => 'UT', Name => 'LensMake' }, |
|
898
|
|
|
|
|
|
|
'0016,0050' => { VR => 'UT', Name => 'LensModel' }, |
|
899
|
|
|
|
|
|
|
'0016,0051' => { VR => 'UT', Name => 'LensSerialNumber' }, |
|
900
|
|
|
|
|
|
|
'0016,0061' => { VR => 'CS', Name => 'InteroperabilityIndex' }, |
|
901
|
|
|
|
|
|
|
'0016,0062' => { VR => 'OB', Name => 'InteroperabilityVersion' }, |
|
902
|
|
|
|
|
|
|
'0016,0070' => { VR => 'OB', Name => 'GPSVersionID' }, |
|
903
|
|
|
|
|
|
|
'0016,0071' => { VR => 'CS', Name => 'GPSLatitudeRef' }, |
|
904
|
|
|
|
|
|
|
'0016,0072' => { VR => 'DS', Name => 'GPSLatitude' }, |
|
905
|
|
|
|
|
|
|
'0016,0073' => { VR => 'CS', Name => 'GPSLongitudeRef' }, |
|
906
|
|
|
|
|
|
|
'0016,0074' => { VR => 'DS', Name => 'GPSLongitude' }, |
|
907
|
|
|
|
|
|
|
'0016,0075' => { VR => 'US', Name => 'GPSAltitudeRef' }, |
|
908
|
|
|
|
|
|
|
'0016,0076' => { VR => 'DS', Name => 'GPSAltitude' }, |
|
909
|
|
|
|
|
|
|
'0016,0077' => { VR => 'DT', Name => 'GPSTimeStamp' }, |
|
910
|
|
|
|
|
|
|
'0016,0078' => { VR => 'UT', Name => 'GPSSatellites' }, |
|
911
|
|
|
|
|
|
|
'0016,0079' => { VR => 'CS', Name => 'GPSStatus' }, |
|
912
|
|
|
|
|
|
|
'0016,007A' => { VR => 'CS', Name => 'GPSMeasureMode' }, |
|
913
|
|
|
|
|
|
|
'0016,007B' => { VR => 'DS', Name => 'GPSDOP' }, |
|
914
|
|
|
|
|
|
|
'0016,007C' => { VR => 'CS', Name => 'GPSSpeedRef' }, |
|
915
|
|
|
|
|
|
|
'0016,007D' => { VR => 'DS', Name => 'GPSSpeed' }, |
|
916
|
|
|
|
|
|
|
'0016,007E' => { VR => 'CS', Name => 'GPSTrackRef' }, |
|
917
|
|
|
|
|
|
|
'0016,007F' => { VR => 'DS', Name => 'GPSTrack' }, |
|
918
|
|
|
|
|
|
|
'0016,0080' => { VR => 'CS', Name => 'GPSImgDirectionRef' }, |
|
919
|
|
|
|
|
|
|
'0016,0081' => { VR => 'DS', Name => 'GPSImgDirection' }, |
|
920
|
|
|
|
|
|
|
'0016,0082' => { VR => 'UT', Name => 'GPSMapDatum' }, |
|
921
|
|
|
|
|
|
|
'0016,0083' => { VR => 'CS', Name => 'GPSDestLatitudeRef' }, |
|
922
|
|
|
|
|
|
|
'0016,0084' => { VR => 'DS', Name => 'GPSDestLatitude' }, |
|
923
|
|
|
|
|
|
|
'0016,0085' => { VR => 'CS', Name => 'GPSDestLongitudeRef' }, |
|
924
|
|
|
|
|
|
|
'0016,0086' => { VR => 'DS', Name => 'GPSDestLongitude' }, |
|
925
|
|
|
|
|
|
|
'0016,0087' => { VR => 'CS', Name => 'GPSDestBearingRef' }, |
|
926
|
|
|
|
|
|
|
'0016,0088' => { VR => 'DS', Name => 'GPSDestBearing' }, |
|
927
|
|
|
|
|
|
|
'0016,0089' => { VR => 'CS', Name => 'GPSDestDistanceRef' }, |
|
928
|
|
|
|
|
|
|
'0016,008A' => { VR => 'DS', Name => 'GPSDestDistance' }, |
|
929
|
|
|
|
|
|
|
'0016,008B' => { VR => 'OB', Name => 'GPSProcessingMethod' }, |
|
930
|
|
|
|
|
|
|
'0016,008C' => { VR => 'OB', Name => 'GPSAreaInformation' }, |
|
931
|
|
|
|
|
|
|
'0016,008D' => { VR => 'DT', Name => 'GPSDateStamp' }, |
|
932
|
|
|
|
|
|
|
'0016,008E' => { VR => 'IS', Name => 'GPSDifferential' }, |
|
933
|
|
|
|
|
|
|
'0016,1001' => { VR => 'CS', Name => 'LightSourcePolarization' }, |
|
934
|
|
|
|
|
|
|
'0016,1002' => { VR => 'DS', Name => 'EmitterColorTemperature' }, |
|
935
|
|
|
|
|
|
|
'0016,1003' => { VR => 'CS', Name => 'ContactMethod' }, |
|
936
|
|
|
|
|
|
|
'0016,1004' => { VR => 'CS', Name => 'ImmersionMedia' }, |
|
937
|
|
|
|
|
|
|
'0016,1005' => { VR => 'DS', Name => 'OpticalMagnificationFactor' }, |
|
938
|
|
|
|
|
|
|
# acquisition group |
|
939
|
|
|
|
|
|
|
'0018,0000' => { VR => 'UL', Name => 'AcquisitionGroupLength' }, |
|
940
|
|
|
|
|
|
|
'0018,0010' => { VR => 'LO', Name => 'ContrastBolusAgent' }, |
|
941
|
|
|
|
|
|
|
'0018,0012' => { VR => 'SQ', Name => 'ContrastBolusAgentSequence' }, |
|
942
|
|
|
|
|
|
|
'0018,0013' => { VR => 'FL', Name => 'ContrastBolusT1Relaxivity' }, |
|
943
|
|
|
|
|
|
|
'0018,0014' => { VR => 'SQ', Name => 'ContrastBolusAdministrationRoute' }, |
|
944
|
|
|
|
|
|
|
'0018,0015' => { VR => 'CS', Name => 'BodyPartExamined' }, |
|
945
|
|
|
|
|
|
|
'0018,0020' => { VR => 'CS', Name => 'ScanningSequence' }, |
|
946
|
|
|
|
|
|
|
'0018,0021' => { VR => 'CS', Name => 'SequenceVariant' }, |
|
947
|
|
|
|
|
|
|
'0018,0022' => { VR => 'CS', Name => 'ScanOptions' }, |
|
948
|
|
|
|
|
|
|
'0018,0023' => { VR => 'CS', Name => 'MRAcquisitionType' }, |
|
949
|
|
|
|
|
|
|
'0018,0024' => { VR => 'SH', Name => 'SequenceName' }, |
|
950
|
|
|
|
|
|
|
'0018,0025' => { VR => 'CS', Name => 'AngioFlag' }, |
|
951
|
|
|
|
|
|
|
'0018,0026' => { VR => 'SQ', Name => 'InterventionDrugInformationSeq' }, |
|
952
|
|
|
|
|
|
|
'0018,0027' => { VR => 'TM', Name => 'InterventionDrugStopTime' }, |
|
953
|
|
|
|
|
|
|
'0018,0028' => { VR => 'DS', Name => 'InterventionDrugDose' }, |
|
954
|
|
|
|
|
|
|
'0018,0029' => { VR => 'SQ', Name => 'InterventionDrugSequence' }, |
|
955
|
|
|
|
|
|
|
'0018,002A' => { VR => 'SQ', Name => 'AdditionalDrugSequence' }, |
|
956
|
|
|
|
|
|
|
'0018,0030' => { VR => 'LO', Name => 'Radionuclide' }, |
|
957
|
|
|
|
|
|
|
'0018,0031' => { VR => 'LO', Name => 'Radiopharmaceutical' }, |
|
958
|
|
|
|
|
|
|
'0018,0032' => { VR => 'DS', Name => 'EnergyWindowCenterline' }, |
|
959
|
|
|
|
|
|
|
'0018,0033' => { VR => 'DS', Name => 'EnergyWindowTotalWidth' }, |
|
960
|
|
|
|
|
|
|
'0018,0034' => { VR => 'LO', Name => 'InterventionDrugName' }, |
|
961
|
|
|
|
|
|
|
'0018,0035' => { VR => 'TM', Name => 'InterventionDrugStartTime' }, |
|
962
|
|
|
|
|
|
|
'0018,0036' => { VR => 'SQ', Name => 'InterventionSequence' }, |
|
963
|
|
|
|
|
|
|
'0018,0037' => { VR => 'CS', Name => 'TherapyType' }, |
|
964
|
|
|
|
|
|
|
'0018,0038' => { VR => 'CS', Name => 'InterventionStatus' }, |
|
965
|
|
|
|
|
|
|
'0018,0039' => { VR => 'CS', Name => 'TherapyDescription' }, |
|
966
|
|
|
|
|
|
|
'0018,003A' => { VR => 'ST', Name => 'InterventionDescription' }, |
|
967
|
|
|
|
|
|
|
'0018,0040' => { VR => 'IS', Name => 'CineRate' }, |
|
968
|
|
|
|
|
|
|
'0018,0042' => { VR => 'CS', Name => 'InitialCineRunState' }, |
|
969
|
|
|
|
|
|
|
'0018,0050' => { VR => 'DS', Name => 'SliceThickness' }, |
|
970
|
|
|
|
|
|
|
'0018,0060' => { VR => 'DS', Name => 'KVP' }, |
|
971
|
|
|
|
|
|
|
'0018,0070' => { VR => 'IS', Name => 'CountsAccumulated' }, |
|
972
|
|
|
|
|
|
|
'0018,0071' => { VR => 'CS', Name => 'AcquisitionTerminationCondition' }, |
|
973
|
|
|
|
|
|
|
'0018,0072' => { VR => 'DS', Name => 'EffectiveDuration' }, |
|
974
|
|
|
|
|
|
|
'0018,0073' => { VR => 'CS', Name => 'AcquisitionStartCondition' }, |
|
975
|
|
|
|
|
|
|
'0018,0074' => { VR => 'IS', Name => 'AcquisitionStartConditionData' }, |
|
976
|
|
|
|
|
|
|
'0018,0075' => { VR => 'IS', Name => 'AcquisitionEndConditionData' }, |
|
977
|
|
|
|
|
|
|
'0018,0080' => { VR => 'DS', Name => 'RepetitionTime' }, |
|
978
|
|
|
|
|
|
|
'0018,0081' => { VR => 'DS', Name => 'EchoTime' }, |
|
979
|
|
|
|
|
|
|
'0018,0082' => { VR => 'DS', Name => 'InversionTime' }, |
|
980
|
|
|
|
|
|
|
'0018,0083' => { VR => 'DS', Name => 'NumberOfAverages' }, |
|
981
|
|
|
|
|
|
|
'0018,0084' => { VR => 'DS', Name => 'ImagingFrequency' }, |
|
982
|
|
|
|
|
|
|
'0018,0085' => { VR => 'SH', Name => 'ImagedNucleus' }, |
|
983
|
|
|
|
|
|
|
'0018,0086' => { VR => 'IS', Name => 'EchoNumber' }, |
|
984
|
|
|
|
|
|
|
'0018,0087' => { VR => 'DS', Name => 'MagneticFieldStrength' }, |
|
985
|
|
|
|
|
|
|
'0018,0088' => { VR => 'DS', Name => 'SpacingBetweenSlices' }, |
|
986
|
|
|
|
|
|
|
'0018,0089' => { VR => 'IS', Name => 'NumberOfPhaseEncodingSteps' }, |
|
987
|
|
|
|
|
|
|
'0018,0090' => { VR => 'DS', Name => 'DataCollectionDiameter' }, |
|
988
|
|
|
|
|
|
|
'0018,0091' => { VR => 'IS', Name => 'EchoTrainLength' }, |
|
989
|
|
|
|
|
|
|
'0018,0093' => { VR => 'DS', Name => 'PercentSampling' }, |
|
990
|
|
|
|
|
|
|
'0018,0094' => { VR => 'DS', Name => 'PercentPhaseFieldOfView' }, |
|
991
|
|
|
|
|
|
|
'0018,0095' => { VR => 'DS', Name => 'PixelBandwidth' }, |
|
992
|
|
|
|
|
|
|
'0018,1000' => { VR => 'LO', Name => 'DeviceSerialNumber' }, |
|
993
|
|
|
|
|
|
|
'0018,1002' => { VR => 'UI', Name => 'DeviceUID' }, |
|
994
|
|
|
|
|
|
|
'0018,1003' => { VR => 'LO', Name => 'DeviceID' }, |
|
995
|
|
|
|
|
|
|
'0018,1004' => { VR => 'LO', Name => 'PlateID' }, |
|
996
|
|
|
|
|
|
|
'0018,1005' => { VR => 'LO', Name => 'GeneratorID' }, |
|
997
|
|
|
|
|
|
|
'0018,1006' => { VR => 'LO', Name => 'GridID' }, |
|
998
|
|
|
|
|
|
|
'0018,1007' => { VR => 'LO', Name => 'CassetteID' }, |
|
999
|
|
|
|
|
|
|
'0018,1008' => { VR => 'LO', Name => 'GantryID' }, |
|
1000
|
|
|
|
|
|
|
'0018,1009' => { VR => 'UT', Name => 'UniqueDeviceIdentifier' }, |
|
1001
|
|
|
|
|
|
|
'0018,100A' => { VR => 'SQ', Name => 'UDISequence' }, |
|
1002
|
|
|
|
|
|
|
'0018,100B' => { VR => 'UI', Name => 'ManufacturerDeviceClassUID' }, |
|
1003
|
|
|
|
|
|
|
'0018,1010' => { VR => 'LO', Name => 'SecondaryCaptureDeviceID' }, |
|
1004
|
|
|
|
|
|
|
'0018,1011' => { VR => 'LO', Name => 'HardcopyCreationDeviceID' }, |
|
1005
|
|
|
|
|
|
|
'0018,1012' => { VR => 'DA', Name => 'DateOfSecondaryCapture' }, |
|
1006
|
|
|
|
|
|
|
'0018,1014' => { VR => 'TM', Name => 'TimeOfSecondaryCapture' }, |
|
1007
|
|
|
|
|
|
|
'0018,1016' => { VR => 'LO', Name => 'SecondaryCaptureDeviceManufacturer' }, |
|
1008
|
|
|
|
|
|
|
'0018,1017' => { VR => 'LO', Name => 'HardcopyDeviceManufacturer' }, |
|
1009
|
|
|
|
|
|
|
'0018,1018' => { VR => 'LO', Name => 'SecondaryCaptureDeviceModelName' }, |
|
1010
|
|
|
|
|
|
|
'0018,1019' => { VR => 'LO', Name => 'SecondaryCaptureDeviceSoftwareVers' }, |
|
1011
|
|
|
|
|
|
|
'0018,101A' => { VR => 'LO', Name => 'HardcopyDeviceSoftwareVersion' }, |
|
1012
|
|
|
|
|
|
|
'0018,101B' => { VR => 'LO', Name => 'HardcopyDeviceModelName' }, |
|
1013
|
|
|
|
|
|
|
'0018,1020' => { VR => 'LO', Name => 'SoftwareVersion' }, |
|
1014
|
|
|
|
|
|
|
'0018,1022' => { VR => 'SH', Name => 'VideoImageFormatAcquired' }, |
|
1015
|
|
|
|
|
|
|
'0018,1023' => { VR => 'LO', Name => 'DigitalImageFormatAcquired' }, |
|
1016
|
|
|
|
|
|
|
'0018,1030' => { VR => 'LO', Name => 'ProtocolName' }, |
|
1017
|
|
|
|
|
|
|
'0018,1040' => { VR => 'LO', Name => 'ContrastBolusRoute' }, |
|
1018
|
|
|
|
|
|
|
'0018,1041' => { VR => 'DS', Name => 'ContrastBolusVolume' }, |
|
1019
|
|
|
|
|
|
|
'0018,1042' => { VR => 'TM', Name => 'ContrastBolusStartTime' }, |
|
1020
|
|
|
|
|
|
|
'0018,1043' => { VR => 'TM', Name => 'ContrastBolusStopTime' }, |
|
1021
|
|
|
|
|
|
|
'0018,1044' => { VR => 'DS', Name => 'ContrastBolusTotalDose' }, |
|
1022
|
|
|
|
|
|
|
'0018,1045' => { VR => 'IS', Name => 'SyringeCounts' }, |
|
1023
|
|
|
|
|
|
|
'0018,1046' => { VR => 'DS', Name => 'ContrastFlowRate' }, |
|
1024
|
|
|
|
|
|
|
'0018,1047' => { VR => 'DS', Name => 'ContrastFlowDuration' }, |
|
1025
|
|
|
|
|
|
|
'0018,1048' => { VR => 'CS', Name => 'ContrastBolusIngredient' }, |
|
1026
|
|
|
|
|
|
|
'0018,1049' => { VR => 'DS', Name => 'ContrastBolusConcentration' }, |
|
1027
|
|
|
|
|
|
|
'0018,1050' => { VR => 'DS', Name => 'SpatialResolution' }, |
|
1028
|
|
|
|
|
|
|
'0018,1060' => { VR => 'DS', Name => 'TriggerTime' }, |
|
1029
|
|
|
|
|
|
|
'0018,1061' => { VR => 'LO', Name => 'TriggerSourceOrType' }, |
|
1030
|
|
|
|
|
|
|
'0018,1062' => { VR => 'IS', Name => 'NominalInterval' }, |
|
1031
|
|
|
|
|
|
|
'0018,1063' => { VR => 'DS', Name => 'FrameTime' }, |
|
1032
|
|
|
|
|
|
|
'0018,1064' => { VR => 'LO', Name => 'CardiacFramingType' }, |
|
1033
|
|
|
|
|
|
|
'0018,1065' => { VR => 'DS', Name => 'FrameTimeVector' }, |
|
1034
|
|
|
|
|
|
|
'0018,1066' => { VR => 'DS', Name => 'FrameDelay' }, |
|
1035
|
|
|
|
|
|
|
'0018,1067' => { VR => 'DS', Name => 'ImageTriggerDelay' }, |
|
1036
|
|
|
|
|
|
|
'0018,1068' => { VR => 'DS', Name => 'MultiplexGroupTimeOffset' }, |
|
1037
|
|
|
|
|
|
|
'0018,1069' => { VR => 'DS', Name => 'TriggerTimeOffset' }, |
|
1038
|
|
|
|
|
|
|
'0018,106A' => { VR => 'CS', Name => 'SynchronizationTrigger' }, |
|
1039
|
|
|
|
|
|
|
'0018,106C' => { VR => 'US', Name => 'SynchronizationChannel' }, |
|
1040
|
|
|
|
|
|
|
'0018,106E' => { VR => 'UL', Name => 'TriggerSamplePosition' }, |
|
1041
|
|
|
|
|
|
|
'0018,1070' => { VR => 'LO', Name => 'RadiopharmaceuticalRoute' }, |
|
1042
|
|
|
|
|
|
|
'0018,1071' => { VR => 'DS', Name => 'RadiopharmaceuticalVolume' }, |
|
1043
|
|
|
|
|
|
|
'0018,1072' => { VR => 'TM', Name => 'RadiopharmaceuticalStartTime' }, |
|
1044
|
|
|
|
|
|
|
'0018,1073' => { VR => 'TM', Name => 'RadiopharmaceuticalStopTime' }, |
|
1045
|
|
|
|
|
|
|
'0018,1074' => { VR => 'DS', Name => 'RadionuclideTotalDose' }, |
|
1046
|
|
|
|
|
|
|
'0018,1075' => { VR => 'DS', Name => 'RadionuclideHalfLife' }, |
|
1047
|
|
|
|
|
|
|
'0018,1076' => { VR => 'DS', Name => 'RadionuclidePositronFraction' }, |
|
1048
|
|
|
|
|
|
|
'0018,1077' => { VR => 'DS', Name => 'RadiopharmaceuticalSpecActivity' }, |
|
1049
|
|
|
|
|
|
|
'0018,1078' => { VR => 'DT', Name => 'RadiopharmaceuticalStartDateTime' }, |
|
1050
|
|
|
|
|
|
|
'0018,1079' => { VR => 'DT', Name => 'RadiopharmaceuticalStopDateTime' }, |
|
1051
|
|
|
|
|
|
|
'0018,1080' => { VR => 'CS', Name => 'BeatRejectionFlag' }, |
|
1052
|
|
|
|
|
|
|
'0018,1081' => { VR => 'IS', Name => 'LowRRValue' }, |
|
1053
|
|
|
|
|
|
|
'0018,1082' => { VR => 'IS', Name => 'HighRRValue' }, |
|
1054
|
|
|
|
|
|
|
'0018,1083' => { VR => 'IS', Name => 'IntervalsAcquired' }, |
|
1055
|
|
|
|
|
|
|
'0018,1084' => { VR => 'IS', Name => 'IntervalsRejected' }, |
|
1056
|
|
|
|
|
|
|
'0018,1085' => { VR => 'LO', Name => 'PVCRejection' }, |
|
1057
|
|
|
|
|
|
|
'0018,1086' => { VR => 'IS', Name => 'SkipBeats' }, |
|
1058
|
|
|
|
|
|
|
'0018,1088' => { VR => 'IS', Name => 'HeartRate' }, |
|
1059
|
|
|
|
|
|
|
'0018,1090' => { VR => 'IS', Name => 'CardiacNumberOfImages' }, |
|
1060
|
|
|
|
|
|
|
'0018,1094' => { VR => 'IS', Name => 'TriggerWindow' }, |
|
1061
|
|
|
|
|
|
|
'0018,1100' => { VR => 'DS', Name => 'ReconstructionDiameter' }, |
|
1062
|
|
|
|
|
|
|
'0018,1110' => { VR => 'DS', Name => 'DistanceSourceToDetector' }, |
|
1063
|
|
|
|
|
|
|
'0018,1111' => { VR => 'DS', Name => 'DistanceSourceToPatient' }, |
|
1064
|
|
|
|
|
|
|
'0018,1114' => { VR => 'DS', Name => 'EstimatedRadiographicMagnification' }, |
|
1065
|
|
|
|
|
|
|
'0018,1120' => { VR => 'DS', Name => 'GantryDetectorTilt' }, |
|
1066
|
|
|
|
|
|
|
'0018,1121' => { VR => 'DS', Name => 'GantryDetectorSlew' }, |
|
1067
|
|
|
|
|
|
|
'0018,1130' => { VR => 'DS', Name => 'TableHeight' }, |
|
1068
|
|
|
|
|
|
|
'0018,1131' => { VR => 'DS', Name => 'TableTraverse' }, |
|
1069
|
|
|
|
|
|
|
'0018,1134' => { VR => 'CS', Name => 'TableMotion' }, |
|
1070
|
|
|
|
|
|
|
'0018,1135' => { VR => 'DS', Name => 'TableVerticalIncrement' }, |
|
1071
|
|
|
|
|
|
|
'0018,1136' => { VR => 'DS', Name => 'TableLateralIncrement' }, |
|
1072
|
|
|
|
|
|
|
'0018,1137' => { VR => 'DS', Name => 'TableLongitudinalIncrement' }, |
|
1073
|
|
|
|
|
|
|
'0018,1138' => { VR => 'DS', Name => 'TableAngle' }, |
|
1074
|
|
|
|
|
|
|
'0018,113A' => { VR => 'CS', Name => 'TableType' }, |
|
1075
|
|
|
|
|
|
|
'0018,1140' => { VR => 'CS', Name => 'RotationDirection' }, |
|
1076
|
|
|
|
|
|
|
'0018,1141' => { VR => 'DS', Name => 'AngularPosition' }, |
|
1077
|
|
|
|
|
|
|
'0018,1142' => { VR => 'DS', Name => 'RadialPosition' }, |
|
1078
|
|
|
|
|
|
|
'0018,1143' => { VR => 'DS', Name => 'ScanArc' }, |
|
1079
|
|
|
|
|
|
|
'0018,1144' => { VR => 'DS', Name => 'AngularStep' }, |
|
1080
|
|
|
|
|
|
|
'0018,1145' => { VR => 'DS', Name => 'CenterOfRotationOffset' }, |
|
1081
|
|
|
|
|
|
|
'0018,1146' => { VR => 'DS', Name => 'RotationOffset' }, |
|
1082
|
|
|
|
|
|
|
'0018,1147' => { VR => 'CS', Name => 'FieldOfViewShape' }, |
|
1083
|
|
|
|
|
|
|
'0018,1149' => { VR => 'IS', Name => 'FieldOfViewDimensions' }, |
|
1084
|
|
|
|
|
|
|
'0018,1150' => { VR => 'IS', Name => 'ExposureTime' }, |
|
1085
|
|
|
|
|
|
|
'0018,1151' => { VR => 'IS', Name => 'XRayTubeCurrent' }, |
|
1086
|
|
|
|
|
|
|
'0018,1152' => { VR => 'IS', Name => 'Exposure' }, |
|
1087
|
|
|
|
|
|
|
'0018,1153' => { VR => 'IS', Name => 'ExposureInMicroAmpSec' }, |
|
1088
|
|
|
|
|
|
|
'0018,1154' => { VR => 'DS', Name => 'AveragePulseWidth' }, |
|
1089
|
|
|
|
|
|
|
'0018,1155' => { VR => 'CS', Name => 'RadiationSetting' }, |
|
1090
|
|
|
|
|
|
|
'0018,1156' => { VR => 'CS', Name => 'RectificationType' }, |
|
1091
|
|
|
|
|
|
|
'0018,115A' => { VR => 'CS', Name => 'RadiationMode' }, |
|
1092
|
|
|
|
|
|
|
'0018,115E' => { VR => 'DS', Name => 'ImageAreaDoseProduct' }, |
|
1093
|
|
|
|
|
|
|
'0018,1160' => { VR => 'SH', Name => 'FilterType' }, |
|
1094
|
|
|
|
|
|
|
'0018,1161' => { VR => 'LO', Name => 'TypeOfFilters' }, |
|
1095
|
|
|
|
|
|
|
'0018,1162' => { VR => 'DS', Name => 'IntensifierSize' }, |
|
1096
|
|
|
|
|
|
|
'0018,1164' => { VR => 'DS', Name => 'ImagerPixelSpacing' }, |
|
1097
|
|
|
|
|
|
|
'0018,1166' => { VR => 'CS', Name => 'Grid' }, |
|
1098
|
|
|
|
|
|
|
'0018,1170' => { VR => 'IS', Name => 'GeneratorPower' }, |
|
1099
|
|
|
|
|
|
|
'0018,1180' => { VR => 'SH', Name => 'CollimatorGridName' }, |
|
1100
|
|
|
|
|
|
|
'0018,1181' => { VR => 'CS', Name => 'CollimatorType' }, |
|
1101
|
|
|
|
|
|
|
'0018,1182' => { VR => 'IS', Name => 'FocalDistance' }, |
|
1102
|
|
|
|
|
|
|
'0018,1183' => { VR => 'DS', Name => 'XFocusCenter' }, |
|
1103
|
|
|
|
|
|
|
'0018,1184' => { VR => 'DS', Name => 'YFocusCenter' }, |
|
1104
|
|
|
|
|
|
|
'0018,1190' => { VR => 'DS', Name => 'FocalSpots' }, |
|
1105
|
|
|
|
|
|
|
'0018,1191' => { VR => 'CS', Name => 'AnodeTargetMaterial' }, |
|
1106
|
|
|
|
|
|
|
'0018,11A0' => { VR => 'DS', Name => 'BodyPartThickness' }, |
|
1107
|
|
|
|
|
|
|
'0018,11A2' => { VR => 'DS', Name => 'CompressionForce' }, |
|
1108
|
|
|
|
|
|
|
'0018,11A3' => { VR => 'DS', Name => 'CompressionPressure' }, |
|
1109
|
|
|
|
|
|
|
'0018,11A4' => { VR => 'LO', Name => 'PaddleDescription' }, |
|
1110
|
|
|
|
|
|
|
'0018,11A5' => { VR => 'DS', Name => 'CompressionContactArea' }, |
|
1111
|
|
|
|
|
|
|
'0018,11B0' => { VR => 'LO', Name => 'AcquisitionMode' }, |
|
1112
|
|
|
|
|
|
|
'0018,11B1' => { VR => 'LO', Name => 'DoseModeName' }, |
|
1113
|
|
|
|
|
|
|
'0018,11B2' => { VR => 'CS', Name => 'AcquiredSubtractionMaskFlag' }, |
|
1114
|
|
|
|
|
|
|
'0018,11B3' => { VR => 'CS', Name => 'FluoroscopyPersistenceFlag' }, |
|
1115
|
|
|
|
|
|
|
'0018,11B4' => { VR => 'CS', Name => 'FluoroLastImageHoldPersistenceFlag' }, |
|
1116
|
|
|
|
|
|
|
'0018,11B5' => { VR => 'IS', Name => 'UpperLimitNumPersistFluoroFrames' }, |
|
1117
|
|
|
|
|
|
|
'0018,11B6' => { VR => 'CS', Name => 'ContrastBolusAutoInjectionTrigFlag' }, |
|
1118
|
|
|
|
|
|
|
'0018,11B7' => { VR => 'FD', Name => 'ContrastBolusInjectionDelay' }, |
|
1119
|
|
|
|
|
|
|
'0018,11B8' => { VR => 'SQ', Name => 'XAAcquisitionPhaseDetailsSequence' }, |
|
1120
|
|
|
|
|
|
|
'0018,11B9' => { VR => 'FD', Name => 'XAAcquisitionFrameRate' }, |
|
1121
|
|
|
|
|
|
|
'0018,11BA' => { VR => 'SQ', Name => 'XAPlaneDetailsSequence' }, |
|
1122
|
|
|
|
|
|
|
'0018,11BB' => { VR => 'LO', Name => 'AcquisitionFieldOfViewLabel' }, |
|
1123
|
|
|
|
|
|
|
'0018,11BC' => { VR => 'SQ', Name => 'XRayFilterDetailsSequence' }, |
|
1124
|
|
|
|
|
|
|
'0018,11BD' => { VR => 'FD', Name => 'XAAcquisitionDuration' }, |
|
1125
|
|
|
|
|
|
|
'0018,11BE' => { VR => 'CS', Name => 'ReconstructionPipelineType' }, |
|
1126
|
|
|
|
|
|
|
'0018,11BF' => { VR => 'SQ', Name => 'ImageFilterDetailsSequence' }, |
|
1127
|
|
|
|
|
|
|
'0018,11C0' => { VR => 'CS', Name => 'AppliedMaskSubtractionFlag' }, |
|
1128
|
|
|
|
|
|
|
'0018,11C1' => { VR => 'SQ', Name => 'RequestedSeriesDescriptionCodeSeq' }, |
|
1129
|
|
|
|
|
|
|
'0018,1200' => { VR => 'DA', Name => 'DateOfLastCalibration' }, |
|
1130
|
|
|
|
|
|
|
'0018,1201' => { VR => 'TM', Name => 'TimeOfLastCalibration' }, |
|
1131
|
|
|
|
|
|
|
'0018,1202' => { VR => 'DT', Name => 'DateTimeOfLastCalibration' }, |
|
1132
|
|
|
|
|
|
|
'0018,1203' => { VR => 'DT', Name => 'CalibrationDateTime' }, |
|
1133
|
|
|
|
|
|
|
'0018,1204' => { VR => 'DA', Name => 'DateOfManufacture' }, |
|
1134
|
|
|
|
|
|
|
'0018,1205' => { VR => 'DA', Name => 'DateOfInstallation' }, |
|
1135
|
|
|
|
|
|
|
'0018,1210' => { VR => 'SH', Name => 'ConvolutionKernel' }, |
|
1136
|
|
|
|
|
|
|
'0018,1240' => { VR => 'IS', Name => 'UpperLowerPixelValues' }, |
|
1137
|
|
|
|
|
|
|
'0018,1242' => { VR => 'IS', Name => 'ActualFrameDuration' }, |
|
1138
|
|
|
|
|
|
|
'0018,1243' => { VR => 'IS', Name => 'CountRate' }, |
|
1139
|
|
|
|
|
|
|
'0018,1244' => { VR => 'US', Name => 'PreferredPlaybackSequencing' }, |
|
1140
|
|
|
|
|
|
|
'0018,1250' => { VR => 'SH', Name => 'ReceiveCoilName' }, |
|
1141
|
|
|
|
|
|
|
'0018,1251' => { VR => 'SH', Name => 'TransmitCoilName' }, |
|
1142
|
|
|
|
|
|
|
'0018,1260' => { VR => 'SH', Name => 'PlateType' }, |
|
1143
|
|
|
|
|
|
|
'0018,1261' => { VR => 'LO', Name => 'PhosphorType' }, |
|
1144
|
|
|
|
|
|
|
'0018,1271' => { VR => 'FD', Name => 'WaterEquivalentDiameter' }, |
|
1145
|
|
|
|
|
|
|
'0018,1272' => { VR => 'SQ', Name => 'WaterEquiDiameterCalcMethCodeSeq' }, |
|
1146
|
|
|
|
|
|
|
'0018,1300' => { VR => 'DS', Name => 'ScanVelocity' }, |
|
1147
|
|
|
|
|
|
|
'0018,1301' => { VR => 'CS', Name => 'WholeBodyTechnique' }, |
|
1148
|
|
|
|
|
|
|
'0018,1302' => { VR => 'IS', Name => 'ScanLength' }, |
|
1149
|
|
|
|
|
|
|
'0018,1310' => { VR => 'US', Name => 'AcquisitionMatrix' }, |
|
1150
|
|
|
|
|
|
|
'0018,1312' => { VR => 'CS', Name => 'InPlanePhaseEncodingDirection' }, |
|
1151
|
|
|
|
|
|
|
'0018,1314' => { VR => 'DS', Name => 'FlipAngle' }, |
|
1152
|
|
|
|
|
|
|
'0018,1315' => { VR => 'CS', Name => 'VariableFlipAngleFlag' }, |
|
1153
|
|
|
|
|
|
|
'0018,1316' => { VR => 'DS', Name => 'SAR' }, |
|
1154
|
|
|
|
|
|
|
'0018,1318' => { VR => 'DS', Name => 'DB-Dt' }, |
|
1155
|
|
|
|
|
|
|
'0018,1320' => { VR => 'FL', Name => 'B1rms' }, |
|
1156
|
|
|
|
|
|
|
'0018,1400' => { VR => 'LO', Name => 'AcquisitionDeviceProcessingDescr' }, |
|
1157
|
|
|
|
|
|
|
'0018,1401' => { VR => 'LO', Name => 'AcquisitionDeviceProcessingCode' }, |
|
1158
|
|
|
|
|
|
|
'0018,1402' => { VR => 'CS', Name => 'CassetteOrientation' }, |
|
1159
|
|
|
|
|
|
|
'0018,1403' => { VR => 'CS', Name => 'CassetteSize' }, |
|
1160
|
|
|
|
|
|
|
'0018,1404' => { VR => 'US', Name => 'ExposuresOnPlate' }, |
|
1161
|
|
|
|
|
|
|
'0018,1405' => { VR => 'IS', Name => 'RelativeXRayExposure' }, |
|
1162
|
|
|
|
|
|
|
'0018,1411' => { VR => 'DS', Name => 'ExposureIndex' }, |
|
1163
|
|
|
|
|
|
|
'0018,1412' => { VR => 'DS', Name => 'TargetExposureIndex' }, |
|
1164
|
|
|
|
|
|
|
'0018,1413' => { VR => 'DS', Name => 'DeviationIndex' }, |
|
1165
|
|
|
|
|
|
|
'0018,1450' => { VR => 'DS', Name => 'ColumnAngulation' }, |
|
1166
|
|
|
|
|
|
|
'0018,1460' => { VR => 'DS', Name => 'TomoLayerHeight' }, |
|
1167
|
|
|
|
|
|
|
'0018,1470' => { VR => 'DS', Name => 'TomoAngle' }, |
|
1168
|
|
|
|
|
|
|
'0018,1480' => { VR => 'DS', Name => 'TomoTime' }, |
|
1169
|
|
|
|
|
|
|
'0018,1490' => { VR => 'CS', Name => 'TomoType' }, |
|
1170
|
|
|
|
|
|
|
'0018,1491' => { VR => 'CS', Name => 'TomoClass' }, |
|
1171
|
|
|
|
|
|
|
'0018,1495' => { VR => 'IS', Name => 'NumberOfTomosynthesisSourceImages' }, |
|
1172
|
|
|
|
|
|
|
'0018,1500' => { VR => 'CS', Name => 'PositionerMotion' }, |
|
1173
|
|
|
|
|
|
|
'0018,1508' => { VR => 'CS', Name => 'PositionerType' }, |
|
1174
|
|
|
|
|
|
|
'0018,1510' => { VR => 'DS', Name => 'PositionerPrimaryAngle' }, |
|
1175
|
|
|
|
|
|
|
'0018,1511' => { VR => 'DS', Name => 'PositionerSecondaryAngle' }, |
|
1176
|
|
|
|
|
|
|
'0018,1520' => { VR => 'DS', Name => 'PositionerPrimaryAngleIncrement' }, |
|
1177
|
|
|
|
|
|
|
'0018,1521' => { VR => 'DS', Name => 'PositionerSecondaryAngleIncrement' }, |
|
1178
|
|
|
|
|
|
|
'0018,1530' => { VR => 'DS', Name => 'DetectorPrimaryAngle' }, |
|
1179
|
|
|
|
|
|
|
'0018,1531' => { VR => 'DS', Name => 'DetectorSecondaryAngle' }, |
|
1180
|
|
|
|
|
|
|
'0018,1600' => { VR => 'CS', Name => 'ShutterShape' }, |
|
1181
|
|
|
|
|
|
|
'0018,1602' => { VR => 'IS', Name => 'ShutterLeftVerticalEdge' }, |
|
1182
|
|
|
|
|
|
|
'0018,1604' => { VR => 'IS', Name => 'ShutterRightVerticalEdge' }, |
|
1183
|
|
|
|
|
|
|
'0018,1606' => { VR => 'IS', Name => 'ShutterUpperHorizontalEdge' }, |
|
1184
|
|
|
|
|
|
|
'0018,1608' => { VR => 'IS', Name => 'ShutterLowerHorizontalEdge' }, |
|
1185
|
|
|
|
|
|
|
'0018,1610' => { VR => 'IS', Name => 'CenterOfCircularShutter' }, |
|
1186
|
|
|
|
|
|
|
'0018,1612' => { VR => 'IS', Name => 'RadiusOfCircularShutter' }, |
|
1187
|
|
|
|
|
|
|
'0018,1620' => { VR => 'IS', Name => 'VerticesOfPolygonalShutter' }, |
|
1188
|
|
|
|
|
|
|
'0018,1622' => { VR => 'US', Name => 'ShutterPresentationValue' }, |
|
1189
|
|
|
|
|
|
|
'0018,1623' => { VR => 'US', Name => 'ShutterOverlayGroup' }, |
|
1190
|
|
|
|
|
|
|
'0018,1624' => { VR => 'US', Name => 'ShutterPresentationColorCIELabVal' }, |
|
1191
|
|
|
|
|
|
|
'0018,1630' => { VR => 'CS', Name => 'OutlineShapeType' }, |
|
1192
|
|
|
|
|
|
|
'0018,1631' => { VR => 'FD', Name => 'OutlineLeftVerticalEdge' }, |
|
1193
|
|
|
|
|
|
|
'0018,1632' => { VR => 'FD', Name => 'OutlineRightVerticalEdge' }, |
|
1194
|
|
|
|
|
|
|
'0018,1633' => { VR => 'FD', Name => 'OutlineUpperHorizontalEdge' }, |
|
1195
|
|
|
|
|
|
|
'0018,1634' => { VR => 'FD', Name => 'OutlineLowerHorizontalEdge' }, |
|
1196
|
|
|
|
|
|
|
'0018,1635' => { VR => 'FD', Name => 'CenterOfCircularOutline' }, |
|
1197
|
|
|
|
|
|
|
'0018,1636' => { VR => 'FD', Name => 'DiameterOfCircularOutline' }, |
|
1198
|
|
|
|
|
|
|
'0018,1637' => { VR => 'UL', Name => 'NumberOfPolygonalVertices' }, |
|
1199
|
|
|
|
|
|
|
'0018,1638' => { VR => 'OF', Name => 'VerticesOfThePolygonalOutline' }, |
|
1200
|
|
|
|
|
|
|
'0018,1700' => { VR => 'CS', Name => 'CollimatorShape' }, |
|
1201
|
|
|
|
|
|
|
'0018,1702' => { VR => 'IS', Name => 'CollimatorLeftVerticalEdge' }, |
|
1202
|
|
|
|
|
|
|
'0018,1704' => { VR => 'IS', Name => 'CollimatorRightVerticalEdge' }, |
|
1203
|
|
|
|
|
|
|
'0018,1706' => { VR => 'IS', Name => 'CollimatorUpperHorizontalEdge' }, |
|
1204
|
|
|
|
|
|
|
'0018,1708' => { VR => 'IS', Name => 'CollimatorLowerHorizontalEdge' }, |
|
1205
|
|
|
|
|
|
|
'0018,1710' => { VR => 'IS', Name => 'CenterOfCircularCollimator' }, |
|
1206
|
|
|
|
|
|
|
'0018,1712' => { VR => 'IS', Name => 'RadiusOfCircularCollimator' }, |
|
1207
|
|
|
|
|
|
|
'0018,1720' => { VR => 'IS', Name => 'VerticesOfPolygonalCollimator' }, |
|
1208
|
|
|
|
|
|
|
'0018,1800' => { VR => 'CS', Name => 'AcquisitionTimeSynchronized' }, |
|
1209
|
|
|
|
|
|
|
'0018,1801' => { VR => 'SH', Name => 'TimeSource' }, |
|
1210
|
|
|
|
|
|
|
'0018,1802' => { VR => 'CS', Name => 'TimeDistributionProtocol' }, |
|
1211
|
|
|
|
|
|
|
'0018,1803' => { VR => 'LO', Name => 'NTPSourceAddress' }, |
|
1212
|
|
|
|
|
|
|
'0018,2001' => { VR => 'IS', Name => 'PageNumberVector' }, |
|
1213
|
|
|
|
|
|
|
'0018,2002' => { VR => 'SH', Name => 'FrameLabelVector' }, |
|
1214
|
|
|
|
|
|
|
'0018,2003' => { VR => 'DS', Name => 'FramePrimaryAngleVector' }, |
|
1215
|
|
|
|
|
|
|
'0018,2004' => { VR => 'DS', Name => 'FrameSecondaryAngleVector' }, |
|
1216
|
|
|
|
|
|
|
'0018,2005' => { VR => 'DS', Name => 'SliceLocationVector' }, |
|
1217
|
|
|
|
|
|
|
'0018,2006' => { VR => 'SH', Name => 'DisplayWindowLabelVector' }, |
|
1218
|
|
|
|
|
|
|
'0018,2010' => { VR => 'DS', Name => 'NominalScannedPixelSpacing' }, |
|
1219
|
|
|
|
|
|
|
'0018,2020' => { VR => 'CS', Name => 'DigitizingDeviceTransportDirection' }, |
|
1220
|
|
|
|
|
|
|
'0018,2030' => { VR => 'DS', Name => 'RotationOfScannedFilm' }, |
|
1221
|
|
|
|
|
|
|
'0018,2041' => { VR => 'SQ', Name => 'BiopsyTargetSequence' }, |
|
1222
|
|
|
|
|
|
|
'0018,2042' => { VR => 'UI', Name => 'TargetUID' }, |
|
1223
|
|
|
|
|
|
|
'0018,2043' => { VR => 'FL', Name => 'LocalizingCursorPosition' }, |
|
1224
|
|
|
|
|
|
|
'0018,2044' => { VR => 'FL', Name => 'CalculatedTargetPosition' }, |
|
1225
|
|
|
|
|
|
|
'0018,2045' => { VR => 'SH', Name => 'TargetLabel' }, |
|
1226
|
|
|
|
|
|
|
'0018,2046' => { VR => 'FL', Name => 'DisplayedZValue' }, |
|
1227
|
|
|
|
|
|
|
'0018,3100' => { VR => 'CS', Name => 'IVUSAcquisition' }, |
|
1228
|
|
|
|
|
|
|
'0018,3101' => { VR => 'DS', Name => 'IVUSPullbackRate' }, |
|
1229
|
|
|
|
|
|
|
'0018,3102' => { VR => 'DS', Name => 'IVUSGatedRate' }, |
|
1230
|
|
|
|
|
|
|
'0018,3103' => { VR => 'IS', Name => 'IVUSPullbackStartFrameNumber' }, |
|
1231
|
|
|
|
|
|
|
'0018,3104' => { VR => 'IS', Name => 'IVUSPullbackStopFrameNumber' }, |
|
1232
|
|
|
|
|
|
|
'0018,3105' => { VR => 'IS', Name => 'LesionNumber' }, |
|
1233
|
|
|
|
|
|
|
'0018,4000' => { VR => 'LT', Name => 'AcquisitionComments' }, |
|
1234
|
|
|
|
|
|
|
'0018,5000' => { VR => 'SH', Name => 'OutputPower' }, |
|
1235
|
|
|
|
|
|
|
'0018,5010' => { VR => 'LO', Name => 'TransducerData' }, |
|
1236
|
|
|
|
|
|
|
'0018,5011' => { VR => 'SQ', Name => 'TransducerIdentificationSequence' }, |
|
1237
|
|
|
|
|
|
|
'0018,5012' => { VR => 'DS', Name => 'FocusDepth' }, |
|
1238
|
|
|
|
|
|
|
'0018,5020' => { VR => 'LO', Name => 'ProcessingFunction' }, |
|
1239
|
|
|
|
|
|
|
'0018,5021' => { VR => 'LO', Name => 'PostprocessingFunction' }, |
|
1240
|
|
|
|
|
|
|
'0018,5022' => { VR => 'DS', Name => 'MechanicalIndex' }, |
|
1241
|
|
|
|
|
|
|
'0018,5024' => { VR => 'DS', Name => 'BoneThermalIndex' }, |
|
1242
|
|
|
|
|
|
|
'0018,5026' => { VR => 'DS', Name => 'CranialThermalIndex' }, |
|
1243
|
|
|
|
|
|
|
'0018,5027' => { VR => 'DS', Name => 'SoftTissueThermalIndex' }, |
|
1244
|
|
|
|
|
|
|
'0018,5028' => { VR => 'DS', Name => 'SoftTissueFocusThermalIndex' }, |
|
1245
|
|
|
|
|
|
|
'0018,5029' => { VR => 'DS', Name => 'SoftTissueSurfaceThermalIndex' }, |
|
1246
|
|
|
|
|
|
|
'0018,5030' => { VR => 'DS', Name => 'DynamicRange' }, |
|
1247
|
|
|
|
|
|
|
'0018,5040' => { VR => 'DS', Name => 'TotalGain' }, |
|
1248
|
|
|
|
|
|
|
'0018,5050' => { VR => 'IS', Name => 'DepthOfScanField' }, |
|
1249
|
|
|
|
|
|
|
'0018,5100' => { VR => 'CS', Name => 'PatientPosition' }, |
|
1250
|
|
|
|
|
|
|
'0018,5101' => { VR => 'CS', Name => 'ViewPosition' }, |
|
1251
|
|
|
|
|
|
|
'0018,5104' => { VR => 'SQ', Name => 'ProjectionEponymousNameCodeSeq' }, |
|
1252
|
|
|
|
|
|
|
'0018,5210' => { VR => 'DS', Name => 'ImageTransformationMatrix' }, |
|
1253
|
|
|
|
|
|
|
'0018,5212' => { VR => 'DS', Name => 'ImageTranslationVector' }, |
|
1254
|
|
|
|
|
|
|
'0018,6000' => { VR => 'DS', Name => 'Sensitivity' }, |
|
1255
|
|
|
|
|
|
|
'0018,6011' => { VR => 'SQ', Name => 'SequenceOfUltrasoundRegions' }, |
|
1256
|
|
|
|
|
|
|
'0018,6012' => { VR => 'US', Name => 'RegionSpatialFormat' }, |
|
1257
|
|
|
|
|
|
|
'0018,6014' => { VR => 'US', Name => 'RegionDataType' }, |
|
1258
|
|
|
|
|
|
|
'0018,6016' => { VR => 'UL', Name => 'RegionFlags' }, |
|
1259
|
|
|
|
|
|
|
'0018,6018' => { VR => 'UL', Name => 'RegionLocationMinX0' }, |
|
1260
|
|
|
|
|
|
|
'0018,601A' => { VR => 'UL', Name => 'RegionLocationMinY0' }, |
|
1261
|
|
|
|
|
|
|
'0018,601C' => { VR => 'UL', Name => 'RegionLocationMaxX1' }, |
|
1262
|
|
|
|
|
|
|
'0018,601E' => { VR => 'UL', Name => 'RegionLocationMaxY1' }, |
|
1263
|
|
|
|
|
|
|
'0018,6020' => { VR => 'SL', Name => 'ReferencePixelX0' }, |
|
1264
|
|
|
|
|
|
|
'0018,6022' => { VR => 'SL', Name => 'ReferencePixelY0' }, |
|
1265
|
|
|
|
|
|
|
'0018,6024' => { VR => 'US', Name => 'PhysicalUnitsXDirection' }, |
|
1266
|
|
|
|
|
|
|
'0018,6026' => { VR => 'US', Name => 'PhysicalUnitsYDirection' }, |
|
1267
|
|
|
|
|
|
|
'0018,6028' => { VR => 'FD', Name => 'ReferencePixelPhysicalValueX' }, |
|
1268
|
|
|
|
|
|
|
'0018,602A' => { VR => 'FD', Name => 'ReferencePixelPhysicalValueY' }, |
|
1269
|
|
|
|
|
|
|
'0018,602C' => { VR => 'FD', Name => 'PhysicalDeltaX' }, |
|
1270
|
|
|
|
|
|
|
'0018,602E' => { VR => 'FD', Name => 'PhysicalDeltaY' }, |
|
1271
|
|
|
|
|
|
|
'0018,6030' => { VR => 'UL', Name => 'TransducerFrequency' }, |
|
1272
|
|
|
|
|
|
|
'0018,6031' => { VR => 'CS', Name => 'TransducerType' }, |
|
1273
|
|
|
|
|
|
|
'0018,6032' => { VR => 'UL', Name => 'PulseRepetitionFrequency' }, |
|
1274
|
|
|
|
|
|
|
'0018,6034' => { VR => 'FD', Name => 'DopplerCorrectionAngle' }, |
|
1275
|
|
|
|
|
|
|
'0018,6036' => { VR => 'FD', Name => 'SteeringAngle' }, |
|
1276
|
|
|
|
|
|
|
'0018,6038' => { VR => 'UL', Name => 'DopplerSampleVolumeXPosRetired' }, |
|
1277
|
|
|
|
|
|
|
'0018,6039' => { VR => 'SL', Name => 'DopplerSampleVolumeXPosition' }, |
|
1278
|
|
|
|
|
|
|
'0018,603A' => { VR => 'UL', Name => 'DopplerSampleVolumeYPosRetired' }, |
|
1279
|
|
|
|
|
|
|
'0018,603B' => { VR => 'SL', Name => 'DopplerSampleVolumeYPosition' }, |
|
1280
|
|
|
|
|
|
|
'0018,603C' => { VR => 'UL', Name => 'TMLinePositionX0Retired' }, |
|
1281
|
|
|
|
|
|
|
'0018,603D' => { VR => 'SL', Name => 'TMLinePositionX0' }, |
|
1282
|
|
|
|
|
|
|
'0018,603E' => { VR => 'UL', Name => 'TMLinePositionY0Retired' }, |
|
1283
|
|
|
|
|
|
|
'0018,603F' => { VR => 'SL', Name => 'TMLinePositionY0' }, |
|
1284
|
|
|
|
|
|
|
'0018,6040' => { VR => 'UL', Name => 'TMLinePositionX1Retired' }, |
|
1285
|
|
|
|
|
|
|
'0018,6041' => { VR => 'SL', Name => 'TMLinePositionX1' }, |
|
1286
|
|
|
|
|
|
|
'0018,6042' => { VR => 'UL', Name => 'TMLinePositionY1Retired' }, |
|
1287
|
|
|
|
|
|
|
'0018,6043' => { VR => 'SL', Name => 'TMLinePositionY1' }, |
|
1288
|
|
|
|
|
|
|
'0018,6044' => { VR => 'US', Name => 'PixelComponentOrganization' }, |
|
1289
|
|
|
|
|
|
|
'0018,6046' => { VR => 'UL', Name => 'PixelComponentMask' }, |
|
1290
|
|
|
|
|
|
|
'0018,6048' => { VR => 'UL', Name => 'PixelComponentRangeStart' }, |
|
1291
|
|
|
|
|
|
|
'0018,604A' => { VR => 'UL', Name => 'PixelComponentRangeStop' }, |
|
1292
|
|
|
|
|
|
|
'0018,604C' => { VR => 'US', Name => 'PixelComponentPhysicalUnits' }, |
|
1293
|
|
|
|
|
|
|
'0018,604E' => { VR => 'US', Name => 'PixelComponentDataType' }, |
|
1294
|
|
|
|
|
|
|
'0018,6050' => { VR => 'UL', Name => 'NumberOfTableBreakPoints' }, |
|
1295
|
|
|
|
|
|
|
'0018,6052' => { VR => 'UL', Name => 'TableOfXBreakPoints' }, |
|
1296
|
|
|
|
|
|
|
'0018,6054' => { VR => 'FD', Name => 'TableOfYBreakPoints' }, |
|
1297
|
|
|
|
|
|
|
'0018,6056' => { VR => 'UL', Name => 'NumberOfTableEntries' }, |
|
1298
|
|
|
|
|
|
|
'0018,6058' => { VR => 'UL', Name => 'TableOfPixelValues' }, |
|
1299
|
|
|
|
|
|
|
'0018,605A' => { VR => 'FL', Name => 'TableOfParameterValues' }, |
|
1300
|
|
|
|
|
|
|
'0018,6060' => { VR => 'FL', Name => 'RWaveTimeVector' }, |
|
1301
|
|
|
|
|
|
|
'0018,6070' => { VR => 'US', Name => 'ActiveImageAreaOverlayGroup' }, |
|
1302
|
|
|
|
|
|
|
'0018,7000' => { VR => 'CS', Name => 'DetectorConditionsNominalFlag' }, |
|
1303
|
|
|
|
|
|
|
'0018,7001' => { VR => 'DS', Name => 'DetectorTemperature' }, |
|
1304
|
|
|
|
|
|
|
'0018,7004' => { VR => 'CS', Name => 'DetectorType' }, |
|
1305
|
|
|
|
|
|
|
'0018,7005' => { VR => 'CS', Name => 'DetectorConfiguration' }, |
|
1306
|
|
|
|
|
|
|
'0018,7006' => { VR => 'LT', Name => 'DetectorDescription' }, |
|
1307
|
|
|
|
|
|
|
'0018,7008' => { VR => 'LT', Name => 'DetectorMode' }, |
|
1308
|
|
|
|
|
|
|
'0018,700A' => { VR => 'SH', Name => 'DetectorID' }, |
|
1309
|
|
|
|
|
|
|
'0018,700C' => { VR => 'DA', Name => 'DateOfLastDetectorCalibration' }, |
|
1310
|
|
|
|
|
|
|
'0018,700E' => { VR => 'TM', Name => 'TimeOfLastDetectorCalibration' }, |
|
1311
|
|
|
|
|
|
|
'0018,7010' => { VR => 'IS', Name => 'DetectorExposuresSinceCalibration' }, |
|
1312
|
|
|
|
|
|
|
'0018,7011' => { VR => 'IS', Name => 'DetectorExposuresSinceManufactured' }, |
|
1313
|
|
|
|
|
|
|
'0018,7012' => { VR => 'DS', Name => 'DetectorTimeSinceLastExposure' }, |
|
1314
|
|
|
|
|
|
|
'0018,7014' => { VR => 'DS', Name => 'DetectorActiveTime' }, |
|
1315
|
|
|
|
|
|
|
'0018,7016' => { VR => 'DS', Name => 'DetectorActiveOffsetFromExposure' }, |
|
1316
|
|
|
|
|
|
|
'0018,701A' => { VR => 'DS', Name => 'DetectorBinning' }, |
|
1317
|
|
|
|
|
|
|
'0018,7020' => { VR => 'DS', Name => 'DetectorElementPhysicalSize' }, |
|
1318
|
|
|
|
|
|
|
'0018,7022' => { VR => 'DS', Name => 'DetectorElementSpacing' }, |
|
1319
|
|
|
|
|
|
|
'0018,7024' => { VR => 'CS', Name => 'DetectorActiveShape' }, |
|
1320
|
|
|
|
|
|
|
'0018,7026' => { VR => 'DS', Name => 'DetectorActiveDimensions' }, |
|
1321
|
|
|
|
|
|
|
'0018,7028' => { VR => 'DS', Name => 'DetectorActiveOrigin' }, |
|
1322
|
|
|
|
|
|
|
'0018,702A' => { VR => 'LO', Name => 'DetectorManufacturerName' }, |
|
1323
|
|
|
|
|
|
|
'0018,702B' => { VR => 'LO', Name => 'DetectorManufacturersModelName' }, |
|
1324
|
|
|
|
|
|
|
'0018,7030' => { VR => 'DS', Name => 'FieldOfViewOrigin' }, |
|
1325
|
|
|
|
|
|
|
'0018,7032' => { VR => 'DS', Name => 'FieldOfViewRotation' }, |
|
1326
|
|
|
|
|
|
|
'0018,7034' => { VR => 'CS', Name => 'FieldOfViewHorizontalFlip' }, |
|
1327
|
|
|
|
|
|
|
'0018,7036' => { VR => 'FL', Name => 'PixelDataAreaOriginRelativeToFOV' }, |
|
1328
|
|
|
|
|
|
|
'0018,7038' => { VR => 'FL', Name => 'PixelDataAreaRotationAngleRelToFOV' }, |
|
1329
|
|
|
|
|
|
|
'0018,7040' => { VR => 'LT', Name => 'GridAbsorbingMaterial' }, |
|
1330
|
|
|
|
|
|
|
'0018,7041' => { VR => 'LT', Name => 'GridSpacingMaterial' }, |
|
1331
|
|
|
|
|
|
|
'0018,7042' => { VR => 'DS', Name => 'GridThickness' }, |
|
1332
|
|
|
|
|
|
|
'0018,7044' => { VR => 'DS', Name => 'GridPitch' }, |
|
1333
|
|
|
|
|
|
|
'0018,7046' => { VR => 'IS', Name => 'GridAspectRatio' }, |
|
1334
|
|
|
|
|
|
|
'0018,7048' => { VR => 'DS', Name => 'GridPeriod' }, |
|
1335
|
|
|
|
|
|
|
'0018,704C' => { VR => 'DS', Name => 'GridFocalDistance' }, |
|
1336
|
|
|
|
|
|
|
'0018,7050' => { VR => 'CS', Name => 'FilterMaterial' }, |
|
1337
|
|
|
|
|
|
|
'0018,7052' => { VR => 'DS', Name => 'FilterThicknessMinimum' }, |
|
1338
|
|
|
|
|
|
|
'0018,7054' => { VR => 'DS', Name => 'FilterThicknessMaximum' }, |
|
1339
|
|
|
|
|
|
|
'0018,7056' => { VR => 'FL', Name => 'FilterBeamPathLengthMinimum' }, |
|
1340
|
|
|
|
|
|
|
'0018,7058' => { VR => 'FL', Name => 'FilterBeamPathLengthMaximum' }, |
|
1341
|
|
|
|
|
|
|
'0018,7060' => { VR => 'CS', Name => 'ExposureControlMode' }, |
|
1342
|
|
|
|
|
|
|
'0018,7062' => { VR => 'LT', Name => 'ExposureControlModeDescription' }, |
|
1343
|
|
|
|
|
|
|
'0018,7064' => { VR => 'CS', Name => 'ExposureStatus' }, |
|
1344
|
|
|
|
|
|
|
'0018,7065' => { VR => 'DS', Name => 'PhototimerSetting' }, |
|
1345
|
|
|
|
|
|
|
'0018,8150' => { VR => 'DS', Name => 'ExposureTimeInMicroSec' }, |
|
1346
|
|
|
|
|
|
|
'0018,8151' => { VR => 'DS', Name => 'XRayTubeCurrentInMicroAmps' }, |
|
1347
|
|
|
|
|
|
|
'0018,9004' => { VR => 'CS', Name => 'ContentQualification' }, |
|
1348
|
|
|
|
|
|
|
'0018,9005' => { VR => 'SH', Name => 'PulseSequenceName' }, |
|
1349
|
|
|
|
|
|
|
'0018,9006' => { VR => 'SQ', Name => 'MRImagingModifierSequence' }, |
|
1350
|
|
|
|
|
|
|
'0018,9008' => { VR => 'CS', Name => 'EchoPulseSequence' }, |
|
1351
|
|
|
|
|
|
|
'0018,9009' => { VR => 'CS', Name => 'InversionRecovery' }, |
|
1352
|
|
|
|
|
|
|
'0018,9010' => { VR => 'CS', Name => 'FlowCompensation' }, |
|
1353
|
|
|
|
|
|
|
'0018,9011' => { VR => 'CS', Name => 'MultipleSpinEcho' }, |
|
1354
|
|
|
|
|
|
|
'0018,9012' => { VR => 'CS', Name => 'MultiPlanarExcitation' }, |
|
1355
|
|
|
|
|
|
|
'0018,9014' => { VR => 'CS', Name => 'PhaseContrast' }, |
|
1356
|
|
|
|
|
|
|
'0018,9015' => { VR => 'CS', Name => 'TimeOfFlightContrast' }, |
|
1357
|
|
|
|
|
|
|
'0018,9016' => { VR => 'CS', Name => 'Spoiling' }, |
|
1358
|
|
|
|
|
|
|
'0018,9017' => { VR => 'CS', Name => 'SteadyStatePulseSequence' }, |
|
1359
|
|
|
|
|
|
|
'0018,9018' => { VR => 'CS', Name => 'EchoPlanarPulseSequence' }, |
|
1360
|
|
|
|
|
|
|
'0018,9019' => { VR => 'FD', Name => 'TagAngleFirstAxis' }, |
|
1361
|
|
|
|
|
|
|
'0018,9020' => { VR => 'CS', Name => 'MagnetizationTransfer' }, |
|
1362
|
|
|
|
|
|
|
'0018,9021' => { VR => 'CS', Name => 'T2Preparation' }, |
|
1363
|
|
|
|
|
|
|
'0018,9022' => { VR => 'CS', Name => 'BloodSignalNulling' }, |
|
1364
|
|
|
|
|
|
|
'0018,9024' => { VR => 'CS', Name => 'SaturationRecovery' }, |
|
1365
|
|
|
|
|
|
|
'0018,9025' => { VR => 'CS', Name => 'SpectrallySelectedSuppression' }, |
|
1366
|
|
|
|
|
|
|
'0018,9026' => { VR => 'CS', Name => 'SpectrallySelectedExcitation' }, |
|
1367
|
|
|
|
|
|
|
'0018,9027' => { VR => 'CS', Name => 'SpatialPresaturation' }, |
|
1368
|
|
|
|
|
|
|
'0018,9028' => { VR => 'CS', Name => 'Tagging' }, |
|
1369
|
|
|
|
|
|
|
'0018,9029' => { VR => 'CS', Name => 'OversamplingPhase' }, |
|
1370
|
|
|
|
|
|
|
'0018,9030' => { VR => 'FD', Name => 'TagSpacingFirstDimension' }, |
|
1371
|
|
|
|
|
|
|
'0018,9032' => { VR => 'CS', Name => 'GeometryOfKSpaceTraversal' }, |
|
1372
|
|
|
|
|
|
|
'0018,9033' => { VR => 'CS', Name => 'SegmentedKSpaceTraversal' }, |
|
1373
|
|
|
|
|
|
|
'0018,9034' => { VR => 'CS', Name => 'RectilinearPhaseEncodeReordering' }, |
|
1374
|
|
|
|
|
|
|
'0018,9035' => { VR => 'FD', Name => 'TagThickness' }, |
|
1375
|
|
|
|
|
|
|
'0018,9036' => { VR => 'CS', Name => 'PartialFourierDirection' }, |
|
1376
|
|
|
|
|
|
|
'0018,9037' => { VR => 'CS', Name => 'CardiacSynchronizationTechnique' }, |
|
1377
|
|
|
|
|
|
|
'0018,9041' => { VR => 'LO', Name => 'ReceiveCoilManufacturerName' }, |
|
1378
|
|
|
|
|
|
|
'0018,9042' => { VR => 'SQ', Name => 'MRReceiveCoilSequence' }, |
|
1379
|
|
|
|
|
|
|
'0018,9043' => { VR => 'CS', Name => 'ReceiveCoilType' }, |
|
1380
|
|
|
|
|
|
|
'0018,9044' => { VR => 'CS', Name => 'QuadratureReceiveCoil' }, |
|
1381
|
|
|
|
|
|
|
'0018,9045' => { VR => 'SQ', Name => 'MultiCoilDefinitionSequence' }, |
|
1382
|
|
|
|
|
|
|
'0018,9046' => { VR => 'LO', Name => 'MultiCoilConfiguration' }, |
|
1383
|
|
|
|
|
|
|
'0018,9047' => { VR => 'SH', Name => 'MultiCoilElementName' }, |
|
1384
|
|
|
|
|
|
|
'0018,9048' => { VR => 'CS', Name => 'MultiCoilElementUsed' }, |
|
1385
|
|
|
|
|
|
|
'0018,9049' => { VR => 'SQ', Name => 'MRTransmitCoilSequence' }, |
|
1386
|
|
|
|
|
|
|
'0018,9050' => { VR => 'LO', Name => 'TransmitCoilManufacturerName' }, |
|
1387
|
|
|
|
|
|
|
'0018,9051' => { VR => 'CS', Name => 'TransmitCoilType' }, |
|
1388
|
|
|
|
|
|
|
'0018,9052' => { VR => 'FD', Name => 'SpectralWidth' }, |
|
1389
|
|
|
|
|
|
|
'0018,9053' => { VR => 'FD', Name => 'ChemicalShiftReference' }, |
|
1390
|
|
|
|
|
|
|
'0018,9054' => { VR => 'CS', Name => 'VolumeLocalizationTechnique' }, |
|
1391
|
|
|
|
|
|
|
'0018,9058' => { VR => 'US', Name => 'MRAcquisitionFrequencyEncodeSteps' }, |
|
1392
|
|
|
|
|
|
|
'0018,9059' => { VR => 'CS', Name => 'Decoupling' }, |
|
1393
|
|
|
|
|
|
|
'0018,9060' => { VR => 'CS', Name => 'DecoupledNucleus' }, |
|
1394
|
|
|
|
|
|
|
'0018,9061' => { VR => 'FD', Name => 'DecouplingFrequency' }, |
|
1395
|
|
|
|
|
|
|
'0018,9062' => { VR => 'CS', Name => 'DecouplingMethod' }, |
|
1396
|
|
|
|
|
|
|
'0018,9063' => { VR => 'FD', Name => 'DecouplingChemicalShiftReference' }, |
|
1397
|
|
|
|
|
|
|
'0018,9064' => { VR => 'CS', Name => 'KSpaceFiltering' }, |
|
1398
|
|
|
|
|
|
|
'0018,9065' => { VR => 'CS', Name => 'TimeDomainFiltering' }, |
|
1399
|
|
|
|
|
|
|
'0018,9066' => { VR => 'US', Name => 'NumberOfZeroFills' }, |
|
1400
|
|
|
|
|
|
|
'0018,9067' => { VR => 'CS', Name => 'BaselineCorrection' }, |
|
1401
|
|
|
|
|
|
|
'0018,9069' => { VR => 'FD', Name => 'ParallelReductionFactorInPlane' }, |
|
1402
|
|
|
|
|
|
|
'0018,9070' => { VR => 'FD', Name => 'CardiacRRIntervalSpecified' }, |
|
1403
|
|
|
|
|
|
|
'0018,9073' => { VR => 'FD', Name => 'AcquisitionDuration' }, |
|
1404
|
|
|
|
|
|
|
'0018,9074' => { VR => 'DT', Name => 'FrameAcquisitionDateTime' }, |
|
1405
|
|
|
|
|
|
|
'0018,9075' => { VR => 'CS', Name => 'DiffusionDirectionality' }, |
|
1406
|
|
|
|
|
|
|
'0018,9076' => { VR => 'SQ', Name => 'DiffusionGradientDirectionSequence' }, |
|
1407
|
|
|
|
|
|
|
'0018,9077' => { VR => 'CS', Name => 'ParallelAcquisition' }, |
|
1408
|
|
|
|
|
|
|
'0018,9078' => { VR => 'CS', Name => 'ParallelAcquisitionTechnique' }, |
|
1409
|
|
|
|
|
|
|
'0018,9079' => { VR => 'FD', Name => 'InversionTimes' }, |
|
1410
|
|
|
|
|
|
|
'0018,9080' => { VR => 'ST', Name => 'MetaboliteMapDescription' }, |
|
1411
|
|
|
|
|
|
|
'0018,9081' => { VR => 'CS', Name => 'PartialFourier' }, |
|
1412
|
|
|
|
|
|
|
'0018,9082' => { VR => 'FD', Name => 'EffectiveEchoTime' }, |
|
1413
|
|
|
|
|
|
|
'0018,9083' => { VR => 'SQ', Name => 'MetaboliteMapCodeSequence' }, |
|
1414
|
|
|
|
|
|
|
'0018,9084' => { VR => 'SQ', Name => 'ChemicalShiftSequence' }, |
|
1415
|
|
|
|
|
|
|
'0018,9085' => { VR => 'CS', Name => 'CardiacSignalSource' }, |
|
1416
|
|
|
|
|
|
|
'0018,9087' => { VR => 'FD', Name => 'DiffusionBValue' }, |
|
1417
|
|
|
|
|
|
|
'0018,9089' => { VR => 'FD', Name => 'DiffusionGradientOrientation' }, |
|
1418
|
|
|
|
|
|
|
'0018,9090' => { VR => 'FD', Name => 'VelocityEncodingDirection' }, |
|
1419
|
|
|
|
|
|
|
'0018,9091' => { VR => 'FD', Name => 'VelocityEncodingMinimumValue' }, |
|
1420
|
|
|
|
|
|
|
'0018,9092' => { VR => 'SQ', Name => 'VelocityEncodingAcquisitionSeq' }, |
|
1421
|
|
|
|
|
|
|
'0018,9093' => { VR => 'US', Name => 'NumberOfKSpaceTrajectories' }, |
|
1422
|
|
|
|
|
|
|
'0018,9094' => { VR => 'CS', Name => 'CoverageOfKSpace' }, |
|
1423
|
|
|
|
|
|
|
'0018,9095' => { VR => 'UL', Name => 'SpectroscopyAcquisitionPhaseRows' }, |
|
1424
|
|
|
|
|
|
|
'0018,9096' => { VR => 'FD', Name => 'ParallelReductFactorInPlaneRetired' }, |
|
1425
|
|
|
|
|
|
|
'0018,9098' => { VR => 'FD', Name => 'TransmitterFrequency' }, |
|
1426
|
|
|
|
|
|
|
'0018,9100' => { VR => 'CS', Name => 'ResonantNucleus' }, |
|
1427
|
|
|
|
|
|
|
'0018,9101' => { VR => 'CS', Name => 'FrequencyCorrection' }, |
|
1428
|
|
|
|
|
|
|
'0018,9103' => { VR => 'SQ', Name => 'MRSpectroscopyFOV-GeometrySequence' }, |
|
1429
|
|
|
|
|
|
|
'0018,9104' => { VR => 'FD', Name => 'SlabThickness' }, |
|
1430
|
|
|
|
|
|
|
'0018,9105' => { VR => 'FD', Name => 'SlabOrientation' }, |
|
1431
|
|
|
|
|
|
|
'0018,9106' => { VR => 'FD', Name => 'MidSlabPosition' }, |
|
1432
|
|
|
|
|
|
|
'0018,9107' => { VR => 'SQ', Name => 'MRSpatialSaturationSequence' }, |
|
1433
|
|
|
|
|
|
|
'0018,9112' => { VR => 'SQ', Name => 'MRTimingAndRelatedParametersSeq' }, |
|
1434
|
|
|
|
|
|
|
'0018,9114' => { VR => 'SQ', Name => 'MREchoSequence' }, |
|
1435
|
|
|
|
|
|
|
'0018,9115' => { VR => 'SQ', Name => 'MRModifierSequence' }, |
|
1436
|
|
|
|
|
|
|
'0018,9117' => { VR => 'SQ', Name => 'MRDiffusionSequence' }, |
|
1437
|
|
|
|
|
|
|
'0018,9118' => { VR => 'SQ', Name => 'CardiacTriggerSequence' }, |
|
1438
|
|
|
|
|
|
|
'0018,9119' => { VR => 'SQ', Name => 'MRAveragesSequence' }, |
|
1439
|
|
|
|
|
|
|
'0018,9125' => { VR => 'SQ', Name => 'MRFOV-GeometrySequence' }, |
|
1440
|
|
|
|
|
|
|
'0018,9126' => { VR => 'SQ', Name => 'VolumeLocalizationSequence' }, |
|
1441
|
|
|
|
|
|
|
'0018,9127' => { VR => 'UL', Name => 'SpectroscopyAcquisitionDataColumns' }, |
|
1442
|
|
|
|
|
|
|
'0018,9147' => { VR => 'CS', Name => 'DiffusionAnisotropyType' }, |
|
1443
|
|
|
|
|
|
|
'0018,9151' => { VR => 'DT', Name => 'FrameReferenceDateTime' }, |
|
1444
|
|
|
|
|
|
|
'0018,9152' => { VR => 'SQ', Name => 'MRMetaboliteMapSequence' }, |
|
1445
|
|
|
|
|
|
|
'0018,9155' => { VR => 'FD', Name => 'ParallelReductionFactorOutOfPlane' }, |
|
1446
|
|
|
|
|
|
|
'0018,9159' => { VR => 'UL', Name => 'SpectroscopyOutOfPlanePhaseSteps' }, |
|
1447
|
|
|
|
|
|
|
'0018,9166' => { VR => 'CS', Name => 'BulkMotionStatus' }, |
|
1448
|
|
|
|
|
|
|
'0018,9168' => { VR => 'FD', Name => 'ParallelReductionFactSecondInPlane' }, |
|
1449
|
|
|
|
|
|
|
'0018,9169' => { VR => 'CS', Name => 'CardiacBeatRejectionTechnique' }, |
|
1450
|
|
|
|
|
|
|
'0018,9170' => { VR => 'CS', Name => 'RespiratoryMotionCompTechnique' }, |
|
1451
|
|
|
|
|
|
|
'0018,9171' => { VR => 'CS', Name => 'RespiratorySignalSource' }, |
|
1452
|
|
|
|
|
|
|
'0018,9172' => { VR => 'CS', Name => 'BulkMotionCompensationTechnique' }, |
|
1453
|
|
|
|
|
|
|
'0018,9173' => { VR => 'CS', Name => 'BulkMotionSignalSource' }, |
|
1454
|
|
|
|
|
|
|
'0018,9174' => { VR => 'CS', Name => 'ApplicableSafetyStandardAgency' }, |
|
1455
|
|
|
|
|
|
|
'0018,9175' => { VR => 'LO', Name => 'ApplicableSafetyStandardDescr' }, |
|
1456
|
|
|
|
|
|
|
'0018,9176' => { VR => 'SQ', Name => 'OperatingModeSequence' }, |
|
1457
|
|
|
|
|
|
|
'0018,9177' => { VR => 'CS', Name => 'OperatingModeType' }, |
|
1458
|
|
|
|
|
|
|
'0018,9178' => { VR => 'CS', Name => 'OperatingMode' }, |
|
1459
|
|
|
|
|
|
|
'0018,9179' => { VR => 'CS', Name => 'SpecificAbsorptionRateDefinition' }, |
|
1460
|
|
|
|
|
|
|
'0018,9180' => { VR => 'CS', Name => 'GradientOutputType' }, |
|
1461
|
|
|
|
|
|
|
'0018,9181' => { VR => 'FD', Name => 'SpecificAbsorptionRateValue' }, |
|
1462
|
|
|
|
|
|
|
'0018,9182' => { VR => 'FD', Name => 'GradientOutput' }, |
|
1463
|
|
|
|
|
|
|
'0018,9183' => { VR => 'CS', Name => 'FlowCompensationDirection' }, |
|
1464
|
|
|
|
|
|
|
'0018,9184' => { VR => 'FD', Name => 'TaggingDelay' }, |
|
1465
|
|
|
|
|
|
|
'0018,9185' => { VR => 'ST', Name => 'RespiratoryMotionCompTechDescr' }, |
|
1466
|
|
|
|
|
|
|
'0018,9186' => { VR => 'SH', Name => 'RespiratorySignalSourceID' }, |
|
1467
|
|
|
|
|
|
|
'0018,9195' => { VR => 'FD', Name => 'ChemicalShiftsMinIntegrateLimitHz' }, |
|
1468
|
|
|
|
|
|
|
'0018,9196' => { VR => 'FD', Name => 'ChemicalShiftsMaxIntegrateLimitHz' }, |
|
1469
|
|
|
|
|
|
|
'0018,9197' => { VR => 'SQ', Name => 'MRVelocityEncodingSequence' }, |
|
1470
|
|
|
|
|
|
|
'0018,9198' => { VR => 'CS', Name => 'FirstOrderPhaseCorrection' }, |
|
1471
|
|
|
|
|
|
|
'0018,9199' => { VR => 'CS', Name => 'WaterReferencedPhaseCorrection' }, |
|
1472
|
|
|
|
|
|
|
'0018,9200' => { VR => 'CS', Name => 'MRSpectroscopyAcquisitionType' }, |
|
1473
|
|
|
|
|
|
|
'0018,9214' => { VR => 'CS', Name => 'RespiratoryCyclePosition' }, |
|
1474
|
|
|
|
|
|
|
'0018,9217' => { VR => 'FD', Name => 'VelocityEncodingMaximumValue' }, |
|
1475
|
|
|
|
|
|
|
'0018,9218' => { VR => 'FD', Name => 'TagSpacingSecondDimension' }, |
|
1476
|
|
|
|
|
|
|
'0018,9219' => { VR => 'SS', Name => 'TagAngleSecondAxis' }, |
|
1477
|
|
|
|
|
|
|
'0018,9220' => { VR => 'FD', Name => 'FrameAcquisitionDuration' }, |
|
1478
|
|
|
|
|
|
|
'0018,9226' => { VR => 'SQ', Name => 'MRImageFrameTypeSequence' }, |
|
1479
|
|
|
|
|
|
|
'0018,9227' => { VR => 'SQ', Name => 'MRSpectroscopyFrameTypeSequence' }, |
|
1480
|
|
|
|
|
|
|
'0018,9231' => { VR => 'US', Name => 'MRAcqPhaseEncodingStepsInPlane' }, |
|
1481
|
|
|
|
|
|
|
'0018,9232' => { VR => 'US', Name => 'MRAcqPhaseEncodingStepsOutOfPlane' }, |
|
1482
|
|
|
|
|
|
|
'0018,9234' => { VR => 'UL', Name => 'SpectroscopyAcqPhaseColumns' }, |
|
1483
|
|
|
|
|
|
|
'0018,9236' => { VR => 'CS', Name => 'CardiacCyclePosition' }, |
|
1484
|
|
|
|
|
|
|
'0018,9239' => { VR => 'SQ', Name => 'SpecificAbsorptionRateSequence' }, |
|
1485
|
|
|
|
|
|
|
'0018,9240' => { VR => 'US', Name => 'RFEchoTrainLength' }, |
|
1486
|
|
|
|
|
|
|
'0018,9241' => { VR => 'US', Name => 'GradientEchoTrainLength' }, |
|
1487
|
|
|
|
|
|
|
'0018,9250' => { VR => 'CS', Name => 'ArterialSpinLabelingContrast' }, |
|
1488
|
|
|
|
|
|
|
'0018,9251' => { VR => 'SQ', Name => 'MRArterialSpinLabelingSequence' }, |
|
1489
|
|
|
|
|
|
|
'0018,9252' => { VR => 'LO', Name => 'ASLTechniqueDescription' }, |
|
1490
|
|
|
|
|
|
|
'0018,9253' => { VR => 'US', Name => 'ASLSlabNumber' }, |
|
1491
|
|
|
|
|
|
|
'0018,9254' => { VR => 'FD', Name => 'ASLSlabThickness' }, |
|
1492
|
|
|
|
|
|
|
'0018,9255' => { VR => 'FD', Name => 'ASLSlabOrientation' }, |
|
1493
|
|
|
|
|
|
|
'0018,9256' => { VR => 'FD', Name => 'ASLMidSlabPosition' }, |
|
1494
|
|
|
|
|
|
|
'0018,9257' => { VR => 'CS', Name => 'ASLContext' }, |
|
1495
|
|
|
|
|
|
|
'0018,9258' => { VR => 'UL', Name => 'ASLPulseTrainDuration' }, |
|
1496
|
|
|
|
|
|
|
'0018,9259' => { VR => 'CS', Name => 'ASLCrusherFlag' }, |
|
1497
|
|
|
|
|
|
|
'0018,925A' => { VR => 'FD', Name => 'ASLCrusherFlowLimit' }, |
|
1498
|
|
|
|
|
|
|
'0018,925B' => { VR => 'LO', Name => 'ASLCrusherDescription' }, |
|
1499
|
|
|
|
|
|
|
'0018,925C' => { VR => 'CS', Name => 'ASLBolusCutoffFlag' }, |
|
1500
|
|
|
|
|
|
|
'0018,925D' => { VR => 'SQ', Name => 'ASLBolusCutoffTimingSequence' }, |
|
1501
|
|
|
|
|
|
|
'0018,925E' => { VR => 'LO', Name => 'ASLBolusCutoffTechnique' }, |
|
1502
|
|
|
|
|
|
|
'0018,925F' => { VR => 'UL', Name => 'ASLBolusCutoffDelayTime' }, |
|
1503
|
|
|
|
|
|
|
'0018,9260' => { VR => 'SQ', Name => 'ASLSlabSequence' }, |
|
1504
|
|
|
|
|
|
|
'0018,9295' => { VR => 'FD', Name => 'ChemicalShiftsMinIntegrateLimitPPM' }, |
|
1505
|
|
|
|
|
|
|
'0018,9296' => { VR => 'FD', Name => 'ChemicalShiftsMaxIntegrateLimitPPM' }, |
|
1506
|
|
|
|
|
|
|
'0018,9297' => { VR => 'CS', Name => 'WaterReferenceAcquisition' }, |
|
1507
|
|
|
|
|
|
|
'0018,9298' => { VR => 'IS', Name => 'EchoPeakPosition' }, |
|
1508
|
|
|
|
|
|
|
'0018,9301' => { VR => 'SQ', Name => 'CTAcquisitionTypeSequence' }, |
|
1509
|
|
|
|
|
|
|
'0018,9302' => { VR => 'CS', Name => 'AcquisitionType' }, |
|
1510
|
|
|
|
|
|
|
'0018,9303' => { VR => 'FD', Name => 'TubeAngle' }, |
|
1511
|
|
|
|
|
|
|
'0018,9304' => { VR => 'SQ', Name => 'CTAcquisitionDetailsSequence' }, |
|
1512
|
|
|
|
|
|
|
'0018,9305' => { VR => 'FD', Name => 'RevolutionTime' }, |
|
1513
|
|
|
|
|
|
|
'0018,9306' => { VR => 'FD', Name => 'SingleCollimationWidth' }, |
|
1514
|
|
|
|
|
|
|
'0018,9307' => { VR => 'FD', Name => 'TotalCollimationWidth' }, |
|
1515
|
|
|
|
|
|
|
'0018,9308' => { VR => 'SQ', Name => 'CTTableDynamicsSequence' }, |
|
1516
|
|
|
|
|
|
|
'0018,9309' => { VR => 'FD', Name => 'TableSpeed' }, |
|
1517
|
|
|
|
|
|
|
'0018,9310' => { VR => 'FD', Name => 'TableFeedPerRotation' }, |
|
1518
|
|
|
|
|
|
|
'0018,9311' => { VR => 'FD', Name => 'SpiralPitchFactor' }, |
|
1519
|
|
|
|
|
|
|
'0018,9312' => { VR => 'SQ', Name => 'CTGeometrySequence' }, |
|
1520
|
|
|
|
|
|
|
'0018,9313' => { VR => 'FD', Name => 'DataCollectionCenterPatient' }, |
|
1521
|
|
|
|
|
|
|
'0018,9314' => { VR => 'SQ', Name => 'CTReconstructionSequence' }, |
|
1522
|
|
|
|
|
|
|
'0018,9315' => { VR => 'CS', Name => 'ReconstructionAlgorithm' }, |
|
1523
|
|
|
|
|
|
|
'0018,9316' => { VR => 'CS', Name => 'ConvolutionKernelGroup' }, |
|
1524
|
|
|
|
|
|
|
'0018,9317' => { VR => 'FD', Name => 'ReconstructionFieldOfView' }, |
|
1525
|
|
|
|
|
|
|
'0018,9318' => { VR => 'FD', Name => 'ReconstructionTargetCenterPatient' }, |
|
1526
|
|
|
|
|
|
|
'0018,9319' => { VR => 'FD', Name => 'ReconstructionAngle' }, |
|
1527
|
|
|
|
|
|
|
'0018,9320' => { VR => 'SH', Name => 'ImageFilter' }, |
|
1528
|
|
|
|
|
|
|
'0018,9321' => { VR => 'SQ', Name => 'CTExposureSequence' }, |
|
1529
|
|
|
|
|
|
|
'0018,9322' => { VR => 'FD', Name => 'ReconstructionPixelSpacing' }, |
|
1530
|
|
|
|
|
|
|
'0018,9323' => { VR => 'CS', Name => 'ExposureModulationType' }, |
|
1531
|
|
|
|
|
|
|
'0018,9324' => { VR => 'FD', Name => 'EstimatedDoseSaving' }, |
|
1532
|
|
|
|
|
|
|
'0018,9325' => { VR => 'SQ', Name => 'CTXRayDetailsSequence' }, |
|
1533
|
|
|
|
|
|
|
'0018,9326' => { VR => 'SQ', Name => 'CTPositionSequence' }, |
|
1534
|
|
|
|
|
|
|
'0018,9327' => { VR => 'FD', Name => 'TablePosition' }, |
|
1535
|
|
|
|
|
|
|
'0018,9328' => { VR => 'FD', Name => 'ExposureTimeInMilliSec' }, |
|
1536
|
|
|
|
|
|
|
'0018,9329' => { VR => 'SQ', Name => 'CTImageFrameTypeSequence' }, |
|
1537
|
|
|
|
|
|
|
'0018,9330' => { VR => 'FD', Name => 'XRayTubeCurrentInMilliAmps' }, |
|
1538
|
|
|
|
|
|
|
'0018,9332' => { VR => 'FD', Name => 'ExposureInMilliAmpSec' }, |
|
1539
|
|
|
|
|
|
|
'0018,9333' => { VR => 'CS', Name => 'ConstantVolumeFlag' }, |
|
1540
|
|
|
|
|
|
|
'0018,9334' => { VR => 'CS', Name => 'FluoroscopyFlag' }, |
|
1541
|
|
|
|
|
|
|
'0018,9335' => { VR => 'FD', Name => 'SourceToDataCollectionCenterDist' }, |
|
1542
|
|
|
|
|
|
|
'0018,9337' => { VR => 'US', Name => 'ContrastBolusAgentNumber' }, |
|
1543
|
|
|
|
|
|
|
'0018,9338' => { VR => 'SQ', Name => 'ContrastBolusIngredientCodeSeq' }, |
|
1544
|
|
|
|
|
|
|
'0018,9340' => { VR => 'SQ', Name => 'ContrastAdministrationProfileSeq' }, |
|
1545
|
|
|
|
|
|
|
'0018,9341' => { VR => 'SQ', Name => 'ContrastBolusUsageSequence' }, |
|
1546
|
|
|
|
|
|
|
'0018,9342' => { VR => 'CS', Name => 'ContrastBolusAgentAdministered' }, |
|
1547
|
|
|
|
|
|
|
'0018,9343' => { VR => 'CS', Name => 'ContrastBolusAgentDetected' }, |
|
1548
|
|
|
|
|
|
|
'0018,9344' => { VR => 'CS', Name => 'ContrastBolusAgentPhase' }, |
|
1549
|
|
|
|
|
|
|
'0018,9345' => { VR => 'FD', Name => 'CTDIvol' }, |
|
1550
|
|
|
|
|
|
|
'0018,9346' => { VR => 'SQ', Name => 'CTDIPhantomTypeCodeSequence' }, |
|
1551
|
|
|
|
|
|
|
'0018,9351' => { VR => 'FL', Name => 'CalciumScoringMassFactorPatient' }, |
|
1552
|
|
|
|
|
|
|
'0018,9352' => { VR => 'FL', Name => 'CalciumScoringMassFactorDevice' }, |
|
1553
|
|
|
|
|
|
|
'0018,9353' => { VR => 'FL', Name => 'EnergyWeightingFactor' }, |
|
1554
|
|
|
|
|
|
|
'0018,9360' => { VR => 'SQ', Name => 'CTAdditionalXRaySourceSequence' }, |
|
1555
|
|
|
|
|
|
|
'0018,9361' => { VR => 'CS', Name => 'MultienergyCTAcquisition' }, |
|
1556
|
|
|
|
|
|
|
'0018,9362' => { VR => 'SQ', Name => 'MultienergyCTAcquisitionSequence' }, |
|
1557
|
|
|
|
|
|
|
'0018,9363' => { VR => 'SQ', Name => 'MultienergyCTProcessingSequence' }, |
|
1558
|
|
|
|
|
|
|
'0018,9364' => { VR => 'SQ', Name => 'MultienergyCTCharacteristicsSeq' }, |
|
1559
|
|
|
|
|
|
|
'0018,9365' => { VR => 'SQ', Name => 'MultienergyCTXRaySourceSequence' }, |
|
1560
|
|
|
|
|
|
|
'0018,9366' => { VR => 'US', Name => 'XRaySourceIndex' }, |
|
1561
|
|
|
|
|
|
|
'0018,9367' => { VR => 'UC', Name => 'XRaySourceID' }, |
|
1562
|
|
|
|
|
|
|
'0018,9368' => { VR => 'CS', Name => 'MultienergySourceTechnique' }, |
|
1563
|
|
|
|
|
|
|
'0018,9369' => { VR => 'DT', Name => 'SourceStartDateTime' }, |
|
1564
|
|
|
|
|
|
|
'0018,936A' => { VR => 'DT', Name => 'SourceEndDateTime' }, |
|
1565
|
|
|
|
|
|
|
'0018,936B' => { VR => 'US', Name => 'SwitchingPhaseNumber' }, |
|
1566
|
|
|
|
|
|
|
'0018,936C' => { VR => 'DS', Name => 'SwitchingPhaseNominalDuration' }, |
|
1567
|
|
|
|
|
|
|
'0018,936D' => { VR => 'DS', Name => 'SwitchingPhaseTransitionDuration' }, |
|
1568
|
|
|
|
|
|
|
'0018,936E' => { VR => 'DS', Name => 'EffectiveBinEnergy' }, |
|
1569
|
|
|
|
|
|
|
'0018,936F' => { VR => 'SQ', Name => 'MultienergyCTXRayDetectorSequence' }, |
|
1570
|
|
|
|
|
|
|
'0018,9370' => { VR => 'US', Name => 'XRayDetectorIndex' }, |
|
1571
|
|
|
|
|
|
|
'0018,9371' => { VR => 'UC', Name => 'XRayDetectorID' }, |
|
1572
|
|
|
|
|
|
|
'0018,9372' => { VR => 'CS', Name => 'MultienergyDetectorType' }, |
|
1573
|
|
|
|
|
|
|
'0018,9373' => { VR => 'ST', Name => 'XRayDetectorLabel' }, |
|
1574
|
|
|
|
|
|
|
'0018,9374' => { VR => 'DS', Name => 'NominalMaxEnergy' }, |
|
1575
|
|
|
|
|
|
|
'0018,9375' => { VR => 'DS', Name => 'NominalMinEnergy' }, |
|
1576
|
|
|
|
|
|
|
'0018,9376' => { VR => 'US', Name => 'ReferencedXRayDetectorIndex' }, |
|
1577
|
|
|
|
|
|
|
'0018,9377' => { VR => 'US', Name => 'ReferencedXRaySourceIndex' }, |
|
1578
|
|
|
|
|
|
|
'0018,9378' => { VR => 'US', Name => 'ReferencedPathIndex' }, |
|
1579
|
|
|
|
|
|
|
'0018,9379' => { VR => 'SQ', Name => 'MultienergyCTPathSequence' }, |
|
1580
|
|
|
|
|
|
|
'0018,937A' => { VR => 'US', Name => 'MultienergyCTPathIndex' }, |
|
1581
|
|
|
|
|
|
|
'0018,937B' => { VR => 'UT', Name => 'MultienergyAcquisitionDescription' }, |
|
1582
|
|
|
|
|
|
|
'0018,937C' => { VR => 'FD', Name => 'MonoenergeticEnergyEquivalent' }, |
|
1583
|
|
|
|
|
|
|
'0018,937D' => { VR => 'SQ', Name => 'MaterialCodeSequence' }, |
|
1584
|
|
|
|
|
|
|
'0018,937E' => { VR => 'CS', Name => 'DecompositionMethod' }, |
|
1585
|
|
|
|
|
|
|
'0018,937F' => { VR => 'UT', Name => 'DecompositionDescription' }, |
|
1586
|
|
|
|
|
|
|
'0018,9380' => { VR => 'SQ', Name => 'DecompositionAlgorithmIDSeq' }, |
|
1587
|
|
|
|
|
|
|
'0018,9381' => { VR => 'SQ', Name => 'DecompositionMaterialSequence' }, |
|
1588
|
|
|
|
|
|
|
'0018,9382' => { VR => 'SQ', Name => 'MaterialAttenuationSequence' }, |
|
1589
|
|
|
|
|
|
|
'0018,9383' => { VR => 'DS', Name => 'PhotonEnergy' }, |
|
1590
|
|
|
|
|
|
|
'0018,9384' => { VR => 'DS', Name => 'XRayMassAttenuationCoefficient' }, |
|
1591
|
|
|
|
|
|
|
'0018,9390' => { VR => 'SQ', Name => 'MetalArtifactReductionSequence' }, |
|
1592
|
|
|
|
|
|
|
'0018,9391' => { VR => 'CS', Name => 'MetalArtifactReductionApplied' }, |
|
1593
|
|
|
|
|
|
|
'0018,9392' => { VR => 'SQ', Name => 'MetalArtifactReductAlgorithmIDSeq' }, |
|
1594
|
|
|
|
|
|
|
'0018,9401' => { VR => 'SQ', Name => 'ProjectionPixelCalibrationSequence' }, |
|
1595
|
|
|
|
|
|
|
'0018,9402' => { VR => 'FL', Name => 'DistanceSourceToIsocenter' }, |
|
1596
|
|
|
|
|
|
|
'0018,9403' => { VR => 'FL', Name => 'DistanceObjectToTableTop' }, |
|
1597
|
|
|
|
|
|
|
'0018,9404' => { VR => 'FL', Name => 'ObjectPixelSpacingInCenterOfBeam' }, |
|
1598
|
|
|
|
|
|
|
'0018,9405' => { VR => 'SQ', Name => 'PositionerPositionSequence' }, |
|
1599
|
|
|
|
|
|
|
'0018,9406' => { VR => 'SQ', Name => 'TablePositionSequence' }, |
|
1600
|
|
|
|
|
|
|
'0018,9407' => { VR => 'SQ', Name => 'CollimatorShapeSequence' }, |
|
1601
|
|
|
|
|
|
|
'0018,9410' => { VR => 'CS', Name => 'PlanesInAcquisition' }, |
|
1602
|
|
|
|
|
|
|
'0018,9412' => { VR => 'SQ', Name => 'XA-XRFFrameCharacteristicsSequence' }, |
|
1603
|
|
|
|
|
|
|
'0018,9417' => { VR => 'SQ', Name => 'FrameAcquisitionSequence' }, |
|
1604
|
|
|
|
|
|
|
'0018,9420' => { VR => 'CS', Name => 'XRayReceptorType' }, |
|
1605
|
|
|
|
|
|
|
'0018,9423' => { VR => 'LO', Name => 'AcquisitionProtocolName' }, |
|
1606
|
|
|
|
|
|
|
'0018,9424' => { VR => 'LT', Name => 'AcquisitionProtocolDescription' }, |
|
1607
|
|
|
|
|
|
|
'0018,9425' => { VR => 'CS', Name => 'ContrastBolusIngredientOpaque' }, |
|
1608
|
|
|
|
|
|
|
'0018,9426' => { VR => 'FL', Name => 'DistanceReceptorPlaneToDetHousing' }, |
|
1609
|
|
|
|
|
|
|
'0018,9427' => { VR => 'CS', Name => 'IntensifierActiveShape' }, |
|
1610
|
|
|
|
|
|
|
'0018,9428' => { VR => 'FL', Name => 'IntensifierActiveDimensions' }, |
|
1611
|
|
|
|
|
|
|
'0018,9429' => { VR => 'FL', Name => 'PhysicalDetectorSize' }, |
|
1612
|
|
|
|
|
|
|
'0018,9430' => { VR => 'US', Name => 'PositionOfIsocenterProjection' }, |
|
1613
|
|
|
|
|
|
|
'0018,9432' => { VR => 'SQ', Name => 'FieldOfViewSequence' }, |
|
1614
|
|
|
|
|
|
|
'0018,9433' => { VR => 'LO', Name => 'FieldOfViewDescription' }, |
|
1615
|
|
|
|
|
|
|
'0018,9434' => { VR => 'SQ', Name => 'ExposureControlSensingRegionsSeq' }, |
|
1616
|
|
|
|
|
|
|
'0018,9435' => { VR => 'CS', Name => 'ExposureControlSensingRegionShape' }, |
|
1617
|
|
|
|
|
|
|
'0018,9436' => { VR => 'SS', Name => 'ExposureControlSensRegionLeftEdge' }, |
|
1618
|
|
|
|
|
|
|
'0018,9437' => { VR => 'SS', Name => 'ExposureControlSensRegionRightEdge' }, |
|
1619
|
|
|
|
|
|
|
'0018,9438' => { VR => 'SS', Name => 'ExpControlSensingRgnUpperHorizEdge' }, |
|
1620
|
|
|
|
|
|
|
'0018,9439' => { VR => 'SS', Name => 'ExpControlSensingRgnLowerHorizEdge' }, |
|
1621
|
|
|
|
|
|
|
'0018,9440' => { VR => 'SS', Name => 'CenterOfCircExposControlSensRegion' }, |
|
1622
|
|
|
|
|
|
|
'0018,9441' => { VR => 'US', Name => 'RadiusOfCircExposControlSensRegion' }, |
|
1623
|
|
|
|
|
|
|
'0018,9442' => { VR => 'SS', Name => 'VerticesOfPolyExpControlSensingRgn' }, |
|
1624
|
|
|
|
|
|
|
'0018,9447' => { VR => 'FL', Name => 'ColumnAngulationPatient' }, |
|
1625
|
|
|
|
|
|
|
'0018,9449' => { VR => 'FL', Name => 'BeamAngle' }, |
|
1626
|
|
|
|
|
|
|
'0018,9451' => { VR => 'SQ', Name => 'FrameDetectorParametersSequence' }, |
|
1627
|
|
|
|
|
|
|
'0018,9452' => { VR => 'FL', Name => 'CalculatedAnatomyThickness' }, |
|
1628
|
|
|
|
|
|
|
'0018,9455' => { VR => 'SQ', Name => 'CalibrationSequence' }, |
|
1629
|
|
|
|
|
|
|
'0018,9456' => { VR => 'SQ', Name => 'ObjectThicknessSequence' }, |
|
1630
|
|
|
|
|
|
|
'0018,9457' => { VR => 'CS', Name => 'PlaneIdentification' }, |
|
1631
|
|
|
|
|
|
|
'0018,9461' => { VR => 'FL', Name => 'FieldOfViewDimensionsInFloat' }, |
|
1632
|
|
|
|
|
|
|
'0018,9462' => { VR => 'SQ', Name => 'IsocenterReferenceSystemSequence' }, |
|
1633
|
|
|
|
|
|
|
'0018,9463' => { VR => 'FL', Name => 'PositionerIsocenterPrimaryAngle' }, |
|
1634
|
|
|
|
|
|
|
'0018,9464' => { VR => 'FL', Name => 'PositionerIsocenterSecondaryAngle' }, |
|
1635
|
|
|
|
|
|
|
'0018,9465' => { VR => 'FL', Name => 'PositionerIsocenterDetRotAngle' }, |
|
1636
|
|
|
|
|
|
|
'0018,9466' => { VR => 'FL', Name => 'TableXPositionToIsocenter' }, |
|
1637
|
|
|
|
|
|
|
'0018,9467' => { VR => 'FL', Name => 'TableYPositionToIsocenter' }, |
|
1638
|
|
|
|
|
|
|
'0018,9468' => { VR => 'FL', Name => 'TableZPositionToIsocenter' }, |
|
1639
|
|
|
|
|
|
|
'0018,9469' => { VR => 'FL', Name => 'TableHorizontalRotationAngle' }, |
|
1640
|
|
|
|
|
|
|
'0018,9470' => { VR => 'FL', Name => 'TableHeadTiltAngle' }, |
|
1641
|
|
|
|
|
|
|
'0018,9471' => { VR => 'FL', Name => 'TableCradleTiltAngle' }, |
|
1642
|
|
|
|
|
|
|
'0018,9472' => { VR => 'SQ', Name => 'FrameDisplayShutterSequence' }, |
|
1643
|
|
|
|
|
|
|
'0018,9473' => { VR => 'FL', Name => 'AcquiredImageAreaDoseProduct' }, |
|
1644
|
|
|
|
|
|
|
'0018,9474' => { VR => 'CS', Name => 'CArmPositionerTabletopRelationship' }, |
|
1645
|
|
|
|
|
|
|
'0018,9476' => { VR => 'SQ', Name => 'XRayGeometrySequence' }, |
|
1646
|
|
|
|
|
|
|
'0018,9477' => { VR => 'SQ', Name => 'IrradiationEventIDSequence' }, |
|
1647
|
|
|
|
|
|
|
'0018,9504' => { VR => 'SQ', Name => 'XRay3DFrameTypeSequence' }, |
|
1648
|
|
|
|
|
|
|
'0018,9506' => { VR => 'SQ', Name => 'ContributingSourcesSequence' }, |
|
1649
|
|
|
|
|
|
|
'0018,9507' => { VR => 'SQ', Name => 'XRay3DAcquisitionSequence' }, |
|
1650
|
|
|
|
|
|
|
'0018,9508' => { VR => 'FL', Name => 'PrimaryPositionerScanArc' }, |
|
1651
|
|
|
|
|
|
|
'0018,9509' => { VR => 'FL', Name => 'SecondaryPositionerScanArc' }, |
|
1652
|
|
|
|
|
|
|
'0018,9510' => { VR => 'FL', Name => 'PrimaryPositionerScanStartAngle' }, |
|
1653
|
|
|
|
|
|
|
'0018,9511' => { VR => 'FL', Name => 'SecondaryPositionerScanStartAngle' }, |
|
1654
|
|
|
|
|
|
|
'0018,9514' => { VR => 'FL', Name => 'PrimaryPositionerIncrement' }, |
|
1655
|
|
|
|
|
|
|
'0018,9515' => { VR => 'FL', Name => 'SecondaryPositionerIncrement' }, |
|
1656
|
|
|
|
|
|
|
'0018,9516' => { VR => 'DT', Name => 'StartAcquisitionDateTime' }, |
|
1657
|
|
|
|
|
|
|
'0018,9517' => { VR => 'DT', Name => 'EndAcquisitionDateTime' }, |
|
1658
|
|
|
|
|
|
|
'0018,9518' => { VR => 'SS', Name => 'PrimaryPositionerIncrementSign' }, |
|
1659
|
|
|
|
|
|
|
'0018,9519' => { VR => 'SS', Name => 'SecondaryPositionerIncrementSign' }, |
|
1660
|
|
|
|
|
|
|
'0018,9524' => { VR => 'LO', Name => 'ApplicationName' }, |
|
1661
|
|
|
|
|
|
|
'0018,9525' => { VR => 'LO', Name => 'ApplicationVersion' }, |
|
1662
|
|
|
|
|
|
|
'0018,9526' => { VR => 'LO', Name => 'ApplicationManufacturer' }, |
|
1663
|
|
|
|
|
|
|
'0018,9527' => { VR => 'CS', Name => 'AlgorithmType' }, |
|
1664
|
|
|
|
|
|
|
'0018,9528' => { VR => 'LO', Name => 'AlgorithmDescription' }, |
|
1665
|
|
|
|
|
|
|
'0018,9530' => { VR => 'SQ', Name => 'XRay3DReconstructionSequence' }, |
|
1666
|
|
|
|
|
|
|
'0018,9531' => { VR => 'LO', Name => 'ReconstructionDescription' }, |
|
1667
|
|
|
|
|
|
|
'0018,9538' => { VR => 'SQ', Name => 'PerProjectionAcquisitionSequence' }, |
|
1668
|
|
|
|
|
|
|
'0018,9541' => { VR => 'SQ', Name => 'DetectorPositionSequence' }, |
|
1669
|
|
|
|
|
|
|
'0018,9542' => { VR => 'SQ', Name => 'XRayAcquisitionDoseSequence' }, |
|
1670
|
|
|
|
|
|
|
'0018,9543' => { VR => 'FD', Name => 'XRaySourceIsocenterPrimaryAngle' }, |
|
1671
|
|
|
|
|
|
|
'0018,9544' => { VR => 'FD', Name => 'XRaySourceIsocenterSecondaryAngle' }, |
|
1672
|
|
|
|
|
|
|
'0018,9545' => { VR => 'FD', Name => 'BreastSupportIsocenterPrimaryAngle' }, |
|
1673
|
|
|
|
|
|
|
'0018,9546' => { VR => 'FD', Name => 'BreastSupportIsocenterSecondAngle' }, |
|
1674
|
|
|
|
|
|
|
'0018,9547' => { VR => 'FD', Name => 'BreastSupportXPositionToIsocenter' }, |
|
1675
|
|
|
|
|
|
|
'0018,9548' => { VR => 'FD', Name => 'BreastSupportYPositionToIsocenter' }, |
|
1676
|
|
|
|
|
|
|
'0018,9549' => { VR => 'FD', Name => 'BreastSupportZPositionToIsocenter' }, |
|
1677
|
|
|
|
|
|
|
'0018,9550' => { VR => 'FD', Name => 'DetectorIsocenterPrimaryAngle' }, |
|
1678
|
|
|
|
|
|
|
'0018,9551' => { VR => 'FD', Name => 'DetectorIsocenterSecondaryAngle' }, |
|
1679
|
|
|
|
|
|
|
'0018,9552' => { VR => 'FD', Name => 'DetectorXPositionToIsocenter' }, |
|
1680
|
|
|
|
|
|
|
'0018,9553' => { VR => 'FD', Name => 'DetectorYPositionToIsocenter' }, |
|
1681
|
|
|
|
|
|
|
'0018,9554' => { VR => 'FD', Name => 'DetectorZPositionToIsocenter' }, |
|
1682
|
|
|
|
|
|
|
'0018,9555' => { VR => 'SQ', Name => 'XRayGridSequence' }, |
|
1683
|
|
|
|
|
|
|
'0018,9556' => { VR => 'SQ', Name => 'XRayFilterSequence' }, |
|
1684
|
|
|
|
|
|
|
'0018,9557' => { VR => 'FD', Name => 'DetectorActiveAreaTLHCPosition' }, |
|
1685
|
|
|
|
|
|
|
'0018,9558' => { VR => 'FD', Name => 'DetectorActiveAreaOrientation' }, |
|
1686
|
|
|
|
|
|
|
'0018,9559' => { VR => 'CS', Name => 'PositionerPrimaryAngleDirection' }, |
|
1687
|
|
|
|
|
|
|
'0018,9601' => { VR => 'SQ', Name => 'DiffusionBMatrixSequence' }, |
|
1688
|
|
|
|
|
|
|
'0018,9602' => { VR => 'FD', Name => 'DiffusionBValueXX' }, |
|
1689
|
|
|
|
|
|
|
'0018,9603' => { VR => 'FD', Name => 'DiffusionBValueXY' }, |
|
1690
|
|
|
|
|
|
|
'0018,9604' => { VR => 'FD', Name => 'DiffusionBValueXZ' }, |
|
1691
|
|
|
|
|
|
|
'0018,9605' => { VR => 'FD', Name => 'DiffusionBValueYY' }, |
|
1692
|
|
|
|
|
|
|
'0018,9606' => { VR => 'FD', Name => 'DiffusionBValueYZ' }, |
|
1693
|
|
|
|
|
|
|
'0018,9607' => { VR => 'FD', Name => 'DiffusionBValueZZ' }, |
|
1694
|
|
|
|
|
|
|
'0018,9621' => { VR => 'SQ', Name => 'FunctionalMRSequence' }, |
|
1695
|
|
|
|
|
|
|
'0018,9622' => { VR => 'CS', Name => 'FunctSettlingPhaseFramesPresent' }, |
|
1696
|
|
|
|
|
|
|
'0018,9623' => { VR => 'DT', Name => 'FunctionalSyncPulse' }, |
|
1697
|
|
|
|
|
|
|
'0018,9624' => { VR => 'CS', Name => 'SettlingPhaseFrame' }, |
|
1698
|
|
|
|
|
|
|
'0018,9701' => { VR => 'DT', Name => 'DecayCorrectionDateTime' }, |
|
1699
|
|
|
|
|
|
|
'0018,9715' => { VR => 'FD', Name => 'StartDensityThreshold' }, |
|
1700
|
|
|
|
|
|
|
'0018,9716' => { VR => 'FD', Name => 'StartRelativeDensityDiffThresh' }, |
|
1701
|
|
|
|
|
|
|
'0018,9717' => { VR => 'FD', Name => 'StartCardiacTriggerCountThreshold' }, |
|
1702
|
|
|
|
|
|
|
'0018,9718' => { VR => 'FD', Name => 'StartRespiratoryTriggerCountThresh' }, |
|
1703
|
|
|
|
|
|
|
'0018,9719' => { VR => 'FD', Name => 'TerminationCountsThreshold' }, |
|
1704
|
|
|
|
|
|
|
'0018,9720' => { VR => 'FD', Name => 'TerminationDensityThreshold' }, |
|
1705
|
|
|
|
|
|
|
'0018,9721' => { VR => 'FD', Name => 'TerminationRelativeDensityThresh' }, |
|
1706
|
|
|
|
|
|
|
'0018,9722' => { VR => 'FD', Name => 'TerminationTimeThreshold' }, |
|
1707
|
|
|
|
|
|
|
'0018,9723' => { VR => 'FD', Name => 'TerminationCardiacTrigCountThresh' }, |
|
1708
|
|
|
|
|
|
|
'0018,9724' => { VR => 'FD', Name => 'TermRespiratoryTrigCountThresh' }, |
|
1709
|
|
|
|
|
|
|
'0018,9725' => { VR => 'CS', Name => 'DetectorGeometry' }, |
|
1710
|
|
|
|
|
|
|
'0018,9726' => { VR => 'FD', Name => 'TransverseDetectorSeparation' }, |
|
1711
|
|
|
|
|
|
|
'0018,9727' => { VR => 'FD', Name => 'AxialDetectorDimension' }, |
|
1712
|
|
|
|
|
|
|
'0018,9729' => { VR => 'US', Name => 'RadiopharmaceuticalAgentNumber' }, |
|
1713
|
|
|
|
|
|
|
'0018,9732' => { VR => 'SQ', Name => 'PETFrameAcquisitionSequence' }, |
|
1714
|
|
|
|
|
|
|
'0018,9733' => { VR => 'SQ', Name => 'PETDetectorMotionDetailsSequence' }, |
|
1715
|
|
|
|
|
|
|
'0018,9734' => { VR => 'SQ', Name => 'PETTableDynamicsSequence' }, |
|
1716
|
|
|
|
|
|
|
'0018,9735' => { VR => 'SQ', Name => 'PETPositionSequence' }, |
|
1717
|
|
|
|
|
|
|
'0018,9736' => { VR => 'SQ', Name => 'PETFrameCorrectionFactorsSequence' }, |
|
1718
|
|
|
|
|
|
|
'0018,9737' => { VR => 'SQ', Name => 'RadiopharmaceuticalUsageSequence' }, |
|
1719
|
|
|
|
|
|
|
'0018,9738' => { VR => 'CS', Name => 'AttenuationCorrectionSource' }, |
|
1720
|
|
|
|
|
|
|
'0018,9739' => { VR => 'US', Name => 'NumberOfIterations' }, |
|
1721
|
|
|
|
|
|
|
'0018,9740' => { VR => 'US', Name => 'NumberOfSubsets' }, |
|
1722
|
|
|
|
|
|
|
'0018,9749' => { VR => 'SQ', Name => 'PETReconstructionSequence' }, |
|
1723
|
|
|
|
|
|
|
'0018,9751' => { VR => 'SQ', Name => 'PETFrameTypeSequence' }, |
|
1724
|
|
|
|
|
|
|
'0018,9755' => { VR => 'CS', Name => 'TimeOfFlightInformationUsed' }, |
|
1725
|
|
|
|
|
|
|
'0018,9756' => { VR => 'CS', Name => 'ReconstructionType' }, |
|
1726
|
|
|
|
|
|
|
'0018,9758' => { VR => 'CS', Name => 'DecayCorrected' }, |
|
1727
|
|
|
|
|
|
|
'0018,9759' => { VR => 'CS', Name => 'AttenuationCorrected' }, |
|
1728
|
|
|
|
|
|
|
'0018,9760' => { VR => 'CS', Name => 'ScatterCorrected' }, |
|
1729
|
|
|
|
|
|
|
'0018,9761' => { VR => 'CS', Name => 'DeadTimeCorrected' }, |
|
1730
|
|
|
|
|
|
|
'0018,9762' => { VR => 'CS', Name => 'GantryMotionCorrected' }, |
|
1731
|
|
|
|
|
|
|
'0018,9763' => { VR => 'CS', Name => 'PatientMotionCorrected' }, |
|
1732
|
|
|
|
|
|
|
'0018,9764' => { VR => 'CS', Name => 'CountLossNormalizationCorrected' }, |
|
1733
|
|
|
|
|
|
|
'0018,9765' => { VR => 'CS', Name => 'RandomsCorrected' }, |
|
1734
|
|
|
|
|
|
|
'0018,9766' => { VR => 'CS', Name => 'NonUniformRadialSamplingCorrected' }, |
|
1735
|
|
|
|
|
|
|
'0018,9767' => { VR => 'CS', Name => 'SensitivityCalibrated' }, |
|
1736
|
|
|
|
|
|
|
'0018,9768' => { VR => 'CS', Name => 'DetectorNormalizationCorrection' }, |
|
1737
|
|
|
|
|
|
|
'0018,9769' => { VR => 'CS', Name => 'IterativeReconstructionMethod' }, |
|
1738
|
|
|
|
|
|
|
'0018,9770' => { VR => 'CS', Name => 'AttenCorrTemporalRelationship' }, |
|
1739
|
|
|
|
|
|
|
'0018,9771' => { VR => 'SQ', Name => 'PatientPhysiologicalStateSequence' }, |
|
1740
|
|
|
|
|
|
|
'0018,9772' => { VR => 'SQ', Name => 'PatientPhysiologicalStateCodeSeq' }, |
|
1741
|
|
|
|
|
|
|
'0018,9801' => { VR => 'FD', Name => 'DepthsOfFocus' }, |
|
1742
|
|
|
|
|
|
|
'0018,9803' => { VR => 'SQ', Name => 'ExcludedIntervalsSequence' }, |
|
1743
|
|
|
|
|
|
|
'0018,9804' => { VR => 'DT', Name => 'ExclusionStartDatetime' }, |
|
1744
|
|
|
|
|
|
|
'0018,9805' => { VR => 'FD', Name => 'ExclusionDuration' }, |
|
1745
|
|
|
|
|
|
|
'0018,9806' => { VR => 'SQ', Name => 'USImageDescriptionSequence' }, |
|
1746
|
|
|
|
|
|
|
'0018,9807' => { VR => 'SQ', Name => 'ImageDataTypeSequence' }, |
|
1747
|
|
|
|
|
|
|
'0018,9808' => { VR => 'CS', Name => 'DataType' }, |
|
1748
|
|
|
|
|
|
|
'0018,9809' => { VR => 'SQ', Name => 'TransducerScanPatternCodeSequence' }, |
|
1749
|
|
|
|
|
|
|
'0018,980B' => { VR => 'CS', Name => 'AliasedDataType' }, |
|
1750
|
|
|
|
|
|
|
'0018,980C' => { VR => 'CS', Name => 'PositionMeasuringDeviceUsed' }, |
|
1751
|
|
|
|
|
|
|
'0018,980D' => { VR => 'SQ', Name => 'TransducerGeometryCodeSequence' }, |
|
1752
|
|
|
|
|
|
|
'0018,980E' => { VR => 'SQ', Name => 'TransducerBeamSteeringCodeSequence' }, |
|
1753
|
|
|
|
|
|
|
'0018,980F' => { VR => 'SQ', Name => 'TransducerApplicationCodeSequence' }, |
|
1754
|
|
|
|
|
|
|
'0018,9810' => { VR => 'SS', Name => 'ZeroVelocityPixelValue' }, |
|
1755
|
|
|
|
|
|
|
'0018,9821' => { VR => 'SQ', Name => 'PhotoacousticExcitationCharSeq' }, |
|
1756
|
|
|
|
|
|
|
'0018,9822' => { VR => 'FD', Name => 'ExcitationSpectralWidth' }, |
|
1757
|
|
|
|
|
|
|
'0018,9823' => { VR => 'FD', Name => 'ExcitationEnergy' }, |
|
1758
|
|
|
|
|
|
|
'0018,9824' => { VR => 'FD', Name => 'ExcitationPulseDuration' }, |
|
1759
|
|
|
|
|
|
|
'0018,9825' => { VR => 'SQ', Name => 'ExcitationWavelengthSequence' }, |
|
1760
|
|
|
|
|
|
|
'0018,9826' => { VR => 'FD', Name => 'ExcitationWavelength' }, |
|
1761
|
|
|
|
|
|
|
'0018,9828' => { VR => 'CS', Name => 'IlluminationTranslationFlag' }, |
|
1762
|
|
|
|
|
|
|
'0018,9829' => { VR => 'CS', Name => 'AcousticCouplingMediumFlag' }, |
|
1763
|
|
|
|
|
|
|
'0018,982A' => { VR => 'SQ', Name => 'AcousticCouplingMediumCodeSequence' }, |
|
1764
|
|
|
|
|
|
|
'0018,982B' => { VR => 'FD', Name => 'AcousticCouplingMediumTemperature' }, |
|
1765
|
|
|
|
|
|
|
'0018,982C' => { VR => 'SQ', Name => 'TransducerResponseSequence' }, |
|
1766
|
|
|
|
|
|
|
'0018,982D' => { VR => 'FD', Name => 'CenterFrequency' }, |
|
1767
|
|
|
|
|
|
|
'0018,982E' => { VR => 'FD', Name => 'FractionalBandwidth' }, |
|
1768
|
|
|
|
|
|
|
'0018,982F' => { VR => 'FD', Name => 'LowerCutoffFrequency' }, |
|
1769
|
|
|
|
|
|
|
'0018,9830' => { VR => 'FD', Name => 'UpperCutoffFrequency' }, |
|
1770
|
|
|
|
|
|
|
'0018,9831' => { VR => 'SQ', Name => 'TransducerTechnologySequence' }, |
|
1771
|
|
|
|
|
|
|
'0018,9832' => { VR => 'SQ', Name => 'SoundSpeedCorrMechanismCodeSeq' }, |
|
1772
|
|
|
|
|
|
|
'0018,9833' => { VR => 'FD', Name => 'ObjectSoundSpeed' }, |
|
1773
|
|
|
|
|
|
|
'0018,9834' => { VR => 'FD', Name => 'AcousticCouplingMediumSoundSpeed' }, |
|
1774
|
|
|
|
|
|
|
'0018,9835' => { VR => 'SQ', Name => 'PhotoacousticImageFrameTypeSeq' }, |
|
1775
|
|
|
|
|
|
|
'0018,9836' => { VR => 'SQ', Name => 'ImageDataTypeCodeSequence' }, |
|
1776
|
|
|
|
|
|
|
'0018,9900' => { VR => 'LO', Name => 'ReferenceLocationLabel' }, |
|
1777
|
|
|
|
|
|
|
'0018,9901' => { VR => 'UT', Name => 'ReferenceLocationDescription' }, |
|
1778
|
|
|
|
|
|
|
'0018,9902' => { VR => 'SQ', Name => 'ReferenceBasisCodeSequence' }, |
|
1779
|
|
|
|
|
|
|
'0018,9903' => { VR => 'SQ', Name => 'ReferenceGeometryCodeSequence' }, |
|
1780
|
|
|
|
|
|
|
'0018,9904' => { VR => 'DS', Name => 'OffsetDistance' }, |
|
1781
|
|
|
|
|
|
|
'0018,9905' => { VR => 'CS', Name => 'OffsetDirection' }, |
|
1782
|
|
|
|
|
|
|
'0018,9906' => { VR => 'SQ', Name => 'PotentialScheduledProtocolCodeSeq' }, |
|
1783
|
|
|
|
|
|
|
'0018,9907' => { VR => 'SQ', Name => 'PotentialRequestedProcedureCodeSeq' }, |
|
1784
|
|
|
|
|
|
|
'0018,9908' => { VR => 'UC', Name => 'PotentialReasonsForProcedure' }, |
|
1785
|
|
|
|
|
|
|
'0018,9909' => { VR => 'SQ', Name => 'PotentialReasonsForProcCodeSeq' }, |
|
1786
|
|
|
|
|
|
|
'0018,990A' => { VR => 'UC', Name => 'PotentialDiagnosticTasks' }, |
|
1787
|
|
|
|
|
|
|
'0018,990B' => { VR => 'SQ', Name => 'ContraindicationsCodeSequence' }, |
|
1788
|
|
|
|
|
|
|
'0018,990C' => { VR => 'SQ', Name => 'ReferencedDefinedProtocolSequence' }, |
|
1789
|
|
|
|
|
|
|
'0018,990D' => { VR => 'SQ', Name => 'ReferencedPerformedProtocolSeq' }, |
|
1790
|
|
|
|
|
|
|
'0018,990E' => { VR => 'SQ', Name => 'PredecessorProtocolSequence' }, |
|
1791
|
|
|
|
|
|
|
'0018,990F' => { VR => 'UT', Name => 'ProtocolPlanningInformation' }, |
|
1792
|
|
|
|
|
|
|
'0018,9910' => { VR => 'UT', Name => 'ProtocolDesignRationale' }, |
|
1793
|
|
|
|
|
|
|
'0018,9911' => { VR => 'SQ', Name => 'PatientSpecificationSequence' }, |
|
1794
|
|
|
|
|
|
|
'0018,9912' => { VR => 'SQ', Name => 'ModelSpecificationSequence' }, |
|
1795
|
|
|
|
|
|
|
'0018,9913' => { VR => 'SQ', Name => 'ParametersSpecificationSequence' }, |
|
1796
|
|
|
|
|
|
|
'0018,9914' => { VR => 'SQ', Name => 'InstructionSequence' }, |
|
1797
|
|
|
|
|
|
|
'0018,9915' => { VR => 'US', Name => 'InstructionIndex' }, |
|
1798
|
|
|
|
|
|
|
'0018,9916' => { VR => 'LO', Name => 'InstructionText' }, |
|
1799
|
|
|
|
|
|
|
'0018,9917' => { VR => 'UT', Name => 'InstructionDescription' }, |
|
1800
|
|
|
|
|
|
|
'0018,9918' => { VR => 'CS', Name => 'InstructionPerformedFlag' }, |
|
1801
|
|
|
|
|
|
|
'0018,9919' => { VR => 'DT', Name => 'InstructionPerformedDateTime' }, |
|
1802
|
|
|
|
|
|
|
'0018,991A' => { VR => 'UT', Name => 'InstructionPerformanceComment' }, |
|
1803
|
|
|
|
|
|
|
'0018,991B' => { VR => 'SQ', Name => 'PatientPositioningInstructionSeq' }, |
|
1804
|
|
|
|
|
|
|
'0018,991C' => { VR => 'SQ', Name => 'PositioningMethodCodeSequence' }, |
|
1805
|
|
|
|
|
|
|
'0018,991D' => { VR => 'SQ', Name => 'PositioningLandmarkSequence' }, |
|
1806
|
|
|
|
|
|
|
'0018,991E' => { VR => 'UI', Name => 'TargetFrameOfReferenceUID' }, |
|
1807
|
|
|
|
|
|
|
'0018,991F' => { VR => 'SQ', Name => 'AcquisitionProtocolElementSpecSeq' }, |
|
1808
|
|
|
|
|
|
|
'0018,9920' => { VR => 'SQ', Name => 'AcquisitionProtocolElementSequence' }, |
|
1809
|
|
|
|
|
|
|
'0018,9921' => { VR => 'US', Name => 'ProtocolElementNumber' }, |
|
1810
|
|
|
|
|
|
|
'0018,9922' => { VR => 'LO', Name => 'ProtocolElementName' }, |
|
1811
|
|
|
|
|
|
|
'0018,9923' => { VR => 'UT', Name => 'ProtocolElementCharSummary' }, |
|
1812
|
|
|
|
|
|
|
'0018,9924' => { VR => 'UT', Name => 'ProtocolElementPurpose' }, |
|
1813
|
|
|
|
|
|
|
'0018,9930' => { VR => 'CS', Name => 'AcquisitionMotion' }, |
|
1814
|
|
|
|
|
|
|
'0018,9931' => { VR => 'SQ', Name => 'AcquisitionStartLocationSequence' }, |
|
1815
|
|
|
|
|
|
|
'0018,9932' => { VR => 'SQ', Name => 'AcquisitionEndLocationSequence' }, |
|
1816
|
|
|
|
|
|
|
'0018,9933' => { VR => 'SQ', Name => 'ReconstructionProtoElementSpecSeq' }, |
|
1817
|
|
|
|
|
|
|
'0018,9934' => { VR => 'SQ', Name => 'ReconstructionProtocolElementSeq' }, |
|
1818
|
|
|
|
|
|
|
'0018,9935' => { VR => 'SQ', Name => 'StorageProtocolElementSpecSequence' }, |
|
1819
|
|
|
|
|
|
|
'0018,9936' => { VR => 'SQ', Name => 'StorageProtocolElementSequence' }, |
|
1820
|
|
|
|
|
|
|
'0018,9937' => { VR => 'LO', Name => 'RequestedSeriesDescription' }, |
|
1821
|
|
|
|
|
|
|
'0018,9938' => { VR => 'US', Name => 'SourceAcquisitionProtoElementNum' }, |
|
1822
|
|
|
|
|
|
|
'0018,9939' => { VR => 'US', Name => 'SourceAcquisitionBeamNumber' }, |
|
1823
|
|
|
|
|
|
|
'0018,993A' => { VR => 'US', Name => 'SourceReconstructProtoElementNum' }, |
|
1824
|
|
|
|
|
|
|
'0018,993B' => { VR => 'SQ', Name => 'ReconstructionStartLocationSeq' }, |
|
1825
|
|
|
|
|
|
|
'0018,993C' => { VR => 'SQ', Name => 'ReconstructionEndLocationSequence' }, |
|
1826
|
|
|
|
|
|
|
'0018,993D' => { VR => 'SQ', Name => 'ReconstructionAlgorithmSequence' }, |
|
1827
|
|
|
|
|
|
|
'0018,993E' => { VR => 'SQ', Name => 'ReconstructionTargetCenterLocSeq' }, |
|
1828
|
|
|
|
|
|
|
'0018,9941' => { VR => 'UT', Name => 'ImageFilterDescription' }, |
|
1829
|
|
|
|
|
|
|
'0018,9942' => { VR => 'FD', Name => 'CTDIvolNotificationTrigger' }, |
|
1830
|
|
|
|
|
|
|
'0018,9943' => { VR => 'FD', Name => 'DLPNotificationTrigger' }, |
|
1831
|
|
|
|
|
|
|
'0018,9944' => { VR => 'CS', Name => 'AutoKVPSelectionType' }, |
|
1832
|
|
|
|
|
|
|
'0018,9945' => { VR => 'FD', Name => 'AutoKVPUpperBound' }, |
|
1833
|
|
|
|
|
|
|
'0018,9946' => { VR => 'FD', Name => 'AutoKVPLowerBound' }, |
|
1834
|
|
|
|
|
|
|
'0018,9947' => { VR => 'CS', Name => 'ProtocolDefinedPatientPosition' }, |
|
1835
|
|
|
|
|
|
|
'0018,A001' => { VR => 'SQ', Name => 'ContributingEquipmentSequence' }, |
|
1836
|
|
|
|
|
|
|
'0018,A002' => { VR => 'DT', Name => 'ContributionDateTime' }, |
|
1837
|
|
|
|
|
|
|
'0018,A003' => { VR => 'ST', Name => 'ContributionDescription' }, |
|
1838
|
|
|
|
|
|
|
# GEMS_ACQU_01 (ref 4) |
|
1839
|
|
|
|
|
|
|
'0019,1002' => { VR => 'SL', Name => 'NumberOfCellsIInDetector' }, |
|
1840
|
|
|
|
|
|
|
'0019,1003' => { VR => 'DS', Name => 'CellNumberAtTheta' }, |
|
1841
|
|
|
|
|
|
|
'0019,1004' => { VR => 'DS', Name => 'CellSpacing' }, |
|
1842
|
|
|
|
|
|
|
'0019,100F' => { VR => 'DS', Name => 'HorizFrameOfRef' }, |
|
1843
|
|
|
|
|
|
|
'0019,1011' => { VR => 'SS', Name => 'SeriesContrast' }, |
|
1844
|
|
|
|
|
|
|
'0019,1012' => { VR => 'SS', Name => 'LastPseq' }, |
|
1845
|
|
|
|
|
|
|
'0019,1013' => { VR => 'SS', Name => 'StartNumberForBaseline' }, |
|
1846
|
|
|
|
|
|
|
'0019,1014' => { VR => 'SS', Name => 'EndNumberForBaseline' }, |
|
1847
|
|
|
|
|
|
|
'0019,1015' => { VR => 'SS', Name => 'StartNumberForEnhancedScans' }, |
|
1848
|
|
|
|
|
|
|
'0019,1016' => { VR => 'SS', Name => 'EndNumberForEnhancedScans' }, |
|
1849
|
|
|
|
|
|
|
'0019,1017' => { VR => 'SS', Name => 'SeriesPlane' }, |
|
1850
|
|
|
|
|
|
|
'0019,1018' => { VR => 'LO', Name => 'FirstScanRas' }, |
|
1851
|
|
|
|
|
|
|
'0019,1019' => { VR => 'DS', Name => 'FirstScanLocation' }, |
|
1852
|
|
|
|
|
|
|
'0019,101A' => { VR => 'LO', Name => 'LastScanRas' }, |
|
1853
|
|
|
|
|
|
|
'0019,101B' => { VR => 'DS', Name => 'LastScanLoc' }, |
|
1854
|
|
|
|
|
|
|
'0019,101E' => { VR => 'DS', Name => 'DisplayFieldOfView' }, |
|
1855
|
|
|
|
|
|
|
'0019,1023' => { VR => 'DS', Name => 'TableSpeed' }, |
|
1856
|
|
|
|
|
|
|
'0019,1024' => { VR => 'DS', Name => 'MidScanTime' }, |
|
1857
|
|
|
|
|
|
|
'0019,1025' => { VR => 'SS', Name => 'MidScanFlag' }, |
|
1858
|
|
|
|
|
|
|
'0019,1026' => { VR => 'SL', Name => 'DegreesOfAzimuth' }, |
|
1859
|
|
|
|
|
|
|
'0019,1027' => { VR => 'DS', Name => 'GantryPeriod' }, |
|
1860
|
|
|
|
|
|
|
'0019,102A' => { VR => 'DS', Name => 'XRayOnPosition' }, |
|
1861
|
|
|
|
|
|
|
'0019,102B' => { VR => 'DS', Name => 'XRayOffPosition' }, |
|
1862
|
|
|
|
|
|
|
'0019,102C' => { VR => 'SL', Name => 'NumberOfTriggers' }, |
|
1863
|
|
|
|
|
|
|
'0019,102E' => { VR => 'DS', Name => 'AngleOfFirstView' }, |
|
1864
|
|
|
|
|
|
|
'0019,102F' => { VR => 'DS', Name => 'TriggerFrequency' }, |
|
1865
|
|
|
|
|
|
|
'0019,1039' => { VR => 'SS', Name => 'ScanFOVType' }, |
|
1866
|
|
|
|
|
|
|
'0019,1040' => { VR => 'SS', Name => 'StatReconFlag' }, |
|
1867
|
|
|
|
|
|
|
'0019,1041' => { VR => 'SS', Name => 'ComputeType' }, |
|
1868
|
|
|
|
|
|
|
'0019,1042' => { VR => 'SS', Name => 'SegmentNumber' }, |
|
1869
|
|
|
|
|
|
|
'0019,1043' => { VR => 'SS', Name => 'TotalSegmentsRequested' }, |
|
1870
|
|
|
|
|
|
|
'0019,1044' => { VR => 'DS', Name => 'InterscanDelay' }, |
|
1871
|
|
|
|
|
|
|
'0019,1047' => { VR => 'SS', Name => 'ViewCompressionFactor' }, |
|
1872
|
|
|
|
|
|
|
'0019,104A' => { VR => 'SS', Name => 'TotalNoOfRefChannels' }, |
|
1873
|
|
|
|
|
|
|
'0019,104B' => { VR => 'SL', Name => 'DataSizeForScanData' }, |
|
1874
|
|
|
|
|
|
|
'0019,1052' => { VR => 'SS', Name => 'ReconPostProcflag' }, |
|
1875
|
|
|
|
|
|
|
'0019,1057' => { VR => 'SS', Name => 'CTWaterNumber' }, |
|
1876
|
|
|
|
|
|
|
'0019,1058' => { VR => 'SS', Name => 'CTBoneNumber' }, |
|
1877
|
|
|
|
|
|
|
'0019,105A' => { VR => 'FL', Name => 'AcquisitionDuration' }, |
|
1878
|
|
|
|
|
|
|
'0019,105E' => { VR => 'SL', Name => 'NumberOfChannels' }, |
|
1879
|
|
|
|
|
|
|
'0019,105F' => { VR => 'SL', Name => 'IncrementBetweenChannels' }, |
|
1880
|
|
|
|
|
|
|
'0019,1060' => { VR => 'SL', Name => 'StartingView' }, |
|
1881
|
|
|
|
|
|
|
'0019,1061' => { VR => 'SL', Name => 'NumberOfViews' }, |
|
1882
|
|
|
|
|
|
|
'0019,1062' => { VR => 'SL', Name => 'IncrementBetweenViews' }, |
|
1883
|
|
|
|
|
|
|
'0019,106A' => { VR => 'SS', Name => 'DependantOnNoViewsProcessed' }, |
|
1884
|
|
|
|
|
|
|
'0019,106B' => { VR => 'SS', Name => 'FieldOfViewInDetectorCells' }, |
|
1885
|
|
|
|
|
|
|
'0019,1070' => { VR => 'SS', Name => 'ValueOfBackProjectionButton' }, |
|
1886
|
|
|
|
|
|
|
'0019,1071' => { VR => 'SS', Name => 'SetIfFatqEstimatesWereUsed' }, |
|
1887
|
|
|
|
|
|
|
'0019,1072' => { VR => 'DS', Name => 'ZChanAvgOverViews' }, |
|
1888
|
|
|
|
|
|
|
'0019,1073' => { VR => 'DS', Name => 'AvgOfLeftRefChansOverViews' }, |
|
1889
|
|
|
|
|
|
|
'0019,1074' => { VR => 'DS', Name => 'MaxLeftChanOverViews' }, |
|
1890
|
|
|
|
|
|
|
'0019,1075' => { VR => 'DS', Name => 'AvgOfRightRefChansOverViews' }, |
|
1891
|
|
|
|
|
|
|
'0019,1076' => { VR => 'DS', Name => 'MaxRightChanOverViews' }, |
|
1892
|
|
|
|
|
|
|
'0019,107D' => { VR => 'DS', Name => 'SecondEcho' }, |
|
1893
|
|
|
|
|
|
|
'0019,107E' => { VR => 'SS', Name => 'NumberOfEchoes' }, |
|
1894
|
|
|
|
|
|
|
'0019,107F' => { VR => 'DS', Name => 'TableDelta' }, |
|
1895
|
|
|
|
|
|
|
'0019,1081' => { VR => 'SS', Name => 'Contiguous' }, |
|
1896
|
|
|
|
|
|
|
'0019,1084' => { VR => 'DS', Name => 'PeakSAR' }, |
|
1897
|
|
|
|
|
|
|
'0019,1085' => { VR => 'SS', Name => 'MonitorSAR' }, |
|
1898
|
|
|
|
|
|
|
'0019,1087' => { VR => 'DS', Name => 'CardiacRepetitionTime' }, |
|
1899
|
|
|
|
|
|
|
'0019,1088' => { VR => 'SS', Name => 'ImagesPerCardiacCycle' }, |
|
1900
|
|
|
|
|
|
|
'0019,108A' => { VR => 'SS', Name => 'ActualReceiveGainAnalog' }, |
|
1901
|
|
|
|
|
|
|
'0019,108B' => { VR => 'SS', Name => 'ActualReceiveGainDigital' }, |
|
1902
|
|
|
|
|
|
|
'0019,108D' => { VR => 'DS', Name => 'DelayAfterTrigger' }, |
|
1903
|
|
|
|
|
|
|
'0019,108F' => { VR => 'SS', Name => 'Swappf' }, |
|
1904
|
|
|
|
|
|
|
'0019,1090' => { VR => 'SS', Name => 'PauseInterval' }, |
|
1905
|
|
|
|
|
|
|
'0019,1091' => { VR => 'DS', Name => 'PulseTime' }, |
|
1906
|
|
|
|
|
|
|
'0019,1092' => { VR => 'SL', Name => 'SliceOffsetOnFreqAxis' }, |
|
1907
|
|
|
|
|
|
|
'0019,1093' => { VR => 'DS', Name => 'CenterFrequency' }, |
|
1908
|
|
|
|
|
|
|
'0019,1094' => { VR => 'SS', Name => 'TransmitGain' }, |
|
1909
|
|
|
|
|
|
|
'0019,1095' => { VR => 'SS', Name => 'AnalogReceiverGain' }, |
|
1910
|
|
|
|
|
|
|
'0019,1096' => { VR => 'SS', Name => 'DigitalReceiverGain' }, |
|
1911
|
|
|
|
|
|
|
'0019,1097' => { VR => 'SL', Name => 'BitmapDefiningCVs' }, |
|
1912
|
|
|
|
|
|
|
'0019,1098' => { VR => 'SS', Name => 'CenterFreqMethod' }, |
|
1913
|
|
|
|
|
|
|
'0019,109B' => { VR => 'SS', Name => 'PulseSeqMode' }, |
|
1914
|
|
|
|
|
|
|
'0019,109C' => { VR => 'LO', Name => 'PulseSeqName' }, |
|
1915
|
|
|
|
|
|
|
'0019,109D' => { VR => 'DT', Name => 'PulseSeqDate' }, |
|
1916
|
|
|
|
|
|
|
'0019,109E' => { VR => 'LO', Name => 'InternalPulseSeqName' }, |
|
1917
|
|
|
|
|
|
|
'0019,109F' => { VR => 'SS', Name => 'TransmittingCoil' }, |
|
1918
|
|
|
|
|
|
|
'0019,10A0' => { VR => 'SS', Name => 'SurfaceCoilType' }, |
|
1919
|
|
|
|
|
|
|
'0019,10A1' => { VR => 'SS', Name => 'ExtremityCoilFlag' }, |
|
1920
|
|
|
|
|
|
|
'0019,10A2' => { VR => 'SL', Name => 'RawDataRunNumber' }, |
|
1921
|
|
|
|
|
|
|
'0019,10A3' => { VR => 'UL', Name => 'CalibratedFieldStrength' }, |
|
1922
|
|
|
|
|
|
|
'0019,10A4' => { VR => 'SS', Name => 'SATFatWaterBone' }, |
|
1923
|
|
|
|
|
|
|
'0019,10A5' => { VR => 'DS', Name => 'ReceiveBandwidth' }, |
|
1924
|
|
|
|
|
|
|
'0019,10A7' => { VR => 'DS', Name => 'UserData01' }, |
|
1925
|
|
|
|
|
|
|
'0019,10A8' => { VR => 'DS', Name => 'UserData02' }, |
|
1926
|
|
|
|
|
|
|
'0019,10A9' => { VR => 'DS', Name => 'UserData03' }, |
|
1927
|
|
|
|
|
|
|
'0019,10AA' => { VR => 'DS', Name => 'UserData04' }, |
|
1928
|
|
|
|
|
|
|
'0019,10AB' => { VR => 'DS', Name => 'UserData05' }, |
|
1929
|
|
|
|
|
|
|
'0019,10AC' => { VR => 'DS', Name => 'UserData06' }, |
|
1930
|
|
|
|
|
|
|
'0019,10AD' => { VR => 'DS', Name => 'UserData07' }, |
|
1931
|
|
|
|
|
|
|
'0019,10AE' => { VR => 'DS', Name => 'UserData08' }, |
|
1932
|
|
|
|
|
|
|
'0019,10AF' => { VR => 'DS', Name => 'UserData09' }, |
|
1933
|
|
|
|
|
|
|
'0019,10B0' => { VR => 'DS', Name => 'UserData10' }, |
|
1934
|
|
|
|
|
|
|
'0019,10B1' => { VR => 'DS', Name => 'UserData11' }, |
|
1935
|
|
|
|
|
|
|
'0019,10B2' => { VR => 'DS', Name => 'UserData12' }, |
|
1936
|
|
|
|
|
|
|
'0019,10B3' => { VR => 'DS', Name => 'UserData13' }, |
|
1937
|
|
|
|
|
|
|
'0019,10B4' => { VR => 'DS', Name => 'UserData14' }, |
|
1938
|
|
|
|
|
|
|
'0019,10B5' => { VR => 'DS', Name => 'UserData15' }, |
|
1939
|
|
|
|
|
|
|
'0019,10B6' => { VR => 'DS', Name => 'UserData16' }, |
|
1940
|
|
|
|
|
|
|
'0019,10B7' => { VR => 'DS', Name => 'UserData17' }, |
|
1941
|
|
|
|
|
|
|
'0019,10B8' => { VR => 'DS', Name => 'UserData18' }, |
|
1942
|
|
|
|
|
|
|
'0019,10B9' => { VR => 'DS', Name => 'UserData19' }, |
|
1943
|
|
|
|
|
|
|
'0019,10BA' => { VR => 'DS', Name => 'UserData20' }, |
|
1944
|
|
|
|
|
|
|
'0019,10BB' => { VR => 'DS', Name => 'UserData21' }, |
|
1945
|
|
|
|
|
|
|
'0019,10BC' => { VR => 'DS', Name => 'UserData22' }, |
|
1946
|
|
|
|
|
|
|
'0019,10BD' => { VR => 'DS', Name => 'UserData23' }, |
|
1947
|
|
|
|
|
|
|
'0019,10BE' => { VR => 'DS', Name => 'ProjectionAngle' }, |
|
1948
|
|
|
|
|
|
|
'0019,10C0' => { VR => 'SS', Name => 'SaturationPlanes' }, |
|
1949
|
|
|
|
|
|
|
'0019,10C1' => { VR => 'SS', Name => 'SurfaceCoilIntensity' }, |
|
1950
|
|
|
|
|
|
|
'0019,10C2' => { VR => 'SS', Name => 'SATLocationR' }, |
|
1951
|
|
|
|
|
|
|
'0019,10C3' => { VR => 'SS', Name => 'SATLocationL' }, |
|
1952
|
|
|
|
|
|
|
'0019,10C4' => { VR => 'SS', Name => 'SATLocationA' }, |
|
1953
|
|
|
|
|
|
|
'0019,10C5' => { VR => 'SS', Name => 'SATLocationP' }, |
|
1954
|
|
|
|
|
|
|
'0019,10C6' => { VR => 'SS', Name => 'SATLocationH' }, |
|
1955
|
|
|
|
|
|
|
'0019,10C7' => { VR => 'SS', Name => 'SATLocationF' }, |
|
1956
|
|
|
|
|
|
|
'0019,10C8' => { VR => 'SS', Name => 'SATThicknessR-L' }, |
|
1957
|
|
|
|
|
|
|
'0019,10C9' => { VR => 'SS', Name => 'SATThicknessA-P' }, |
|
1958
|
|
|
|
|
|
|
'0019,10CA' => { VR => 'SS', Name => 'SATThicknessH-F' }, |
|
1959
|
|
|
|
|
|
|
'0019,10CB' => { VR => 'SS', Name => 'PrescribedFlowAxis' }, |
|
1960
|
|
|
|
|
|
|
'0019,10CC' => { VR => 'SS', Name => 'VelocityEncoding' }, |
|
1961
|
|
|
|
|
|
|
'0019,10CD' => { VR => 'SS', Name => 'ThicknessDisclaimer' }, |
|
1962
|
|
|
|
|
|
|
'0019,10CE' => { VR => 'SS', Name => 'PrescanType' }, |
|
1963
|
|
|
|
|
|
|
'0019,10CF' => { VR => 'SS', Name => 'PrescanStatus' }, |
|
1964
|
|
|
|
|
|
|
'0019,10D0' => { VR => 'SH', Name => 'RawDataType' }, |
|
1965
|
|
|
|
|
|
|
'0019,10D2' => { VR => 'SS', Name => 'ProjectionAlgorithm' }, |
|
1966
|
|
|
|
|
|
|
'0019,10D3' => { VR => 'SH', Name => 'ProjectionAlgorithm' }, |
|
1967
|
|
|
|
|
|
|
'0019,10D5' => { VR => 'SS', Name => 'FractionalEcho' }, |
|
1968
|
|
|
|
|
|
|
'0019,10D6' => { VR => 'SS', Name => 'PrepPulse' }, |
|
1969
|
|
|
|
|
|
|
'0019,10D7' => { VR => 'SS', Name => 'CardiacPhases' }, |
|
1970
|
|
|
|
|
|
|
'0019,10D8' => { VR => 'SS', Name => 'VariableEchoflag' }, |
|
1971
|
|
|
|
|
|
|
'0019,10D9' => { VR => 'DS', Name => 'ConcatenatedSAT' }, |
|
1972
|
|
|
|
|
|
|
'0019,10DA' => { VR => 'SS', Name => 'ReferenceChannelUsed' }, |
|
1973
|
|
|
|
|
|
|
'0019,10DB' => { VR => 'DS', Name => 'BackProjectorCoefficient' }, |
|
1974
|
|
|
|
|
|
|
'0019,10DC' => { VR => 'SS', Name => 'PrimarySpeedCorrectionUsed' }, |
|
1975
|
|
|
|
|
|
|
'0019,10DD' => { VR => 'SS', Name => 'OverrangeCorrectionUsed' }, |
|
1976
|
|
|
|
|
|
|
'0019,10DE' => { VR => 'DS', Name => 'DynamicZAlphaValue' }, |
|
1977
|
|
|
|
|
|
|
'0019,10DF' => { VR => 'DS', Name => 'UserData' }, |
|
1978
|
|
|
|
|
|
|
'0019,10E0' => { VR => 'DS', Name => 'UserData' }, |
|
1979
|
|
|
|
|
|
|
'0019,10E2' => { VR => 'DS', Name => 'VelocityEncodeScale' }, |
|
1980
|
|
|
|
|
|
|
'0019,10F2' => { VR => 'SS', Name => 'FastPhases' }, |
|
1981
|
|
|
|
|
|
|
'0019,10F9' => { VR => 'DS', Name => 'TransmissionGain' }, |
|
1982
|
|
|
|
|
|
|
# relationship group |
|
1983
|
|
|
|
|
|
|
'0020,0000' => { VR => 'UL', Name => 'RelationshipGroupLength' }, |
|
1984
|
|
|
|
|
|
|
'0020,000D' => { VR => 'UI', Name => 'StudyInstanceUID' }, |
|
1985
|
|
|
|
|
|
|
'0020,000E' => { VR => 'UI', Name => 'SeriesInstanceUID' }, |
|
1986
|
|
|
|
|
|
|
'0020,0010' => { VR => 'SH', Name => 'StudyID' }, |
|
1987
|
|
|
|
|
|
|
'0020,0011' => { VR => 'IS', Name => 'SeriesNumber' }, |
|
1988
|
|
|
|
|
|
|
'0020,0012' => { VR => 'IS', Name => 'AcquisitionNumber' }, |
|
1989
|
|
|
|
|
|
|
'0020,0013' => { VR => 'IS', Name => 'InstanceNumber' }, |
|
1990
|
|
|
|
|
|
|
'0020,0014' => { VR => 'IS', Name => 'IsotopeNumber' }, |
|
1991
|
|
|
|
|
|
|
'0020,0015' => { VR => 'IS', Name => 'PhaseNumber' }, |
|
1992
|
|
|
|
|
|
|
'0020,0016' => { VR => 'IS', Name => 'IntervalNumber' }, |
|
1993
|
|
|
|
|
|
|
'0020,0017' => { VR => 'IS', Name => 'TimeSlotNumber' }, |
|
1994
|
|
|
|
|
|
|
'0020,0018' => { VR => 'IS', Name => 'AngleNumber' }, |
|
1995
|
|
|
|
|
|
|
'0020,0019' => { VR => 'IS', Name => 'ItemNumber' }, |
|
1996
|
|
|
|
|
|
|
'0020,0020' => { VR => 'CS', Name => 'PatientOrientation' }, |
|
1997
|
|
|
|
|
|
|
'0020,0022' => { VR => 'IS', Name => 'OverlayNumber' }, |
|
1998
|
|
|
|
|
|
|
'0020,0024' => { VR => 'IS', Name => 'CurveNumber' }, |
|
1999
|
|
|
|
|
|
|
'0020,0026' => { VR => 'IS', Name => 'LookupTableNumber' }, |
|
2000
|
|
|
|
|
|
|
'0020,0027' => { VR => 'LO', Name => 'PyramidLabel' }, |
|
2001
|
|
|
|
|
|
|
'0020,0030' => { VR => 'DS', Name => 'ImagePosition' }, |
|
2002
|
|
|
|
|
|
|
'0020,0032' => { VR => 'DS', Name => 'ImagePositionPatient' }, |
|
2003
|
|
|
|
|
|
|
'0020,0035' => { VR => 'DS', Name => 'ImageOrientation' }, |
|
2004
|
|
|
|
|
|
|
'0020,0037' => { VR => 'DS', Name => 'ImageOrientationPatient' }, |
|
2005
|
|
|
|
|
|
|
'0020,0050' => { VR => 'DS', Name => 'Location' }, |
|
2006
|
|
|
|
|
|
|
'0020,0052' => { VR => 'UI', Name => 'FrameOfReferenceUID' }, |
|
2007
|
|
|
|
|
|
|
'0020,0060' => { VR => 'CS', Name => 'Laterality' }, |
|
2008
|
|
|
|
|
|
|
'0020,0062' => { VR => 'CS', Name => 'ImageLaterality' }, |
|
2009
|
|
|
|
|
|
|
'0020,0070' => { VR => 'LO', Name => 'ImageGeometryType' }, |
|
2010
|
|
|
|
|
|
|
'0020,0080' => { VR => 'CS', Name => 'MaskingImage' }, |
|
2011
|
|
|
|
|
|
|
'0020,00AA' => { VR => 'IS', Name => 'ReportNumber' }, |
|
2012
|
|
|
|
|
|
|
'0020,0100' => { VR => 'IS', Name => 'TemporalPositionIdentifier' }, |
|
2013
|
|
|
|
|
|
|
'0020,0105' => { VR => 'IS', Name => 'NumberOfTemporalPositions' }, |
|
2014
|
|
|
|
|
|
|
'0020,0110' => { VR => 'DS', Name => 'TemporalResolution' }, |
|
2015
|
|
|
|
|
|
|
'0020,0200' => { VR => 'UI', Name => 'SynchronizationFrameOfReferenceUID' }, |
|
2016
|
|
|
|
|
|
|
'0020,0242' => { VR => 'UI', Name => 'SOPInstanceUIDConcatenationSource' }, |
|
2017
|
|
|
|
|
|
|
'0020,1000' => { VR => 'IS', Name => 'SeriesInStudy' }, |
|
2018
|
|
|
|
|
|
|
'0020,1001' => { VR => 'IS', Name => 'AcquisitionsInSeries' }, |
|
2019
|
|
|
|
|
|
|
'0020,1002' => { VR => 'IS', Name => 'ImagesInAcquisition' }, |
|
2020
|
|
|
|
|
|
|
'0020,1003' => { VR => 'IS', Name => 'ImagesInSeries' }, |
|
2021
|
|
|
|
|
|
|
'0020,1004' => { VR => 'IS', Name => 'AcquisitionsInStudy' }, |
|
2022
|
|
|
|
|
|
|
'0020,1005' => { VR => 'IS', Name => 'ImagesInStudy' }, |
|
2023
|
|
|
|
|
|
|
'0020,1020' => { VR => 'CS', Name => 'Reference' }, |
|
2024
|
|
|
|
|
|
|
'0020,103F' => { VR => 'LO', Name => 'TargetPositionReferenceIndicator' }, |
|
2025
|
|
|
|
|
|
|
'0020,1040' => { VR => 'LO', Name => 'PositionReferenceIndicator' }, |
|
2026
|
|
|
|
|
|
|
'0020,1041' => { VR => 'DS', Name => 'SliceLocation' }, |
|
2027
|
|
|
|
|
|
|
'0020,1070' => { VR => 'IS', Name => 'OtherStudyNumbers' }, |
|
2028
|
|
|
|
|
|
|
'0020,1200' => { VR => 'IS', Name => 'NumberOfPatientRelatedStudies' }, |
|
2029
|
|
|
|
|
|
|
'0020,1202' => { VR => 'IS', Name => 'NumberOfPatientRelatedSeries' }, |
|
2030
|
|
|
|
|
|
|
'0020,1204' => { VR => 'IS', Name => 'NumberOfPatientRelatedInstances' }, |
|
2031
|
|
|
|
|
|
|
'0020,1206' => { VR => 'IS', Name => 'NumberOfStudyRelatedSeries' }, |
|
2032
|
|
|
|
|
|
|
'0020,1208' => { VR => 'IS', Name => 'NumberOfStudyRelatedInstances' }, |
|
2033
|
|
|
|
|
|
|
'0020,1209' => { VR => 'IS', Name => 'NumberOfSeriesRelatedInstances' }, |
|
2034
|
|
|
|
|
|
|
'0020,31xx' => { VR => 'CS', Name => 'SourceImageIDs' }, |
|
2035
|
|
|
|
|
|
|
'0020,3401' => { VR => 'CS', Name => 'ModifyingDeviceID' }, |
|
2036
|
|
|
|
|
|
|
'0020,3402' => { VR => 'CS', Name => 'ModifiedImageID' }, |
|
2037
|
|
|
|
|
|
|
'0020,3403' => { VR => 'DA', Name => 'ModifiedImageDate' }, |
|
2038
|
|
|
|
|
|
|
'0020,3404' => { VR => 'LO', Name => 'ModifyingDeviceManufacturer' }, |
|
2039
|
|
|
|
|
|
|
'0020,3405' => { VR => 'TM', Name => 'ModifiedImageTime' }, |
|
2040
|
|
|
|
|
|
|
'0020,3406' => { VR => 'LO', Name => 'ModifiedImageDescription' }, |
|
2041
|
|
|
|
|
|
|
'0020,4000' => { VR => 'LT', Name => 'ImageComments' }, |
|
2042
|
|
|
|
|
|
|
'0020,5000' => { VR => 'AT', Name => 'OriginalImageIdentification' }, |
|
2043
|
|
|
|
|
|
|
'0020,5002' => { VR => 'CS', Name => 'OriginalImageIdentNomenclature' }, |
|
2044
|
|
|
|
|
|
|
'0020,9056' => { VR => 'SH', Name => 'StackID' }, |
|
2045
|
|
|
|
|
|
|
'0020,9057' => { VR => 'UL', Name => 'InStackPositionNumber' }, |
|
2046
|
|
|
|
|
|
|
'0020,9071' => { VR => 'SQ', Name => 'FrameAnatomySequence' }, |
|
2047
|
|
|
|
|
|
|
'0020,9072' => { VR => 'CS', Name => 'FrameLaterality' }, |
|
2048
|
|
|
|
|
|
|
'0020,9111' => { VR => 'SQ', Name => 'FrameContentSequence' }, |
|
2049
|
|
|
|
|
|
|
'0020,9113' => { VR => 'SQ', Name => 'PlanePositionSequence' }, |
|
2050
|
|
|
|
|
|
|
'0020,9116' => { VR => 'SQ', Name => 'PlaneOrientationSequence' }, |
|
2051
|
|
|
|
|
|
|
'0020,9128' => { VR => 'UL', Name => 'TemporalPositionIndex' }, |
|
2052
|
|
|
|
|
|
|
'0020,9153' => { VR => 'FD', Name => 'TriggerDelayTime' }, |
|
2053
|
|
|
|
|
|
|
'0020,9154' => { VR => 'FL', Name => 'NominalCardiacTrigTimePriorToRPeak' }, |
|
2054
|
|
|
|
|
|
|
'0020,9155' => { VR => 'FL', Name => 'ActualCardiacTrigTimePriorToRPeak' }, |
|
2055
|
|
|
|
|
|
|
'0020,9156' => { VR => 'US', Name => 'FrameAcquisitionNumber' }, |
|
2056
|
|
|
|
|
|
|
'0020,9157' => { VR => 'UL', Name => 'DimensionIndexValues' }, |
|
2057
|
|
|
|
|
|
|
'0020,9158' => { VR => 'LT', Name => 'FrameComments' }, |
|
2058
|
|
|
|
|
|
|
'0020,9161' => { VR => 'UI', Name => 'ConcatenationUID' }, |
|
2059
|
|
|
|
|
|
|
'0020,9162' => { VR => 'US', Name => 'InConcatenationNumber' }, |
|
2060
|
|
|
|
|
|
|
'0020,9163' => { VR => 'US', Name => 'InConcatenationTotalNumber' }, |
|
2061
|
|
|
|
|
|
|
'0020,9164' => { VR => 'UI', Name => 'DimensionOrganizationUID' }, |
|
2062
|
|
|
|
|
|
|
'0020,9165' => { VR => 'AT', Name => 'DimensionIndexPointer' }, |
|
2063
|
|
|
|
|
|
|
'0020,9167' => { VR => 'AT', Name => 'FunctionalGroupPointer' }, |
|
2064
|
|
|
|
|
|
|
'0020,9170' => { VR => 'SQ', Name => 'UnassignedSharedConvertedAttrsSeq' }, |
|
2065
|
|
|
|
|
|
|
'0020,9171' => { VR => 'SQ', Name => 'UnassignedPerFrameConvertedAttrSeq' }, |
|
2066
|
|
|
|
|
|
|
'0020,9172' => { VR => 'SQ', Name => 'ConversionSourceAttributesSequence' }, |
|
2067
|
|
|
|
|
|
|
'0020,9213' => { VR => 'LO', Name => 'DimensionIndexPrivateCreator' }, |
|
2068
|
|
|
|
|
|
|
'0020,9221' => { VR => 'SQ', Name => 'DimensionOrganizationSequence' }, |
|
2069
|
|
|
|
|
|
|
'0020,9222' => { VR => 'SQ', Name => 'DimensionIndexSequence' }, |
|
2070
|
|
|
|
|
|
|
'0020,9228' => { VR => 'UL', Name => 'ConcatenationFrameOffsetNumber' }, |
|
2071
|
|
|
|
|
|
|
'0020,9238' => { VR => 'LO', Name => 'FunctionalGroupPrivateCreator' }, |
|
2072
|
|
|
|
|
|
|
'0020,9241' => { VR => 'FL', Name => 'NominalPercentageOfCardiacPhase' }, |
|
2073
|
|
|
|
|
|
|
'0020,9245' => { VR => 'FL', Name => 'NominalPercentOfRespiratoryPhase' }, |
|
2074
|
|
|
|
|
|
|
'0020,9246' => { VR => 'FL', Name => 'StartingRespiratoryAmplitude' }, |
|
2075
|
|
|
|
|
|
|
'0020,9247' => { VR => 'CS', Name => 'StartingRespiratoryPhase' }, |
|
2076
|
|
|
|
|
|
|
'0020,9248' => { VR => 'FL', Name => 'EndingRespiratoryAmplitude' }, |
|
2077
|
|
|
|
|
|
|
'0020,9249' => { VR => 'CS', Name => 'EndingRespiratoryPhase' }, |
|
2078
|
|
|
|
|
|
|
'0020,9250' => { VR => 'CS', Name => 'RespiratoryTriggerType' }, |
|
2079
|
|
|
|
|
|
|
'0020,9251' => { VR => 'FD', Name => 'RRIntervalTimeNominal' }, |
|
2080
|
|
|
|
|
|
|
'0020,9252' => { VR => 'FD', Name => 'ActualCardiacTriggerDelayTime' }, |
|
2081
|
|
|
|
|
|
|
'0020,9253' => { VR => 'SQ', Name => 'RespiratorySynchronizationSequence' }, |
|
2082
|
|
|
|
|
|
|
'0020,9254' => { VR => 'FD', Name => 'RespiratoryIntervalTime' }, |
|
2083
|
|
|
|
|
|
|
'0020,9255' => { VR => 'FD', Name => 'NominalRespiratoryTriggerDelayTime' }, |
|
2084
|
|
|
|
|
|
|
'0020,9256' => { VR => 'FD', Name => 'RespiratoryTriggerDelayThreshold' }, |
|
2085
|
|
|
|
|
|
|
'0020,9257' => { VR => 'FD', Name => 'ActualRespiratoryTriggerDelayTime' }, |
|
2086
|
|
|
|
|
|
|
'0020,9301' => { VR => 'FD', Name => 'ImagePositionVolume' }, |
|
2087
|
|
|
|
|
|
|
'0020,9302' => { VR => 'FD', Name => 'ImageOrientationVolume' }, |
|
2088
|
|
|
|
|
|
|
'0020,9307' => { VR => 'CS', Name => 'UltrasoundAcquisitionGeometry' }, |
|
2089
|
|
|
|
|
|
|
'0020,9308' => { VR => 'FD', Name => 'ApexPosition' }, |
|
2090
|
|
|
|
|
|
|
'0020,9309' => { VR => 'FD', Name => 'VolumeToTransducerMappingMatrix' }, |
|
2091
|
|
|
|
|
|
|
'0020,930A' => { VR => 'FD', Name => 'VolumeToTableMappingMatrix' }, |
|
2092
|
|
|
|
|
|
|
'0020,930B' => { VR => 'CS', Name => 'VolumeToTransducerRelationship' }, |
|
2093
|
|
|
|
|
|
|
'0020,930C' => { VR => 'CS', Name => 'PatientFrameOfReferenceSource' }, |
|
2094
|
|
|
|
|
|
|
'0020,930D' => { VR => 'FD', Name => 'TemporalPositionTimeOffset' }, |
|
2095
|
|
|
|
|
|
|
'0020,930E' => { VR => 'SQ', Name => 'PlanePositionVolumeSequence' }, |
|
2096
|
|
|
|
|
|
|
'0020,930F' => { VR => 'SQ', Name => 'PlaneOrientationVolumeSequence' }, |
|
2097
|
|
|
|
|
|
|
'0020,9310' => { VR => 'SQ', Name => 'TemporalPositionSequence' }, |
|
2098
|
|
|
|
|
|
|
'0020,9311' => { VR => 'CS', Name => 'DimensionOrganizationType' }, |
|
2099
|
|
|
|
|
|
|
'0020,9312' => { VR => 'UI', Name => 'VolumeFrameOfReferenceUID' }, |
|
2100
|
|
|
|
|
|
|
'0020,9313' => { VR => 'UI', Name => 'TableFrameOfReferenceUID' }, |
|
2101
|
|
|
|
|
|
|
'0020,9421' => { VR => 'LO', Name => 'DimensionDescriptionLabel' }, |
|
2102
|
|
|
|
|
|
|
'0020,9450' => { VR => 'SQ', Name => 'PatientOrientationInFrameSequence' }, |
|
2103
|
|
|
|
|
|
|
'0020,9453' => { VR => 'LO', Name => 'FrameLabel' }, |
|
2104
|
|
|
|
|
|
|
'0020,9518' => { VR => 'US', Name => 'AcquisitionIndex' }, |
|
2105
|
|
|
|
|
|
|
'0020,9529' => { VR => 'SQ', Name => 'ContributingSOPInstancesRefSeq' }, |
|
2106
|
|
|
|
|
|
|
'0020,9536' => { VR => 'US', Name => 'ReconstructionIndex' }, |
|
2107
|
|
|
|
|
|
|
# GEMS_RELA_01 (ref 4) |
|
2108
|
|
|
|
|
|
|
'0021,1003' => { VR => 'SS', Name => 'SeriesFromWhichPrescribed' }, |
|
2109
|
|
|
|
|
|
|
'0021,1005' => { VR => 'SH', Name => 'GenesisVersionNow' }, |
|
2110
|
|
|
|
|
|
|
'0021,1005' => { VR => 'SH', Name => 'GenesisVersionNow' }, |
|
2111
|
|
|
|
|
|
|
'0021,1007' => { VR => 'UL', Name => 'SeriesRecordChecksum' }, |
|
2112
|
|
|
|
|
|
|
'0021,1018' => { VR => 'SH', Name => 'GenesisVersionNow' }, |
|
2113
|
|
|
|
|
|
|
'0021,1018' => { VR => 'SH', Name => 'GenesisVersionNow' }, |
|
2114
|
|
|
|
|
|
|
'0021,1019' => { VR => 'UL', Name => 'AcqReconRecordChecksum' }, |
|
2115
|
|
|
|
|
|
|
'0021,1019' => { VR => 'UL', Name => 'AcqreconRecordChecksum' }, |
|
2116
|
|
|
|
|
|
|
'0021,1020' => { VR => 'DS', Name => 'TableStartLocation' }, |
|
2117
|
|
|
|
|
|
|
'0021,1035' => { VR => 'SS', Name => 'SeriesFromWhichPrescribed' }, |
|
2118
|
|
|
|
|
|
|
'0021,1036' => { VR => 'SS', Name => 'ImageFromWhichPrescribed' }, |
|
2119
|
|
|
|
|
|
|
'0021,1037' => { VR => 'SS', Name => 'ScreenFormat' }, |
|
2120
|
|
|
|
|
|
|
'0021,104A' => { VR => 'LO', Name => 'AnatomicalReferenceForScout' }, |
|
2121
|
|
|
|
|
|
|
'0021,104F' => { VR => 'SS', Name => 'LocationsInAcquisition' }, |
|
2122
|
|
|
|
|
|
|
'0021,1050' => { VR => 'SS', Name => 'GraphicallyPrescribed' }, |
|
2123
|
|
|
|
|
|
|
'0021,1051' => { VR => 'DS', Name => 'RotationFromSourceXRot' }, |
|
2124
|
|
|
|
|
|
|
'0021,1052' => { VR => 'DS', Name => 'RotationFromSourceYRot' }, |
|
2125
|
|
|
|
|
|
|
'0021,1053' => { VR => 'DS', Name => 'RotationFromSourceZRot' }, |
|
2126
|
|
|
|
|
|
|
'0021,1054' => { VR => 'SH', Name => 'ImagePosition' }, |
|
2127
|
|
|
|
|
|
|
'0021,1055' => { VR => 'SH', Name => 'ImageOrientation' }, |
|
2128
|
|
|
|
|
|
|
'0021,1056' => { VR => 'SL', Name => 'IntegerSlop' }, |
|
2129
|
|
|
|
|
|
|
'0021,1057' => { VR => 'SL', Name => 'IntegerSlop' }, |
|
2130
|
|
|
|
|
|
|
'0021,1058' => { VR => 'SL', Name => 'IntegerSlop' }, |
|
2131
|
|
|
|
|
|
|
'0021,1059' => { VR => 'SL', Name => 'IntegerSlop' }, |
|
2132
|
|
|
|
|
|
|
'0021,105A' => { VR => 'SL', Name => 'IntegerSlop' }, |
|
2133
|
|
|
|
|
|
|
'0021,105B' => { VR => 'DS', Name => 'FloatSlop' }, |
|
2134
|
|
|
|
|
|
|
'0021,105C' => { VR => 'DS', Name => 'FloatSlop' }, |
|
2135
|
|
|
|
|
|
|
'0021,105D' => { VR => 'DS', Name => 'FloatSlop' }, |
|
2136
|
|
|
|
|
|
|
'0021,105E' => { VR => 'DS', Name => 'FloatSlop' }, |
|
2137
|
|
|
|
|
|
|
'0021,105F' => { VR => 'DS', Name => 'FloatSlop' }, |
|
2138
|
|
|
|
|
|
|
'0021,1081' => { VR => 'DS', Name => 'AutoWindowLevelAlpha' }, |
|
2139
|
|
|
|
|
|
|
'0021,1082' => { VR => 'DS', Name => 'AutoWindowLevelBeta' }, |
|
2140
|
|
|
|
|
|
|
'0021,1083' => { VR => 'DS', Name => 'AutoWindowLevelWindow' }, |
|
2141
|
|
|
|
|
|
|
'0021,1084' => { VR => 'DS', Name => 'ToWindowLevelLevel' }, |
|
2142
|
|
|
|
|
|
|
'0021,1090' => { VR => 'SS', Name => 'TubeFocalSpotPosition' }, |
|
2143
|
|
|
|
|
|
|
'0021,1091' => { VR => 'SS', Name => 'BiopsyPosition' }, |
|
2144
|
|
|
|
|
|
|
'0021,1092' => { VR => 'FL', Name => 'BiopsyTLocation' }, |
|
2145
|
|
|
|
|
|
|
'0021,1093' => { VR => 'FL', Name => 'BiopsyRefLocation' }, |
|
2146
|
|
|
|
|
|
|
# ? |
|
2147
|
|
|
|
|
|
|
'0022,0001' => { VR => 'US', Name => 'LightPathFilterPassThroughWavelen' }, |
|
2148
|
|
|
|
|
|
|
'0022,0002' => { VR => 'US', Name => 'LightPathFilterPassBand' }, |
|
2149
|
|
|
|
|
|
|
'0022,0003' => { VR => 'US', Name => 'ImagePathFilterPassThroughWavelen' }, |
|
2150
|
|
|
|
|
|
|
'0022,0004' => { VR => 'US', Name => 'ImagePathFilterPassBand' }, |
|
2151
|
|
|
|
|
|
|
'0022,0005' => { VR => 'CS', Name => 'PatientEyeMovementCommanded' }, |
|
2152
|
|
|
|
|
|
|
'0022,0006' => { VR => 'SQ', Name => 'PatientEyeMovementCommandCodeSeq' }, |
|
2153
|
|
|
|
|
|
|
'0022,0007' => { VR => 'FL', Name => 'SphericalLensPower' }, |
|
2154
|
|
|
|
|
|
|
'0022,0008' => { VR => 'FL', Name => 'CylinderLensPower' }, |
|
2155
|
|
|
|
|
|
|
'0022,0009' => { VR => 'FL', Name => 'CylinderAxis' }, |
|
2156
|
|
|
|
|
|
|
'0022,000A' => { VR => 'FL', Name => 'EmmetropicMagnification' }, |
|
2157
|
|
|
|
|
|
|
'0022,000B' => { VR => 'FL', Name => 'IntraOcularPressure' }, |
|
2158
|
|
|
|
|
|
|
'0022,000C' => { VR => 'FL', Name => 'HorizontalFieldOfView' }, |
|
2159
|
|
|
|
|
|
|
'0022,000D' => { VR => 'CS', Name => 'PupilDilated' }, |
|
2160
|
|
|
|
|
|
|
'0022,000E' => { VR => 'FL', Name => 'DegreeOfDilation' }, |
|
2161
|
|
|
|
|
|
|
'0022,000F' => { VR => 'FD', Name => 'VertexDistance' }, |
|
2162
|
|
|
|
|
|
|
'0022,0010' => { VR => 'FL', Name => 'StereoBaselineAngle' }, |
|
2163
|
|
|
|
|
|
|
'0022,0011' => { VR => 'FL', Name => 'StereoBaselineDisplacement' }, |
|
2164
|
|
|
|
|
|
|
'0022,0012' => { VR => 'FL', Name => 'StereoHorizontalPixelOffset' }, |
|
2165
|
|
|
|
|
|
|
'0022,0013' => { VR => 'FL', Name => 'StereoVerticalPixelOffset' }, |
|
2166
|
|
|
|
|
|
|
'0022,0014' => { VR => 'FL', Name => 'StereoRotation' }, |
|
2167
|
|
|
|
|
|
|
'0022,0015' => { VR => 'SQ', Name => 'AcquisitionDeviceTypeCodeSequence' }, |
|
2168
|
|
|
|
|
|
|
'0022,0016' => { VR => 'SQ', Name => 'IlluminationTypeCodeSequence' }, |
|
2169
|
|
|
|
|
|
|
'0022,0017' => { VR => 'SQ', Name => 'LightPathFilterTypeStackCodeSeq' }, |
|
2170
|
|
|
|
|
|
|
'0022,0018' => { VR => 'SQ', Name => 'ImagePathFilterTypeStackCodeSeq' }, |
|
2171
|
|
|
|
|
|
|
'0022,0019' => { VR => 'SQ', Name => 'LensesCodeSequence' }, |
|
2172
|
|
|
|
|
|
|
'0022,001A' => { VR => 'SQ', Name => 'ChannelDescriptionCodeSequence' }, |
|
2173
|
|
|
|
|
|
|
'0022,001B' => { VR => 'SQ', Name => 'RefractiveStateSequence' }, |
|
2174
|
|
|
|
|
|
|
'0022,001C' => { VR => 'SQ', Name => 'MydriaticAgentCodeSequence' }, |
|
2175
|
|
|
|
|
|
|
'0022,001D' => { VR => 'SQ', Name => 'RelativeImagePositionCodeSequence' }, |
|
2176
|
|
|
|
|
|
|
'0022,001E' => { VR => 'FL', Name => 'CameraAngleOfView' }, |
|
2177
|
|
|
|
|
|
|
'0022,0020' => { VR => 'SQ', Name => 'StereoPairsSequence' }, |
|
2178
|
|
|
|
|
|
|
'0022,0021' => { VR => 'SQ', Name => 'LeftImageSequence' }, |
|
2179
|
|
|
|
|
|
|
'0022,0022' => { VR => 'SQ', Name => 'RightImageSequence' }, |
|
2180
|
|
|
|
|
|
|
'0022,0028' => { VR => 'CS', Name => 'StereoPairsPresent' }, |
|
2181
|
|
|
|
|
|
|
'0022,0030' => { VR => 'FL', Name => 'AxialLengthOfTheEye' }, |
|
2182
|
|
|
|
|
|
|
'0022,0031' => { VR => 'SQ', Name => 'OphthalmicFrameLocationSequence' }, |
|
2183
|
|
|
|
|
|
|
'0022,0032' => { VR => 'FL', Name => 'ReferenceCoordinates' }, |
|
2184
|
|
|
|
|
|
|
'0022,0035' => { VR => 'FL', Name => 'DepthSpatialResolution' }, |
|
2185
|
|
|
|
|
|
|
'0022,0036' => { VR => 'FL', Name => 'MaximumDepthDistortion' }, |
|
2186
|
|
|
|
|
|
|
'0022,0037' => { VR => 'FL', Name => 'AlongScanSpatialResolution' }, |
|
2187
|
|
|
|
|
|
|
'0022,0038' => { VR => 'FL', Name => 'MaximumAlongScanDistortion' }, |
|
2188
|
|
|
|
|
|
|
'0022,0039' => { VR => 'CS', Name => 'OphthalmicImageOrientation' }, |
|
2189
|
|
|
|
|
|
|
'0022,0041' => { VR => 'FL', Name => 'DepthOfTransverseImage' }, |
|
2190
|
|
|
|
|
|
|
'0022,0042' => { VR => 'SQ', Name => 'MydriaticAgentConcUnitsSeq' }, |
|
2191
|
|
|
|
|
|
|
'0022,0048' => { VR => 'FL', Name => 'AcrossScanSpatialResolution' }, |
|
2192
|
|
|
|
|
|
|
'0022,0049' => { VR => 'FL', Name => 'MaximumAcrossScanDistortion' }, |
|
2193
|
|
|
|
|
|
|
'0022,004E' => { VR => 'DS', Name => 'MydriaticAgentConcentration' }, |
|
2194
|
|
|
|
|
|
|
'0022,0055' => { VR => 'FL', Name => 'IlluminationWaveLength' }, |
|
2195
|
|
|
|
|
|
|
'0022,0056' => { VR => 'FL', Name => 'IlluminationPower' }, |
|
2196
|
|
|
|
|
|
|
'0022,0057' => { VR => 'FL', Name => 'IlluminationBandwidth' }, |
|
2197
|
|
|
|
|
|
|
'0022,0058' => { VR => 'SQ', Name => 'MydriaticAgentSequence' }, |
|
2198
|
|
|
|
|
|
|
'0022,1007' => { VR => 'SQ', Name => 'OphthalmicAxialMeasRightEyeSeq' }, |
|
2199
|
|
|
|
|
|
|
'0022,1008' => { VR => 'SQ', Name => 'OphthalmicAxialMeasLeftEyeSeq' }, |
|
2200
|
|
|
|
|
|
|
'0022,1009' => { VR => 'CS', Name => 'OphthalmicAxialMeasDeviceType' }, |
|
2201
|
|
|
|
|
|
|
'0022,1010' => { VR => 'CS', Name => 'OphthalmicAxialLengthMeasType' }, |
|
2202
|
|
|
|
|
|
|
'0022,1012' => { VR => 'SQ', Name => 'OphthalmicAxialLengthSequence' }, |
|
2203
|
|
|
|
|
|
|
'0022,1019' => { VR => 'FL', Name => 'OphthalmicAxialLength' }, |
|
2204
|
|
|
|
|
|
|
'0022,1024' => { VR => 'SQ', Name => 'LensStatusCodeSequence' }, |
|
2205
|
|
|
|
|
|
|
'0022,1025' => { VR => 'SQ', Name => 'VitreousStatusCodeSequence' }, |
|
2206
|
|
|
|
|
|
|
'0022,1028' => { VR => 'SQ', Name => 'IOLFormulaCodeSequence' }, |
|
2207
|
|
|
|
|
|
|
'0022,1029' => { VR => 'LO', Name => 'IOLFormulaDetail' }, |
|
2208
|
|
|
|
|
|
|
'0022,1033' => { VR => 'FL', Name => 'KeratometerIndex' }, |
|
2209
|
|
|
|
|
|
|
'0022,1035' => { VR => 'SQ', Name => 'SourceOfOphthalmicAxialLenCodeSeq' }, |
|
2210
|
|
|
|
|
|
|
'0022,1036' => { VR => 'SQ', Name => 'SourceOfCornealSizeDataCodeSeq' }, |
|
2211
|
|
|
|
|
|
|
'0022,1037' => { VR => 'FL', Name => 'TargetRefraction' }, |
|
2212
|
|
|
|
|
|
|
'0022,1039' => { VR => 'CS', Name => 'RefractiveProcedureOccurred' }, |
|
2213
|
|
|
|
|
|
|
'0022,1040' => { VR => 'SQ', Name => 'RefractiveSurgeryTypeCodeSequence' }, |
|
2214
|
|
|
|
|
|
|
'0022,1044' => { VR => 'SQ', Name => 'OphthalmicUltrasoundMethodCodeSeq' }, |
|
2215
|
|
|
|
|
|
|
'0022,1045' => { VR => 'SQ', Name => 'SurgicallyInducedAstigmatismSeq' }, |
|
2216
|
|
|
|
|
|
|
'0022,1046' => { VR => 'CS', Name => 'TypeOfOpticalCorrection' }, |
|
2217
|
|
|
|
|
|
|
'0022,1047' => { VR => 'SQ', Name => 'ToricIOLPowerSequence' }, |
|
2218
|
|
|
|
|
|
|
'0022,1048' => { VR => 'SQ', Name => 'PredictedToricErrorSequence' }, |
|
2219
|
|
|
|
|
|
|
'0022,1049' => { VR => 'CS', Name => 'PreSelectedForImplantation' }, |
|
2220
|
|
|
|
|
|
|
'0022,104A' => { VR => 'SQ', Name => 'ToricIOLPowerForExactEmmetropiaSeq' }, |
|
2221
|
|
|
|
|
|
|
'0022,104B' => { VR => 'SQ', Name => 'ToricIOLPowerExactTargetRefractSeq' }, |
|
2222
|
|
|
|
|
|
|
'0022,1050' => { VR => 'SQ', Name => 'OphthalmicAxialLengthMeasSequence' }, |
|
2223
|
|
|
|
|
|
|
'0022,1053' => { VR => 'FL', Name => 'IOLPower' }, |
|
2224
|
|
|
|
|
|
|
'0022,1054' => { VR => 'FL', Name => 'PredictedRefractiveError' }, |
|
2225
|
|
|
|
|
|
|
'0022,1059' => { VR => 'FL', Name => 'OphthalmicAxialLengthVelocity' }, |
|
2226
|
|
|
|
|
|
|
'0022,1065' => { VR => 'LO', Name => 'LensStatusDescription' }, |
|
2227
|
|
|
|
|
|
|
'0022,1066' => { VR => 'LO', Name => 'VitreousStatusDescription' }, |
|
2228
|
|
|
|
|
|
|
'0022,1090' => { VR => 'SQ', Name => 'IOLPowerSequence' }, |
|
2229
|
|
|
|
|
|
|
'0022,1092' => { VR => 'SQ', Name => 'LensConstantSequence' }, |
|
2230
|
|
|
|
|
|
|
'0022,1093' => { VR => 'LO', Name => 'IOLManufacturer' }, |
|
2231
|
|
|
|
|
|
|
'0022,1094' => { VR => 'LO', Name => 'LensConstantDescription' }, |
|
2232
|
|
|
|
|
|
|
'0022,1095' => { VR => 'LO', Name => 'ImplantName' }, |
|
2233
|
|
|
|
|
|
|
'0022,1096' => { VR => 'SQ', Name => 'KeratometryMeasurementTypeCodeSeq' }, |
|
2234
|
|
|
|
|
|
|
'0022,1097' => { VR => 'LO', Name => 'ImplantPartNumber' }, |
|
2235
|
|
|
|
|
|
|
'0022,1100' => { VR => 'SQ', Name => 'ReferencedOphthalmicAxialMeasSeq' }, |
|
2236
|
|
|
|
|
|
|
'0022,1101' => { VR => 'SQ', Name => 'OphthalmicAxialMeasSegmentCodeSeq' }, |
|
2237
|
|
|
|
|
|
|
'0022,1103' => { VR => 'SQ', Name => 'RefractErrBeforeRefractSurgCodeSeq' }, |
|
2238
|
|
|
|
|
|
|
'0022,1121' => { VR => 'FL', Name => 'IOLPowerForExactEmmetropia' }, |
|
2239
|
|
|
|
|
|
|
'0022,1122' => { VR => 'FL', Name => 'IOLPowerForExactTargetRefraction' }, |
|
2240
|
|
|
|
|
|
|
'0022,1125' => { VR => 'SQ', Name => 'AnteriorChamberDepthDefCodeSeq' }, |
|
2241
|
|
|
|
|
|
|
'0022,1127' => { VR => 'SQ', Name => 'LensThicknessSequence' }, |
|
2242
|
|
|
|
|
|
|
'0022,1128' => { VR => 'SQ', Name => 'AnteriorChamberDepthSequence' }, |
|
2243
|
|
|
|
|
|
|
'0022,112A' => { VR => 'SQ', Name => 'CalculationCommentSequence' }, |
|
2244
|
|
|
|
|
|
|
'0022,112B' => { VR => 'CS', Name => 'CalculationCommentType' }, |
|
2245
|
|
|
|
|
|
|
'0022,112C' => { VR => 'LT', Name => 'CalculationComment' }, |
|
2246
|
|
|
|
|
|
|
'0022,1130' => { VR => 'FL', Name => 'LensThickness' }, |
|
2247
|
|
|
|
|
|
|
'0022,1131' => { VR => 'FL', Name => 'AnteriorChamberDepth' }, |
|
2248
|
|
|
|
|
|
|
'0022,1132' => { VR => 'SQ', Name => 'SourceOfLensThicknessDataCodeSeq' }, |
|
2249
|
|
|
|
|
|
|
'0022,1133' => { VR => 'SQ', Name => 'SourceAnteriorChamberDepthCodeSeq' }, |
|
2250
|
|
|
|
|
|
|
'0022,1134' => { VR => 'SQ', Name => 'SourceOfRefractiveMeasurementsSeq' }, |
|
2251
|
|
|
|
|
|
|
'0022,1135' => { VR => 'SQ', Name => 'SourceOfRefractiveMeasCodeSeq' }, |
|
2252
|
|
|
|
|
|
|
'0022,1140' => { VR => 'CS', Name => 'OphthalmicAxialLengthMeasModified' }, |
|
2253
|
|
|
|
|
|
|
'0022,1150' => { VR => 'SQ', Name => 'OphthalmicAxialLenDataSrcCodeSeq' }, |
|
2254
|
|
|
|
|
|
|
'0022,1153' => { VR => 'SQ', Name => 'OphthalmicAxialLenAcqMethodCodeSeq' }, |
|
2255
|
|
|
|
|
|
|
'0022,1155' => { VR => 'FL', Name => 'SignalToNoiseRatio' }, |
|
2256
|
|
|
|
|
|
|
'0022,1159' => { VR => 'LO', Name => 'OphthalmicAxialLenDataSourceDescr' }, |
|
2257
|
|
|
|
|
|
|
'0022,1210' => { VR => 'SQ', Name => 'OphthalmicAxialLenMeasTotalLenSeq' }, |
|
2258
|
|
|
|
|
|
|
'0022,1211' => { VR => 'SQ', Name => 'OphthalmicAxialMeasSegmentLenSeq' }, |
|
2259
|
|
|
|
|
|
|
'0022,1212' => { VR => 'SQ', Name => 'OphthalmicAxialMeasLenSummationSeq' }, |
|
2260
|
|
|
|
|
|
|
'0022,1220' => { VR => 'SQ', Name => 'UltrasoundOphthalmicAxialMeasSeq' }, |
|
2261
|
|
|
|
|
|
|
'0022,1225' => { VR => 'SQ', Name => 'OpticalOphthalmicAxialLenMeasSeq' }, |
|
2262
|
|
|
|
|
|
|
'0022,1230' => { VR => 'SQ', Name => 'UltrasoundSelOphthalmicAxialLenSeq' }, |
|
2263
|
|
|
|
|
|
|
'0022,1250' => { VR => 'SQ', Name => 'OphthalmicAxialLenSelMethodCodeSeq' }, |
|
2264
|
|
|
|
|
|
|
'0022,1255' => { VR => 'SQ', Name => 'OpticalSelOphthalmicAxialLenSeq' }, |
|
2265
|
|
|
|
|
|
|
'0022,1257' => { VR => 'SQ', Name => 'SelSegmentalOphthalmicAxialLenSeq' }, |
|
2266
|
|
|
|
|
|
|
'0022,1260' => { VR => 'SQ', Name => 'SelTotalOphthalmicAxialLenSeq' }, |
|
2267
|
|
|
|
|
|
|
'0022,1262' => { VR => 'SQ', Name => 'OphthalmicAxialLenQualityMetricSeq' }, |
|
2268
|
|
|
|
|
|
|
'0022,1265' => { VR => 'SQ', Name => 'OphthalmicAxialLenQualMetricCode' }, |
|
2269
|
|
|
|
|
|
|
'0022,1273' => { VR => 'LO', Name => 'OphthalmicAxialLenQualMetricDesc' }, |
|
2270
|
|
|
|
|
|
|
'0022,1300' => { VR => 'SQ', Name => 'IntraocularLensCalcRightEyeSeq' }, |
|
2271
|
|
|
|
|
|
|
'0022,1310' => { VR => 'SQ', Name => 'IntraocularLensCalcLeftEyeSeq' }, |
|
2272
|
|
|
|
|
|
|
'0022,1330' => { VR => 'SQ', Name => 'RefOphthalmicAxialLenMeasQCImgSeq' }, |
|
2273
|
|
|
|
|
|
|
'0022,1415' => { VR => 'CS', Name => 'OphthalmicMappingDeviceType' }, |
|
2274
|
|
|
|
|
|
|
'0022,1420' => { VR => 'SQ', Name => 'AcquisitionMethodCodeSequence' }, |
|
2275
|
|
|
|
|
|
|
'0022,1423' => { VR => 'SQ', Name => 'AcquisitionMethodAlgorithmSequence' }, |
|
2276
|
|
|
|
|
|
|
'0022,1436' => { VR => 'SQ', Name => 'OphthalmicThicknessMapTypeCodeSeq' }, |
|
2277
|
|
|
|
|
|
|
'0022,1443' => { VR => 'SQ', Name => 'OphthalmicThickMappingNormalsSeq' }, |
|
2278
|
|
|
|
|
|
|
'0022,1445' => { VR => 'SQ', Name => 'RetinalThicknessDefinitionCodeSeq' }, |
|
2279
|
|
|
|
|
|
|
'0022,1450' => { VR => 'SQ', Name => 'PixelValueMappingToCodedConceptSeq' }, |
|
2280
|
|
|
|
|
|
|
'0022,1452' => { VR => 'SS', Name => 'MappedPixelValue' }, |
|
2281
|
|
|
|
|
|
|
'0022,1454' => { VR => 'LO', Name => 'PixelValueMappingExplanation' }, |
|
2282
|
|
|
|
|
|
|
'0022,1458' => { VR => 'SQ', Name => 'OphthalmicThickMapQualityThreshSeq' }, |
|
2283
|
|
|
|
|
|
|
'0022,1460' => { VR => 'FL', Name => 'OphthalmicThickMapThreshQualRating' }, |
|
2284
|
|
|
|
|
|
|
'0022,1463' => { VR => 'FL', Name => 'AnatomicStructureReferencePoint' }, |
|
2285
|
|
|
|
|
|
|
'0022,1465' => { VR => 'SQ', Name => 'RegistrationToLocalizerSequence' }, |
|
2286
|
|
|
|
|
|
|
'0022,1466' => { VR => 'CS', Name => 'RegisteredLocalizerUnits' }, |
|
2287
|
|
|
|
|
|
|
'0022,1467' => { VR => 'FL', Name => 'RegisteredLocalizerTopLeftCorner' }, |
|
2288
|
|
|
|
|
|
|
'0022,1468' => { VR => 'FL', Name => 'RegisteredLocalizerBotRightCorner' }, |
|
2289
|
|
|
|
|
|
|
'0022,1470' => { VR => 'SQ', Name => 'OphthalmicThickMapQualityRatingSeq' }, |
|
2290
|
|
|
|
|
|
|
'0022,1472' => { VR => 'SQ', Name => 'RelevantOPTAttributesSequence' }, |
|
2291
|
|
|
|
|
|
|
'0022,1512' => { VR => 'SQ', Name => 'TransformationMethodCodeSequence' }, |
|
2292
|
|
|
|
|
|
|
'0022,1513' => { VR => 'SQ', Name => 'TransformationAlgorithmSequence' }, |
|
2293
|
|
|
|
|
|
|
'0022,1515' => { VR => 'CS', Name => 'OphthalmicAxialLengthMethod' }, |
|
2294
|
|
|
|
|
|
|
'0022,1517' => { VR => 'FL', Name => 'OphthalmicFOV' }, |
|
2295
|
|
|
|
|
|
|
'0022,1518' => { VR => 'SQ', Name => 'TwoDimensionalToThreeDimMapSeq' }, |
|
2296
|
|
|
|
|
|
|
'0022,1525' => { VR => 'SQ', Name => 'WideFieldOphthalmicPhotoQualRating' }, |
|
2297
|
|
|
|
|
|
|
'0022,1526' => { VR => 'SQ', Name => 'WideFieldOphthalmicPhotoQualThresh' }, |
|
2298
|
|
|
|
|
|
|
'0022,1527' => { VR => 'FL', Name => 'WideFieldOphthalmicPhotoThreshQual' }, |
|
2299
|
|
|
|
|
|
|
'0022,1528' => { VR => 'FL', Name => 'XCoordinatesCenterPixelViewAngle' }, |
|
2300
|
|
|
|
|
|
|
'0022,1529' => { VR => 'FL', Name => 'YCoordinatesCenterPixelViewAngle' }, |
|
2301
|
|
|
|
|
|
|
'0022,1530' => { VR => 'UL', Name => 'NumberOfMapPoints' }, |
|
2302
|
|
|
|
|
|
|
'0022,1531' => { VR => 'OF', Name => 'TwoDimensionalToThreeDimMapData' }, |
|
2303
|
|
|
|
|
|
|
'0022,1612' => { VR => 'SQ', Name => 'DerivationAlgorithmSequence' }, |
|
2304
|
|
|
|
|
|
|
'0022,1615' => { VR => 'SQ', Name => 'OphthalmicImageTypeCodeSequence' }, |
|
2305
|
|
|
|
|
|
|
'0022,1616' => { VR => 'LO', Name => 'OphthalmicImageTypeDescription' }, |
|
2306
|
|
|
|
|
|
|
'0022,1618' => { VR => 'SQ', Name => 'ScanPatternTypeCodeSequence' }, |
|
2307
|
|
|
|
|
|
|
'0022,1620' => { VR => 'SQ', Name => 'ReferencedSurfaceMeshIDSequence' }, |
|
2308
|
|
|
|
|
|
|
'0022,1622' => { VR => 'CS', Name => 'OphthalmicVolumetricPropertiesFlag' }, |
|
2309
|
|
|
|
|
|
|
'0022,1623' => { VR => 'FL', Name => 'OphthalmicAnatomicRefFrameCoord' }, |
|
2310
|
|
|
|
|
|
|
'0022,1624' => { VR => 'FL', Name => 'OphthalmicAnatomicRefPointXCoord' }, |
|
2311
|
|
|
|
|
|
|
'0022,1626' => { VR => 'FL', Name => 'OphthalmicAnatomicRefPointYCoord' }, |
|
2312
|
|
|
|
|
|
|
'0022,1627' => { VR => 'SQ', Name => 'OphthalmicEnFaceVolumeDescrSeq' }, |
|
2313
|
|
|
|
|
|
|
'0022,1628' => { VR => 'SQ', Name => 'OphthalmicEnFaceImageQualRatingSeq' }, |
|
2314
|
|
|
|
|
|
|
'0022,1629' => { VR => 'CS', Name => 'OphthalmicEnFaceVolumeDescrScope' }, |
|
2315
|
|
|
|
|
|
|
'0022,1630' => { VR => 'DS', Name => 'QualityThreshold' }, |
|
2316
|
|
|
|
|
|
|
'0022,1632' => { VR => 'SQ', Name => 'OphthalmicAnatomicRefPointSeq' }, |
|
2317
|
|
|
|
|
|
|
'0022,1633' => { VR => 'CS', Name => 'OphthalmicAnatomicRefPointLocaliz' }, |
|
2318
|
|
|
|
|
|
|
'0022,1634' => { VR => 'IS', Name => 'PrimaryAnatomicStructureItemIndex' }, |
|
2319
|
|
|
|
|
|
|
'0022,1640' => { VR => 'SQ', Name => 'OCTBscanAnalysisAcqParamSeq' }, |
|
2320
|
|
|
|
|
|
|
'0022,1642' => { VR => 'UL', Name => 'NumberOfBscansPerFrame' }, |
|
2321
|
|
|
|
|
|
|
'0022,1643' => { VR => 'FL', Name => 'BscanSlabThickness' }, |
|
2322
|
|
|
|
|
|
|
'0022,1644' => { VR => 'FL', Name => 'DistanceBetweenBscanSlabs' }, |
|
2323
|
|
|
|
|
|
|
'0022,1645' => { VR => 'FL', Name => 'BscanCycleTime' }, |
|
2324
|
|
|
|
|
|
|
'0022,1646' => { VR => 'FL', Name => 'BscanCycleTimeVector' }, |
|
2325
|
|
|
|
|
|
|
'0022,1649' => { VR => 'FL', Name => 'AscanRate' }, |
|
2326
|
|
|
|
|
|
|
'0022,1650' => { VR => 'FL', Name => 'BscanRate' }, |
|
2327
|
|
|
|
|
|
|
'0022,1658' => { VR => 'UL', Name => 'SurfaceMeshZPixelOffset' }, |
|
2328
|
|
|
|
|
|
|
# GEMS_STDY_01 (ref 4) |
|
2329
|
|
|
|
|
|
|
'0023,1001' => { VR => 'SL', Name => 'NumberOfSeriesInStudy' }, |
|
2330
|
|
|
|
|
|
|
'0023,1002' => { VR => 'SL', Name => 'NumberOfUnarchivedSeries' }, |
|
2331
|
|
|
|
|
|
|
'0023,1010' => { VR => 'SS', Name => 'ReferenceImageField' }, |
|
2332
|
|
|
|
|
|
|
'0023,1050' => { VR => 'SS', Name => 'SummaryImage' }, |
|
2333
|
|
|
|
|
|
|
'0023,1070' => { VR => 'FD', Name => 'StartTimeSecsInFirstAxial' }, |
|
2334
|
|
|
|
|
|
|
'0023,1074' => { VR => 'SL', Name => 'NoofUpdatesToHeader' }, |
|
2335
|
|
|
|
|
|
|
'0023,107D' => { VR => 'SS', Name => 'IndicatesIfStudyHasCompleteInfo' }, |
|
2336
|
|
|
|
|
|
|
'0023,107D' => { VR => 'SS', Name => 'IndicatesIfTheStudyHasCompleteInfo' }, |
|
2337
|
|
|
|
|
|
|
# DICOM 2026 |
|
2338
|
|
|
|
|
|
|
'0024,0010' => { VR => 'FL', Name => 'VisualFieldHorizontalExtent' }, |
|
2339
|
|
|
|
|
|
|
'0024,0011' => { VR => 'FL', Name => 'VisualFieldVerticalExtent' }, |
|
2340
|
|
|
|
|
|
|
'0024,0012' => { VR => 'CS', Name => 'VisualFieldShape' }, |
|
2341
|
|
|
|
|
|
|
'0024,0016' => { VR => 'SQ', Name => 'ScreeningTestModeCodeSequence' }, |
|
2342
|
|
|
|
|
|
|
'0024,0018' => { VR => 'FL', Name => 'MaximumStimulusLuminance' }, |
|
2343
|
|
|
|
|
|
|
'0024,0020' => { VR => 'FL', Name => 'BackgroundLuminance' }, |
|
2344
|
|
|
|
|
|
|
'0024,0021' => { VR => 'SQ', Name => 'StimulusColorCodeSequence' }, |
|
2345
|
|
|
|
|
|
|
'0024,0024' => { VR => 'SQ', Name => 'BackgroundIlluminationColorCodeSeq' }, |
|
2346
|
|
|
|
|
|
|
'0024,0025' => { VR => 'FL', Name => 'StimulusArea' }, |
|
2347
|
|
|
|
|
|
|
'0024,0028' => { VR => 'FL', Name => 'StimulusPresentationTime' }, |
|
2348
|
|
|
|
|
|
|
'0024,0032' => { VR => 'SQ', Name => 'FixationSequence' }, |
|
2349
|
|
|
|
|
|
|
'0024,0033' => { VR => 'SQ', Name => 'FixationMonitoringCodeSequence' }, |
|
2350
|
|
|
|
|
|
|
'0024,0034' => { VR => 'SQ', Name => 'VisualFieldCatchTrialSequence' }, |
|
2351
|
|
|
|
|
|
|
'0024,0035' => { VR => 'US', Name => 'FixationCheckedQuantity' }, |
|
2352
|
|
|
|
|
|
|
'0024,0036' => { VR => 'US', Name => 'PatientNotProperlyFixatedQuantity' }, |
|
2353
|
|
|
|
|
|
|
'0024,0037' => { VR => 'CS', Name => 'PresentedVisualStimuliDataFlag' }, |
|
2354
|
|
|
|
|
|
|
'0024,0038' => { VR => 'US', Name => 'NumberOfVisualStimuli' }, |
|
2355
|
|
|
|
|
|
|
'0024,0039' => { VR => 'CS', Name => 'ExcessiveFixationLossesDataFlag' }, |
|
2356
|
|
|
|
|
|
|
'0024,0040' => { VR => 'CS', Name => 'ExcessiveFixationLosses' }, |
|
2357
|
|
|
|
|
|
|
'0024,0042' => { VR => 'US', Name => 'StimuliRetestingQuantity' }, |
|
2358
|
|
|
|
|
|
|
'0024,0044' => { VR => 'LT', Name => 'CommentsOnPatientPerfOfVisualField' }, |
|
2359
|
|
|
|
|
|
|
'0024,0045' => { VR => 'CS', Name => 'FalseNegativesEstimateFlag' }, |
|
2360
|
|
|
|
|
|
|
'0024,0046' => { VR => 'FL', Name => 'FalseNegativesEstimate' }, |
|
2361
|
|
|
|
|
|
|
'0024,0048' => { VR => 'US', Name => 'NegativeCatchTrialsQuantity' }, |
|
2362
|
|
|
|
|
|
|
'0024,0050' => { VR => 'US', Name => 'FalseNegativesQuantity' }, |
|
2363
|
|
|
|
|
|
|
'0024,0051' => { VR => 'CS', Name => 'ExcessiveFalseNegativesDataFlag' }, |
|
2364
|
|
|
|
|
|
|
'0024,0052' => { VR => 'CS', Name => 'ExcessiveFalseNegatives' }, |
|
2365
|
|
|
|
|
|
|
'0024,0053' => { VR => 'CS', Name => 'FalsePositivesEstimateFlag' }, |
|
2366
|
|
|
|
|
|
|
'0024,0054' => { VR => 'FL', Name => 'FalsePositivesEstimate' }, |
|
2367
|
|
|
|
|
|
|
'0024,0055' => { VR => 'CS', Name => 'CatchTrialsDataFlag' }, |
|
2368
|
|
|
|
|
|
|
'0024,0056' => { VR => 'US', Name => 'PositiveCatchTrialsQuantity' }, |
|
2369
|
|
|
|
|
|
|
'0024,0057' => { VR => 'CS', Name => 'TestPointNormalsDataFlag' }, |
|
2370
|
|
|
|
|
|
|
'0024,0058' => { VR => 'SQ', Name => 'TestPointNormalsSequence' }, |
|
2371
|
|
|
|
|
|
|
'0024,0059' => { VR => 'CS', Name => 'GlobalDeviationProbNormalsFlag' }, |
|
2372
|
|
|
|
|
|
|
'0024,0060' => { VR => 'US', Name => 'FalsePositivesQuantity' }, |
|
2373
|
|
|
|
|
|
|
'0024,0061' => { VR => 'CS', Name => 'ExcessiveFalsePositivesDataFlag' }, |
|
2374
|
|
|
|
|
|
|
'0024,0062' => { VR => 'CS', Name => 'ExcessiveFalsePositives' }, |
|
2375
|
|
|
|
|
|
|
'0024,0063' => { VR => 'CS', Name => 'VisualFieldTestNormalsFlag' }, |
|
2376
|
|
|
|
|
|
|
'0024,0064' => { VR => 'SQ', Name => 'ResultsNormalsSequence' }, |
|
2377
|
|
|
|
|
|
|
'0024,0065' => { VR => 'SQ', Name => 'AgeCorSensitivityDeviationAlgoSeq' }, |
|
2378
|
|
|
|
|
|
|
'0024,0066' => { VR => 'FL', Name => 'GlobalDeviationFromNormal' }, |
|
2379
|
|
|
|
|
|
|
'0024,0067' => { VR => 'SQ', Name => 'GeneralDefectSensDeviationAlgoSeq' }, |
|
2380
|
|
|
|
|
|
|
'0024,0068' => { VR => 'FL', Name => 'LocalizedDeviationFromNormal' }, |
|
2381
|
|
|
|
|
|
|
'0024,0069' => { VR => 'LO', Name => 'PatientReliabilityIndicator' }, |
|
2382
|
|
|
|
|
|
|
'0024,0070' => { VR => 'FL', Name => 'VisualFieldMeanSensitivity' }, |
|
2383
|
|
|
|
|
|
|
'0024,0071' => { VR => 'FL', Name => 'GlobalDeviationProbability' }, |
|
2384
|
|
|
|
|
|
|
'0024,0072' => { VR => 'CS', Name => 'LocalDeviationProbNormalsFlag' }, |
|
2385
|
|
|
|
|
|
|
'0024,0073' => { VR => 'FL', Name => 'LocalizedDeviationProbability' }, |
|
2386
|
|
|
|
|
|
|
'0024,0074' => { VR => 'CS', Name => 'ShortTermFluctuationCalculated' }, |
|
2387
|
|
|
|
|
|
|
'0024,0075' => { VR => 'FL', Name => 'ShortTermFluctuation' }, |
|
2388
|
|
|
|
|
|
|
'0024,0076' => { VR => 'CS', Name => 'ShortTermFluctuationProbCalculated' }, |
|
2389
|
|
|
|
|
|
|
'0024,0077' => { VR => 'FL', Name => 'ShortTermFluctuationProbability' }, |
|
2390
|
|
|
|
|
|
|
'0024,0078' => { VR => 'CS', Name => 'CorrectedLocalDevFromNormalCalc' }, |
|
2391
|
|
|
|
|
|
|
'0024,0079' => { VR => 'FL', Name => 'CorrectedLocalizedDevFromNormal' }, |
|
2392
|
|
|
|
|
|
|
'0024,0080' => { VR => 'CS', Name => 'CorrectedLocalDevFrmNormalProbCalc' }, |
|
2393
|
|
|
|
|
|
|
'0024,0081' => { VR => 'FL', Name => 'CorrectedLocalDevFromNormalProb' }, |
|
2394
|
|
|
|
|
|
|
'0024,0083' => { VR => 'SQ', Name => 'GlobalDeviationProbabilitySequence' }, |
|
2395
|
|
|
|
|
|
|
'0024,0085' => { VR => 'SQ', Name => 'LocalizedDeviationProbabilitySeq' }, |
|
2396
|
|
|
|
|
|
|
'0024,0086' => { VR => 'CS', Name => 'FovealSensitivityMeasured' }, |
|
2397
|
|
|
|
|
|
|
'0024,0087' => { VR => 'FL', Name => 'FovealSensitivity' }, |
|
2398
|
|
|
|
|
|
|
'0024,0088' => { VR => 'FL', Name => 'VisualFieldTestDuration' }, |
|
2399
|
|
|
|
|
|
|
'0024,0089' => { VR => 'SQ', Name => 'VisualFieldTestPointSequence' }, |
|
2400
|
|
|
|
|
|
|
'0024,0090' => { VR => 'FL', Name => 'VisualFieldTestPointXCoordinate' }, |
|
2401
|
|
|
|
|
|
|
'0024,0091' => { VR => 'FL', Name => 'VisualFieldTestPointYCoordinate' }, |
|
2402
|
|
|
|
|
|
|
'0024,0092' => { VR => 'FL', Name => 'AgeCorrectedSensDeviationValue' }, |
|
2403
|
|
|
|
|
|
|
'0024,0093' => { VR => 'CS', Name => 'StimulusResults' }, |
|
2404
|
|
|
|
|
|
|
'0024,0094' => { VR => 'FL', Name => 'SensitivityValue' }, |
|
2405
|
|
|
|
|
|
|
'0024,0095' => { VR => 'CS', Name => 'RetestStimulusSeen' }, |
|
2406
|
|
|
|
|
|
|
'0024,0096' => { VR => 'FL', Name => 'RetestSensitivityValue' }, |
|
2407
|
|
|
|
|
|
|
'0024,0097' => { VR => 'SQ', Name => 'VisualFieldTestPointNormalsSeq' }, |
|
2408
|
|
|
|
|
|
|
'0024,0098' => { VR => 'FL', Name => 'QuantifiedDefect' }, |
|
2409
|
|
|
|
|
|
|
'0024,0100' => { VR => 'FL', Name => 'AgeCorrectedSensDeviationProbValue' }, |
|
2410
|
|
|
|
|
|
|
'0024,0102' => { VR => 'CS', Name => 'GeneralizedDefectCorrSensDevFlag' }, |
|
2411
|
|
|
|
|
|
|
'0024,0103' => { VR => 'FL', Name => 'GeneralizedDefectCorrSensDevValue' }, |
|
2412
|
|
|
|
|
|
|
'0024,0104' => { VR => 'FL', Name => 'GeneralDefectCorrSensDevProbValue' }, |
|
2413
|
|
|
|
|
|
|
'0024,0105' => { VR => 'FL', Name => 'MinimumSensitivityValue' }, |
|
2414
|
|
|
|
|
|
|
'0024,0106' => { VR => 'CS', Name => 'BlindSpotLocalized' }, |
|
2415
|
|
|
|
|
|
|
'0024,0107' => { VR => 'FL', Name => 'BlindSpotXCoordinate' }, |
|
2416
|
|
|
|
|
|
|
'0024,0108' => { VR => 'FL', Name => 'BlindSpotYCoordinate' }, |
|
2417
|
|
|
|
|
|
|
'0024,0110' => { VR => 'SQ', Name => 'VisualAcuityMeasurementSequence' }, |
|
2418
|
|
|
|
|
|
|
'0024,0112' => { VR => 'SQ', Name => 'RefractiveParamsUsedOnPatientSeq' }, |
|
2419
|
|
|
|
|
|
|
'0024,0113' => { VR => 'CS', Name => 'MeasurementLaterality' }, |
|
2420
|
|
|
|
|
|
|
'0024,0114' => { VR => 'SQ', Name => 'OphthalmicPatientClinicalInfoLfEye' }, |
|
2421
|
|
|
|
|
|
|
'0024,0115' => { VR => 'SQ', Name => 'OphthalmicPatientClinicalInfoRtEye' }, |
|
2422
|
|
|
|
|
|
|
'0024,0117' => { VR => 'CS', Name => 'FovealPointNormativeDataFlag' }, |
|
2423
|
|
|
|
|
|
|
'0024,0118' => { VR => 'FL', Name => 'FovealPointProbabilityValue' }, |
|
2424
|
|
|
|
|
|
|
'0024,0120' => { VR => 'CS', Name => 'ScreeningBaselineMeasured' }, |
|
2425
|
|
|
|
|
|
|
'0024,0122' => { VR => 'SQ', Name => 'ScreeningBaselineMeasuredSequence' }, |
|
2426
|
|
|
|
|
|
|
'0024,0124' => { VR => 'CS', Name => 'ScreeningBaselineType' }, |
|
2427
|
|
|
|
|
|
|
'0024,0126' => { VR => 'FL', Name => 'ScreeningBaselineValue' }, |
|
2428
|
|
|
|
|
|
|
'0024,0202' => { VR => 'LO', Name => 'AlgorithmSource' }, |
|
2429
|
|
|
|
|
|
|
'0024,0306' => { VR => 'LO', Name => 'DataSetName' }, |
|
2430
|
|
|
|
|
|
|
'0024,0307' => { VR => 'LO', Name => 'DataSetVersion' }, |
|
2431
|
|
|
|
|
|
|
'0024,0308' => { VR => 'LO', Name => 'DataSetSource' }, |
|
2432
|
|
|
|
|
|
|
'0024,0309' => { VR => 'LO', Name => 'DataSetDescription' }, |
|
2433
|
|
|
|
|
|
|
'0024,0317' => { VR => 'SQ', Name => 'VisualFieldTestRelyGlobIndexSeq' }, |
|
2434
|
|
|
|
|
|
|
'0024,0320' => { VR => 'SQ', Name => 'VisualFieldGlobalResultsIndexSeq' }, |
|
2435
|
|
|
|
|
|
|
'0024,0325' => { VR => 'SQ', Name => 'DataObservationSequence' }, |
|
2436
|
|
|
|
|
|
|
'0024,0338' => { VR => 'CS', Name => 'IndexNormalsFlag' }, |
|
2437
|
|
|
|
|
|
|
'0024,0341' => { VR => 'FL', Name => 'IndexProbability' }, |
|
2438
|
|
|
|
|
|
|
'0024,0344' => { VR => 'SQ', Name => 'IndexProbabilitySequence' }, |
|
2439
|
|
|
|
|
|
|
# GEMS_SERS_01 (ref 4) |
|
2440
|
|
|
|
|
|
|
'0025,1006' => { VR => 'SS', Name => 'LastPulseSequenceUsed' }, |
|
2441
|
|
|
|
|
|
|
'0025,1007' => { VR => 'SL', Name => 'ImagesInSeries' }, |
|
2442
|
|
|
|
|
|
|
'0025,1010' => { VR => 'SL', Name => 'LandmarkCounter' }, |
|
2443
|
|
|
|
|
|
|
'0025,1011' => { VR => 'SS', Name => 'NumberOfAcquisitions' }, |
|
2444
|
|
|
|
|
|
|
'0025,1014' => { VR => 'SL', Name => 'IndicatesNoofUpdatesToHeader' }, |
|
2445
|
|
|
|
|
|
|
'0025,1017' => { VR => 'SL', Name => 'SeriesCompleteFlag' }, |
|
2446
|
|
|
|
|
|
|
'0025,1018' => { VR => 'SL', Name => 'NumberOfImagesArchived' }, |
|
2447
|
|
|
|
|
|
|
'0025,1019' => { VR => 'SL', Name => 'LastImageNumberUsed' }, |
|
2448
|
|
|
|
|
|
|
'0025,101A' => { VR => 'SH', Name => 'PrimaryReceiverSuiteAndHost' }, |
|
2449
|
|
|
|
|
|
|
# GEMS_IMAG_01 (ref 4) |
|
2450
|
|
|
|
|
|
|
'0027,1006' => { VR => 'SL', Name => 'ImageArchiveFlag' }, |
|
2451
|
|
|
|
|
|
|
'0027,1010' => { VR => 'SS', Name => 'ScoutType' }, |
|
2452
|
|
|
|
|
|
|
'0027,101C' => { VR => 'SL', Name => 'VmaMamp' }, |
|
2453
|
|
|
|
|
|
|
'0027,101D' => { VR => 'SS', Name => 'VmaPhase' }, |
|
2454
|
|
|
|
|
|
|
'0027,101E' => { VR => 'SL', Name => 'VmaMod' }, |
|
2455
|
|
|
|
|
|
|
'0027,101F' => { VR => 'SL', Name => 'VmaClip' }, |
|
2456
|
|
|
|
|
|
|
'0027,1020' => { VR => 'SS', Name => 'SmartScanOnOffFlag' }, |
|
2457
|
|
|
|
|
|
|
'0027,1030' => { VR => 'SH', Name => 'ForeignImageRevision' }, |
|
2458
|
|
|
|
|
|
|
'0027,1031' => { VR => 'SS', Name => 'ImagingMode' }, |
|
2459
|
|
|
|
|
|
|
'0027,1032' => { VR => 'SS', Name => 'PulseSequence' }, |
|
2460
|
|
|
|
|
|
|
'0027,1033' => { VR => 'SL', Name => 'ImagingOptions' }, |
|
2461
|
|
|
|
|
|
|
'0027,1035' => { VR => 'SS', Name => 'PlaneType' }, |
|
2462
|
|
|
|
|
|
|
'0027,1036' => { VR => 'SL', Name => 'ObliquePlane' }, |
|
2463
|
|
|
|
|
|
|
'0027,1040' => { VR => 'SH', Name => 'RASLetterOfImageLocation' }, |
|
2464
|
|
|
|
|
|
|
'0027,1041' => { VR => 'FL', Name => 'ImageLocation' }, |
|
2465
|
|
|
|
|
|
|
'0027,1042' => { VR => 'FL', Name => 'CenterRCoordOfPlaneImage' }, |
|
2466
|
|
|
|
|
|
|
'0027,1043' => { VR => 'FL', Name => 'CenterACoordOfPlaneImage' }, |
|
2467
|
|
|
|
|
|
|
'0027,1044' => { VR => 'FL', Name => 'CenterSCoordOfPlaneImage' }, |
|
2468
|
|
|
|
|
|
|
'0027,1045' => { VR => 'FL', Name => 'NormalRCoord' }, |
|
2469
|
|
|
|
|
|
|
'0027,1046' => { VR => 'FL', Name => 'NormalACoord' }, |
|
2470
|
|
|
|
|
|
|
'0027,1047' => { VR => 'FL', Name => 'NormalSCoord' }, |
|
2471
|
|
|
|
|
|
|
'0027,1048' => { VR => 'FL', Name => 'RCoordOfTopRightCorner' }, |
|
2472
|
|
|
|
|
|
|
'0027,1049' => { VR => 'FL', Name => 'ACoordOfTopRightCorner' }, |
|
2473
|
|
|
|
|
|
|
'0027,104A' => { VR => 'FL', Name => 'SCoordOfTopRightCorner' }, |
|
2474
|
|
|
|
|
|
|
'0027,104B' => { VR => 'FL', Name => 'RCoordOfBottomRightCorner' }, |
|
2475
|
|
|
|
|
|
|
'0027,104C' => { VR => 'FL', Name => 'ACoordOfBottomRightCorner' }, |
|
2476
|
|
|
|
|
|
|
'0027,104D' => { VR => 'FL', Name => 'SCoordOfBottomRightCorner' }, |
|
2477
|
|
|
|
|
|
|
'0027,1050' => { VR => 'FL', Name => 'TableStartLocation' }, |
|
2478
|
|
|
|
|
|
|
'0027,1051' => { VR => 'FL', Name => 'TableEndLocation' }, |
|
2479
|
|
|
|
|
|
|
'0027,1052' => { VR => 'SH', Name => 'RASLetterForSideOfImage' }, |
|
2480
|
|
|
|
|
|
|
'0027,1053' => { VR => 'SH', Name => 'RASLetterForAnteriorPosterior' }, |
|
2481
|
|
|
|
|
|
|
'0027,1054' => { VR => 'SH', Name => 'RASLetterForScoutStartLoc' }, |
|
2482
|
|
|
|
|
|
|
'0027,1055' => { VR => 'SH', Name => 'RASLetterForScoutEndLoc' }, |
|
2483
|
|
|
|
|
|
|
'0027,1060' => { VR => 'FL', Name => 'ImageDimensionX' }, |
|
2484
|
|
|
|
|
|
|
'0027,1061' => { VR => 'FL', Name => 'ImageDimensionY' }, |
|
2485
|
|
|
|
|
|
|
'0027,1062' => { VR => 'FL', Name => 'NumberOfExcitations' }, |
|
2486
|
|
|
|
|
|
|
# image presentation group |
|
2487
|
|
|
|
|
|
|
'0028,0000' => { VR => 'UL', Name => 'ImagePresentationGroupLength' }, |
|
2488
|
|
|
|
|
|
|
'0028,0002' => { VR => 'US', Name => 'SamplesPerPixel' }, |
|
2489
|
|
|
|
|
|
|
'0028,0003' => { VR => 'US', Name => 'SamplesPerPixelUsed' }, |
|
2490
|
|
|
|
|
|
|
'0028,0004' => { VR => 'CS', Name => 'PhotometricInterpretation' }, |
|
2491
|
|
|
|
|
|
|
'0028,0005' => { VR => 'US', Name => 'ImageDimensions' }, |
|
2492
|
|
|
|
|
|
|
'0028,0006' => { VR => 'US', Name => 'PlanarConfiguration' }, |
|
2493
|
|
|
|
|
|
|
'0028,0008' => { VR => 'IS', Name => 'NumberOfFrames' }, |
|
2494
|
|
|
|
|
|
|
'0028,0009' => { VR => 'AT', Name => 'FrameIncrementPointer' }, |
|
2495
|
|
|
|
|
|
|
'0028,000A' => { VR => 'AT', Name => 'FrameDimensionPointer' }, |
|
2496
|
|
|
|
|
|
|
'0028,0010' => { VR => 'US', Name => 'Rows' }, |
|
2497
|
|
|
|
|
|
|
'0028,0011' => { VR => 'US', Name => 'Columns' }, |
|
2498
|
|
|
|
|
|
|
'0028,0012' => { VR => 'US', Name => 'Planes' }, |
|
2499
|
|
|
|
|
|
|
'0028,0014' => { VR => 'US', Name => 'UltrasoundColorDataPresent' }, |
|
2500
|
|
|
|
|
|
|
'0028,0030' => { VR => 'DS', Name => 'PixelSpacing' }, |
|
2501
|
|
|
|
|
|
|
'0028,0031' => { VR => 'DS', Name => 'ZoomFactor' }, |
|
2502
|
|
|
|
|
|
|
'0028,0032' => { VR => 'DS', Name => 'ZoomCenter' }, |
|
2503
|
|
|
|
|
|
|
'0028,0034' => { VR => 'IS', Name => 'PixelAspectRatio' }, |
|
2504
|
|
|
|
|
|
|
'0028,0040' => { VR => 'CS', Name => 'ImageFormat' }, |
|
2505
|
|
|
|
|
|
|
'0028,0050' => { VR => 'LO', Name => 'ManipulatedImage' }, |
|
2506
|
|
|
|
|
|
|
'0028,0051' => { VR => 'CS', Name => 'CorrectedImage' }, |
|
2507
|
|
|
|
|
|
|
'0028,005F' => { VR => 'LO', Name => 'CompressionRecognitionCode' }, |
|
2508
|
|
|
|
|
|
|
'0028,0060' => { VR => 'CS', Name => 'CompressionCode' }, |
|
2509
|
|
|
|
|
|
|
'0028,0061' => { VR => 'SH', Name => 'CompressionOriginator' }, |
|
2510
|
|
|
|
|
|
|
'0028,0062' => { VR => 'LO', Name => 'CompressionLabel' }, |
|
2511
|
|
|
|
|
|
|
'0028,0063' => { VR => 'SH', Name => 'CompressionDescription' }, |
|
2512
|
|
|
|
|
|
|
'0028,0065' => { VR => 'CS', Name => 'CompressionSequence' }, |
|
2513
|
|
|
|
|
|
|
'0028,0066' => { VR => 'AT', Name => 'CompressionStepPointers' }, |
|
2514
|
|
|
|
|
|
|
'0028,0068' => { VR => 'US', Name => 'RepeatInterval' }, |
|
2515
|
|
|
|
|
|
|
'0028,0069' => { VR => 'US', Name => 'BitsGrouped' }, |
|
2516
|
|
|
|
|
|
|
'0028,0070' => { VR => 'US', Name => 'PerimeterTable' }, |
|
2517
|
|
|
|
|
|
|
'0028,0071' => { VR => 'US', Name => 'PerimeterValue' }, |
|
2518
|
|
|
|
|
|
|
'0028,0080' => { VR => 'US', Name => 'PredictorRows' }, |
|
2519
|
|
|
|
|
|
|
'0028,0081' => { VR => 'US', Name => 'PredictorColumns' }, |
|
2520
|
|
|
|
|
|
|
'0028,0082' => { VR => 'US', Name => 'PredictorConstants' }, |
|
2521
|
|
|
|
|
|
|
'0028,0090' => { VR => 'CS', Name => 'BlockedPixels' }, |
|
2522
|
|
|
|
|
|
|
'0028,0091' => { VR => 'US', Name => 'BlockRows' }, |
|
2523
|
|
|
|
|
|
|
'0028,0092' => { VR => 'US', Name => 'BlockColumns' }, |
|
2524
|
|
|
|
|
|
|
'0028,0093' => { VR => 'US', Name => 'RowOverlap' }, |
|
2525
|
|
|
|
|
|
|
'0028,0094' => { VR => 'US', Name => 'ColumnOverlap' }, |
|
2526
|
|
|
|
|
|
|
'0028,0100' => { VR => 'US', Name => 'BitsAllocated' }, |
|
2527
|
|
|
|
|
|
|
'0028,0101' => { VR => 'US', Name => 'BitsStored' }, |
|
2528
|
|
|
|
|
|
|
'0028,0102' => { VR => 'US', Name => 'HighBit' }, |
|
2529
|
|
|
|
|
|
|
'0028,0103' => { VR => 'US', Name => 'PixelRepresentation', PrintConv => { 0 => 'Unsigned', 1 => 'Signed' } }, |
|
2530
|
|
|
|
|
|
|
'0028,0104' => { VR => 'US', Name => 'SmallestValidPixelValue' }, |
|
2531
|
|
|
|
|
|
|
'0028,0105' => { VR => 'US', Name => 'LargestValidPixelValue' }, |
|
2532
|
|
|
|
|
|
|
'0028,0106' => { VR => 'US', Name => 'SmallestImagePixelValue' }, |
|
2533
|
|
|
|
|
|
|
'0028,0107' => { VR => 'US', Name => 'LargestImagePixelValue' }, |
|
2534
|
|
|
|
|
|
|
'0028,0108' => { VR => 'US', Name => 'SmallestPixelValueInSeries' }, |
|
2535
|
|
|
|
|
|
|
'0028,0109' => { VR => 'US', Name => 'LargestPixelValueInSeries' }, |
|
2536
|
|
|
|
|
|
|
'0028,0110' => { VR => 'US', Name => 'SmallestImagePixelValueInPlane' }, |
|
2537
|
|
|
|
|
|
|
'0028,0111' => { VR => 'US', Name => 'LargestImagePixelValueInPlane' }, |
|
2538
|
|
|
|
|
|
|
'0028,0120' => { VR => 'US', Name => 'PixelPaddingValue' }, |
|
2539
|
|
|
|
|
|
|
'0028,0121' => { VR => 'US', Name => 'PixelPaddingRangeLimit' }, |
|
2540
|
|
|
|
|
|
|
'0028,0122' => { VR => 'FL', Name => 'FloatPixelPaddingValue' }, |
|
2541
|
|
|
|
|
|
|
'0028,0123' => { VR => 'FD', Name => 'DoubleFloatPixelPaddingValue' }, |
|
2542
|
|
|
|
|
|
|
'0028,0124' => { VR => 'FL', Name => 'FloatPixelPaddingRangeLimit' }, |
|
2543
|
|
|
|
|
|
|
'0028,0125' => { VR => 'FD', Name => 'DoubleFloatPixelPaddingRangeLimit' }, |
|
2544
|
|
|
|
|
|
|
'0028,0200' => { VR => 'US', Name => 'ImageLocation' }, |
|
2545
|
|
|
|
|
|
|
'0028,0300' => { VR => 'CS', Name => 'QualityControlImage' }, |
|
2546
|
|
|
|
|
|
|
'0028,0301' => { VR => 'CS', Name => 'BurnedInAnnotation' }, |
|
2547
|
|
|
|
|
|
|
'0028,0302' => { VR => 'CS', Name => 'RecognizableVisualFeatures' }, |
|
2548
|
|
|
|
|
|
|
'0028,0303' => { VR => 'CS', Name => 'LongitudinalTemporalInfoModified' }, |
|
2549
|
|
|
|
|
|
|
'0028,0304' => { VR => 'UI', Name => 'ReferencedColorPaletteInstanceUID' }, |
|
2550
|
|
|
|
|
|
|
'0028,0400' => { VR => 'LO', Name => 'TransformLabel' }, |
|
2551
|
|
|
|
|
|
|
'0028,0401' => { VR => 'LO', Name => 'TransformVersionNumber' }, |
|
2552
|
|
|
|
|
|
|
'0028,0402' => { VR => 'US', Name => 'NumberOfTransformSteps' }, |
|
2553
|
|
|
|
|
|
|
'0028,0403' => { VR => 'LO', Name => 'SequenceOfCompressedData' }, |
|
2554
|
|
|
|
|
|
|
'0028,0404' => { VR => 'AT', Name => 'DetailsOfCoefficients' }, |
|
2555
|
|
|
|
|
|
|
'0028,04x0' => { VR => 'US', Name => 'RowsForNthOrderCoefficients' }, |
|
2556
|
|
|
|
|
|
|
'0028,04x1' => { VR => 'US', Name => 'ColumnsForNthOrderCoefficients' }, |
|
2557
|
|
|
|
|
|
|
'0028,04x2' => { VR => 'LO', Name => 'CoefficientCoding' }, |
|
2558
|
|
|
|
|
|
|
'0028,04x3' => { VR => 'AT', Name => 'CoefficientCodingPointers' }, |
|
2559
|
|
|
|
|
|
|
'0028,0700' => { VR => 'LO', Name => 'DCTLabel' }, |
|
2560
|
|
|
|
|
|
|
'0028,0701' => { VR => 'CS', Name => 'DataBlockDescription' }, |
|
2561
|
|
|
|
|
|
|
'0028,0702' => { VR => 'AT', Name => 'DataBlock' }, |
|
2562
|
|
|
|
|
|
|
'0028,0710' => { VR => 'US', Name => 'NormalizationFactorFormat' }, |
|
2563
|
|
|
|
|
|
|
'0028,0720' => { VR => 'US', Name => 'ZonalMapNumberFormat' }, |
|
2564
|
|
|
|
|
|
|
'0028,0721' => { VR => 'AT', Name => 'ZonalMapLocation' }, |
|
2565
|
|
|
|
|
|
|
'0028,0722' => { VR => 'US', Name => 'ZonalMapFormat' }, |
|
2566
|
|
|
|
|
|
|
'0028,0730' => { VR => 'US', Name => 'AdaptiveMapFormat' }, |
|
2567
|
|
|
|
|
|
|
'0028,0740' => { VR => 'US', Name => 'CodeNumberFormat' }, |
|
2568
|
|
|
|
|
|
|
'0028,08x0' => { VR => 'CS', Name => 'CodeLabel' }, |
|
2569
|
|
|
|
|
|
|
'0028,08x2' => { VR => 'US', Name => 'NumberOfTables' }, |
|
2570
|
|
|
|
|
|
|
'0028,08x3' => { VR => 'AT', Name => 'CodeTableLocation' }, |
|
2571
|
|
|
|
|
|
|
'0028,08x4' => { VR => 'US', Name => 'BitsForCodeWord' }, |
|
2572
|
|
|
|
|
|
|
'0028,08x8' => { VR => 'AT', Name => 'ImageDataLocation' }, |
|
2573
|
|
|
|
|
|
|
'0028,1040' => { VR => 'CS', Name => 'PixelIntensityRelationship' }, |
|
2574
|
|
|
|
|
|
|
'0028,0A02' => { VR => 'CS', Name => 'PixelSpacingCalibrationType' }, |
|
2575
|
|
|
|
|
|
|
'0028,0A04' => { VR => 'LO', Name => 'PixelSpacingCalibrationDescription' }, |
|
2576
|
|
|
|
|
|
|
'0028,1040' => { VR => 'CS', Name => 'PixelIntensityRelationship' }, |
|
2577
|
|
|
|
|
|
|
'0028,1041' => { VR => 'SS', Name => 'PixelIntensityRelationshipSign' }, |
|
2578
|
|
|
|
|
|
|
'0028,1050' => { VR => 'DS', Name => 'WindowCenter' }, |
|
2579
|
|
|
|
|
|
|
'0028,1051' => { VR => 'DS', Name => 'WindowWidth' }, |
|
2580
|
|
|
|
|
|
|
'0028,1052' => { VR => 'DS', Name => 'RescaleIntercept' }, |
|
2581
|
|
|
|
|
|
|
'0028,1053' => { VR => 'DS', Name => 'RescaleSlope' }, |
|
2582
|
|
|
|
|
|
|
'0028,1054' => { VR => 'LO', Name => 'RescaleType' }, |
|
2583
|
|
|
|
|
|
|
'0028,1055' => { VR => 'LO', Name => 'WindowCenterAndWidthExplanation' }, |
|
2584
|
|
|
|
|
|
|
'0028,1056' => { VR => 'CS', Name => 'VOI_LUTFunction' }, |
|
2585
|
|
|
|
|
|
|
'0028,1080' => { VR => 'CS', Name => 'GrayScale' }, |
|
2586
|
|
|
|
|
|
|
'0028,1090' => { VR => 'CS', Name => 'RecommendedViewingMode' }, |
|
2587
|
|
|
|
|
|
|
'0028,1100' => { VR => 'SS', Name => 'GrayLookupTableDescriptor' }, |
|
2588
|
|
|
|
|
|
|
'0028,1101' => { VR => 'SS', Name => 'RedPaletteColorTableDescriptor' }, |
|
2589
|
|
|
|
|
|
|
'0028,1102' => { VR => 'SS', Name => 'GreenPaletteColorTableDescriptor' }, |
|
2590
|
|
|
|
|
|
|
'0028,1103' => { VR => 'SS', Name => 'BluePaletteColorTableDescriptor' }, |
|
2591
|
|
|
|
|
|
|
'0028,1104' => { VR => 'US', Name => 'AlphaPaletteColorLookupTableDescr' }, |
|
2592
|
|
|
|
|
|
|
'0028,1111' => { VR => 'SS', Name => 'LargeRedPaletteColorTableDescr' }, |
|
2593
|
|
|
|
|
|
|
'0028,1112' => { VR => 'SS', Name => 'LargeGreenPaletteColorTableDescr' }, |
|
2594
|
|
|
|
|
|
|
'0028,1113' => { VR => 'SS', Name => 'LargeBluePaletteColorTableDescr' }, |
|
2595
|
|
|
|
|
|
|
'0028,1199' => { VR => 'UI', Name => 'PaletteColorTableUID' }, |
|
2596
|
|
|
|
|
|
|
'0028,1200' => { VR => 'US', Name => 'GrayLookupTableData' }, |
|
2597
|
|
|
|
|
|
|
'0028,1201' => { VR => 'OW', Name => 'RedPaletteColorTableData' }, |
|
2598
|
|
|
|
|
|
|
'0028,1202' => { VR => 'OW', Name => 'GreenPaletteColorTableData' }, |
|
2599
|
|
|
|
|
|
|
'0028,1203' => { VR => 'OW', Name => 'BluePaletteColorTableData' }, |
|
2600
|
|
|
|
|
|
|
'0028,1204' => { VR => 'OW', Name => 'AlphaPaletteColorLookupTableData' }, |
|
2601
|
|
|
|
|
|
|
'0028,1211' => { VR => 'OW', Name => 'LargeRedPaletteColorTableData', Binary => 1 }, |
|
2602
|
|
|
|
|
|
|
'0028,1212' => { VR => 'OW', Name => 'LargeGreenPaletteColorTableData', Binary => 1 }, |
|
2603
|
|
|
|
|
|
|
'0028,1213' => { VR => 'OW', Name => 'LargeBluePaletteColorTableData', Binary => 1 }, |
|
2604
|
|
|
|
|
|
|
'0028,1214' => { VR => 'UI', Name => 'LargePaletteColorLookupTableUID' }, |
|
2605
|
|
|
|
|
|
|
'0028,1221' => { VR => 'OW', Name => 'SegmentedRedColorTableData' }, |
|
2606
|
|
|
|
|
|
|
'0028,1222' => { VR => 'OW', Name => 'SegmentedGreenColorTableData' }, |
|
2607
|
|
|
|
|
|
|
'0028,1223' => { VR => 'OW', Name => 'SegmentedBlueColorTableData' }, |
|
2608
|
|
|
|
|
|
|
'0028,1224' => { VR => 'OW', Name => 'SegmentedAlphaPaletteColLkupTable' }, |
|
2609
|
|
|
|
|
|
|
'0028,1230' => { VR => 'SQ', Name => 'StoredValueColorRangeSequence' }, |
|
2610
|
|
|
|
|
|
|
'0028,1231' => { VR => 'FD', Name => 'MinimumStoredValueMapped' }, |
|
2611
|
|
|
|
|
|
|
'0028,1232' => { VR => 'FD', Name => 'MaximumStoredValueMapped' }, |
|
2612
|
|
|
|
|
|
|
'0028,1300' => { VR => 'CS', Name => 'BreastImplantPresent' }, |
|
2613
|
|
|
|
|
|
|
'0028,1350' => { VR => 'CS', Name => 'PartialView' }, |
|
2614
|
|
|
|
|
|
|
'0028,1351' => { VR => 'ST', Name => 'PartialViewDescription' }, |
|
2615
|
|
|
|
|
|
|
'0028,1352' => { VR => 'SQ', Name => 'PartialViewCodeSequence' }, |
|
2616
|
|
|
|
|
|
|
'0028,135A' => { VR => 'CS', Name => 'SpatialLocationsPreserved' }, |
|
2617
|
|
|
|
|
|
|
'0028,1401' => { VR => 'SQ', Name => 'DataFrameAssignmentSequence' }, |
|
2618
|
|
|
|
|
|
|
'0028,1402' => { VR => 'CS', Name => 'DataPathAssignment' }, |
|
2619
|
|
|
|
|
|
|
'0028,1403' => { VR => 'US', Name => 'BitsMappedToColorLookupTable' }, |
|
2620
|
|
|
|
|
|
|
'0028,1404' => { VR => 'SQ', Name => 'BlendingLUT1Sequence' }, |
|
2621
|
|
|
|
|
|
|
'0028,1405' => { VR => 'CS', Name => 'BlendingLUT1TransferFunction' }, |
|
2622
|
|
|
|
|
|
|
'0028,1406' => { VR => 'FD', Name => 'BlendingWeightConstant' }, |
|
2623
|
|
|
|
|
|
|
'0028,1407' => { VR => 'US', Name => 'BlendingLookupTableDescriptor' }, |
|
2624
|
|
|
|
|
|
|
'0028,1408' => { VR => 'OW', Name => 'BlendingLookupTableData' }, |
|
2625
|
|
|
|
|
|
|
'0028,140B' => { VR => 'SQ', Name => 'EnhancedPaletteColorLookupTableSeq' }, |
|
2626
|
|
|
|
|
|
|
'0028,140C' => { VR => 'SQ', Name => 'BlendingLUT2Sequence' }, |
|
2627
|
|
|
|
|
|
|
'0028,140D' => { VR => 'CS', Name => 'BlendingLUT2TransferFunction' }, |
|
2628
|
|
|
|
|
|
|
'0028,140E' => { VR => 'CS', Name => 'DataPathID' }, |
|
2629
|
|
|
|
|
|
|
'0028,140F' => { VR => 'CS', Name => 'RGBLUTTransferFunction' }, |
|
2630
|
|
|
|
|
|
|
'0028,1410' => { VR => 'CS', Name => 'AlphaLUTTransferFunction' }, |
|
2631
|
|
|
|
|
|
|
'0028,2000' => { VR => 'OB', Name => 'ICCProfile' }, |
|
2632
|
|
|
|
|
|
|
'0028,2002' => { VR => 'CS', Name => 'ColorSpace' }, |
|
2633
|
|
|
|
|
|
|
'0028,2110' => { VR => 'CS', Name => 'LossyImageCompression' }, |
|
2634
|
|
|
|
|
|
|
'0028,2112' => { VR => 'DS', Name => 'LossyImageCompressionRatio' }, |
|
2635
|
|
|
|
|
|
|
'0028,2114' => { VR => 'CS', Name => 'LossyImageCompressionMethod' }, |
|
2636
|
|
|
|
|
|
|
'0028,3000' => { VR => 'SQ', Name => 'ModalityLUTSequence' }, |
|
2637
|
|
|
|
|
|
|
'0028,3001' => { VR => 'SQ', Name => 'VariableModalityLUTSequence' }, |
|
2638
|
|
|
|
|
|
|
'0028,3002' => { VR => 'US', Name => 'LUTDescriptor' }, |
|
2639
|
|
|
|
|
|
|
'0028,3003' => { VR => 'LO', Name => 'LUTExplanation' }, |
|
2640
|
|
|
|
|
|
|
'0028,3004' => { VR => 'LO', Name => 'ModalityLUTType' }, |
|
2641
|
|
|
|
|
|
|
'0028,3006' => { VR => 'SS', Name => 'LUTData' }, |
|
2642
|
|
|
|
|
|
|
'0028,3010' => { VR => 'SQ', Name => 'VOILUTSequence' }, |
|
2643
|
|
|
|
|
|
|
'0028,3110' => { VR => 'SQ', Name => 'SoftcopyVOILUTSequence' }, |
|
2644
|
|
|
|
|
|
|
'0028,4000' => { VR => 'LT', Name => 'ImagePresentationComments' }, |
|
2645
|
|
|
|
|
|
|
'0028,5000' => { VR => 'SQ', Name => 'BiPlaneAcquisitionSequence' }, |
|
2646
|
|
|
|
|
|
|
'0028,6010' => { VR => 'US', Name => 'RepresentativeFrameNumber' }, |
|
2647
|
|
|
|
|
|
|
'0028,6020' => { VR => 'US', Name => 'FrameNumbersOfInterest' }, |
|
2648
|
|
|
|
|
|
|
'0028,6022' => { VR => 'LO', Name => 'FrameOfInterestDescription' }, |
|
2649
|
|
|
|
|
|
|
'0028,6023' => { VR => 'CS', Name => 'FrameOfInterestType' }, |
|
2650
|
|
|
|
|
|
|
'0028,6030' => { VR => 'US', Name => 'MaskPointers' }, |
|
2651
|
|
|
|
|
|
|
'0028,6040' => { VR => 'US', Name => 'RWavePointer' }, |
|
2652
|
|
|
|
|
|
|
'0028,6100' => { VR => 'SQ', Name => 'MaskSubtractionSequence' }, |
|
2653
|
|
|
|
|
|
|
'0028,6101' => { VR => 'CS', Name => 'MaskOperation' }, |
|
2654
|
|
|
|
|
|
|
'0028,6102' => { VR => 'US', Name => 'ApplicableFrameRange' }, |
|
2655
|
|
|
|
|
|
|
'0028,6110' => { VR => 'US', Name => 'MaskFrameNumbers' }, |
|
2656
|
|
|
|
|
|
|
'0028,6112' => { VR => 'US', Name => 'ContrastFrameAveraging' }, |
|
2657
|
|
|
|
|
|
|
'0028,6114' => { VR => 'FL', Name => 'MaskSubPixelShift' }, |
|
2658
|
|
|
|
|
|
|
'0028,6120' => { VR => 'SS', Name => 'TIDOffset' }, |
|
2659
|
|
|
|
|
|
|
'0028,6190' => { VR => 'ST', Name => 'MaskOperationExplanation' }, |
|
2660
|
|
|
|
|
|
|
'0028,7000' => { VR => 'SQ', Name => 'EquipmentAdministratorSequence' }, |
|
2661
|
|
|
|
|
|
|
'0028,7001' => { VR => 'US', Name => 'NumberOfDisplaySubsystems' }, |
|
2662
|
|
|
|
|
|
|
'0028,7002' => { VR => 'US', Name => 'CurrentConfigurationID' }, |
|
2663
|
|
|
|
|
|
|
'0028,7003' => { VR => 'US', Name => 'DisplaySubsystemID' }, |
|
2664
|
|
|
|
|
|
|
'0028,7004' => { VR => 'SH', Name => 'DisplaySubsystemName' }, |
|
2665
|
|
|
|
|
|
|
'0028,7005' => { VR => 'LO', Name => 'DisplaySubsystemDescription' }, |
|
2666
|
|
|
|
|
|
|
'0028,7006' => { VR => 'CS', Name => 'SystemStatus' }, |
|
2667
|
|
|
|
|
|
|
'0028,7007' => { VR => 'LO', Name => 'SystemStatusComment' }, |
|
2668
|
|
|
|
|
|
|
'0028,7008' => { VR => 'SQ', Name => 'TargetLuminanceCharacteristicsSeq' }, |
|
2669
|
|
|
|
|
|
|
'0028,7009' => { VR => 'US', Name => 'LuminanceCharacteristicsID' }, |
|
2670
|
|
|
|
|
|
|
'0028,700A' => { VR => 'SQ', Name => 'DisplaySubsystemConfigurationSeq' }, |
|
2671
|
|
|
|
|
|
|
'0028,700B' => { VR => 'US', Name => 'ConfigurationID' }, |
|
2672
|
|
|
|
|
|
|
'0028,700C' => { VR => 'SH', Name => 'ConfigurationName' }, |
|
2673
|
|
|
|
|
|
|
'0028,700D' => { VR => 'LO', Name => 'ConfigurationDescription' }, |
|
2674
|
|
|
|
|
|
|
'0028,700E' => { VR => 'US', Name => 'ReferencedTargetLuminanceCharID' }, |
|
2675
|
|
|
|
|
|
|
'0028,700F' => { VR => 'SQ', Name => 'QAResultsSequence' }, |
|
2676
|
|
|
|
|
|
|
'0028,7010' => { VR => 'SQ', Name => 'DisplaySubsystemQAResultsSequence' }, |
|
2677
|
|
|
|
|
|
|
'0028,7011' => { VR => 'SQ', Name => 'ConfigurationQAResultsSequence' }, |
|
2678
|
|
|
|
|
|
|
'0028,7012' => { VR => 'SQ', Name => 'MeasurementEquipmentSequence' }, |
|
2679
|
|
|
|
|
|
|
'0028,7013' => { VR => 'CS', Name => 'MeasurementFunctions' }, |
|
2680
|
|
|
|
|
|
|
'0028,7014' => { VR => 'CS', Name => 'MeasurementEquipmentType' }, |
|
2681
|
|
|
|
|
|
|
'0028,7015' => { VR => 'SQ', Name => 'VisualEvaluationResultSequence' }, |
|
2682
|
|
|
|
|
|
|
'0028,7016' => { VR => 'SQ', Name => 'DisplayCalibrationResultSequence' }, |
|
2683
|
|
|
|
|
|
|
'0028,7017' => { VR => 'US', Name => 'DDLValue' }, |
|
2684
|
|
|
|
|
|
|
'0028,7018' => { VR => 'FL', Name => 'CIExyWhitePoint' }, |
|
2685
|
|
|
|
|
|
|
'0028,7019' => { VR => 'CS', Name => 'DisplayFunctionType' }, |
|
2686
|
|
|
|
|
|
|
'0028,701A' => { VR => 'FL', Name => 'GammaValue' }, |
|
2687
|
|
|
|
|
|
|
'0028,701B' => { VR => 'US', Name => 'NumberOfLuminancePoints' }, |
|
2688
|
|
|
|
|
|
|
'0028,701C' => { VR => 'SQ', Name => 'LuminanceResponseSequence' }, |
|
2689
|
|
|
|
|
|
|
'0028,701D' => { VR => 'FL', Name => 'TargetMinimumLuminance' }, |
|
2690
|
|
|
|
|
|
|
'0028,701E' => { VR => 'FL', Name => 'TargetMaximumLuminance' }, |
|
2691
|
|
|
|
|
|
|
'0028,701F' => { VR => 'FL', Name => 'LuminanceValue' }, |
|
2692
|
|
|
|
|
|
|
'0028,7020' => { VR => 'LO', Name => 'LuminanceResponseDescription' }, |
|
2693
|
|
|
|
|
|
|
'0028,7021' => { VR => 'CS', Name => 'WhitePointFlag' }, |
|
2694
|
|
|
|
|
|
|
'0028,7022' => { VR => 'SQ', Name => 'DisplayDeviceTypeCodeSequence' }, |
|
2695
|
|
|
|
|
|
|
'0028,7023' => { VR => 'SQ', Name => 'DisplaySubsystemSequence' }, |
|
2696
|
|
|
|
|
|
|
'0028,7024' => { VR => 'SQ', Name => 'LuminanceResultSequence' }, |
|
2697
|
|
|
|
|
|
|
'0028,7025' => { VR => 'CS', Name => 'AmbientLightValueSource' }, |
|
2698
|
|
|
|
|
|
|
'0028,7026' => { VR => 'CS', Name => 'MeasuredCharacteristics' }, |
|
2699
|
|
|
|
|
|
|
'0028,7027' => { VR => 'SQ', Name => 'LuminanceUniformityResultSequence' }, |
|
2700
|
|
|
|
|
|
|
'0028,7028' => { VR => 'SQ', Name => 'VisualEvaluationTestSequence' }, |
|
2701
|
|
|
|
|
|
|
'0028,7029' => { VR => 'CS', Name => 'TestResult' }, |
|
2702
|
|
|
|
|
|
|
'0028,702A' => { VR => 'LO', Name => 'TestResultComment' }, |
|
2703
|
|
|
|
|
|
|
'0028,702B' => { VR => 'CS', Name => 'TestImageValidation' }, |
|
2704
|
|
|
|
|
|
|
'0028,702C' => { VR => 'SQ', Name => 'TestPatternCodeSequence' }, |
|
2705
|
|
|
|
|
|
|
'0028,702D' => { VR => 'SQ', Name => 'MeasurementPatternCodeSequence' }, |
|
2706
|
|
|
|
|
|
|
'0028,702E' => { VR => 'SQ', Name => 'VisualEvaluationMethodCodeSequence' }, |
|
2707
|
|
|
|
|
|
|
'0028,7FE0' => { VR => 'UT', Name => 'PixelDataProviderURL' }, |
|
2708
|
|
|
|
|
|
|
'0028,9001' => { VR => 'UL', Name => 'DataPointRows' }, |
|
2709
|
|
|
|
|
|
|
'0028,9002' => { VR => 'UL', Name => 'DataPointColumns' }, |
|
2710
|
|
|
|
|
|
|
'0028,9003' => { VR => 'CS', Name => 'SignalDomainColumns' }, |
|
2711
|
|
|
|
|
|
|
'0028,9099' => { VR => 'US', Name => 'LargestMonochromePixelValue' }, |
|
2712
|
|
|
|
|
|
|
'0028,9108' => { VR => 'CS', Name => 'DataRepresentation' }, |
|
2713
|
|
|
|
|
|
|
'0028,9110' => { VR => 'SQ', Name => 'PixelMeasuresSequence' }, |
|
2714
|
|
|
|
|
|
|
'0028,9132' => { VR => 'SQ', Name => 'FrameVOILUTSequence' }, |
|
2715
|
|
|
|
|
|
|
'0028,9145' => { VR => 'SQ', Name => 'PixelValueTransformationSequence' }, |
|
2716
|
|
|
|
|
|
|
'0028,9235' => { VR => 'CS', Name => 'SignalDomainRows' }, |
|
2717
|
|
|
|
|
|
|
'0028,9411' => { VR => 'FL', Name => 'DisplayFilterPercentage' }, |
|
2718
|
|
|
|
|
|
|
'0028,9415' => { VR => 'SQ', Name => 'FramePixelShiftSequence' }, |
|
2719
|
|
|
|
|
|
|
'0028,9416' => { VR => 'US', Name => 'SubtractionItemID' }, |
|
2720
|
|
|
|
|
|
|
'0028,9422' => { VR => 'SQ', Name => 'PixelIntensityRelationshipLUTSeq' }, |
|
2721
|
|
|
|
|
|
|
'0028,9443' => { VR => 'SQ', Name => 'FramePixelDataPropertiesSequence' }, |
|
2722
|
|
|
|
|
|
|
'0028,9444' => { VR => 'CS', Name => 'GeometricalProperties' }, |
|
2723
|
|
|
|
|
|
|
'0028,9445' => { VR => 'FL', Name => 'GeometricMaximumDistortion' }, |
|
2724
|
|
|
|
|
|
|
'0028,9446' => { VR => 'CS', Name => 'ImageProcessingApplied' }, |
|
2725
|
|
|
|
|
|
|
'0028,9454' => { VR => 'CS', Name => 'MaskSelectionMode' }, |
|
2726
|
|
|
|
|
|
|
'0028,9474' => { VR => 'CS', Name => 'LUTFunction' }, |
|
2727
|
|
|
|
|
|
|
'0028,9478' => { VR => 'FL', Name => 'MaskVisibilityPercentage' }, |
|
2728
|
|
|
|
|
|
|
'0028,9501' => { VR => 'SQ', Name => 'PixelShiftSequence' }, |
|
2729
|
|
|
|
|
|
|
'0028,9502' => { VR => 'SQ', Name => 'RegionPixelShiftSequence' }, |
|
2730
|
|
|
|
|
|
|
'0028,9503' => { VR => 'SS', Name => 'VerticesOfTheRegion' }, |
|
2731
|
|
|
|
|
|
|
'0028,9505' => { VR => 'SQ', Name => 'MultiFramePresentationSequence' }, |
|
2732
|
|
|
|
|
|
|
'0028,9506' => { VR => 'US', Name => 'PixelShiftFrameRange' }, |
|
2733
|
|
|
|
|
|
|
'0028,9507' => { VR => 'US', Name => 'LUTFrameRange' }, |
|
2734
|
|
|
|
|
|
|
'0028,9520' => { VR => 'DS', Name => 'ImageToEquipmentMappingMatrix' }, |
|
2735
|
|
|
|
|
|
|
'0028,9537' => { VR => 'CS', Name => 'EquipmentCoordinateSystemID' }, |
|
2736
|
|
|
|
|
|
|
# GEMS_IMPS_01 (ref 4) |
|
2737
|
|
|
|
|
|
|
'0029,1004' => { VR => 'SL', Name => 'LowerRangeOfPixels1a' }, |
|
2738
|
|
|
|
|
|
|
'0029,1005' => { VR => 'DS', Name => 'LowerRangeOfPixels1b' }, |
|
2739
|
|
|
|
|
|
|
'0029,1006' => { VR => 'DS', Name => 'LowerRangeOfPixels1c' }, |
|
2740
|
|
|
|
|
|
|
'0029,1007' => { VR => 'SL', Name => 'LowerRangeOfPixels1d' }, |
|
2741
|
|
|
|
|
|
|
'0029,1008' => { VR => 'SH', Name => 'LowerRangeOfPixels1e' }, |
|
2742
|
|
|
|
|
|
|
'0029,1009' => { VR => 'SH', Name => 'LowerRangeOfPixels1f' }, |
|
2743
|
|
|
|
|
|
|
'0029,100A' => { VR => 'SS', Name => 'LowerRangeOfPixels1g' }, |
|
2744
|
|
|
|
|
|
|
'0029,1015' => { VR => 'SL', Name => 'LowerRangeOfPixels1h' }, |
|
2745
|
|
|
|
|
|
|
'0029,1016' => { VR => 'SL', Name => 'LowerRangeOfPixels1i' }, |
|
2746
|
|
|
|
|
|
|
'0029,1017' => { VR => 'SL', Name => 'LowerRangeOfPixels2' }, |
|
2747
|
|
|
|
|
|
|
'0029,1018' => { VR => 'SL', Name => 'UpperRangeOfPixels2' }, |
|
2748
|
|
|
|
|
|
|
'0029,101A' => { VR => 'SL', Name => 'LenOfTotHdrInBytes' }, |
|
2749
|
|
|
|
|
|
|
'0029,1026' => { VR => 'SS', Name => 'VersionOfTheHdrStruct' }, |
|
2750
|
|
|
|
|
|
|
'0029,1034' => { VR => 'SL', Name => 'AdvantageCompOverflow' }, |
|
2751
|
|
|
|
|
|
|
'0029,1035' => { VR => 'SL', Name => 'AdvantageCompUnderflow' }, |
|
2752
|
|
|
|
|
|
|
# study group |
|
2753
|
|
|
|
|
|
|
'0032,0000' => { VR => 'UL', Name => 'StudyGroupLength' }, |
|
2754
|
|
|
|
|
|
|
'0032,000A' => { VR => 'CS', Name => 'StudyStatusID' }, |
|
2755
|
|
|
|
|
|
|
'0032,000C' => { VR => 'CS', Name => 'StudyPriorityID' }, |
|
2756
|
|
|
|
|
|
|
'0032,0012' => { VR => 'LO', Name => 'StudyIDIssuer' }, |
|
2757
|
|
|
|
|
|
|
'0032,0032' => { VR => 'DA', Name => 'StudyVerifiedDate' }, |
|
2758
|
|
|
|
|
|
|
'0032,0033' => { VR => 'TM', Name => 'StudyVerifiedTime' }, |
|
2759
|
|
|
|
|
|
|
'0032,0034' => { VR => 'DA', Name => 'StudyReadDate' }, |
|
2760
|
|
|
|
|
|
|
'0032,0035' => { VR => 'TM', Name => 'StudyReadTime' }, |
|
2761
|
|
|
|
|
|
|
'0032,1000' => { VR => 'DA', Name => 'ScheduledStudyStartDate' }, |
|
2762
|
|
|
|
|
|
|
'0032,1001' => { VR => 'TM', Name => 'ScheduledStudyStartTime' }, |
|
2763
|
|
|
|
|
|
|
'0032,1010' => { VR => 'DA', Name => 'ScheduledStudyStopDate' }, |
|
2764
|
|
|
|
|
|
|
'0032,1011' => { VR => 'TM', Name => 'ScheduledStudyStopTime' }, |
|
2765
|
|
|
|
|
|
|
'0032,1020' => { VR => 'LO', Name => 'ScheduledStudyLocation' }, |
|
2766
|
|
|
|
|
|
|
'0032,1021' => { VR => 'AE', Name => 'ScheduledStudyLocationAETitle' }, |
|
2767
|
|
|
|
|
|
|
'0032,1030' => { VR => 'LO', Name => 'ReasonForStudy' }, |
|
2768
|
|
|
|
|
|
|
'0032,1031' => { VR => 'SQ', Name => 'RequestingPhysicianIDSequence' }, |
|
2769
|
|
|
|
|
|
|
'0032,1032' => { VR => 'PN', Name => 'RequestingPhysician' }, |
|
2770
|
|
|
|
|
|
|
'0032,1033' => { VR => 'LO', Name => 'RequestingService' }, |
|
2771
|
|
|
|
|
|
|
'0032,1034' => { VR => 'SQ', Name => 'RequestingServiceCodeSequence' }, |
|
2772
|
|
|
|
|
|
|
'0032,1040' => { VR => 'DA', Name => 'StudyArrivalDate' }, |
|
2773
|
|
|
|
|
|
|
'0032,1041' => { VR => 'TM', Name => 'StudyArrivalTime' }, |
|
2774
|
|
|
|
|
|
|
'0032,1050' => { VR => 'DA', Name => 'StudyCompletionDate' }, |
|
2775
|
|
|
|
|
|
|
'0032,1051' => { VR => 'TM', Name => 'StudyCompletionTime' }, |
|
2776
|
|
|
|
|
|
|
'0032,1055' => { VR => 'CS', Name => 'StudyComponentStatusID' }, |
|
2777
|
|
|
|
|
|
|
'0032,1060' => { VR => 'LO', Name => 'RequestedProcedureDescription' }, |
|
2778
|
|
|
|
|
|
|
'0032,1064' => { VR => 'SQ', Name => 'RequestedProcedureCodeSequence' }, |
|
2779
|
|
|
|
|
|
|
'0032,1065' => { VR => 'SQ', Name => 'RequestedLateralityCodeSequence' }, |
|
2780
|
|
|
|
|
|
|
'0032,1066' => { VR => 'UT', Name => 'ReasonForVisit' }, |
|
2781
|
|
|
|
|
|
|
'0032,1067' => { VR => 'SQ', Name => 'ReasonForVisitCodeSequence' }, |
|
2782
|
|
|
|
|
|
|
'0032,1070' => { VR => 'LO', Name => 'RequestedContrastAgent' }, |
|
2783
|
|
|
|
|
|
|
'0032,4000' => { VR => 'LT', Name => 'StudyComments' }, |
|
2784
|
|
|
|
|
|
|
'0034,0001' => { VR => 'SQ', Name => 'FlowIdentifierSequence' }, |
|
2785
|
|
|
|
|
|
|
'0034,0002' => { VR => 'OB', Name => 'FlowIdentifier' }, |
|
2786
|
|
|
|
|
|
|
'0034,0003' => { VR => 'UI', Name => 'FlowTransferSyntaxUID' }, |
|
2787
|
|
|
|
|
|
|
'0034,0004' => { VR => 'UL', Name => 'FlowRTPSamplingRate' }, |
|
2788
|
|
|
|
|
|
|
'0034,0005' => { VR => 'OB', Name => 'SourceIdentifier' }, |
|
2789
|
|
|
|
|
|
|
'0034,0007' => { VR => 'OB', Name => 'FrameOriginTimestamp' }, |
|
2790
|
|
|
|
|
|
|
'0034,0008' => { VR => 'CS', Name => 'IncludesImagingSubject' }, |
|
2791
|
|
|
|
|
|
|
'0034,0009' => { VR => 'SQ', Name => 'FrameUsefulnessGroupSequence' }, |
|
2792
|
|
|
|
|
|
|
'0034,000A' => { VR => 'SQ', Name => 'RealTimeBulkDataFlowSequence' }, |
|
2793
|
|
|
|
|
|
|
'0034,000B' => { VR => 'SQ', Name => 'CameraPositionGroupSequence' }, |
|
2794
|
|
|
|
|
|
|
'0034,000C' => { VR => 'CS', Name => 'IncludesInformation' }, |
|
2795
|
|
|
|
|
|
|
'0034,000D' => { VR => 'SQ', Name => 'TimeOfFrameGroupSequence' }, |
|
2796
|
|
|
|
|
|
|
# visit group |
|
2797
|
|
|
|
|
|
|
'0038,0004' => { VR => 'SQ', Name => 'ReferencedPatientAliasSequence' }, |
|
2798
|
|
|
|
|
|
|
'0038,0008' => { VR => 'CS', Name => 'VisitStatusID' }, |
|
2799
|
|
|
|
|
|
|
'0038,0010' => { VR => 'LO', Name => 'AdmissionID' }, |
|
2800
|
|
|
|
|
|
|
'0038,0011' => { VR => 'LO', Name => 'IssuerOfAdmissionID' }, |
|
2801
|
|
|
|
|
|
|
'0038,0014' => { VR => 'SQ', Name => 'IssuerOfAdmissionIDSequence' }, |
|
2802
|
|
|
|
|
|
|
'0038,0016' => { VR => 'LO', Name => 'RouteOfAdmissions' }, |
|
2803
|
|
|
|
|
|
|
'0038,001A' => { VR => 'DA', Name => 'ScheduledAdmissionDate' }, |
|
2804
|
|
|
|
|
|
|
'0038,001B' => { VR => 'TM', Name => 'ScheduledAdmissionTime' }, |
|
2805
|
|
|
|
|
|
|
'0038,001C' => { VR => 'DA', Name => 'ScheduledDischargeDate' }, |
|
2806
|
|
|
|
|
|
|
'0038,001D' => { VR => 'TM', Name => 'ScheduledDischargeTime' }, |
|
2807
|
|
|
|
|
|
|
'0038,001E' => { VR => 'LO', Name => 'ScheduledPatientInstitResidence' }, |
|
2808
|
|
|
|
|
|
|
'0038,0020' => { VR => 'DA', Name => 'AdmittingDate' }, |
|
2809
|
|
|
|
|
|
|
'0038,0021' => { VR => 'TM', Name => 'AdmittingTime' }, |
|
2810
|
|
|
|
|
|
|
'0038,0030' => { VR => 'DA', Name => 'DischargeDate' }, |
|
2811
|
|
|
|
|
|
|
'0038,0032' => { VR => 'TM', Name => 'DischargeTime' }, |
|
2812
|
|
|
|
|
|
|
'0038,0040' => { VR => 'LO', Name => 'DischargeDiagnosisDescription' }, |
|
2813
|
|
|
|
|
|
|
'0038,0044' => { VR => 'SQ', Name => 'DischargeDiagnosisCodeSequence' }, |
|
2814
|
|
|
|
|
|
|
'0038,0050' => { VR => 'LO', Name => 'SpecialNeeds' }, |
|
2815
|
|
|
|
|
|
|
'0038,0060' => { VR => 'LO', Name => 'ServiceEpisodeID' }, |
|
2816
|
|
|
|
|
|
|
'0038,0061' => { VR => 'LO', Name => 'IssuerOfServiceEpisodeID' }, |
|
2817
|
|
|
|
|
|
|
'0038,0062' => { VR => 'LO', Name => 'ServiceEpisodeDescription' }, |
|
2818
|
|
|
|
|
|
|
'0038,0064' => { VR => 'SQ', Name => 'IssuerOfServiceEpisodeIDSequence' }, |
|
2819
|
|
|
|
|
|
|
'0038,0100' => { VR => 'SQ', Name => 'PertinentDocumentsSequence' }, |
|
2820
|
|
|
|
|
|
|
'0038,0101' => { VR => 'SQ', Name => 'PertinentResourcesSequence' }, |
|
2821
|
|
|
|
|
|
|
'0038,0102' => { VR => 'LO', Name => 'ResourceDescription' }, |
|
2822
|
|
|
|
|
|
|
'0038,0300' => { VR => 'LO', Name => 'CurrentPatientLocation' }, |
|
2823
|
|
|
|
|
|
|
'0038,0400' => { VR => 'LO', Name => 'PatientInstitutionResidence' }, |
|
2824
|
|
|
|
|
|
|
'0038,0500' => { VR => 'LO', Name => 'PatientState' }, |
|
2825
|
|
|
|
|
|
|
'0038,0502' => { VR => 'SQ', Name => 'PatientClinicalTrialParticipSeq' }, |
|
2826
|
|
|
|
|
|
|
'0038,4000' => { VR => 'LT', Name => 'VisitComments' }, |
|
2827
|
|
|
|
|
|
|
'003A,0004' => { VR => 'CS', Name => 'WaveformOriginality' }, |
|
2828
|
|
|
|
|
|
|
'003A,0005' => { VR => 'US', Name => 'NumberOfWaveformChannels' }, |
|
2829
|
|
|
|
|
|
|
'003A,0010' => { VR => 'UL', Name => 'NumberOfWaveformSamples' }, |
|
2830
|
|
|
|
|
|
|
'003A,001A' => { VR => 'DS', Name => 'SamplingFrequency' }, |
|
2831
|
|
|
|
|
|
|
'003A,0020' => { VR => 'SH', Name => 'MultiplexGroupLabel' }, |
|
2832
|
|
|
|
|
|
|
'003A,0200' => { VR => 'SQ', Name => 'ChannelDefinitionSequence' }, |
|
2833
|
|
|
|
|
|
|
'003A,0202' => { VR => 'IS', Name => 'WaveformChannelNumber' }, |
|
2834
|
|
|
|
|
|
|
'003A,0203' => { VR => 'SH', Name => 'ChannelLabel' }, |
|
2835
|
|
|
|
|
|
|
'003A,0205' => { VR => 'CS', Name => 'ChannelStatus' }, |
|
2836
|
|
|
|
|
|
|
'003A,0208' => { VR => 'SQ', Name => 'ChannelSourceSequence' }, |
|
2837
|
|
|
|
|
|
|
'003A,0209' => { VR => 'SQ', Name => 'ChannelSourceModifiersSequence' }, |
|
2838
|
|
|
|
|
|
|
'003A,020A' => { VR => 'SQ', Name => 'SourceWaveformSequence' }, |
|
2839
|
|
|
|
|
|
|
'003A,020C' => { VR => 'LO', Name => 'ChannelDerivationDescription' }, |
|
2840
|
|
|
|
|
|
|
'003A,0210' => { VR => 'DS', Name => 'ChannelSensitivity' }, |
|
2841
|
|
|
|
|
|
|
'003A,0211' => { VR => 'SQ', Name => 'ChannelSensitivityUnitsSequence' }, |
|
2842
|
|
|
|
|
|
|
'003A,0212' => { VR => 'DS', Name => 'ChannelSensitivityCorrectionFactor' }, |
|
2843
|
|
|
|
|
|
|
'003A,0213' => { VR => 'DS', Name => 'ChannelBaseline' }, |
|
2844
|
|
|
|
|
|
|
'003A,0214' => { VR => 'DS', Name => 'ChannelTimeSkew' }, |
|
2845
|
|
|
|
|
|
|
'003A,0215' => { VR => 'DS', Name => 'ChannelSampleSkew' }, |
|
2846
|
|
|
|
|
|
|
'003A,0218' => { VR => 'DS', Name => 'ChannelOffset' }, |
|
2847
|
|
|
|
|
|
|
'003A,021A' => { VR => 'US', Name => 'WaveformBitsStored' }, |
|
2848
|
|
|
|
|
|
|
'003A,0220' => { VR => 'DS', Name => 'FilterLowFrequency' }, |
|
2849
|
|
|
|
|
|
|
'003A,0221' => { VR => 'DS', Name => 'FilterHighFrequency' }, |
|
2850
|
|
|
|
|
|
|
'003A,0222' => { VR => 'DS', Name => 'NotchFilterFrequency' }, |
|
2851
|
|
|
|
|
|
|
'003A,0223' => { VR => 'DS', Name => 'NotchFilterBandwidth' }, |
|
2852
|
|
|
|
|
|
|
'003A,0230' => { VR => 'FL', Name => 'WaveformDataDisplayScale' }, |
|
2853
|
|
|
|
|
|
|
'003A,0231' => { VR => 'US', Name => 'WaveformDisplayBkgCIELabValue' }, |
|
2854
|
|
|
|
|
|
|
'003A,0240' => { VR => 'SQ', Name => 'WaveformPresentationGroupSequence' }, |
|
2855
|
|
|
|
|
|
|
'003A,0241' => { VR => 'US', Name => 'PresentationGroupNumber' }, |
|
2856
|
|
|
|
|
|
|
'003A,0242' => { VR => 'SQ', Name => 'ChannelDisplaySequence' }, |
|
2857
|
|
|
|
|
|
|
'003A,0244' => { VR => 'US', Name => 'ChannelRecommendDisplayCIELabValue' }, |
|
2858
|
|
|
|
|
|
|
'003A,0245' => { VR => 'FL', Name => 'ChannelPosition' }, |
|
2859
|
|
|
|
|
|
|
'003A,0246' => { VR => 'CS', Name => 'DisplayShadingFlag' }, |
|
2860
|
|
|
|
|
|
|
'003A,0247' => { VR => 'FL', Name => 'FractionalChannelDisplayScale' }, |
|
2861
|
|
|
|
|
|
|
'003A,0248' => { VR => 'FL', Name => 'AbsoluteChannelDisplayScale' }, |
|
2862
|
|
|
|
|
|
|
'003A,0300' => { VR => 'SQ', Name => 'MultiplexAudioChannelsDescrCodeSeq' }, |
|
2863
|
|
|
|
|
|
|
'003A,0301' => { VR => 'IS', Name => 'ChannelIdentificationCode' }, |
|
2864
|
|
|
|
|
|
|
'003A,0302' => { VR => 'CS', Name => 'ChannelMode' }, |
|
2865
|
|
|
|
|
|
|
'003A,0310' => { VR => 'UI', Name => 'MultiplexGroupUID' }, |
|
2866
|
|
|
|
|
|
|
'003A,0311' => { VR => 'DS', Name => 'PowerlineFrequency' }, |
|
2867
|
|
|
|
|
|
|
'003A,0312' => { VR => 'SQ', Name => 'ChannelImpedanceSequence' }, |
|
2868
|
|
|
|
|
|
|
'003A,0313' => { VR => 'DS', Name => 'ImpedanceValue' }, |
|
2869
|
|
|
|
|
|
|
'003A,0314' => { VR => 'DT', Name => 'ImpedanceMeasurementDateTime' }, |
|
2870
|
|
|
|
|
|
|
'003A,0315' => { VR => 'DS', Name => 'ImpedanceMeasurementFrequency' }, |
|
2871
|
|
|
|
|
|
|
'003A,0316' => { VR => 'CS', Name => 'ImpedanceMeasurementCurrentType' }, |
|
2872
|
|
|
|
|
|
|
'003A,0317' => { VR => 'CS', Name => 'WaveformAmplifierType' }, |
|
2873
|
|
|
|
|
|
|
'003A,0318' => { VR => 'SQ', Name => 'FilterLowFrequencyCharSeq' }, |
|
2874
|
|
|
|
|
|
|
'003A,0319' => { VR => 'SQ', Name => 'FilterHighFrequencyCharSeq' }, |
|
2875
|
|
|
|
|
|
|
'003A,0320' => { VR => 'SQ', Name => 'SummarizedFilterLookupTableSeq' }, |
|
2876
|
|
|
|
|
|
|
'003A,0321' => { VR => 'SQ', Name => 'NotchFilterCharacteristicsSequence' }, |
|
2877
|
|
|
|
|
|
|
'003A,0322' => { VR => 'CS', Name => 'WaveformFilterType' }, |
|
2878
|
|
|
|
|
|
|
'003A,0323' => { VR => 'SQ', Name => 'AnalogFilterCharacteristicsSeq' }, |
|
2879
|
|
|
|
|
|
|
'003A,0324' => { VR => 'DS', Name => 'AnalogFilterRollOff' }, |
|
2880
|
|
|
|
|
|
|
'003A,0325' => { VR => 'SQ', Name => 'AnalogFilterTypeCodeSequence' }, |
|
2881
|
|
|
|
|
|
|
'003A,0326' => { VR => 'SQ', Name => 'DigitalFilterCharacteristicsSeq' }, |
|
2882
|
|
|
|
|
|
|
'003A,0327' => { VR => 'IS', Name => 'DigitalFilterOrder' }, |
|
2883
|
|
|
|
|
|
|
'003A,0328' => { VR => 'SQ', Name => 'DigitalFilterTypeCodeSequence' }, |
|
2884
|
|
|
|
|
|
|
'003A,0329' => { VR => 'ST', Name => 'WaveformFilterDescription' }, |
|
2885
|
|
|
|
|
|
|
'003A,032A' => { VR => 'SQ', Name => 'FilterLookupTableSequence' }, |
|
2886
|
|
|
|
|
|
|
'003A,032B' => { VR => 'ST', Name => 'FilterLookupTableDescription' }, |
|
2887
|
|
|
|
|
|
|
'003A,032C' => { VR => 'SQ', Name => 'FrequencyEncodingCodeSequence' }, |
|
2888
|
|
|
|
|
|
|
'003A,032D' => { VR => 'SQ', Name => 'MagnitudeEncodingCodeSequence' }, |
|
2889
|
|
|
|
|
|
|
'003A,032E' => { VR => 'OD', Name => 'FilterLookupTableData' }, |
|
2890
|
|
|
|
|
|
|
'0040,0001' => { VR => 'AE', Name => 'ScheduledStationAETitle' }, |
|
2891
|
|
|
|
|
|
|
'0040,0002' => { VR => 'DA', Name => 'ScheduledProcedureStepStartDate' }, |
|
2892
|
|
|
|
|
|
|
'0040,0003' => { VR => 'TM', Name => 'ScheduledProcedureStepStartTime' }, |
|
2893
|
|
|
|
|
|
|
'0040,0004' => { VR => 'DA', Name => 'ScheduledProcedureStepEndDate' }, |
|
2894
|
|
|
|
|
|
|
'0040,0005' => { VR => 'TM', Name => 'ScheduledProcedureStepEndTime' }, |
|
2895
|
|
|
|
|
|
|
'0040,0006' => { VR => 'PN', Name => 'ScheduledPerformingPhysiciansName' }, |
|
2896
|
|
|
|
|
|
|
'0040,0007' => { VR => 'LO', Name => 'ScheduledProcedureStepDescription' }, |
|
2897
|
|
|
|
|
|
|
'0040,0008' => { VR => 'SQ', Name => 'ScheduledProtocolCodeSequence' }, |
|
2898
|
|
|
|
|
|
|
'0040,0009' => { VR => 'SH', Name => 'ScheduledProcedureStepID' }, |
|
2899
|
|
|
|
|
|
|
'0040,000A' => { VR => 'SQ', Name => 'StageCodeSequence' }, |
|
2900
|
|
|
|
|
|
|
'0040,000B' => { VR => 'SQ', Name => 'ScheduledPerformingPhysicianIDSeq' }, |
|
2901
|
|
|
|
|
|
|
'0040,0010' => { VR => 'SH', Name => 'ScheduledStationName' }, |
|
2902
|
|
|
|
|
|
|
'0040,0011' => { VR => 'SH', Name => 'ScheduledProcedureStepLocation' }, |
|
2903
|
|
|
|
|
|
|
'0040,0012' => { VR => 'LO', Name => 'PreMedication' }, |
|
2904
|
|
|
|
|
|
|
'0040,0020' => { VR => 'CS', Name => 'ScheduledProcedureStepStatus' }, |
|
2905
|
|
|
|
|
|
|
'0040,0026' => { VR => 'SQ', Name => 'OrderPlacerIdentifierSequence' }, |
|
2906
|
|
|
|
|
|
|
'0040,0027' => { VR => 'SQ', Name => 'OrderFillerIdentifierSequence' }, |
|
2907
|
|
|
|
|
|
|
'0040,0031' => { VR => 'UT', Name => 'LocalNamespaceEntityID' }, |
|
2908
|
|
|
|
|
|
|
'0040,0032' => { VR => 'UT', Name => 'UniversalEntityID' }, |
|
2909
|
|
|
|
|
|
|
'0040,0033' => { VR => 'CS', Name => 'UniversalEntityIDType' }, |
|
2910
|
|
|
|
|
|
|
'0040,0035' => { VR => 'CS', Name => 'IdentifierTypeCode' }, |
|
2911
|
|
|
|
|
|
|
'0040,0036' => { VR => 'SQ', Name => 'AssigningFacilitySequence' }, |
|
2912
|
|
|
|
|
|
|
'0040,0039' => { VR => 'SQ', Name => 'AssigningJurisdictionCodeSequence' }, |
|
2913
|
|
|
|
|
|
|
'0040,003A' => { VR => 'SQ', Name => 'AssigningAgencyOrDepartmentCodeSeq' }, |
|
2914
|
|
|
|
|
|
|
'0040,0100' => { VR => 'SQ', Name => 'ScheduledProcedureStepSequence' }, |
|
2915
|
|
|
|
|
|
|
'0040,0220' => { VR => 'SQ', Name => 'ReferencedNonImageCompositeSOPSeq' }, |
|
2916
|
|
|
|
|
|
|
'0040,0241' => { VR => 'AE', Name => 'PerformedStationAETitle' }, |
|
2917
|
|
|
|
|
|
|
'0040,0242' => { VR => 'SH', Name => 'PerformedStationName' }, |
|
2918
|
|
|
|
|
|
|
'0040,0243' => { VR => 'SH', Name => 'PerformedLocation' }, |
|
2919
|
|
|
|
|
|
|
'0040,0244' => { VR => 'DA', Name => 'PerformedProcedureStepStartDate' }, |
|
2920
|
|
|
|
|
|
|
'0040,0245' => { VR => 'TM', Name => 'PerformedProcedureStepStartTime' }, |
|
2921
|
|
|
|
|
|
|
'0040,0250' => { VR => 'DA', Name => 'PerformedProcedureStepEndDate' }, |
|
2922
|
|
|
|
|
|
|
'0040,0251' => { VR => 'TM', Name => 'PerformedProcedureStepEndTime' }, |
|
2923
|
|
|
|
|
|
|
'0040,0252' => { VR => 'CS', Name => 'PerformedProcedureStepStatus' }, |
|
2924
|
|
|
|
|
|
|
'0040,0253' => { VR => 'SH', Name => 'PerformedProcedureStepID' }, |
|
2925
|
|
|
|
|
|
|
'0040,0254' => { VR => 'LO', Name => 'PerformedProcedureStepDescription' }, |
|
2926
|
|
|
|
|
|
|
'0040,0255' => { VR => 'LO', Name => 'PerformedProcedureTypeDescription' }, |
|
2927
|
|
|
|
|
|
|
'0040,0260' => { VR => 'SQ', Name => 'PerformedProtocolCodeSequence' }, |
|
2928
|
|
|
|
|
|
|
'0040,0261' => { VR => 'CS', Name => 'PerformedProtocolType' }, |
|
2929
|
|
|
|
|
|
|
'0040,0270' => { VR => 'SQ', Name => 'ScheduledStepAttributesSequence' }, |
|
2930
|
|
|
|
|
|
|
'0040,0275' => { VR => 'SQ', Name => 'RequestAttributesSequence' }, |
|
2931
|
|
|
|
|
|
|
'0040,0280' => { VR => 'ST', Name => 'CommentsOnPerformedProcedureStep' }, |
|
2932
|
|
|
|
|
|
|
'0040,0281' => { VR => 'SQ', Name => 'ProcStepDiscontinueReasonCodeSeq' }, |
|
2933
|
|
|
|
|
|
|
'0040,0293' => { VR => 'SQ', Name => 'QuantitySequence' }, |
|
2934
|
|
|
|
|
|
|
'0040,0294' => { VR => 'DS', Name => 'Quantity' }, |
|
2935
|
|
|
|
|
|
|
'0040,0295' => { VR => 'SQ', Name => 'MeasuringUnitsSequence' }, |
|
2936
|
|
|
|
|
|
|
'0040,0296' => { VR => 'SQ', Name => 'BillingItemSequence' }, |
|
2937
|
|
|
|
|
|
|
'0040,0300' => { VR => 'US', Name => 'TotalTimeOfFluoroscopy' }, |
|
2938
|
|
|
|
|
|
|
'0040,0301' => { VR => 'US', Name => 'TotalNumberOfExposures' }, |
|
2939
|
|
|
|
|
|
|
'0040,0302' => { VR => 'US', Name => 'EntranceDose' }, |
|
2940
|
|
|
|
|
|
|
'0040,0303' => { VR => 'US', Name => 'ExposedArea' }, |
|
2941
|
|
|
|
|
|
|
'0040,0306' => { VR => 'DS', Name => 'DistanceSourceToEntrance' }, |
|
2942
|
|
|
|
|
|
|
'0040,0307' => { VR => 'DS', Name => 'DistanceSourceToSupport' }, |
|
2943
|
|
|
|
|
|
|
'0040,030E' => { VR => 'SQ', Name => 'ExposureDoseSequence' }, |
|
2944
|
|
|
|
|
|
|
'0040,0310' => { VR => 'ST', Name => 'CommentsOnRadiationDose' }, |
|
2945
|
|
|
|
|
|
|
'0040,0312' => { VR => 'DS', Name => 'XRayOutput' }, |
|
2946
|
|
|
|
|
|
|
'0040,0314' => { VR => 'DS', Name => 'HalfValueLayer' }, |
|
2947
|
|
|
|
|
|
|
'0040,0316' => { VR => 'DS', Name => 'OrganDose' }, |
|
2948
|
|
|
|
|
|
|
'0040,0318' => { VR => 'CS', Name => 'OrganExposed' }, |
|
2949
|
|
|
|
|
|
|
'0040,0320' => { VR => 'SQ', Name => 'BillingProcedureStepSequence' }, |
|
2950
|
|
|
|
|
|
|
'0040,0321' => { VR => 'SQ', Name => 'FilmConsumptionSequence' }, |
|
2951
|
|
|
|
|
|
|
'0040,0324' => { VR => 'SQ', Name => 'BillingSuppliesAndDevicesSequence' }, |
|
2952
|
|
|
|
|
|
|
'0040,0330' => { VR => 'SQ', Name => 'ReferencedProcedureStepSequence' }, |
|
2953
|
|
|
|
|
|
|
'0040,0340' => { VR => 'SQ', Name => 'PerformedSeriesSequence' }, |
|
2954
|
|
|
|
|
|
|
'0040,0400' => { VR => 'LT', Name => 'CommentsOnScheduledProcedureStep' }, |
|
2955
|
|
|
|
|
|
|
'0040,0440' => { VR => 'SQ', Name => 'ProtocolContextSequence' }, |
|
2956
|
|
|
|
|
|
|
'0040,0441' => { VR => 'SQ', Name => 'ContentItemModifierSequence' }, |
|
2957
|
|
|
|
|
|
|
'0040,0500' => { VR => 'SQ', Name => 'ScheduledSpecimenSequence' }, |
|
2958
|
|
|
|
|
|
|
'0040,050A' => { VR => 'LO', Name => 'SpecimenAccessionNumber' }, |
|
2959
|
|
|
|
|
|
|
'0040,0512' => { VR => 'LO', Name => 'ContainerIdentifier' }, |
|
2960
|
|
|
|
|
|
|
'0040,0513' => { VR => 'SQ', Name => 'IssuerOfTheContainerIdentifierSeq' }, |
|
2961
|
|
|
|
|
|
|
'0040,0515' => { VR => 'SQ', Name => 'AlternateContainerIdentifierSeq' }, |
|
2962
|
|
|
|
|
|
|
'0040,0518' => { VR => 'SQ', Name => 'ContainerTypeCodeSequence' }, |
|
2963
|
|
|
|
|
|
|
'0040,051A' => { VR => 'LO', Name => 'ContainerDescription' }, |
|
2964
|
|
|
|
|
|
|
'0040,0520' => { VR => 'SQ', Name => 'ContainerComponentSequence' }, |
|
2965
|
|
|
|
|
|
|
'0040,0550' => { VR => 'SQ', Name => 'SpecimenSequence' }, |
|
2966
|
|
|
|
|
|
|
'0040,0551' => { VR => 'LO', Name => 'SpecimenIdentifier' }, |
|
2967
|
|
|
|
|
|
|
'0040,0552' => { VR => 'SQ', Name => 'SpecimenDescriptionSequenceTrial' }, |
|
2968
|
|
|
|
|
|
|
'0040,0553' => { VR => 'ST', Name => 'SpecimenDescriptionTrial' }, |
|
2969
|
|
|
|
|
|
|
'0040,0554' => { VR => 'UI', Name => 'SpecimenUID' }, |
|
2970
|
|
|
|
|
|
|
'0040,0555' => { VR => 'SQ', Name => 'AcquisitionContextSequence' }, |
|
2971
|
|
|
|
|
|
|
'0040,0556' => { VR => 'ST', Name => 'AcquisitionContextDescription' }, |
|
2972
|
|
|
|
|
|
|
'0040,0560' => { VR => 'SQ', Name => 'SpecimenDescriptionSequence' }, |
|
2973
|
|
|
|
|
|
|
'0040,0562' => { VR => 'SQ', Name => 'IssuerOfTheSpecimenIdentifierSeq' }, |
|
2974
|
|
|
|
|
|
|
'0040,059A' => { VR => 'SQ', Name => 'SpecimenTypeCodeSequence' }, |
|
2975
|
|
|
|
|
|
|
'0040,0600' => { VR => 'LO', Name => 'SpecimenShortDescription' }, |
|
2976
|
|
|
|
|
|
|
'0040,0602' => { VR => 'UT', Name => 'SpecimenDetailedDescription' }, |
|
2977
|
|
|
|
|
|
|
'0040,0610' => { VR => 'SQ', Name => 'SpecimenPreparationSequence' }, |
|
2978
|
|
|
|
|
|
|
'0040,0612' => { VR => 'SQ', Name => 'SpecimenPrepStepContentItemSeq' }, |
|
2979
|
|
|
|
|
|
|
'0040,0620' => { VR => 'SQ', Name => 'SpecimenLocalizationContentItemSeq' }, |
|
2980
|
|
|
|
|
|
|
'0040,06FA' => { VR => 'LO', Name => 'SlideIdentifier' }, |
|
2981
|
|
|
|
|
|
|
'0040,0710' => { VR => 'SQ', Name => 'WholeSlideMicroscopyImageFrameSeq' }, |
|
2982
|
|
|
|
|
|
|
'0040,071A' => { VR => 'SQ', Name => 'ImageCenterPointCoordinatesSeq' }, |
|
2983
|
|
|
|
|
|
|
'0040,072A' => { VR => 'DS', Name => 'XOffsetInSlideCoordinateSystem' }, |
|
2984
|
|
|
|
|
|
|
'0040,073A' => { VR => 'DS', Name => 'YOffsetInSlideCoordinateSystem' }, |
|
2985
|
|
|
|
|
|
|
'0040,074A' => { VR => 'DS', Name => 'ZOffsetInSlideCoordinateSystem' }, |
|
2986
|
|
|
|
|
|
|
'0040,08D8' => { VR => 'SQ', Name => 'PixelSpacingSequence' }, |
|
2987
|
|
|
|
|
|
|
'0040,08DA' => { VR => 'SQ', Name => 'CoordinateSystemAxisCodeSequence' }, |
|
2988
|
|
|
|
|
|
|
'0040,08EA' => { VR => 'SQ', Name => 'MeasurementUnitsCodeSequence' }, |
|
2989
|
|
|
|
|
|
|
'0040,09F8' => { VR => 'SQ', Name => 'VitalStainCodeSequenceTrial' }, |
|
2990
|
|
|
|
|
|
|
'0040,1001' => { VR => 'SH', Name => 'RequestedProcedureID' }, |
|
2991
|
|
|
|
|
|
|
'0040,1002' => { VR => 'LO', Name => 'ReasonForRequestedProcedure' }, |
|
2992
|
|
|
|
|
|
|
'0040,1003' => { VR => 'SH', Name => 'RequestedProcedurePriority' }, |
|
2993
|
|
|
|
|
|
|
'0040,1004' => { VR => 'LO', Name => 'PatientTransportArrangements' }, |
|
2994
|
|
|
|
|
|
|
'0040,1005' => { VR => 'LO', Name => 'RequestedProcedureLocation' }, |
|
2995
|
|
|
|
|
|
|
'0040,1006' => { VR => 'SH', Name => 'PlacerOrderNumber-Procedure' }, |
|
2996
|
|
|
|
|
|
|
'0040,1007' => { VR => 'SH', Name => 'FillerOrderNumber-Procedure' }, |
|
2997
|
|
|
|
|
|
|
'0040,1008' => { VR => 'LO', Name => 'ConfidentialityCode' }, |
|
2998
|
|
|
|
|
|
|
'0040,1009' => { VR => 'SH', Name => 'ReportingPriority' }, |
|
2999
|
|
|
|
|
|
|
'0040,100A' => { VR => 'SQ', Name => 'ReasonForRequestedProcedureCodeSeq' }, |
|
3000
|
|
|
|
|
|
|
'0040,1010' => { VR => 'PN', Name => 'NamesOfIntendedRecipientsOfResults' }, |
|
3001
|
|
|
|
|
|
|
'0040,1011' => { VR => 'SQ', Name => 'IntendedRecipientsOfResultsIDSeq' }, |
|
3002
|
|
|
|
|
|
|
'0040,1012' => { VR => 'SQ', Name => 'ReasonForPerformedProcedureCodeSeq' }, |
|
3003
|
|
|
|
|
|
|
'0040,1060' => { VR => 'LO', Name => 'RequestedProcedureDescriptionTrial' }, |
|
3004
|
|
|
|
|
|
|
'0040,1101' => { VR => 'SQ', Name => 'PersonIdentificationCodeSequence' }, |
|
3005
|
|
|
|
|
|
|
'0040,1102' => { VR => 'ST', Name => 'PersonAddress' }, |
|
3006
|
|
|
|
|
|
|
'0040,1103' => { VR => 'LO', Name => 'PersonTelephoneNumbers' }, |
|
3007
|
|
|
|
|
|
|
'0040,1104' => { VR => 'LT', Name => 'PersonTelecomInformation' }, |
|
3008
|
|
|
|
|
|
|
'0040,1400' => { VR => 'LT', Name => 'RequestedProcedureComments' }, |
|
3009
|
|
|
|
|
|
|
'0040,2001' => { VR => 'LO', Name => 'ReasonForImagingServiceRequest' }, |
|
3010
|
|
|
|
|
|
|
'0040,2004' => { VR => 'DA', Name => 'IssueDateOfImagingServiceRequest' }, |
|
3011
|
|
|
|
|
|
|
'0040,2005' => { VR => 'TM', Name => 'IssueTimeOfImagingServiceRequest' }, |
|
3012
|
|
|
|
|
|
|
'0040,2006' => { VR => 'SH', Name => 'PlacerOrderNum-ImagingServiceReq' }, |
|
3013
|
|
|
|
|
|
|
'0040,2007' => { VR => 'SH', Name => 'FillerOrderNum-ImagingServiceReq' }, |
|
3014
|
|
|
|
|
|
|
'0040,2008' => { VR => 'PN', Name => 'OrderEnteredBy' }, |
|
3015
|
|
|
|
|
|
|
'0040,2009' => { VR => 'SH', Name => 'OrderEntererLocation' }, |
|
3016
|
|
|
|
|
|
|
'0040,2010' => { VR => 'SH', Name => 'OrderCallbackPhoneNumber' }, |
|
3017
|
|
|
|
|
|
|
'0040,2011' => { VR => 'LT', Name => 'OrderCallbackTelecomInformation' }, |
|
3018
|
|
|
|
|
|
|
'0040,2016' => { VR => 'LO', Name => 'PlacerOrderNum-ImagingServiceReq' }, |
|
3019
|
|
|
|
|
|
|
'0040,2017' => { VR => 'LO', Name => 'FillerOrderNum-ImagingServiceReq' }, |
|
3020
|
|
|
|
|
|
|
'0040,2400' => { VR => 'LT', Name => 'ImagingServiceRequestComments' }, |
|
3021
|
|
|
|
|
|
|
'0040,3001' => { VR => 'LO', Name => 'ConfidentialityOnPatientDataDescr' }, |
|
3022
|
|
|
|
|
|
|
'0040,4001' => { VR => 'CS', Name => 'GenPurposeScheduledProcStepStatus' }, |
|
3023
|
|
|
|
|
|
|
'0040,4002' => { VR => 'CS', Name => 'GenPurposePerformedProcStepStatus' }, |
|
3024
|
|
|
|
|
|
|
'0040,4003' => { VR => 'CS', Name => 'GenPurposeSchedProcStepPriority' }, |
|
3025
|
|
|
|
|
|
|
'0040,4004' => { VR => 'SQ', Name => 'SchedProcessingApplicationsCodeSeq' }, |
|
3026
|
|
|
|
|
|
|
'0040,4005' => { VR => 'DT', Name => 'SchedProcedureStepStartDateAndTime' }, |
|
3027
|
|
|
|
|
|
|
'0040,4006' => { VR => 'CS', Name => 'MultipleCopiesFlag' }, |
|
3028
|
|
|
|
|
|
|
'0040,4007' => { VR => 'SQ', Name => 'PerformedProcessingAppsCodeSeq' }, |
|
3029
|
|
|
|
|
|
|
'0040,4008' => { VR => 'DT', Name => 'ScheduledProcedureStepExpDateTime' }, |
|
3030
|
|
|
|
|
|
|
'0040,4009' => { VR => 'SQ', Name => 'HumanPerformerCodeSequence' }, |
|
3031
|
|
|
|
|
|
|
'0040,4010' => { VR => 'DT', Name => 'SchedProcStepModificationDateTime' }, |
|
3032
|
|
|
|
|
|
|
'0040,4011' => { VR => 'DT', Name => 'ExpectedCompletionDateAndTime' }, |
|
3033
|
|
|
|
|
|
|
'0040,4015' => { VR => 'SQ', Name => 'ResultingGenPurposePerfProcStepSeq' }, |
|
3034
|
|
|
|
|
|
|
'0040,4016' => { VR => 'SQ', Name => 'RefGenPurposeSchedProcStepSeq' }, |
|
3035
|
|
|
|
|
|
|
'0040,4018' => { VR => 'SQ', Name => 'ScheduledWorkitemCodeSequence' }, |
|
3036
|
|
|
|
|
|
|
'0040,4019' => { VR => 'SQ', Name => 'PerformedWorkitemCodeSequence' }, |
|
3037
|
|
|
|
|
|
|
'0040,4020' => { VR => 'CS', Name => 'InputAvailabilityFlag' }, |
|
3038
|
|
|
|
|
|
|
'0040,4021' => { VR => 'SQ', Name => 'InputInformationSequence' }, |
|
3039
|
|
|
|
|
|
|
'0040,4022' => { VR => 'SQ', Name => 'RelevantInformationSequence' }, |
|
3040
|
|
|
|
|
|
|
'0040,4023' => { VR => 'UI', Name => 'RefGenPurSchedProcStepTransUID' }, |
|
3041
|
|
|
|
|
|
|
'0040,4025' => { VR => 'SQ', Name => 'ScheduledStationNameCodeSequence' }, |
|
3042
|
|
|
|
|
|
|
'0040,4026' => { VR => 'SQ', Name => 'ScheduledStationClassCodeSequence' }, |
|
3043
|
|
|
|
|
|
|
'0040,4027' => { VR => 'SQ', Name => 'SchedStationGeographicLocCodeSeq' }, |
|
3044
|
|
|
|
|
|
|
'0040,4028' => { VR => 'SQ', Name => 'PerformedStationNameCodeSequence' }, |
|
3045
|
|
|
|
|
|
|
'0040,4029' => { VR => 'SQ', Name => 'PerformedStationClassCodeSequence' }, |
|
3046
|
|
|
|
|
|
|
'0040,4030' => { VR => 'SQ', Name => 'PerformedStationGeogLocCodeSeq' }, |
|
3047
|
|
|
|
|
|
|
'0040,4031' => { VR => 'SQ', Name => 'RequestedSubsequentWorkItemCodeSeq' }, |
|
3048
|
|
|
|
|
|
|
'0040,4032' => { VR => 'SQ', Name => 'NonDICOMOutputCodeSequence' }, |
|
3049
|
|
|
|
|
|
|
'0040,4033' => { VR => 'SQ', Name => 'OutputInformationSequence' }, |
|
3050
|
|
|
|
|
|
|
'0040,4034' => { VR => 'SQ', Name => 'ScheduledHumanPerformersSequence' }, |
|
3051
|
|
|
|
|
|
|
'0040,4035' => { VR => 'SQ', Name => 'ActualHumanPerformersSequence' }, |
|
3052
|
|
|
|
|
|
|
'0040,4036' => { VR => 'LO', Name => 'HumanPerformersOrganization' }, |
|
3053
|
|
|
|
|
|
|
'0040,4037' => { VR => 'PN', Name => 'HumanPerformerName' }, |
|
3054
|
|
|
|
|
|
|
'0040,4040' => { VR => 'CS', Name => 'RawDataHandling' }, |
|
3055
|
|
|
|
|
|
|
'0040,4041' => { VR => 'CS', Name => 'InputReadinessState' }, |
|
3056
|
|
|
|
|
|
|
'0040,4050' => { VR => 'DT', Name => 'PerformedProcedureStepStartTime' }, |
|
3057
|
|
|
|
|
|
|
'0040,4051' => { VR => 'DT', Name => 'PerformedProcedureStepEndDateTime' }, |
|
3058
|
|
|
|
|
|
|
'0040,4052' => { VR => 'DT', Name => 'ProcedureStepCancellationDateTime' }, |
|
3059
|
|
|
|
|
|
|
'0040,4070' => { VR => 'SQ', Name => 'OutputDestinationSequence' }, |
|
3060
|
|
|
|
|
|
|
'0040,4071' => { VR => 'SQ', Name => 'DICOMStorageSequence' }, |
|
3061
|
|
|
|
|
|
|
'0040,4072' => { VR => 'SQ', Name => 'STOWRSStorageSequence' }, |
|
3062
|
|
|
|
|
|
|
'0040,4073' => { VR => 'UR', Name => 'StorageURL' }, |
|
3063
|
|
|
|
|
|
|
'0040,4074' => { VR => 'SQ', Name => 'XDSStorageSequence' }, |
|
3064
|
|
|
|
|
|
|
'0040,8302' => { VR => 'DS', Name => 'EntranceDoseInMilliGy' }, |
|
3065
|
|
|
|
|
|
|
'0040,8303' => { VR => 'CS', Name => 'EntranceDoseDerivation' }, |
|
3066
|
|
|
|
|
|
|
'0040,9092' => { VR => 'SQ', Name => 'ParametricMapFrameTypeSequence' }, |
|
3067
|
|
|
|
|
|
|
'0040,9094' => { VR => 'SQ', Name => 'RefImageRealWorldValueMappingSeq' }, |
|
3068
|
|
|
|
|
|
|
'0040,9096' => { VR => 'SQ', Name => 'RealWorldValueMappingSequence' }, |
|
3069
|
|
|
|
|
|
|
'0040,9098' => { VR => 'SQ', Name => 'PixelValueMappingCodeSequence' }, |
|
3070
|
|
|
|
|
|
|
'0040,9210' => { VR => 'SH', Name => 'LUTLabel' }, |
|
3071
|
|
|
|
|
|
|
'0040,9211' => { VR => 'SS', Name => 'RealWorldValueLastValueMapped' }, |
|
3072
|
|
|
|
|
|
|
'0040,9212' => { VR => 'FD', Name => 'RealWorldValueLUTData' }, |
|
3073
|
|
|
|
|
|
|
'0040,9213' => { VR => 'FD', Name => 'DoubleRealWorldLastValueMapped' }, |
|
3074
|
|
|
|
|
|
|
'0040,9214' => { VR => 'FD', Name => 'DoubleRealWorldFirstValueMapped' }, |
|
3075
|
|
|
|
|
|
|
'0040,9216' => { VR => 'SS', Name => 'RealWorldValueFirstValueMapped' }, |
|
3076
|
|
|
|
|
|
|
'0040,9220' => { VR => 'SQ', Name => 'QuantityDefinitionSequence' }, |
|
3077
|
|
|
|
|
|
|
'0040,9224' => { VR => 'FD', Name => 'RealWorldValueIntercept' }, |
|
3078
|
|
|
|
|
|
|
'0040,9225' => { VR => 'FD', Name => 'RealWorldValueSlope' }, |
|
3079
|
|
|
|
|
|
|
'0040,A007' => { VR => 'CS', Name => 'FindingsFlagTrial' }, |
|
3080
|
|
|
|
|
|
|
'0040,A010' => { VR => 'CS', Name => 'RelationshipType' }, |
|
3081
|
|
|
|
|
|
|
'0040,A020' => { VR => 'SQ', Name => 'FindingsSequenceTrial' }, |
|
3082
|
|
|
|
|
|
|
'0040,A021' => { VR => 'UI', Name => 'FindingsGroupUIDTrial' }, |
|
3083
|
|
|
|
|
|
|
'0040,A022' => { VR => 'UI', Name => 'ReferencedFindingsGroupUIDTrial' }, |
|
3084
|
|
|
|
|
|
|
'0040,A023' => { VR => 'DA', Name => 'FindingsGroupRecordingDateTrial' }, |
|
3085
|
|
|
|
|
|
|
'0040,A024' => { VR => 'TM', Name => 'FindingsGroupRecordingTimeTrial' }, |
|
3086
|
|
|
|
|
|
|
'0040,A026' => { VR => 'SQ', Name => 'FindingsSourceCategoryCodeSeqTrial' }, |
|
3087
|
|
|
|
|
|
|
'0040,A027' => { VR => 'LO', Name => 'VerifyingOrganization' }, |
|
3088
|
|
|
|
|
|
|
'0040,A028' => { VR => 'SQ', Name => 'DocumentingOrgIDCodeSeqTrial' }, |
|
3089
|
|
|
|
|
|
|
'0040,A030' => { VR => 'DT', Name => 'VerificationDateTime' }, |
|
3090
|
|
|
|
|
|
|
'0040,A032' => { VR => 'DT', Name => 'ObservationDateTime' }, |
|
3091
|
|
|
|
|
|
|
'0040,A033' => { VR => 'DT', Name => 'ObservationStartDateTime' }, |
|
3092
|
|
|
|
|
|
|
'0040,A034' => { VR => 'DT', Name => 'EffectiveStartDateTime' }, |
|
3093
|
|
|
|
|
|
|
'0040,A035' => { VR => 'DT', Name => 'EffectiveStopDateTime' }, |
|
3094
|
|
|
|
|
|
|
'0040,A040' => { VR => 'CS', Name => 'ValueType' }, |
|
3095
|
|
|
|
|
|
|
'0040,A043' => { VR => 'SQ', Name => 'ConceptNameCodeSequence' }, |
|
3096
|
|
|
|
|
|
|
'0040,A047' => { VR => 'LO', Name => 'MeasurementPrecisionDescrTrial' }, |
|
3097
|
|
|
|
|
|
|
'0040,A050' => { VR => 'CS', Name => 'ContinuityOfContent' }, |
|
3098
|
|
|
|
|
|
|
'0040,A057' => { VR => 'CS', Name => 'UrgencyOrPriorityAlertsTrial' }, |
|
3099
|
|
|
|
|
|
|
'0040,A060' => { VR => 'LO', Name => 'SequencingIndicatorTrial' }, |
|
3100
|
|
|
|
|
|
|
'0040,A066' => { VR => 'SQ', Name => 'DocumentIdentifierCodeSeqTrial' }, |
|
3101
|
|
|
|
|
|
|
'0040,A067' => { VR => 'PN', Name => 'DocumentAuthorTrial' }, |
|
3102
|
|
|
|
|
|
|
'0040,A068' => { VR => 'SQ', Name => 'DocumentAuthorIDCodeSeqTrial' }, |
|
3103
|
|
|
|
|
|
|
'0040,A070' => { VR => 'SQ', Name => 'IdentifierCodeSequenceTrial' }, |
|
3104
|
|
|
|
|
|
|
'0040,A073' => { VR => 'SQ', Name => 'VerifyingObserverSequence' }, |
|
3105
|
|
|
|
|
|
|
'0040,A074' => { VR => 'OB', Name => 'ObjectBinaryIdentifierTrial' }, |
|
3106
|
|
|
|
|
|
|
'0040,A075' => { VR => 'PN', Name => 'VerifyingObserverName' }, |
|
3107
|
|
|
|
|
|
|
'0040,A076' => { VR => 'SQ', Name => 'DocumentingObserverIDCodeSeqTrial' }, |
|
3108
|
|
|
|
|
|
|
'0040,A078' => { VR => 'SQ', Name => 'AuthorObserverSequence' }, |
|
3109
|
|
|
|
|
|
|
'0040,A07A' => { VR => 'SQ', Name => 'ParticipantSequence' }, |
|
3110
|
|
|
|
|
|
|
'0040,A07C' => { VR => 'SQ', Name => 'CustodialOrganizationSequence' }, |
|
3111
|
|
|
|
|
|
|
'0040,A080' => { VR => 'CS', Name => 'ParticipationType' }, |
|
3112
|
|
|
|
|
|
|
'0040,A082' => { VR => 'DT', Name => 'ParticipationDateTime' }, |
|
3113
|
|
|
|
|
|
|
'0040,A084' => { VR => 'CS', Name => 'ObserverType' }, |
|
3114
|
|
|
|
|
|
|
'0040,A085' => { VR => 'SQ', Name => 'ProcedureIdentifierCodeSeqTrial' }, |
|
3115
|
|
|
|
|
|
|
'0040,A088' => { VR => 'SQ', Name => 'VerifyingObserverIdentCodeSequence' }, |
|
3116
|
|
|
|
|
|
|
'0040,A089' => { VR => 'OB', Name => 'ObjectDirectoryBinaryIDTrial' }, |
|
3117
|
|
|
|
|
|
|
'0040,A090' => { VR => 'SQ', Name => 'EquivalentCDADocumentSequence' }, |
|
3118
|
|
|
|
|
|
|
'0040,A0B0' => { VR => 'US', Name => 'ReferencedWaveformChannels' }, |
|
3119
|
|
|
|
|
|
|
'0040,A110' => { VR => 'DA', Name => 'DateOfDocOrVerbalTransactionTrial' }, |
|
3120
|
|
|
|
|
|
|
'0040,A112' => { VR => 'TM', Name => 'TimeOfDocCreateOrVerbalTransaction' }, |
|
3121
|
|
|
|
|
|
|
'0040,A120' => { VR => 'DT', Name => 'DateTime' }, |
|
3122
|
|
|
|
|
|
|
'0040,A121' => { VR => 'DA', Name => 'Date' }, |
|
3123
|
|
|
|
|
|
|
'0040,A122' => { VR => 'TM', Name => 'Time' }, |
|
3124
|
|
|
|
|
|
|
'0040,A123' => { VR => 'PN', Name => 'PersonName' }, |
|
3125
|
|
|
|
|
|
|
'0040,A124' => { VR => 'UI', Name => 'UID' }, |
|
3126
|
|
|
|
|
|
|
'0040,A125' => { VR => 'CS', Name => 'ReportStatusIDTrial' }, |
|
3127
|
|
|
|
|
|
|
'0040,A130' => { VR => 'CS', Name => 'TemporalRangeType' }, |
|
3128
|
|
|
|
|
|
|
'0040,A132' => { VR => 'UL', Name => 'ReferencedSamplePositions' }, |
|
3129
|
|
|
|
|
|
|
'0040,A136' => { VR => 'US', Name => 'ReferencedFrameNumbers' }, |
|
3130
|
|
|
|
|
|
|
'0040,A138' => { VR => 'DS', Name => 'ReferencedTimeOffsets' }, |
|
3131
|
|
|
|
|
|
|
'0040,A13A' => { VR => 'DT', Name => 'ReferencedDateTime' }, |
|
3132
|
|
|
|
|
|
|
'0040,A160' => { VR => 'UT', Name => 'TextValue' }, |
|
3133
|
|
|
|
|
|
|
'0040,A161' => { VR => 'FD', Name => 'FloatingPointValue' }, |
|
3134
|
|
|
|
|
|
|
'0040,A162' => { VR => 'SL', Name => 'RationalNumeratorValue' }, |
|
3135
|
|
|
|
|
|
|
'0040,A163' => { VR => 'UL', Name => 'RationalDenominatorValue' }, |
|
3136
|
|
|
|
|
|
|
'0040,A167' => { VR => 'SQ', Name => 'ObservationCategoryCodeSeqTrial' }, |
|
3137
|
|
|
|
|
|
|
'0040,A168' => { VR => 'SQ', Name => 'ConceptCodeSequence' }, |
|
3138
|
|
|
|
|
|
|
'0040,A16A' => { VR => 'ST', Name => 'BibliographicCitationTrial' }, |
|
3139
|
|
|
|
|
|
|
'0040,A170' => { VR => 'SQ', Name => 'PurposeOfReferenceCodeSequence' }, |
|
3140
|
|
|
|
|
|
|
'0040,A171' => { VR => 'UI', Name => 'ObservationUID' }, |
|
3141
|
|
|
|
|
|
|
'0040,A172' => { VR => 'UI', Name => 'ReferencedObservationUIDTrial' }, |
|
3142
|
|
|
|
|
|
|
'0040,A173' => { VR => 'CS', Name => 'ReferencedObservationClassTrial' }, |
|
3143
|
|
|
|
|
|
|
'0040,A174' => { VR => 'CS', Name => 'ReferencedObjectObsClassTrial' }, |
|
3144
|
|
|
|
|
|
|
'0040,A180' => { VR => 'US', Name => 'AnnotationGroupNumber' }, |
|
3145
|
|
|
|
|
|
|
'0040,A192' => { VR => 'DA', Name => 'ObservationDateTrial' }, |
|
3146
|
|
|
|
|
|
|
'0040,A193' => { VR => 'TM', Name => 'ObservationTimeTrial' }, |
|
3147
|
|
|
|
|
|
|
'0040,A194' => { VR => 'CS', Name => 'MeasurementAutomationTrial' }, |
|
3148
|
|
|
|
|
|
|
'0040,A195' => { VR => 'SQ', Name => 'ModifierCodeSequence' }, |
|
3149
|
|
|
|
|
|
|
'0040,A224' => { VR => 'ST', Name => 'IdentificationDescriptionTrial' }, |
|
3150
|
|
|
|
|
|
|
'0040,A290' => { VR => 'CS', Name => 'CoordinatesSetGeometricTypeTrial' }, |
|
3151
|
|
|
|
|
|
|
'0040,A296' => { VR => 'SQ', Name => 'AlgorithmCodeSequenceTrial' }, |
|
3152
|
|
|
|
|
|
|
'0040,A297' => { VR => 'ST', Name => 'AlgorithmDescriptionTrial' }, |
|
3153
|
|
|
|
|
|
|
'0040,A29A' => { VR => 'SL', Name => 'PixelCoordinatesSetTrial' }, |
|
3154
|
|
|
|
|
|
|
'0040,A300' => { VR => 'SQ', Name => 'MeasuredValueSequence' }, |
|
3155
|
|
|
|
|
|
|
'0040,A301' => { VR => 'SQ', Name => 'NumericValueQualifierCodeSequence' }, |
|
3156
|
|
|
|
|
|
|
'0040,A307' => { VR => 'PN', Name => 'CurrentObserverTrial' }, |
|
3157
|
|
|
|
|
|
|
'0040,A30A' => { VR => 'DS', Name => 'NumericValue' }, |
|
3158
|
|
|
|
|
|
|
'0040,A313' => { VR => 'SQ', Name => 'ReferencedAccessionSequenceTrial' }, |
|
3159
|
|
|
|
|
|
|
'0040,A33A' => { VR => 'ST', Name => 'ReportStatusCommentTrial' }, |
|
3160
|
|
|
|
|
|
|
'0040,A340' => { VR => 'SQ', Name => 'ProcedureContextSequenceTrial' }, |
|
3161
|
|
|
|
|
|
|
'0040,A352' => { VR => 'PN', Name => 'VerbalSourceTrial' }, |
|
3162
|
|
|
|
|
|
|
'0040,A353' => { VR => 'ST', Name => 'AddressTrial' }, |
|
3163
|
|
|
|
|
|
|
'0040,A354' => { VR => 'LO', Name => 'TelephoneNumberTrial' }, |
|
3164
|
|
|
|
|
|
|
'0040,A358' => { VR => 'SQ', Name => 'VerbalSourceIdentifierCodeSeqTrial' }, |
|
3165
|
|
|
|
|
|
|
'0040,A360' => { VR => 'SQ', Name => 'PredecessorDocumentsSequence' }, |
|
3166
|
|
|
|
|
|
|
'0040,A370' => { VR => 'SQ', Name => 'ReferencedRequestSequence' }, |
|
3167
|
|
|
|
|
|
|
'0040,A372' => { VR => 'SQ', Name => 'PerformedProcedureCodeSequence' }, |
|
3168
|
|
|
|
|
|
|
'0040,A375' => { VR => 'SQ', Name => 'CurrentRequestedProcEvidenceSeq' }, |
|
3169
|
|
|
|
|
|
|
'0040,A380' => { VR => 'SQ', Name => 'ReportDetailSequenceTrial' }, |
|
3170
|
|
|
|
|
|
|
'0040,A385' => { VR => 'SQ', Name => 'PertinentOtherEvidenceSequence' }, |
|
3171
|
|
|
|
|
|
|
'0040,A390' => { VR => 'SQ', Name => 'HL7StructuredDocumentRefSeq' }, |
|
3172
|
|
|
|
|
|
|
'0040,A402' => { VR => 'UI', Name => 'ObservationSubjectUIDTrial' }, |
|
3173
|
|
|
|
|
|
|
'0040,A403' => { VR => 'CS', Name => 'ObservationSubjectClassTrial' }, |
|
3174
|
|
|
|
|
|
|
'0040,A404' => { VR => 'SQ', Name => 'ObservationSubjectTypeCodeSeqTrial' }, |
|
3175
|
|
|
|
|
|
|
'0040,A491' => { VR => 'CS', Name => 'CompletionFlag' }, |
|
3176
|
|
|
|
|
|
|
'0040,A492' => { VR => 'LO', Name => 'CompletionFlagDescription' }, |
|
3177
|
|
|
|
|
|
|
'0040,A493' => { VR => 'CS', Name => 'VerificationFlag' }, |
|
3178
|
|
|
|
|
|
|
'0040,A494' => { VR => 'CS', Name => 'ArchiveRequested' }, |
|
3179
|
|
|
|
|
|
|
'0040,A496' => { VR => 'CS', Name => 'PreliminaryFlag' }, |
|
3180
|
|
|
|
|
|
|
'0040,A504' => { VR => 'SQ', Name => 'ContentTemplateSequence' }, |
|
3181
|
|
|
|
|
|
|
'0040,A525' => { VR => 'SQ', Name => 'IdenticalDocumentsSequence' }, |
|
3182
|
|
|
|
|
|
|
'0040,A600' => { VR => 'CS', Name => 'ObservationSubjectContextFlagTrial' }, |
|
3183
|
|
|
|
|
|
|
'0040,A601' => { VR => 'CS', Name => 'ObserverContextFlagTrial' }, |
|
3184
|
|
|
|
|
|
|
'0040,A603' => { VR => 'CS', Name => 'ProcedureContextFlagTrial' }, |
|
3185
|
|
|
|
|
|
|
'0040,A730' => { VR => 'SQ', Name => 'ContentSequence' }, |
|
3186
|
|
|
|
|
|
|
'0040,A731' => { VR => 'SQ', Name => 'RelationshipSequenceTrial' }, |
|
3187
|
|
|
|
|
|
|
'0040,A732' => { VR => 'SQ', Name => 'RelationshipTypeCodeSequenceTrial' }, |
|
3188
|
|
|
|
|
|
|
'0040,A744' => { VR => 'SQ', Name => 'LanguageCodeSequenceTrial' }, |
|
3189
|
|
|
|
|
|
|
'0040,A801' => { VR => 'SQ', Name => 'TabulatedValuesSequence' }, |
|
3190
|
|
|
|
|
|
|
'0040,A802' => { VR => 'UL', Name => 'NumberOfTableRows' }, |
|
3191
|
|
|
|
|
|
|
'0040,A803' => { VR => 'UL', Name => 'NumberOfTableColumns' }, |
|
3192
|
|
|
|
|
|
|
'0040,A804' => { VR => 'UL', Name => 'TableRowNumber' }, |
|
3193
|
|
|
|
|
|
|
'0040,A805' => { VR => 'UL', Name => 'TableColumnNumber' }, |
|
3194
|
|
|
|
|
|
|
'0040,A806' => { VR => 'SQ', Name => 'TableRowDefinitionSequence' }, |
|
3195
|
|
|
|
|
|
|
'0040,A807' => { VR => 'SQ', Name => 'TableColumnDefinitionSequence' }, |
|
3196
|
|
|
|
|
|
|
'0040,A808' => { VR => 'SQ', Name => 'CellValuesSequence' }, |
|
3197
|
|
|
|
|
|
|
'0040,A992' => { VR => 'ST', Name => 'UniformResourceLocatorTrial' }, |
|
3198
|
|
|
|
|
|
|
'0040,B020' => { VR => 'SQ', Name => 'AnnotationSequence' }, |
|
3199
|
|
|
|
|
|
|
'0040,B030' => { VR => 'SQ', Name => 'StructuredWaveformAnnotationSeq' }, |
|
3200
|
|
|
|
|
|
|
'0040,B031' => { VR => 'SQ', Name => 'WaveformAnnotationDisplaySelSeq' }, |
|
3201
|
|
|
|
|
|
|
'0040,B032' => { VR => 'US', Name => 'ReferencedMontageIndex' }, |
|
3202
|
|
|
|
|
|
|
'0040,B033' => { VR => 'SQ', Name => 'WaveformTextualAnnotationSequence' }, |
|
3203
|
|
|
|
|
|
|
'0040,B034' => { VR => 'DT', Name => 'AnnotationDateTime' }, |
|
3204
|
|
|
|
|
|
|
'0040,B035' => { VR => 'SQ', Name => 'DisplayedWaveformSegmentSequence' }, |
|
3205
|
|
|
|
|
|
|
'0040,B036' => { VR => 'DT', Name => 'SegmentDefinitionDateTime' }, |
|
3206
|
|
|
|
|
|
|
'0040,B037' => { VR => 'SQ', Name => 'MontageActivationSequence' }, |
|
3207
|
|
|
|
|
|
|
'0040,B038' => { VR => 'DS', Name => 'MontageActivationTimeOffset' }, |
|
3208
|
|
|
|
|
|
|
'0040,B039' => { VR => 'SQ', Name => 'WaveformMontageSequence' }, |
|
3209
|
|
|
|
|
|
|
'0040,B03A' => { VR => 'IS', Name => 'ReferencedMontageChannelNumber' }, |
|
3210
|
|
|
|
|
|
|
'0040,B03B' => { VR => 'LT', Name => 'MontageName' }, |
|
3211
|
|
|
|
|
|
|
'0040,B03C' => { VR => 'SQ', Name => 'MontageChannelSequence' }, |
|
3212
|
|
|
|
|
|
|
'0040,B03D' => { VR => 'US', Name => 'MontageIndex' }, |
|
3213
|
|
|
|
|
|
|
'0040,B03E' => { VR => 'IS', Name => 'MontageChannelNumber' }, |
|
3214
|
|
|
|
|
|
|
'0040,B03F' => { VR => 'LO', Name => 'MontageChannelLabel' }, |
|
3215
|
|
|
|
|
|
|
'0040,B040' => { VR => 'SQ', Name => 'MontageChannelSourceCodeSequence' }, |
|
3216
|
|
|
|
|
|
|
'0040,B041' => { VR => 'SQ', Name => 'ContributingChannelSourcesSequence' }, |
|
3217
|
|
|
|
|
|
|
'0040,B042' => { VR => 'FL', Name => 'ChannelWeight' }, |
|
3218
|
|
|
|
|
|
|
'0040,DB00' => { VR => 'CS', Name => 'TemplateIdentifier' }, |
|
3219
|
|
|
|
|
|
|
'0040,DB06' => { VR => 'DT', Name => 'TemplateVersion' }, |
|
3220
|
|
|
|
|
|
|
'0040,DB07' => { VR => 'DT', Name => 'TemplateLocalVersion' }, |
|
3221
|
|
|
|
|
|
|
'0040,DB0B' => { VR => 'CS', Name => 'TemplateExtensionFlag' }, |
|
3222
|
|
|
|
|
|
|
'0040,DB0C' => { VR => 'UI', Name => 'TemplateExtensionOrganizationUID' }, |
|
3223
|
|
|
|
|
|
|
'0040,DB0D' => { VR => 'UI', Name => 'TemplateExtensionCreatorUID' }, |
|
3224
|
|
|
|
|
|
|
'0040,DB73' => { VR => 'UL', Name => 'ReferencedContentItemIdentifier' }, |
|
3225
|
|
|
|
|
|
|
'0040,E001' => { VR => 'ST', Name => 'HL7InstanceIdentifier' }, |
|
3226
|
|
|
|
|
|
|
'0040,E004' => { VR => 'DT', Name => 'HL7DocumentEffectiveTime' }, |
|
3227
|
|
|
|
|
|
|
'0040,E006' => { VR => 'SQ', Name => 'HL7DocumentTypeCodeSequence' }, |
|
3228
|
|
|
|
|
|
|
'0040,E008' => { VR => 'SQ', Name => 'DocumentClassCodeSequence' }, |
|
3229
|
|
|
|
|
|
|
'0040,E010' => { VR => 'UT', Name => 'RetrieveURI' }, |
|
3230
|
|
|
|
|
|
|
'0040,E011' => { VR => 'UI', Name => 'RetrieveLocationUID' }, |
|
3231
|
|
|
|
|
|
|
'0040,E020' => { VR => 'CS', Name => 'TypeOfInstances' }, |
|
3232
|
|
|
|
|
|
|
'0040,E021' => { VR => 'SQ', Name => 'DICOMRetrievalSequence' }, |
|
3233
|
|
|
|
|
|
|
'0040,E022' => { VR => 'SQ', Name => 'DICOMMediaRetrievalSequence' }, |
|
3234
|
|
|
|
|
|
|
'0040,E023' => { VR => 'SQ', Name => 'WADORetrievalSequence' }, |
|
3235
|
|
|
|
|
|
|
'0040,E024' => { VR => 'SQ', Name => 'XDSRetrievalSequence' }, |
|
3236
|
|
|
|
|
|
|
'0040,E025' => { VR => 'SQ', Name => 'WADORSRetrievalSequence' }, |
|
3237
|
|
|
|
|
|
|
'0040,E030' => { VR => 'UI', Name => 'RepositoryUniqueID' }, |
|
3238
|
|
|
|
|
|
|
'0040,E031' => { VR => 'UI', Name => 'HomeCommunityID' }, |
|
3239
|
|
|
|
|
|
|
'0042,0010' => { VR => 'ST', Name => 'DocumentTitle' }, |
|
3240
|
|
|
|
|
|
|
'0042,0011' => { VR => 'OB', Name => 'EncapsulatedDocument' }, |
|
3241
|
|
|
|
|
|
|
'0042,0012' => { VR => 'LO', Name => 'MIMETypeOfEncapsulatedDocument' }, |
|
3242
|
|
|
|
|
|
|
'0042,0013' => { VR => 'SQ', Name => 'SourceInstanceSequence' }, |
|
3243
|
|
|
|
|
|
|
'0042,0014' => { VR => 'LO', Name => 'ListOfMIMETypes' }, |
|
3244
|
|
|
|
|
|
|
'0042,0015' => { VR => 'UL', Name => 'EncapsulatedDocumentLength' }, |
|
3245
|
|
|
|
|
|
|
# GEMS_PARM_01 (ref 4) |
|
3246
|
|
|
|
|
|
|
'0043,1001' => { VR => 'SS', Name => 'BitmapOfPrescanOptions' }, |
|
3247
|
|
|
|
|
|
|
'0043,1002' => { VR => 'SS', Name => 'GradientOffsetInX' }, |
|
3248
|
|
|
|
|
|
|
'0043,1003' => { VR => 'SS', Name => 'GradientOffsetInY' }, |
|
3249
|
|
|
|
|
|
|
'0043,1004' => { VR => 'SS', Name => 'GradientOffsetInZ' }, |
|
3250
|
|
|
|
|
|
|
'0043,1005' => { VR => 'SS', Name => 'ImgIsOriginalOrUnoriginal' }, |
|
3251
|
|
|
|
|
|
|
'0043,1006' => { VR => 'SS', Name => 'NumberOfEPIShots' }, |
|
3252
|
|
|
|
|
|
|
'0043,1007' => { VR => 'SS', Name => 'ViewsPerSegment' }, |
|
3253
|
|
|
|
|
|
|
'0043,1008' => { VR => 'SS', Name => 'RespiratoryRateBpm' }, |
|
3254
|
|
|
|
|
|
|
'0043,1009' => { VR => 'SS', Name => 'RespiratoryTriggerPoint' }, |
|
3255
|
|
|
|
|
|
|
'0043,100A' => { VR => 'SS', Name => 'TypeOfReceiverUsed' }, |
|
3256
|
|
|
|
|
|
|
'0043,100B' => { VR => 'DS', Name => 'PeakRateOfChangeOfGradientField' }, |
|
3257
|
|
|
|
|
|
|
'0043,100C' => { VR => 'DS', Name => 'LimitsInUnitsOfPercent' }, |
|
3258
|
|
|
|
|
|
|
'0043,100D' => { VR => 'DS', Name => 'PSDEstimatedLimit' }, |
|
3259
|
|
|
|
|
|
|
'0043,100E' => { VR => 'DS', Name => 'PSDEstimatedLimitInTeslaPerSecond' }, |
|
3260
|
|
|
|
|
|
|
'0043,100F' => { VR => 'DS', Name => 'Saravghead' }, |
|
3261
|
|
|
|
|
|
|
'0043,1010' => { VR => 'US', Name => 'WindowValue' }, |
|
3262
|
|
|
|
|
|
|
'0043,1011' => { VR => 'US', Name => 'TotalInputViews' }, |
|
3263
|
|
|
|
|
|
|
'0043,1012' => { VR => 'SS', Name => 'X-RayChain' }, |
|
3264
|
|
|
|
|
|
|
'0043,1013' => { VR => 'SS', Name => 'DeconKernelParameters' }, |
|
3265
|
|
|
|
|
|
|
'0043,1014' => { VR => 'SS', Name => 'CalibrationParameters' }, |
|
3266
|
|
|
|
|
|
|
'0043,1015' => { VR => 'SS', Name => 'TotalOutputViews' }, |
|
3267
|
|
|
|
|
|
|
'0043,1016' => { VR => 'SS', Name => 'NumberOfOverranges' }, |
|
3268
|
|
|
|
|
|
|
'0043,1017' => { VR => 'DS', Name => 'IBHImageScaleFactors' }, |
|
3269
|
|
|
|
|
|
|
'0043,1018' => { VR => 'DS', Name => 'BBHCoefficients' }, |
|
3270
|
|
|
|
|
|
|
'0043,1019' => { VR => 'SS', Name => 'NumberOfBBHChainsToBlend' }, |
|
3271
|
|
|
|
|
|
|
'0043,101A' => { VR => 'SL', Name => 'StartingChannelNumber' }, |
|
3272
|
|
|
|
|
|
|
'0043,101B' => { VR => 'SS', Name => 'PpscanParameters' }, |
|
3273
|
|
|
|
|
|
|
'0043,101C' => { VR => 'SS', Name => 'GEImageIntegrity' }, |
|
3274
|
|
|
|
|
|
|
'0043,101D' => { VR => 'SS', Name => 'LevelValue' }, |
|
3275
|
|
|
|
|
|
|
'0043,101E' => { VR => 'DS', Name => 'DeltaStartTime' }, |
|
3276
|
|
|
|
|
|
|
'0043,101F' => { VR => 'SL', Name => 'MaxOverrangesInAView' }, |
|
3277
|
|
|
|
|
|
|
'0043,1020' => { VR => 'DS', Name => 'AvgOverrangesAllViews' }, |
|
3278
|
|
|
|
|
|
|
'0043,1021' => { VR => 'SS', Name => 'CorrectedAfterGlowTerms' }, |
|
3279
|
|
|
|
|
|
|
'0043,1025' => { VR => 'SS', Name => 'ReferenceChannels' }, |
|
3280
|
|
|
|
|
|
|
'0043,1026' => { VR => 'US', Name => 'NoViewsRefChansBlocked' }, |
|
3281
|
|
|
|
|
|
|
'0043,1027' => { VR => 'SH', Name => 'ScanPitchRatio' }, |
|
3282
|
|
|
|
|
|
|
'0043,1028' => { VR => 'OB', Name => 'UniqueImageIden' }, |
|
3283
|
|
|
|
|
|
|
'0043,1029' => { VR => 'OB', Name => 'HistogramTables' }, |
|
3284
|
|
|
|
|
|
|
'0043,102A' => { VR => 'OB', Name => 'UserDefinedData' }, |
|
3285
|
|
|
|
|
|
|
'0043,102B' => { VR => 'SS', Name => 'PrivateScanOptions' }, |
|
3286
|
|
|
|
|
|
|
'0043,102C' => { VR => 'SS', Name => 'EffectiveEchoSpacing' }, |
|
3287
|
|
|
|
|
|
|
'0043,102D' => { VR => 'SH', Name => 'StringSlopField1' }, |
|
3288
|
|
|
|
|
|
|
'0043,102E' => { VR => 'SH', Name => 'StringSlopField2' }, |
|
3289
|
|
|
|
|
|
|
'0043,102F' => { VR => 'SS', Name => 'RawDataType' }, |
|
3290
|
|
|
|
|
|
|
'0043,1030' => { VR => 'SS', Name => 'RawDataType' }, |
|
3291
|
|
|
|
|
|
|
'0043,1031' => { VR => 'DS', Name => 'RACordOfTargetReconCenter' }, |
|
3292
|
|
|
|
|
|
|
'0043,1032' => { VR => 'SS', Name => 'RawDataType' }, |
|
3293
|
|
|
|
|
|
|
'0043,1033' => { VR => 'FL', Name => 'NegScanspacing' }, |
|
3294
|
|
|
|
|
|
|
'0043,1034' => { VR => 'IS', Name => 'OffsetFrequency' }, |
|
3295
|
|
|
|
|
|
|
'0043,1035' => { VR => 'UL', Name => 'UserUsageTag' }, |
|
3296
|
|
|
|
|
|
|
'0043,1036' => { VR => 'UL', Name => 'UserFillMapMSW' }, |
|
3297
|
|
|
|
|
|
|
'0043,1037' => { VR => 'UL', Name => 'UserFillMapLSW' }, |
|
3298
|
|
|
|
|
|
|
'0043,1038' => { VR => 'FL', Name => 'User25-48' }, |
|
3299
|
|
|
|
|
|
|
'0043,1039' => { VR => 'IS', Name => 'SlopInt6-9' }, |
|
3300
|
|
|
|
|
|
|
'0043,1040' => { VR => 'FL', Name => 'TriggerOnPosition' }, |
|
3301
|
|
|
|
|
|
|
'0043,1041' => { VR => 'FL', Name => 'DegreeOfRotation' }, |
|
3302
|
|
|
|
|
|
|
'0043,1042' => { VR => 'SL', Name => 'DASTriggerSource' }, |
|
3303
|
|
|
|
|
|
|
'0043,1043' => { VR => 'SL', Name => 'DASFpaGain' }, |
|
3304
|
|
|
|
|
|
|
'0043,1044' => { VR => 'SL', Name => 'DASOutputSource' }, |
|
3305
|
|
|
|
|
|
|
'0043,1045' => { VR => 'SL', Name => 'DASAdInput' }, |
|
3306
|
|
|
|
|
|
|
'0043,1046' => { VR => 'SL', Name => 'DASCalMode' }, |
|
3307
|
|
|
|
|
|
|
'0043,1047' => { VR => 'SL', Name => 'DASCalFrequency' }, |
|
3308
|
|
|
|
|
|
|
'0043,1048' => { VR => 'SL', Name => 'DASRegXm' }, |
|
3309
|
|
|
|
|
|
|
'0043,1049' => { VR => 'SL', Name => 'DASAutoZero' }, |
|
3310
|
|
|
|
|
|
|
'0043,104A' => { VR => 'SS', Name => 'StartingChannelOfView' }, |
|
3311
|
|
|
|
|
|
|
'0043,104B' => { VR => 'SL', Name => 'DASXmPattern' }, |
|
3312
|
|
|
|
|
|
|
'0043,104C' => { VR => 'SS', Name => 'TGGCTriggerMode' }, |
|
3313
|
|
|
|
|
|
|
'0043,104D' => { VR => 'FL', Name => 'StartScanToXrayOnDelay' }, |
|
3314
|
|
|
|
|
|
|
'0043,104E' => { VR => 'FL', Name => 'DurationOfXrayOn' }, |
|
3315
|
|
|
|
|
|
|
'0043,1060' => { VR => 'IS', Name => 'SlopInt10-17' }, |
|
3316
|
|
|
|
|
|
|
'0043,1061' => { VR => 'UI', Name => 'ScannerStudyEntityUID' }, |
|
3317
|
|
|
|
|
|
|
'0043,1062' => { VR => 'SH', Name => 'ScannerStudyID' }, |
|
3318
|
|
|
|
|
|
|
'0043,106f' => { VR => 'DS', Name => 'ScannerTableEntry' }, |
|
3319
|
|
|
|
|
|
|
# ? |
|
3320
|
|
|
|
|
|
|
'0044,0001' => { VR => 'ST', Name => 'ProductPackageIdentifier' }, |
|
3321
|
|
|
|
|
|
|
'0044,0002' => { VR => 'CS', Name => 'SubstanceAdministrationApproval' }, |
|
3322
|
|
|
|
|
|
|
'0044,0003' => { VR => 'LT', Name => 'ApprovalStatusFurtherDescription' }, |
|
3323
|
|
|
|
|
|
|
'0044,0004' => { VR => 'DT', Name => 'ApprovalStatusDateTime' }, |
|
3324
|
|
|
|
|
|
|
'0044,0007' => { VR => 'SQ', Name => 'ProductTypeCodeSequence' }, |
|
3325
|
|
|
|
|
|
|
'0044,0008' => { VR => 'LO', Name => 'ProductName' }, |
|
3326
|
|
|
|
|
|
|
'0044,0009' => { VR => 'LT', Name => 'ProductDescription' }, |
|
3327
|
|
|
|
|
|
|
'0044,000A' => { VR => 'LO', Name => 'ProductLotIdentifier' }, |
|
3328
|
|
|
|
|
|
|
'0044,000B' => { VR => 'DT', Name => 'ProductExpirationDateTime' }, |
|
3329
|
|
|
|
|
|
|
'0044,0010' => { VR => 'DT', Name => 'SubstanceAdministrationDateTime' }, |
|
3330
|
|
|
|
|
|
|
'0044,0011' => { VR => 'LO', Name => 'SubstanceAdministrationNotes' }, |
|
3331
|
|
|
|
|
|
|
'0044,0012' => { VR => 'LO', Name => 'SubstanceAdministrationDeviceID' }, |
|
3332
|
|
|
|
|
|
|
'0044,0013' => { VR => 'SQ', Name => 'ProductParameterSequence' }, |
|
3333
|
|
|
|
|
|
|
'0044,0019' => { VR => 'SQ', Name => 'SubstanceAdminParameterSeq' }, |
|
3334
|
|
|
|
|
|
|
# DICOM 2026 |
|
3335
|
|
|
|
|
|
|
'0044,0100' => { VR => 'SQ', Name => 'ApprovalSequence' }, |
|
3336
|
|
|
|
|
|
|
'0044,0101' => { VR => 'SQ', Name => 'AssertionCodeSequence' }, |
|
3337
|
|
|
|
|
|
|
'0044,0102' => { VR => 'UI', Name => 'AssertionUID' }, |
|
3338
|
|
|
|
|
|
|
'0044,0103' => { VR => 'SQ', Name => 'AsserterIdentificationSequence' }, |
|
3339
|
|
|
|
|
|
|
'0044,0104' => { VR => 'DT', Name => 'AssertionDateTime' }, |
|
3340
|
|
|
|
|
|
|
'0044,0105' => { VR => 'DT', Name => 'AssertionExpirationDateTime' }, |
|
3341
|
|
|
|
|
|
|
'0044,0106' => { VR => 'UT', Name => 'AssertionComments' }, |
|
3342
|
|
|
|
|
|
|
'0044,0107' => { VR => 'SQ', Name => 'RelatedAssertionSequence' }, |
|
3343
|
|
|
|
|
|
|
'0044,0108' => { VR => 'UI', Name => 'ReferencedAssertionUID' }, |
|
3344
|
|
|
|
|
|
|
'0044,0109' => { VR => 'SQ', Name => 'ApprovalSubjectSequence' }, |
|
3345
|
|
|
|
|
|
|
'0044,010A' => { VR => 'SQ', Name => 'OrganizationalRoleCodeSequence' }, |
|
3346
|
|
|
|
|
|
|
'0044,0110' => { VR => 'SQ', Name => 'RTAssertionsSequence' }, |
|
3347
|
|
|
|
|
|
|
# GEMS_HELIOS_01 (ref 4) |
|
3348
|
|
|
|
|
|
|
'0045,1001' => { VR => 'LO', Name => 'NumberOfMacroRowsInDetector' }, |
|
3349
|
|
|
|
|
|
|
'0045,1002' => { VR => 'FL', Name => 'MacroWidthAtISOCenter' }, |
|
3350
|
|
|
|
|
|
|
'0045,1003' => { VR => 'SS', Name => 'DASType' }, |
|
3351
|
|
|
|
|
|
|
'0045,1004' => { VR => 'SS', Name => 'DASGain' }, |
|
3352
|
|
|
|
|
|
|
'0045,1005' => { VR => 'SS', Name => 'DASTemperature' }, |
|
3353
|
|
|
|
|
|
|
'0045,1006' => { VR => 'CS', Name => 'TableDirectionInOrOut' }, |
|
3354
|
|
|
|
|
|
|
'0045,1007' => { VR => 'FL', Name => 'ZSmoothingFactor' }, |
|
3355
|
|
|
|
|
|
|
'0045,1008' => { VR => 'SS', Name => 'ViewWeightingMode' }, |
|
3356
|
|
|
|
|
|
|
'0045,1009' => { VR => 'SS', Name => 'SigmaRowNumberWhichRowsWereUsed' }, |
|
3357
|
|
|
|
|
|
|
'0045,100A' => { VR => 'FL', Name => 'MinimumDasValueFoundInTheScanData' }, |
|
3358
|
|
|
|
|
|
|
'0045,100B' => { VR => 'FL', Name => 'MaximumOffsetShiftValueUsed' }, |
|
3359
|
|
|
|
|
|
|
'0045,100C' => { VR => 'SS', Name => 'NumberOfViewsShifted' }, |
|
3360
|
|
|
|
|
|
|
'0045,100D' => { VR => 'SS', Name => 'ZTrackingFlag' }, |
|
3361
|
|
|
|
|
|
|
'0045,100E' => { VR => 'FL', Name => 'MeanZError' }, |
|
3362
|
|
|
|
|
|
|
'0045,100F' => { VR => 'FL', Name => 'ZTrackingMaximumError' }, |
|
3363
|
|
|
|
|
|
|
'0045,1010' => { VR => 'SS', Name => 'StartingViewForRow2a' }, |
|
3364
|
|
|
|
|
|
|
'0045,1011' => { VR => 'SS', Name => 'NumberOfViewsInRow2a' }, |
|
3365
|
|
|
|
|
|
|
'0045,1012' => { VR => 'SS', Name => 'StartingViewForRow1a' }, |
|
3366
|
|
|
|
|
|
|
'0045,1013' => { VR => 'SS', Name => 'SigmaMode' }, |
|
3367
|
|
|
|
|
|
|
'0045,1014' => { VR => 'SS', Name => 'NumberOfViewsInRow1a' }, |
|
3368
|
|
|
|
|
|
|
'0045,1015' => { VR => 'SS', Name => 'StartingViewForRow2b' }, |
|
3369
|
|
|
|
|
|
|
'0045,1016' => { VR => 'SS', Name => 'NumberOfViewsInRow2b' }, |
|
3370
|
|
|
|
|
|
|
'0045,1017' => { VR => 'SS', Name => 'StartingViewForRow1b' }, |
|
3371
|
|
|
|
|
|
|
'0045,1018' => { VR => 'SS', Name => 'NumberOfViewsInRow1b' }, |
|
3372
|
|
|
|
|
|
|
'0045,1019' => { VR => 'SS', Name => 'AirFilterCalibrationDate' }, |
|
3373
|
|
|
|
|
|
|
'0045,101A' => { VR => 'SS', Name => 'AirFilterCalibrationTime' }, |
|
3374
|
|
|
|
|
|
|
'0045,101B' => { VR => 'SS', Name => 'PhantomCalibrationDate' }, |
|
3375
|
|
|
|
|
|
|
'0045,101C' => { VR => 'SS', Name => 'PhantomCalibrationTime' }, |
|
3376
|
|
|
|
|
|
|
'0045,101D' => { VR => 'SS', Name => 'ZSlopeCalibrationDate' }, |
|
3377
|
|
|
|
|
|
|
'0045,101E' => { VR => 'SS', Name => 'ZSlopeCalibrationTime' }, |
|
3378
|
|
|
|
|
|
|
'0045,101F' => { VR => 'SS', Name => 'CrosstalkCalibrationDate' }, |
|
3379
|
|
|
|
|
|
|
'0045,1020' => { VR => 'SS', Name => 'CrosstalkCalibrationTime' }, |
|
3380
|
|
|
|
|
|
|
'0045,1021' => { VR => 'SS', Name => 'IterboneOptionFlag' }, |
|
3381
|
|
|
|
|
|
|
'0045,1022' => { VR => 'SS', Name => 'PeristalticFlagOption' }, |
|
3382
|
|
|
|
|
|
|
'0046,0012' => { VR => 'LO', Name => 'LensDescription' }, |
|
3383
|
|
|
|
|
|
|
'0046,0014' => { VR => 'SQ', Name => 'RightLensSequence' }, |
|
3384
|
|
|
|
|
|
|
'0046,0015' => { VR => 'SQ', Name => 'LeftLensSequence' }, |
|
3385
|
|
|
|
|
|
|
'0046,0016' => { VR => 'SQ', Name => 'UnspecifiedLateralityLensSequence' }, |
|
3386
|
|
|
|
|
|
|
'0046,0018' => { VR => 'SQ', Name => 'CylinderSequence' }, |
|
3387
|
|
|
|
|
|
|
'0046,0028' => { VR => 'SQ', Name => 'PrismSequence' }, |
|
3388
|
|
|
|
|
|
|
'0046,0030' => { VR => 'FD', Name => 'HorizontalPrismPower' }, |
|
3389
|
|
|
|
|
|
|
'0046,0032' => { VR => 'CS', Name => 'HorizontalPrismBase' }, |
|
3390
|
|
|
|
|
|
|
'0046,0034' => { VR => 'FD', Name => 'VerticalPrismPower' }, |
|
3391
|
|
|
|
|
|
|
'0046,0036' => { VR => 'CS', Name => 'VerticalPrismBase' }, |
|
3392
|
|
|
|
|
|
|
'0046,0038' => { VR => 'CS', Name => 'LensSegmentType' }, |
|
3393
|
|
|
|
|
|
|
'0046,0040' => { VR => 'FD', Name => 'OpticalTransmittance' }, |
|
3394
|
|
|
|
|
|
|
'0046,0042' => { VR => 'FD', Name => 'ChannelWidth' }, |
|
3395
|
|
|
|
|
|
|
'0046,0044' => { VR => 'FD', Name => 'PupilSize' }, |
|
3396
|
|
|
|
|
|
|
'0046,0046' => { VR => 'FD', Name => 'CornealSize' }, |
|
3397
|
|
|
|
|
|
|
'0046,0047' => { VR => 'SQ', Name => 'CornealSizeSequence' }, |
|
3398
|
|
|
|
|
|
|
'0046,0050' => { VR => 'SQ', Name => 'AutorefractionRightEyeSequence' }, |
|
3399
|
|
|
|
|
|
|
'0046,0052' => { VR => 'SQ', Name => 'AutorefractionLeftEyeSequence' }, |
|
3400
|
|
|
|
|
|
|
'0046,0060' => { VR => 'FD', Name => 'DistancePupillaryDistance' }, |
|
3401
|
|
|
|
|
|
|
'0046,0062' => { VR => 'FD', Name => 'NearPupillaryDistance' }, |
|
3402
|
|
|
|
|
|
|
'0046,0063' => { VR => 'FD', Name => 'IntermediatePupillaryDistance' }, |
|
3403
|
|
|
|
|
|
|
'0046,0064' => { VR => 'FD', Name => 'OtherPupillaryDistance' }, |
|
3404
|
|
|
|
|
|
|
'0046,0070' => { VR => 'SQ', Name => 'KeratometryRightEyeSequence' }, |
|
3405
|
|
|
|
|
|
|
'0046,0071' => { VR => 'SQ', Name => 'KeratometryLeftEyeSequence' }, |
|
3406
|
|
|
|
|
|
|
'0046,0074' => { VR => 'SQ', Name => 'SteepKeratometricAxisSequence' }, |
|
3407
|
|
|
|
|
|
|
'0046,0075' => { VR => 'FD', Name => 'RadiusOfCurvature' }, |
|
3408
|
|
|
|
|
|
|
'0046,0076' => { VR => 'FD', Name => 'KeratometricPower' }, |
|
3409
|
|
|
|
|
|
|
'0046,0077' => { VR => 'FD', Name => 'KeratometricAxis' }, |
|
3410
|
|
|
|
|
|
|
'0046,0080' => { VR => 'SQ', Name => 'FlatKeratometricAxisSequence' }, |
|
3411
|
|
|
|
|
|
|
'0046,0092' => { VR => 'CS', Name => 'BackgroundColor' }, |
|
3412
|
|
|
|
|
|
|
'0046,0094' => { VR => 'CS', Name => 'Optotype' }, |
|
3413
|
|
|
|
|
|
|
'0046,0095' => { VR => 'CS', Name => 'OptotypePresentation' }, |
|
3414
|
|
|
|
|
|
|
'0046,0097' => { VR => 'SQ', Name => 'SubjectiveRefractionRightEyeSeq' }, |
|
3415
|
|
|
|
|
|
|
'0046,0098' => { VR => 'SQ', Name => 'SubjectiveRefractionLeftEyeSeq' }, |
|
3416
|
|
|
|
|
|
|
'0046,0100' => { VR => 'SQ', Name => 'AddNearSequence' }, |
|
3417
|
|
|
|
|
|
|
'0046,0101' => { VR => 'SQ', Name => 'AddIntermediateSequence' }, |
|
3418
|
|
|
|
|
|
|
'0046,0102' => { VR => 'SQ', Name => 'AddOtherSequence' }, |
|
3419
|
|
|
|
|
|
|
'0046,0104' => { VR => 'FD', Name => 'AddPower' }, |
|
3420
|
|
|
|
|
|
|
'0046,0106' => { VR => 'FD', Name => 'ViewingDistance' }, |
|
3421
|
|
|
|
|
|
|
'0046,0110' => { VR => 'SQ', Name => 'CorneaMeasurementsSequence' }, |
|
3422
|
|
|
|
|
|
|
'0046,0111' => { VR => 'SQ', Name => 'SourceOfCorneaMeasDataCodeSeq' }, |
|
3423
|
|
|
|
|
|
|
'0046,0112' => { VR => 'SQ', Name => 'SteepCornealAxisSequence' }, |
|
3424
|
|
|
|
|
|
|
'0046,0113' => { VR => 'SQ', Name => 'FlatCornealAxisSequence' }, |
|
3425
|
|
|
|
|
|
|
'0046,0114' => { VR => 'FD', Name => 'CornealPower' }, |
|
3426
|
|
|
|
|
|
|
'0046,0115' => { VR => 'FD', Name => 'CornealAxis' }, |
|
3427
|
|
|
|
|
|
|
'0046,0116' => { VR => 'SQ', Name => 'CorneaMeasurementMethodCodeSeq' }, |
|
3428
|
|
|
|
|
|
|
'0046,0117' => { VR => 'FL', Name => 'RefractiveIndexOfCornea' }, |
|
3429
|
|
|
|
|
|
|
'0046,0118' => { VR => 'FL', Name => 'RefractiveIndexOfAqueousHumor' }, |
|
3430
|
|
|
|
|
|
|
'0046,0121' => { VR => 'SQ', Name => 'VisualAcuityTypeCodeSequence' }, |
|
3431
|
|
|
|
|
|
|
'0046,0122' => { VR => 'SQ', Name => 'VisualAcuityRightEyeSequence' }, |
|
3432
|
|
|
|
|
|
|
'0046,0123' => { VR => 'SQ', Name => 'VisualAcuityLeftEyeSequence' }, |
|
3433
|
|
|
|
|
|
|
'0046,0124' => { VR => 'SQ', Name => 'VisualAcuityBothEyesOpenSequence' }, |
|
3434
|
|
|
|
|
|
|
'0046,0125' => { VR => 'CS', Name => 'ViewingDistanceType' }, |
|
3435
|
|
|
|
|
|
|
'0046,0135' => { VR => 'SS', Name => 'VisualAcuityModifiers' }, |
|
3436
|
|
|
|
|
|
|
'0046,0137' => { VR => 'FD', Name => 'DecimalVisualAcuity' }, |
|
3437
|
|
|
|
|
|
|
'0046,0139' => { VR => 'LO', Name => 'OptotypeDetailedDefinition' }, |
|
3438
|
|
|
|
|
|
|
'0046,0145' => { VR => 'SQ', Name => 'ReferencedRefractiveMeasSeq' }, |
|
3439
|
|
|
|
|
|
|
'0046,0146' => { VR => 'FD', Name => 'SpherePower' }, |
|
3440
|
|
|
|
|
|
|
'0046,0147' => { VR => 'FD', Name => 'CylinderPower' }, |
|
3441
|
|
|
|
|
|
|
'0046,0201' => { VR => 'CS', Name => 'CornealTopographySurface' }, |
|
3442
|
|
|
|
|
|
|
'0046,0202' => { VR => 'FL', Name => 'CornealVertexLocation' }, |
|
3443
|
|
|
|
|
|
|
'0046,0203' => { VR => 'FL', Name => 'PupilCentroidXCoordinate' }, |
|
3444
|
|
|
|
|
|
|
'0046,0204' => { VR => 'FL', Name => 'PupilCentroidYCoordinate' }, |
|
3445
|
|
|
|
|
|
|
'0046,0205' => { VR => 'FL', Name => 'EquivalentPupilRadius' }, |
|
3446
|
|
|
|
|
|
|
'0046,0207' => { VR => 'SQ', Name => 'CornealTopographyMapTypeCodeSeq' }, |
|
3447
|
|
|
|
|
|
|
'0046,0208' => { VR => 'IS', Name => 'VerticesOfTheOutlineOfPupil' }, |
|
3448
|
|
|
|
|
|
|
'0046,0210' => { VR => 'SQ', Name => 'CornealTopographyMappingNormalsSeq' }, |
|
3449
|
|
|
|
|
|
|
'0046,0211' => { VR => 'SQ', Name => 'MaximumCornealCurvatureSequence' }, |
|
3450
|
|
|
|
|
|
|
'0046,0212' => { VR => 'FL', Name => 'MaximumCornealCurvature' }, |
|
3451
|
|
|
|
|
|
|
'0046,0213' => { VR => 'FL', Name => 'MaximumCornealCurvatureLocation' }, |
|
3452
|
|
|
|
|
|
|
'0046,0215' => { VR => 'SQ', Name => 'MinimumKeratometricSequence' }, |
|
3453
|
|
|
|
|
|
|
'0046,0218' => { VR => 'SQ', Name => 'SimulatedKeratometricCylinderSeq' }, |
|
3454
|
|
|
|
|
|
|
'0046,0220' => { VR => 'FL', Name => 'AverageCornealPower' }, |
|
3455
|
|
|
|
|
|
|
'0046,0224' => { VR => 'FL', Name => 'CornealISValue' }, |
|
3456
|
|
|
|
|
|
|
'0046,0227' => { VR => 'FL', Name => 'AnalyzedArea' }, |
|
3457
|
|
|
|
|
|
|
'0046,0230' => { VR => 'FL', Name => 'SurfaceRegularityIndex' }, |
|
3458
|
|
|
|
|
|
|
'0046,0232' => { VR => 'FL', Name => 'SurfaceAsymmetryIndex' }, |
|
3459
|
|
|
|
|
|
|
'0046,0234' => { VR => 'FL', Name => 'CornealEccentricityIndex' }, |
|
3460
|
|
|
|
|
|
|
'0046,0236' => { VR => 'FL', Name => 'KeratoconusPredictionIndex' }, |
|
3461
|
|
|
|
|
|
|
'0046,0238' => { VR => 'FL', Name => 'DecimalPotentialVisualAcuity' }, |
|
3462
|
|
|
|
|
|
|
'0046,0242' => { VR => 'CS', Name => 'CornealTopoMapQualityEvaluation' }, |
|
3463
|
|
|
|
|
|
|
'0046,0244' => { VR => 'SQ', Name => 'SourceImageCornealProcessedDataSeq' }, |
|
3464
|
|
|
|
|
|
|
'0046,0247' => { VR => 'FL', Name => 'CornealPointLocation' }, |
|
3465
|
|
|
|
|
|
|
'0046,0248' => { VR => 'CS', Name => 'CornealPointEstimated' }, |
|
3466
|
|
|
|
|
|
|
'0046,0249' => { VR => 'FL', Name => 'AxialPower' }, |
|
3467
|
|
|
|
|
|
|
'0046,0250' => { VR => 'FL', Name => 'TangentialPower' }, |
|
3468
|
|
|
|
|
|
|
'0046,0251' => { VR => 'FL', Name => 'RefractivePower' }, |
|
3469
|
|
|
|
|
|
|
'0046,0252' => { VR => 'FL', Name => 'RelativeElevation' }, |
|
3470
|
|
|
|
|
|
|
'0046,0253' => { VR => 'FL', Name => 'CornealWavefront' }, |
|
3471
|
|
|
|
|
|
|
'0048,0001' => { VR => 'FL', Name => 'ImagedVolumeWidth' }, |
|
3472
|
|
|
|
|
|
|
'0048,0002' => { VR => 'FL', Name => 'ImagedVolumeHeight' }, |
|
3473
|
|
|
|
|
|
|
'0048,0003' => { VR => 'FL', Name => 'ImagedVolumeDepth' }, |
|
3474
|
|
|
|
|
|
|
'0048,0006' => { VR => 'UL', Name => 'TotalPixelMatrixColumns' }, |
|
3475
|
|
|
|
|
|
|
'0048,0007' => { VR => 'UL', Name => 'TotalPixelMatrixRows' }, |
|
3476
|
|
|
|
|
|
|
'0048,0008' => { VR => 'SQ', Name => 'TotalPixelMatrixOriginSequence' }, |
|
3477
|
|
|
|
|
|
|
'0048,0010' => { VR => 'CS', Name => 'SpecimenLabelInImage' }, |
|
3478
|
|
|
|
|
|
|
'0048,0011' => { VR => 'CS', Name => 'FocusMethod' }, |
|
3479
|
|
|
|
|
|
|
'0048,0012' => { VR => 'CS', Name => 'ExtendedDepthOfField' }, |
|
3480
|
|
|
|
|
|
|
'0048,0013' => { VR => 'US', Name => 'NumberOfFocalPlanes' }, |
|
3481
|
|
|
|
|
|
|
'0048,0014' => { VR => 'FL', Name => 'DistanceBetweenFocalPlanes' }, |
|
3482
|
|
|
|
|
|
|
'0048,0015' => { VR => 'US', Name => 'RecommendedAbsentPixelCIELabValue' }, |
|
3483
|
|
|
|
|
|
|
'0048,0100' => { VR => 'SQ', Name => 'IlluminatorTypeCodeSequence' }, |
|
3484
|
|
|
|
|
|
|
'0048,0102' => { VR => 'DS', Name => 'ImageOrientationSlide' }, |
|
3485
|
|
|
|
|
|
|
'0048,0105' => { VR => 'SQ', Name => 'OpticalPathSequence' }, |
|
3486
|
|
|
|
|
|
|
'0048,0106' => { VR => 'SH', Name => 'OpticalPathIdentifier' }, |
|
3487
|
|
|
|
|
|
|
'0048,0107' => { VR => 'ST', Name => 'OpticalPathDescription' }, |
|
3488
|
|
|
|
|
|
|
'0048,0108' => { VR => 'SQ', Name => 'IlluminationColorCodeSequence' }, |
|
3489
|
|
|
|
|
|
|
'0048,0110' => { VR => 'SQ', Name => 'SpecimenReferenceSequence' }, |
|
3490
|
|
|
|
|
|
|
'0048,0111' => { VR => 'DS', Name => 'CondenserLensPower' }, |
|
3491
|
|
|
|
|
|
|
'0048,0112' => { VR => 'DS', Name => 'ObjectiveLensPower' }, |
|
3492
|
|
|
|
|
|
|
'0048,0113' => { VR => 'DS', Name => 'ObjectiveLensNumericalAperture' }, |
|
3493
|
|
|
|
|
|
|
'0048,0114' => { VR => 'CS', Name => 'ConfocalMode' }, |
|
3494
|
|
|
|
|
|
|
'0048,0115' => { VR => 'CS', Name => 'TissueLocation' }, |
|
3495
|
|
|
|
|
|
|
'0048,0116' => { VR => 'SQ', Name => 'ConfocalMicroscopyImageFrameSeq' }, |
|
3496
|
|
|
|
|
|
|
'0048,0117' => { VR => 'FD', Name => 'ImageAcquisitionDepth' }, |
|
3497
|
|
|
|
|
|
|
'0048,0120' => { VR => 'SQ', Name => 'PaletteColorLookupTableSequence' }, |
|
3498
|
|
|
|
|
|
|
'0048,0200' => { VR => 'SQ', Name => 'ReferencedImageNavigationSequence' }, |
|
3499
|
|
|
|
|
|
|
'0048,0201' => { VR => 'US', Name => 'TopLeftHandCornerOfLocalizerArea' }, |
|
3500
|
|
|
|
|
|
|
'0048,0202' => { VR => 'US', Name => 'BottomRightCornerOfLocalizerArea' }, |
|
3501
|
|
|
|
|
|
|
'0048,0207' => { VR => 'SQ', Name => 'OpticalPathIdentificationSequence' }, |
|
3502
|
|
|
|
|
|
|
'0048,021A' => { VR => 'SQ', Name => 'PlanePositionSlideSequence' }, |
|
3503
|
|
|
|
|
|
|
'0048,021E' => { VR => 'SL', Name => 'ColumnPosInTotalImagePixelMatrix' }, |
|
3504
|
|
|
|
|
|
|
'0048,021F' => { VR => 'SL', Name => 'RowPositionInTotalImagePixelMatrix' }, |
|
3505
|
|
|
|
|
|
|
'0048,0301' => { VR => 'CS', Name => 'PixelOriginInterpretation' }, |
|
3506
|
|
|
|
|
|
|
'0048,0302' => { VR => 'UL', Name => 'NumberOfOpticalPaths' }, |
|
3507
|
|
|
|
|
|
|
'0048,0303' => { VR => 'UL', Name => 'TotalPixelMatrixFocalPlanes' }, |
|
3508
|
|
|
|
|
|
|
'0048,0304' => { VR => 'CS', Name => 'TilesOverlap' }, |
|
3509
|
|
|
|
|
|
|
# calibration group |
|
3510
|
|
|
|
|
|
|
'0050,0004' => { VR => 'CS', Name => 'CalibrationImage' }, |
|
3511
|
|
|
|
|
|
|
'0050,0010' => { VR => 'SQ', Name => 'DeviceSequence' }, |
|
3512
|
|
|
|
|
|
|
'0050,0012' => { VR => 'SQ', Name => 'ContainerComponentTypeCodeSequence' }, |
|
3513
|
|
|
|
|
|
|
'0050,0013' => { VR => 'FD', Name => 'ContainerComponentThickness' }, |
|
3514
|
|
|
|
|
|
|
'0050,0014' => { VR => 'DS', Name => 'DeviceLength' }, |
|
3515
|
|
|
|
|
|
|
'0050,0015' => { VR => 'FD', Name => 'ContainerComponentWidth' }, |
|
3516
|
|
|
|
|
|
|
'0050,0016' => { VR => 'DS', Name => 'DeviceDiameter' }, |
|
3517
|
|
|
|
|
|
|
'0050,0017' => { VR => 'CS', Name => 'DeviceDiameterUnits' }, |
|
3518
|
|
|
|
|
|
|
'0050,0018' => { VR => 'DS', Name => 'DeviceVolume' }, |
|
3519
|
|
|
|
|
|
|
'0050,0019' => { VR => 'DS', Name => 'InterMarkerDistance' }, |
|
3520
|
|
|
|
|
|
|
'0050,001A' => { VR => 'CS', Name => 'ContainerComponentMaterial' }, |
|
3521
|
|
|
|
|
|
|
'0050,001B' => { VR => 'LO', Name => 'ContainerComponentID' }, |
|
3522
|
|
|
|
|
|
|
'0050,001C' => { VR => 'FD', Name => 'ContainerComponentLength' }, |
|
3523
|
|
|
|
|
|
|
'0050,001D' => { VR => 'FD', Name => 'ContainerComponentDiameter' }, |
|
3524
|
|
|
|
|
|
|
'0050,001E' => { VR => 'LO', Name => 'ContainerComponentDescription' }, |
|
3525
|
|
|
|
|
|
|
'0050,0020' => { VR => 'LO', Name => 'DeviceDescription' }, |
|
3526
|
|
|
|
|
|
|
'0050,0021' => { VR => 'ST', Name => 'LongDeviceDescription' }, |
|
3527
|
|
|
|
|
|
|
'0052,0001' => { VR => 'FL', Name => 'ContrastBolusIngredientVolPercent' }, |
|
3528
|
|
|
|
|
|
|
'0052,0002' => { VR => 'FD', Name => 'OCTFocalDistance' }, |
|
3529
|
|
|
|
|
|
|
'0052,0003' => { VR => 'FD', Name => 'BeamSpotSize' }, |
|
3530
|
|
|
|
|
|
|
'0052,0004' => { VR => 'FD', Name => 'EffectiveRefractiveIndex' }, |
|
3531
|
|
|
|
|
|
|
'0052,0006' => { VR => 'CS', Name => 'OCTAcquisitionDomain' }, |
|
3532
|
|
|
|
|
|
|
'0052,0007' => { VR => 'FD', Name => 'OCTOpticalCenterWavelength' }, |
|
3533
|
|
|
|
|
|
|
'0052,0008' => { VR => 'FD', Name => 'AxialResolution' }, |
|
3534
|
|
|
|
|
|
|
'0052,0009' => { VR => 'FD', Name => 'RangingDepth' }, |
|
3535
|
|
|
|
|
|
|
'0052,0011' => { VR => 'FD', Name => 'ALineRate' }, |
|
3536
|
|
|
|
|
|
|
'0052,0012' => { VR => 'US', Name => 'ALinesPerFrame' }, |
|
3537
|
|
|
|
|
|
|
'0052,0013' => { VR => 'FD', Name => 'CatheterRotationalRate' }, |
|
3538
|
|
|
|
|
|
|
'0052,0014' => { VR => 'FD', Name => 'ALinePixelSpacing' }, |
|
3539
|
|
|
|
|
|
|
'0052,0016' => { VR => 'SQ', Name => 'ModeOfPercutaneousAccessSequence' }, |
|
3540
|
|
|
|
|
|
|
'0052,0025' => { VR => 'SQ', Name => 'IntravascularOCTFrameTypeSequence' }, |
|
3541
|
|
|
|
|
|
|
'0052,0026' => { VR => 'CS', Name => 'OCTZOffsetApplied' }, |
|
3542
|
|
|
|
|
|
|
'0052,0027' => { VR => 'SQ', Name => 'IntravascularFrameContentSequence' }, |
|
3543
|
|
|
|
|
|
|
'0052,0028' => { VR => 'FD', Name => 'IntravascularLongitudinalDistance' }, |
|
3544
|
|
|
|
|
|
|
'0052,0029' => { VR => 'SQ', Name => 'IntravascularOCTFrameContentSeq' }, |
|
3545
|
|
|
|
|
|
|
'0052,0030' => { VR => 'SS', Name => 'OCTZOffsetCorrection' }, |
|
3546
|
|
|
|
|
|
|
'0052,0031' => { VR => 'CS', Name => 'CatheterDirectionOfRotation' }, |
|
3547
|
|
|
|
|
|
|
'0052,0033' => { VR => 'FD', Name => 'SeamLineLocation' }, |
|
3548
|
|
|
|
|
|
|
'0052,0034' => { VR => 'FD', Name => 'FirstALineLocation' }, |
|
3549
|
|
|
|
|
|
|
'0052,0036' => { VR => 'US', Name => 'SeamLineIndex' }, |
|
3550
|
|
|
|
|
|
|
'0052,0038' => { VR => 'US', Name => 'NumberOfPaddedALines' }, |
|
3551
|
|
|
|
|
|
|
'0052,0039' => { VR => 'CS', Name => 'InterpolationType' }, |
|
3552
|
|
|
|
|
|
|
'0052,003A' => { VR => 'CS', Name => 'RefractiveIndexApplied' }, |
|
3553
|
|
|
|
|
|
|
# nuclear acquisition group |
|
3554
|
|
|
|
|
|
|
'0054,0010' => { VR => 'US', Name => 'EnergyWindowVector' }, |
|
3555
|
|
|
|
|
|
|
'0054,0011' => { VR => 'US', Name => 'NumberOfEnergyWindows' }, |
|
3556
|
|
|
|
|
|
|
'0054,0012' => { VR => 'SQ', Name => 'EnergyWindowInformationSequence' }, |
|
3557
|
|
|
|
|
|
|
'0054,0013' => { VR => 'SQ', Name => 'EnergyWindowRangeSequence' }, |
|
3558
|
|
|
|
|
|
|
'0054,0014' => { VR => 'DS', Name => 'EnergyWindowLowerLimit' }, |
|
3559
|
|
|
|
|
|
|
'0054,0015' => { VR => 'DS', Name => 'EnergyWindowUpperLimit' }, |
|
3560
|
|
|
|
|
|
|
'0054,0016' => { VR => 'SQ', Name => 'RadiopharmaceuticalInformationSeq' }, |
|
3561
|
|
|
|
|
|
|
'0054,0017' => { VR => 'IS', Name => 'ResidualSyringeCounts' }, |
|
3562
|
|
|
|
|
|
|
'0054,0018' => { VR => 'SH', Name => 'EnergyWindowName' }, |
|
3563
|
|
|
|
|
|
|
'0054,0020' => { VR => 'US', Name => 'DetectorVector' }, |
|
3564
|
|
|
|
|
|
|
'0054,0021' => { VR => 'US', Name => 'NumberOfDetectors' }, |
|
3565
|
|
|
|
|
|
|
'0054,0022' => { VR => 'SQ', Name => 'DetectorInformationSequence' }, |
|
3566
|
|
|
|
|
|
|
'0054,0030' => { VR => 'US', Name => 'PhaseVector' }, |
|
3567
|
|
|
|
|
|
|
'0054,0031' => { VR => 'US', Name => 'NumberOfPhases' }, |
|
3568
|
|
|
|
|
|
|
'0054,0032' => { VR => 'SQ', Name => 'PhaseInformationSequence' }, |
|
3569
|
|
|
|
|
|
|
'0054,0033' => { VR => 'US', Name => 'NumberOfFramesInPhase' }, |
|
3570
|
|
|
|
|
|
|
'0054,0036' => { VR => 'IS', Name => 'PhaseDelay' }, |
|
3571
|
|
|
|
|
|
|
'0054,0038' => { VR => 'IS', Name => 'PauseBetweenFrames' }, |
|
3572
|
|
|
|
|
|
|
'0054,0039' => { VR => 'CS', Name => 'PhaseDescription' }, |
|
3573
|
|
|
|
|
|
|
'0054,0050' => { VR => 'US', Name => 'RotationVector' }, |
|
3574
|
|
|
|
|
|
|
'0054,0051' => { VR => 'US', Name => 'NumberOfRotations' }, |
|
3575
|
|
|
|
|
|
|
'0054,0052' => { VR => 'SQ', Name => 'RotationInformationSequence' }, |
|
3576
|
|
|
|
|
|
|
'0054,0053' => { VR => 'US', Name => 'NumberOfFramesInRotation' }, |
|
3577
|
|
|
|
|
|
|
'0054,0060' => { VR => 'US', Name => 'RRIntervalVector' }, |
|
3578
|
|
|
|
|
|
|
'0054,0061' => { VR => 'US', Name => 'NumberOfRRIntervals' }, |
|
3579
|
|
|
|
|
|
|
'0054,0062' => { VR => 'SQ', Name => 'GatedInformationSequence' }, |
|
3580
|
|
|
|
|
|
|
'0054,0063' => { VR => 'SQ', Name => 'DataInformationSequence' }, |
|
3581
|
|
|
|
|
|
|
'0054,0070' => { VR => 'US', Name => 'TimeSlotVector' }, |
|
3582
|
|
|
|
|
|
|
'0054,0071' => { VR => 'US', Name => 'NumberOfTimeSlots' }, |
|
3583
|
|
|
|
|
|
|
'0054,0072' => { VR => 'SQ', Name => 'TimeSlotInformationSequence' }, |
|
3584
|
|
|
|
|
|
|
'0054,0073' => { VR => 'DS', Name => 'TimeSlotTime' }, |
|
3585
|
|
|
|
|
|
|
'0054,0080' => { VR => 'US', Name => 'SliceVector' }, |
|
3586
|
|
|
|
|
|
|
'0054,0081' => { VR => 'US', Name => 'NumberOfSlices' }, |
|
3587
|
|
|
|
|
|
|
'0054,0090' => { VR => 'US', Name => 'AngularViewVector' }, |
|
3588
|
|
|
|
|
|
|
'0054,0100' => { VR => 'US', Name => 'TimeSliceVector' }, |
|
3589
|
|
|
|
|
|
|
'0054,0101' => { VR => 'US', Name => 'NumberOfTimeSlices' }, |
|
3590
|
|
|
|
|
|
|
'0054,0200' => { VR => 'DS', Name => 'StartAngle' }, |
|
3591
|
|
|
|
|
|
|
'0054,0202' => { VR => 'CS', Name => 'TypeOfDetectorMotion' }, |
|
3592
|
|
|
|
|
|
|
'0054,0210' => { VR => 'IS', Name => 'TriggerVector' }, |
|
3593
|
|
|
|
|
|
|
'0054,0211' => { VR => 'US', Name => 'NumberOfTriggersInPhase' }, |
|
3594
|
|
|
|
|
|
|
'0054,0220' => { VR => 'SQ', Name => 'ViewCodeSequence' }, |
|
3595
|
|
|
|
|
|
|
'0054,0222' => { VR => 'SQ', Name => 'ViewModifierCodeSequence' }, |
|
3596
|
|
|
|
|
|
|
'0054,0300' => { VR => 'SQ', Name => 'RadionuclideCodeSequence' }, |
|
3597
|
|
|
|
|
|
|
'0054,0302' => { VR => 'SQ', Name => 'AdministrationRouteCodeSequence' }, |
|
3598
|
|
|
|
|
|
|
'0054,0304' => { VR => 'SQ', Name => 'RadiopharmaceuticalCodeSequence' }, |
|
3599
|
|
|
|
|
|
|
'0054,0306' => { VR => 'SQ', Name => 'CalibrationDataSequence' }, |
|
3600
|
|
|
|
|
|
|
'0054,0308' => { VR => 'US', Name => 'EnergyWindowNumber' }, |
|
3601
|
|
|
|
|
|
|
'0054,0400' => { VR => 'SH', Name => 'ImageID' }, |
|
3602
|
|
|
|
|
|
|
'0054,0410' => { VR => 'SQ', Name => 'PatientOrientationCodeSequence' }, |
|
3603
|
|
|
|
|
|
|
'0054,0412' => { VR => 'SQ', Name => 'PatientOrientationModifierCodeSeq' }, |
|
3604
|
|
|
|
|
|
|
'0054,0414' => { VR => 'SQ', Name => 'PatientGantryRelationshipCodeSeq' }, |
|
3605
|
|
|
|
|
|
|
'0054,0500' => { VR => 'CS', Name => 'SliceProgressionDirection' }, |
|
3606
|
|
|
|
|
|
|
'0054,0501' => { VR => 'CS', Name => 'ScanProgressionDirection' }, |
|
3607
|
|
|
|
|
|
|
'0054,1000' => { VR => 'CS', Name => 'SeriesType' }, |
|
3608
|
|
|
|
|
|
|
'0054,1001' => { VR => 'CS', Name => 'Units' }, |
|
3609
|
|
|
|
|
|
|
'0054,1002' => { VR => 'CS', Name => 'CountsSource' }, |
|
3610
|
|
|
|
|
|
|
'0054,1004' => { VR => 'CS', Name => 'ReprojectionMethod' }, |
|
3611
|
|
|
|
|
|
|
'0054,1006' => { VR => 'CS', Name => 'SUVType' }, |
|
3612
|
|
|
|
|
|
|
'0054,1100' => { VR => 'CS', Name => 'RandomsCorrectionMethod' }, |
|
3613
|
|
|
|
|
|
|
'0054,1101' => { VR => 'LO', Name => 'AttenuationCorrectionMethod' }, |
|
3614
|
|
|
|
|
|
|
'0054,1102' => { VR => 'CS', Name => 'DecayCorrection' }, |
|
3615
|
|
|
|
|
|
|
'0054,1103' => { VR => 'LO', Name => 'ReconstructionMethod' }, |
|
3616
|
|
|
|
|
|
|
'0054,1104' => { VR => 'LO', Name => 'DetectorLinesOfResponseUsed' }, |
|
3617
|
|
|
|
|
|
|
'0054,1105' => { VR => 'LO', Name => 'ScatterCorrectionMethod' }, |
|
3618
|
|
|
|
|
|
|
'0054,1200' => { VR => 'DS', Name => 'AxialAcceptance' }, |
|
3619
|
|
|
|
|
|
|
'0054,1201' => { VR => 'IS', Name => 'AxialMash' }, |
|
3620
|
|
|
|
|
|
|
'0054,1202' => { VR => 'IS', Name => 'TransverseMash' }, |
|
3621
|
|
|
|
|
|
|
'0054,1203' => { VR => 'DS', Name => 'DetectorElementSize' }, |
|
3622
|
|
|
|
|
|
|
'0054,1210' => { VR => 'DS', Name => 'CoincidenceWindowWidth' }, |
|
3623
|
|
|
|
|
|
|
'0054,1220' => { VR => 'CS', Name => 'SecondaryCountsType' }, |
|
3624
|
|
|
|
|
|
|
'0054,1300' => { VR => 'DS', Name => 'FrameReferenceTime' }, |
|
3625
|
|
|
|
|
|
|
'0054,1310' => { VR => 'IS', Name => 'PrimaryCountsAccumulated' }, |
|
3626
|
|
|
|
|
|
|
'0054,1311' => { VR => 'IS', Name => 'SecondaryCountsAccumulated' }, |
|
3627
|
|
|
|
|
|
|
'0054,1320' => { VR => 'DS', Name => 'SliceSensitivityFactor' }, |
|
3628
|
|
|
|
|
|
|
'0054,1321' => { VR => 'DS', Name => 'DecayFactor' }, |
|
3629
|
|
|
|
|
|
|
'0054,1322' => { VR => 'DS', Name => 'DoseCalibrationFactor' }, |
|
3630
|
|
|
|
|
|
|
'0054,1323' => { VR => 'DS', Name => 'ScatterFractionFactor' }, |
|
3631
|
|
|
|
|
|
|
'0054,1324' => { VR => 'DS', Name => 'DeadTimeFactor' }, |
|
3632
|
|
|
|
|
|
|
'0054,1330' => { VR => 'US', Name => 'ImageIndex' }, |
|
3633
|
|
|
|
|
|
|
'0054,1400' => { VR => 'CS', Name => 'CountsIncluded' }, |
|
3634
|
|
|
|
|
|
|
'0054,1401' => { VR => 'CS', Name => 'DeadTimeCorrectionFlag' }, |
|
3635
|
|
|
|
|
|
|
'0060,3000' => { VR => 'SQ', Name => 'HistogramSequence' }, |
|
3636
|
|
|
|
|
|
|
'0060,3002' => { VR => 'US', Name => 'HistogramNumberOfBins' }, |
|
3637
|
|
|
|
|
|
|
'0060,3004' => { VR => 'US', Name => 'HistogramFirstBinValue' }, |
|
3638
|
|
|
|
|
|
|
'0060,3006' => { VR => 'US', Name => 'HistogramLastBinValue' }, |
|
3639
|
|
|
|
|
|
|
'0060,3008' => { VR => 'US', Name => 'HistogramBinWidth' }, |
|
3640
|
|
|
|
|
|
|
'0060,3010' => { VR => 'LO', Name => 'HistogramExplanation' }, |
|
3641
|
|
|
|
|
|
|
'0060,3020' => { VR => 'UL', Name => 'HistogramData' }, |
|
3642
|
|
|
|
|
|
|
'0062,0001' => { VR => 'CS', Name => 'SegmentationType' }, |
|
3643
|
|
|
|
|
|
|
'0062,0002' => { VR => 'SQ', Name => 'SegmentSequence' }, |
|
3644
|
|
|
|
|
|
|
'0062,0003' => { VR => 'SQ', Name => 'SegmentedPropertyCategoryCodeSeq' }, |
|
3645
|
|
|
|
|
|
|
'0062,0004' => { VR => 'US', Name => 'SegmentNumber' }, |
|
3646
|
|
|
|
|
|
|
'0062,0005' => { VR => 'LO', Name => 'SegmentLabel' }, |
|
3647
|
|
|
|
|
|
|
'0062,0006' => { VR => 'ST', Name => 'SegmentDescription' }, |
|
3648
|
|
|
|
|
|
|
'0062,0007' => { VR => 'SQ', Name => 'SegmentationAlgorithmIDSequence' }, |
|
3649
|
|
|
|
|
|
|
'0062,0008' => { VR => 'CS', Name => 'SegmentAlgorithmType' }, |
|
3650
|
|
|
|
|
|
|
'0062,0009' => { VR => 'LO', Name => 'SegmentAlgorithmName' }, |
|
3651
|
|
|
|
|
|
|
'0062,000A' => { VR => 'SQ', Name => 'SegmentIdentificationSequence' }, |
|
3652
|
|
|
|
|
|
|
'0062,000B' => { VR => 'US', Name => 'ReferencedSegmentNumber' }, |
|
3653
|
|
|
|
|
|
|
'0062,000C' => { VR => 'US', Name => 'RecommendedDisplayGrayscaleValue' }, |
|
3654
|
|
|
|
|
|
|
'0062,000D' => { VR => 'US', Name => 'RecommendedDisplayCIELabValue' }, |
|
3655
|
|
|
|
|
|
|
'0062,000E' => { VR => 'US', Name => 'MaximumFractionalValue' }, |
|
3656
|
|
|
|
|
|
|
'0062,000F' => { VR => 'SQ', Name => 'SegmentedPropertyTypeCodeSequence' }, |
|
3657
|
|
|
|
|
|
|
'0062,0010' => { VR => 'CS', Name => 'SegmentationFractionalType' }, |
|
3658
|
|
|
|
|
|
|
'0062,0011' => { VR => 'SQ', Name => 'SegmentedPropertyTypeModCodeSeq' }, |
|
3659
|
|
|
|
|
|
|
'0062,0012' => { VR => 'SQ', Name => 'UsedSegmentsSequence' }, |
|
3660
|
|
|
|
|
|
|
'0062,0013' => { VR => 'CS', Name => 'SegmentsOverlap' }, |
|
3661
|
|
|
|
|
|
|
'0062,0020' => { VR => 'UT', Name => 'TrackingID' }, |
|
3662
|
|
|
|
|
|
|
'0062,0021' => { VR => 'UI', Name => 'TrackingUID' }, |
|
3663
|
|
|
|
|
|
|
'0064,0002' => { VR => 'SQ', Name => 'DeformableRegistrationSequence' }, |
|
3664
|
|
|
|
|
|
|
'0064,0003' => { VR => 'UI', Name => 'SourceFrameOfReferenceUID' }, |
|
3665
|
|
|
|
|
|
|
'0064,0005' => { VR => 'SQ', Name => 'DeformableRegistrationGridSequence' }, |
|
3666
|
|
|
|
|
|
|
'0064,0007' => { VR => 'UL', Name => 'GridDimensions' }, |
|
3667
|
|
|
|
|
|
|
'0064,0008' => { VR => 'FD', Name => 'GridResolution' }, |
|
3668
|
|
|
|
|
|
|
'0064,0009' => { VR => 'OF', Name => 'VectorGridData' }, |
|
3669
|
|
|
|
|
|
|
'0064,000F' => { VR => 'SQ', Name => 'PreDeformationMatrixRegistSeq' }, |
|
3670
|
|
|
|
|
|
|
'0064,0010' => { VR => 'SQ', Name => 'PostDeformationMatrixRegistSeq' }, |
|
3671
|
|
|
|
|
|
|
'0066,0001' => { VR => 'UL', Name => 'NumberOfSurfaces' }, |
|
3672
|
|
|
|
|
|
|
'0066,0002' => { VR => 'SQ', Name => 'SurfaceSequence' }, |
|
3673
|
|
|
|
|
|
|
'0066,0003' => { VR => 'UL', Name => 'SurfaceNumber' }, |
|
3674
|
|
|
|
|
|
|
'0066,0004' => { VR => 'LT', Name => 'SurfaceComments' }, |
|
3675
|
|
|
|
|
|
|
'0066,0005' => { VR => 'FL', Name => 'SurfaceOffset' }, |
|
3676
|
|
|
|
|
|
|
'0066,0009' => { VR => 'CS', Name => 'SurfaceProcessing' }, |
|
3677
|
|
|
|
|
|
|
'0066,000A' => { VR => 'FL', Name => 'SurfaceProcessingRatio' }, |
|
3678
|
|
|
|
|
|
|
'0066,000B' => { VR => 'LO', Name => 'SurfaceProcessingDescription' }, |
|
3679
|
|
|
|
|
|
|
'0066,000C' => { VR => 'FL', Name => 'RecommendedPresentationOpacity' }, |
|
3680
|
|
|
|
|
|
|
'0066,000D' => { VR => 'CS', Name => 'RecommendedPresentationType' }, |
|
3681
|
|
|
|
|
|
|
'0066,000E' => { VR => 'CS', Name => 'FiniteVolume' }, |
|
3682
|
|
|
|
|
|
|
'0066,0010' => { VR => 'CS', Name => 'Manifold' }, |
|
3683
|
|
|
|
|
|
|
'0066,0011' => { VR => 'SQ', Name => 'SurfacePointsSequence' }, |
|
3684
|
|
|
|
|
|
|
'0066,0012' => { VR => 'SQ', Name => 'SurfacePointsNormalsSequence' }, |
|
3685
|
|
|
|
|
|
|
'0066,0013' => { VR => 'SQ', Name => 'SurfaceMeshPrimitivesSequence' }, |
|
3686
|
|
|
|
|
|
|
'0066,0015' => { VR => 'UL', Name => 'NumberOfSurfacePoints' }, |
|
3687
|
|
|
|
|
|
|
'0066,0016' => { VR => 'OF', Name => 'PointCoordinatesData' }, |
|
3688
|
|
|
|
|
|
|
'0066,0017' => { VR => 'FL', Name => 'PointPositionAccuracy' }, |
|
3689
|
|
|
|
|
|
|
'0066,0018' => { VR => 'FL', Name => 'MeanPointDistance' }, |
|
3690
|
|
|
|
|
|
|
'0066,0019' => { VR => 'FL', Name => 'MaximumPointDistance' }, |
|
3691
|
|
|
|
|
|
|
'0066,001A' => { VR => 'FL', Name => 'PointsBoundingBoxCoordinates' }, |
|
3692
|
|
|
|
|
|
|
'0066,001B' => { VR => 'FL', Name => 'AxisOfRotation' }, |
|
3693
|
|
|
|
|
|
|
'0066,001C' => { VR => 'FL', Name => 'CenterOfRotation' }, |
|
3694
|
|
|
|
|
|
|
'0066,001E' => { VR => 'UL', Name => 'NumberOfVectors' }, |
|
3695
|
|
|
|
|
|
|
'0066,001F' => { VR => 'US', Name => 'VectorDimensionality' }, |
|
3696
|
|
|
|
|
|
|
'0066,0020' => { VR => 'FL', Name => 'VectorAccuracy' }, |
|
3697
|
|
|
|
|
|
|
'0066,0021' => { VR => 'OF', Name => 'VectorCoordinateData' }, |
|
3698
|
|
|
|
|
|
|
'0066,0022' => { VR => 'OD', Name => 'DoublePointCoordinatesData' }, |
|
3699
|
|
|
|
|
|
|
'0066,0023' => { VR => 'OW', Name => 'TrianglePointIndexList' }, |
|
3700
|
|
|
|
|
|
|
'0066,0024' => { VR => 'OW', Name => 'EdgePointIndexList' }, |
|
3701
|
|
|
|
|
|
|
'0066,0025' => { VR => 'OW', Name => 'VertexPointIndexList' }, |
|
3702
|
|
|
|
|
|
|
'0066,0026' => { VR => 'SQ', Name => 'TriangleStripSequence' }, |
|
3703
|
|
|
|
|
|
|
'0066,0027' => { VR => 'SQ', Name => 'TriangleFanSequence' }, |
|
3704
|
|
|
|
|
|
|
'0066,0028' => { VR => 'SQ', Name => 'LineSequence' }, |
|
3705
|
|
|
|
|
|
|
'0066,0029' => { VR => 'OW', Name => 'PrimitivePointIndexList' }, |
|
3706
|
|
|
|
|
|
|
'0066,002A' => { VR => 'UL', Name => 'SurfaceCount' }, |
|
3707
|
|
|
|
|
|
|
'0066,002B' => { VR => 'SQ', Name => 'ReferencedSurfaceSequence' }, |
|
3708
|
|
|
|
|
|
|
'0066,002C' => { VR => 'UL', Name => 'ReferencedSurfaceNumber' }, |
|
3709
|
|
|
|
|
|
|
'0066,002D' => { VR => 'SQ', Name => 'SegmentSurfaceGenAlgorithmIDSeq' }, |
|
3710
|
|
|
|
|
|
|
'0066,002E' => { VR => 'SQ', Name => 'SegmentSurfaceSourceInstanceSeq' }, |
|
3711
|
|
|
|
|
|
|
'0066,002F' => { VR => 'SQ', Name => 'AlgorithmFamilyCodeSequ' }, |
|
3712
|
|
|
|
|
|
|
'0066,0030' => { VR => 'SQ', Name => 'AlgorithmNameCodeSequence' }, |
|
3713
|
|
|
|
|
|
|
'0066,0031' => { VR => 'LO', Name => 'AlgorithmVersion' }, |
|
3714
|
|
|
|
|
|
|
'0066,0032' => { VR => 'LT', Name => 'AlgorithmParameters' }, |
|
3715
|
|
|
|
|
|
|
'0066,0034' => { VR => 'SQ', Name => 'FacetSequence' }, |
|
3716
|
|
|
|
|
|
|
'0066,0035' => { VR => 'SQ', Name => 'SurfaceProcessingAlgorithmIDSeq' }, |
|
3717
|
|
|
|
|
|
|
'0066,0036' => { VR => 'LO', Name => 'AlgorithmName' }, |
|
3718
|
|
|
|
|
|
|
'0066,0037' => { VR => 'FL', Name => 'RecommendedPointRadius' }, |
|
3719
|
|
|
|
|
|
|
'0066,0038' => { VR => 'FL', Name => 'RecommendedLineThickness' }, |
|
3720
|
|
|
|
|
|
|
'0066,0040' => { VR => 'OL', Name => 'LongPrimitivePointIndexList' }, |
|
3721
|
|
|
|
|
|
|
'0066,0041' => { VR => 'OL', Name => 'LongTrianglePointIndexList' }, |
|
3722
|
|
|
|
|
|
|
'0066,0042' => { VR => 'OL', Name => 'LongEdgePointIndexList' }, |
|
3723
|
|
|
|
|
|
|
'0066,0043' => { VR => 'OL', Name => 'LongVertexPointIndexList' }, |
|
3724
|
|
|
|
|
|
|
'0066,0101' => { VR => 'SQ', Name => 'TrackSetSequence' }, |
|
3725
|
|
|
|
|
|
|
'0066,0102' => { VR => 'SQ', Name => 'TrackSequence' }, |
|
3726
|
|
|
|
|
|
|
'0066,0103' => { VR => 'OW', Name => 'RecommendedDisplayCIELabValueList' }, |
|
3727
|
|
|
|
|
|
|
'0066,0104' => { VR => 'SQ', Name => 'TrackingAlgorithmIDSequence' }, |
|
3728
|
|
|
|
|
|
|
'0066,0105' => { VR => 'UL', Name => 'TrackSetNumber' }, |
|
3729
|
|
|
|
|
|
|
'0066,0106' => { VR => 'LO', Name => 'TrackSetLabel' }, |
|
3730
|
|
|
|
|
|
|
'0066,0107' => { VR => 'UT', Name => 'TrackSetDescription' }, |
|
3731
|
|
|
|
|
|
|
'0066,0108' => { VR => 'SQ', Name => 'TrackSetAnatomicalTypeCodeSequence' }, |
|
3732
|
|
|
|
|
|
|
'0066,0121' => { VR => 'SQ', Name => 'MeasurementsSequence' }, |
|
3733
|
|
|
|
|
|
|
'0066,0124' => { VR => 'SQ', Name => 'TrackSetStatisticsSequence' }, |
|
3734
|
|
|
|
|
|
|
'0066,0125' => { VR => 'OF', Name => 'FloatingPointValues' }, |
|
3735
|
|
|
|
|
|
|
'0066,0129' => { VR => 'OL', Name => 'TrackPointIndexList' }, |
|
3736
|
|
|
|
|
|
|
'0066,0130' => { VR => 'SQ', Name => 'TrackStatisticsSequence' }, |
|
3737
|
|
|
|
|
|
|
'0066,0132' => { VR => 'SQ', Name => 'MeasurementValuesSequence' }, |
|
3738
|
|
|
|
|
|
|
'0066,0133' => { VR => 'SQ', Name => 'DiffusionAcquisitionCodeSequence' }, |
|
3739
|
|
|
|
|
|
|
'0066,0134' => { VR => 'SQ', Name => 'DiffusionModelCodeSequence' }, |
|
3740
|
|
|
|
|
|
|
'0068,6210' => { VR => 'LO', Name => 'ImplantSize' }, |
|
3741
|
|
|
|
|
|
|
'0068,6221' => { VR => 'LO', Name => 'ImplantTemplateVersion' }, |
|
3742
|
|
|
|
|
|
|
'0068,6222' => { VR => 'SQ', Name => 'ReplacedImplantTemplateSequence' }, |
|
3743
|
|
|
|
|
|
|
'0068,6223' => { VR => 'CS', Name => 'ImplantType' }, |
|
3744
|
|
|
|
|
|
|
'0068,6224' => { VR => 'SQ', Name => 'DerivationImplantTemplateSequence' }, |
|
3745
|
|
|
|
|
|
|
'0068,6225' => { VR => 'SQ', Name => 'OriginalImplantTemplateSequence' }, |
|
3746
|
|
|
|
|
|
|
'0068,6226' => { VR => 'DT', Name => 'EffectiveDateTime' }, |
|
3747
|
|
|
|
|
|
|
'0068,6230' => { VR => 'SQ', Name => 'ImplantTargetAnatomySequence' }, |
|
3748
|
|
|
|
|
|
|
'0068,6260' => { VR => 'SQ', Name => 'InformationFromManufacturerSeq' }, |
|
3749
|
|
|
|
|
|
|
'0068,6265' => { VR => 'SQ', Name => 'NotificationFromManufacturerSeq' }, |
|
3750
|
|
|
|
|
|
|
'0068,6270' => { VR => 'DT', Name => 'InformationIssueDateTime' }, |
|
3751
|
|
|
|
|
|
|
'0068,6280' => { VR => 'ST', Name => 'InformationSummary' }, |
|
3752
|
|
|
|
|
|
|
'0068,62A0' => { VR => 'SQ', Name => 'ImplantRegulatoryDisapprovalCode' }, |
|
3753
|
|
|
|
|
|
|
'0068,62A5' => { VR => 'FD', Name => 'OverallTemplateSpatialTolerance' }, |
|
3754
|
|
|
|
|
|
|
'0068,62C0' => { VR => 'SQ', Name => 'HPGLDocumentSequence' }, |
|
3755
|
|
|
|
|
|
|
'0068,62D0' => { VR => 'US', Name => 'HPGLDocumentID' }, |
|
3756
|
|
|
|
|
|
|
'0068,62D5' => { VR => 'LO', Name => 'HPGLDocumentLabel' }, |
|
3757
|
|
|
|
|
|
|
'0068,62E0' => { VR => 'SQ', Name => 'ViewOrientationCodeSequence' }, |
|
3758
|
|
|
|
|
|
|
'0068,62F0' => { VR => 'SQ', Name => 'ViewOrientationModifierCodeSeq' }, |
|
3759
|
|
|
|
|
|
|
'0068,62F2' => { VR => 'FD', Name => 'HPGLDocumentScaling' }, |
|
3760
|
|
|
|
|
|
|
'0068,6300' => { VR => 'OB', Name => 'HPGLDocument' }, |
|
3761
|
|
|
|
|
|
|
'0068,6310' => { VR => 'US', Name => 'HPGLContourPenNumber' }, |
|
3762
|
|
|
|
|
|
|
'0068,6320' => { VR => 'SQ', Name => 'HPGLPenSequence' }, |
|
3763
|
|
|
|
|
|
|
'0068,6330' => { VR => 'US', Name => 'HPGLPenNumber' }, |
|
3764
|
|
|
|
|
|
|
'0068,6340' => { VR => 'LO', Name => 'HPGLPenLabel' }, |
|
3765
|
|
|
|
|
|
|
'0068,6345' => { VR => 'ST', Name => 'HPGLPenDescription' }, |
|
3766
|
|
|
|
|
|
|
'0068,6346' => { VR => 'FD', Name => 'RecommendedRotationPoint' }, |
|
3767
|
|
|
|
|
|
|
'0068,6347' => { VR => 'FD', Name => 'BoundingRectangle' }, |
|
3768
|
|
|
|
|
|
|
'0068,6350' => { VR => 'US', Name => 'ImplantTemplate3DModelSurfaceNum' }, |
|
3769
|
|
|
|
|
|
|
'0068,6360' => { VR => 'SQ', Name => 'SurfaceModelDescriptionSequence' }, |
|
3770
|
|
|
|
|
|
|
'0068,6380' => { VR => 'LO', Name => 'SurfaceModelLabel' }, |
|
3771
|
|
|
|
|
|
|
'0068,6390' => { VR => 'FD', Name => 'SurfaceModelScalingFactor' }, |
|
3772
|
|
|
|
|
|
|
'0068,63A0' => { VR => 'SQ', Name => 'MaterialsCodeSequence' }, |
|
3773
|
|
|
|
|
|
|
'0068,63A4' => { VR => 'SQ', Name => 'CoatingMaterialsCodeSequence' }, |
|
3774
|
|
|
|
|
|
|
'0068,63A8' => { VR => 'SQ', Name => 'ImplantTypeCodeSequence' }, |
|
3775
|
|
|
|
|
|
|
'0068,63AC' => { VR => 'SQ', Name => 'FixationMethodCodeSequence' }, |
|
3776
|
|
|
|
|
|
|
'0068,63B0' => { VR => 'SQ', Name => 'MatingFeatureSetsSequence' }, |
|
3777
|
|
|
|
|
|
|
'0068,63C0' => { VR => 'US', Name => 'MatingFeatureSetID' }, |
|
3778
|
|
|
|
|
|
|
'0068,63D0' => { VR => 'LO', Name => 'MatingFeatureSetLabel' }, |
|
3779
|
|
|
|
|
|
|
'0068,63E0' => { VR => 'SQ', Name => 'MatingFeatureSequence' }, |
|
3780
|
|
|
|
|
|
|
'0068,63F0' => { VR => 'US', Name => 'MatingFeatureID' }, |
|
3781
|
|
|
|
|
|
|
'0068,6400' => { VR => 'SQ', Name => 'MatingFeatureDegreeOfFreedomSeq' }, |
|
3782
|
|
|
|
|
|
|
'0068,6410' => { VR => 'US', Name => 'DegreeOfFreedomID' }, |
|
3783
|
|
|
|
|
|
|
'0068,6420' => { VR => 'CS', Name => 'DegreeOfFreedomType' }, |
|
3784
|
|
|
|
|
|
|
'0068,6430' => { VR => 'SQ', Name => 'TwoDMatingFeatureCoordinatesSeq' }, |
|
3785
|
|
|
|
|
|
|
'0068,6440' => { VR => 'US', Name => 'ReferencedHPGLDocumentID' }, |
|
3786
|
|
|
|
|
|
|
'0068,6450' => { VR => 'FD', Name => 'TwoDMatingPoint' }, |
|
3787
|
|
|
|
|
|
|
'0068,6460' => { VR => 'FD', Name => 'TwoDMatingAxes' }, |
|
3788
|
|
|
|
|
|
|
'0068,6470' => { VR => 'SQ', Name => 'TwoDDegreeOfFreedomSequence' }, |
|
3789
|
|
|
|
|
|
|
'0068,6490' => { VR => 'FD', Name => 'ThreeDDegreeOfFreedomAxis' }, |
|
3790
|
|
|
|
|
|
|
'0068,64A0' => { VR => 'FD', Name => 'RangeOfFreedom' }, |
|
3791
|
|
|
|
|
|
|
'0068,64C0' => { VR => 'FD', Name => 'ThreeDMatingPoint' }, |
|
3792
|
|
|
|
|
|
|
'0068,64D0' => { VR => 'FD', Name => 'ThreeDMatingAxes' }, |
|
3793
|
|
|
|
|
|
|
'0068,64F0' => { VR => 'FD', Name => 'TwoDDegreeOfFreedomAxis' }, |
|
3794
|
|
|
|
|
|
|
'0068,6500' => { VR => 'SQ', Name => 'PlanningLandmarkPointSequence' }, |
|
3795
|
|
|
|
|
|
|
'0068,6510' => { VR => 'SQ', Name => 'PlanningLandmarkLineSequence' }, |
|
3796
|
|
|
|
|
|
|
'0068,6520' => { VR => 'SQ', Name => 'PlanningLandmarkPlaneSequence' }, |
|
3797
|
|
|
|
|
|
|
'0068,6530' => { VR => 'US', Name => 'PlanningLandmarkID' }, |
|
3798
|
|
|
|
|
|
|
'0068,6540' => { VR => 'LO', Name => 'PlanningLandmarkDescription' }, |
|
3799
|
|
|
|
|
|
|
'0068,6545' => { VR => 'SQ', Name => 'PlanningLandmarkIDCodeSeq' }, |
|
3800
|
|
|
|
|
|
|
'0068,6550' => { VR => 'SQ', Name => 'TwoDPointCoordinatesSequence' }, |
|
3801
|
|
|
|
|
|
|
'0068,6560' => { VR => 'FD', Name => 'TwoDPointCoordinates' }, |
|
3802
|
|
|
|
|
|
|
'0068,6590' => { VR => 'FD', Name => 'ThreeDPointCoordinates' }, |
|
3803
|
|
|
|
|
|
|
'0068,65A0' => { VR => 'SQ', Name => 'TwoDLineCoordinatesSequence' }, |
|
3804
|
|
|
|
|
|
|
'0068,65B0' => { VR => 'FD', Name => 'TwoDLineCoordinates' }, |
|
3805
|
|
|
|
|
|
|
'0068,65D0' => { VR => 'FD', Name => 'ThreeDLineCoordinates' }, |
|
3806
|
|
|
|
|
|
|
'0068,65E0' => { VR => 'SQ', Name => 'TwoDPlaneCoordinatesSequence' }, |
|
3807
|
|
|
|
|
|
|
'0068,65F0' => { VR => 'FD', Name => 'TwoDPlaneIntersection' }, |
|
3808
|
|
|
|
|
|
|
'0068,6610' => { VR => 'FD', Name => 'ThreeDPlaneOrigin' }, |
|
3809
|
|
|
|
|
|
|
'0068,6620' => { VR => 'FD', Name => 'ThreeDPlaneNormal' }, |
|
3810
|
|
|
|
|
|
|
'0068,7001' => { VR => 'CS', Name => 'ModelModification' }, |
|
3811
|
|
|
|
|
|
|
'0068,7002' => { VR => 'CS', Name => 'ModelMirroring' }, |
|
3812
|
|
|
|
|
|
|
'0068,7003' => { VR => 'SQ', Name => 'ModelUsageCodeSequence' }, |
|
3813
|
|
|
|
|
|
|
'0068,7004' => { VR => 'UI', Name => 'ModelGroupUID' }, |
|
3814
|
|
|
|
|
|
|
'0068,7005' => { VR => 'UR', Name => 'RelativeURIRefWithinEncapsulDoc' }, |
|
3815
|
|
|
|
|
|
|
'006A,0001' => { VR => 'CS', Name => 'AnnotationCoordinateType' }, |
|
3816
|
|
|
|
|
|
|
'006A,0002' => { VR => 'SQ', Name => 'AnnotationGroupSequence' }, |
|
3817
|
|
|
|
|
|
|
'006A,0003' => { VR => 'UI', Name => 'AnnotationGroupUID' }, |
|
3818
|
|
|
|
|
|
|
'006A,0005' => { VR => 'LO', Name => 'AnnotationGroupLabel' }, |
|
3819
|
|
|
|
|
|
|
'006A,0006' => { VR => 'UT', Name => 'AnnotationGroupDescription' }, |
|
3820
|
|
|
|
|
|
|
'006A,0007' => { VR => 'CS', Name => 'AnnotationGroupGenerationType' }, |
|
3821
|
|
|
|
|
|
|
'006A,0008' => { VR => 'SQ', Name => 'AnnotationGroupAlgorithmIDSeq' }, |
|
3822
|
|
|
|
|
|
|
'006A,0009' => { VR => 'SQ', Name => 'AnnotationPropertyCategoryCodeSeq' }, |
|
3823
|
|
|
|
|
|
|
'006A,000A' => { VR => 'SQ', Name => 'AnnotationPropertyTypeCodeSequence' }, |
|
3824
|
|
|
|
|
|
|
'006A,000B' => { VR => 'SQ', Name => 'AnnotationPropertyTypeModCodeSeq' }, |
|
3825
|
|
|
|
|
|
|
'006A,000C' => { VR => 'UL', Name => 'NumberOfAnnotations' }, |
|
3826
|
|
|
|
|
|
|
'006A,000D' => { VR => 'CS', Name => 'AnnotationAppliesToAllOpticalPaths' }, |
|
3827
|
|
|
|
|
|
|
'006A,000E' => { VR => 'SH', Name => 'ReferencedOpticalPathIdentifier' }, |
|
3828
|
|
|
|
|
|
|
'006A,000F' => { VR => 'CS', Name => 'AnnotationAppliesToAllZPlanes' }, |
|
3829
|
|
|
|
|
|
|
'006A,0010' => { VR => 'FD', Name => 'CommonZCoordinateValue' }, |
|
3830
|
|
|
|
|
|
|
'006A,0011' => { VR => 'OL', Name => 'AnnotationIndexList' }, |
|
3831
|
|
|
|
|
|
|
'0070,0001' => { VR => 'SQ', Name => 'GraphicAnnotationSequence' }, |
|
3832
|
|
|
|
|
|
|
'0070,0002' => { VR => 'CS', Name => 'GraphicLayer' }, |
|
3833
|
|
|
|
|
|
|
'0070,0003' => { VR => 'CS', Name => 'BoundingBoxAnnotationUnits' }, |
|
3834
|
|
|
|
|
|
|
'0070,0004' => { VR => 'CS', Name => 'AnchorPointAnnotationUnits' }, |
|
3835
|
|
|
|
|
|
|
'0070,0005' => { VR => 'CS', Name => 'GraphicAnnotationUnits' }, |
|
3836
|
|
|
|
|
|
|
'0070,0006' => { VR => 'ST', Name => 'UnformattedTextValue' }, |
|
3837
|
|
|
|
|
|
|
'0070,0008' => { VR => 'SQ', Name => 'TextObjectSequence' }, |
|
3838
|
|
|
|
|
|
|
'0070,0009' => { VR => 'SQ', Name => 'GraphicObjectSequence' }, |
|
3839
|
|
|
|
|
|
|
'0070,0010' => { VR => 'FL', Name => 'BoundingBoxTopLeftHandCorner' }, |
|
3840
|
|
|
|
|
|
|
'0070,0011' => { VR => 'FL', Name => 'BoundingBoxBottomRightHandCorner' }, |
|
3841
|
|
|
|
|
|
|
'0070,0012' => { VR => 'CS', Name => 'BoundingBoxTextHorizJustification' }, |
|
3842
|
|
|
|
|
|
|
'0070,0014' => { VR => 'FL', Name => 'AnchorPoint' }, |
|
3843
|
|
|
|
|
|
|
'0070,0015' => { VR => 'CS', Name => 'AnchorPointVisibility' }, |
|
3844
|
|
|
|
|
|
|
'0070,0020' => { VR => 'US', Name => 'GraphicDimensions' }, |
|
3845
|
|
|
|
|
|
|
'0070,0021' => { VR => 'US', Name => 'NumberOfGraphicPoints' }, |
|
3846
|
|
|
|
|
|
|
'0070,0022' => { VR => 'FL', Name => 'GraphicData' }, |
|
3847
|
|
|
|
|
|
|
'0070,0023' => { VR => 'CS', Name => 'GraphicType' }, |
|
3848
|
|
|
|
|
|
|
'0070,0024' => { VR => 'CS', Name => 'GraphicFilled' }, |
|
3849
|
|
|
|
|
|
|
'0070,0040' => { VR => 'IS', Name => 'ImageRotationRetired' }, |
|
3850
|
|
|
|
|
|
|
'0070,0041' => { VR => 'CS', Name => 'ImageHorizontalFlip' }, |
|
3851
|
|
|
|
|
|
|
'0070,0042' => { VR => 'US', Name => 'ImageRotation' }, |
|
3852
|
|
|
|
|
|
|
'0070,0050' => { VR => 'US', Name => 'DisplayedAreaTopLeftTrial' }, |
|
3853
|
|
|
|
|
|
|
'0070,0051' => { VR => 'US', Name => 'DisplayedAreaBottomRightTrial' }, |
|
3854
|
|
|
|
|
|
|
'0070,0052' => { VR => 'SL', Name => 'DisplayedAreaTopLeft' }, |
|
3855
|
|
|
|
|
|
|
'0070,0053' => { VR => 'SL', Name => 'DisplayedAreaBottomRight' }, |
|
3856
|
|
|
|
|
|
|
'0070,005A' => { VR => 'SQ', Name => 'DisplayedAreaSelectionSequence' }, |
|
3857
|
|
|
|
|
|
|
'0070,0060' => { VR => 'SQ', Name => 'GraphicLayerSequence' }, |
|
3858
|
|
|
|
|
|
|
'0070,0062' => { VR => 'IS', Name => 'GraphicLayerOrder' }, |
|
3859
|
|
|
|
|
|
|
'0070,0066' => { VR => 'US', Name => 'GraphicLayerRecDisplayGraysclValue' }, |
|
3860
|
|
|
|
|
|
|
'0070,0067' => { VR => 'US', Name => 'GraphicLayerRecDisplayRGBValue' }, |
|
3861
|
|
|
|
|
|
|
'0070,0068' => { VR => 'LO', Name => 'GraphicLayerDescription' }, |
|
3862
|
|
|
|
|
|
|
'0070,0080' => { VR => 'CS', Name => 'ContentLabel' }, |
|
3863
|
|
|
|
|
|
|
'0070,0081' => { VR => 'LO', Name => 'ContentDescription' }, |
|
3864
|
|
|
|
|
|
|
'0070,0082' => { VR => 'DA', Name => 'PresentationCreationDate' }, |
|
3865
|
|
|
|
|
|
|
'0070,0083' => { VR => 'TM', Name => 'PresentationCreationTime' }, |
|
3866
|
|
|
|
|
|
|
'0070,0084' => { VR => 'PN', Name => 'ContentCreatorName' }, |
|
3867
|
|
|
|
|
|
|
'0070,0086' => { VR => 'SQ', Name => 'ContentCreatorIDCodeSequence' }, |
|
3868
|
|
|
|
|
|
|
'0070,0087' => { VR => 'SQ', Name => 'AlternateContentDescriptionSeq' }, |
|
3869
|
|
|
|
|
|
|
'0070,0100' => { VR => 'CS', Name => 'PresentationSizeMode' }, |
|
3870
|
|
|
|
|
|
|
'0070,0101' => { VR => 'DS', Name => 'PresentationPixelSpacing' }, |
|
3871
|
|
|
|
|
|
|
'0070,0102' => { VR => 'IS', Name => 'PresentationPixelAspectRatio' }, |
|
3872
|
|
|
|
|
|
|
'0070,0103' => { VR => 'FL', Name => 'PresentationPixelMagRatio' }, |
|
3873
|
|
|
|
|
|
|
'0070,0207' => { VR => 'LO', Name => 'GraphicGroupLabel' }, |
|
3874
|
|
|
|
|
|
|
'0070,0208' => { VR => 'ST', Name => 'GraphicGroupDescription' }, |
|
3875
|
|
|
|
|
|
|
'0070,0209' => { VR => 'SQ', Name => 'CompoundGraphicSequence' }, |
|
3876
|
|
|
|
|
|
|
'0070,0226' => { VR => 'UL', Name => 'CompoundGraphicInstanceID' }, |
|
3877
|
|
|
|
|
|
|
'0070,0227' => { VR => 'LO', Name => 'FontName' }, |
|
3878
|
|
|
|
|
|
|
'0070,0228' => { VR => 'CS', Name => 'FontNameType' }, |
|
3879
|
|
|
|
|
|
|
'0070,0229' => { VR => 'LO', Name => 'CSSFontName' }, |
|
3880
|
|
|
|
|
|
|
'0070,0230' => { VR => 'FD', Name => 'RotationAngle' }, |
|
3881
|
|
|
|
|
|
|
'0070,0231' => { VR => 'SQ', Name => 'TextStyleSequence' }, |
|
3882
|
|
|
|
|
|
|
'0070,0232' => { VR => 'SQ', Name => 'LineStyleSequence' }, |
|
3883
|
|
|
|
|
|
|
'0070,0233' => { VR => 'SQ', Name => 'FillStyleSequence' }, |
|
3884
|
|
|
|
|
|
|
'0070,0234' => { VR => 'SQ', Name => 'GraphicGroupSequence' }, |
|
3885
|
|
|
|
|
|
|
'0070,0241' => { VR => 'US', Name => 'TextColorCIELabValue' }, |
|
3886
|
|
|
|
|
|
|
'0070,0242' => { VR => 'CS', Name => 'HorizontalAlignment' }, |
|
3887
|
|
|
|
|
|
|
'0070,0243' => { VR => 'CS', Name => 'VerticalAlignment' }, |
|
3888
|
|
|
|
|
|
|
'0070,0244' => { VR => 'CS', Name => 'ShadowStyle' }, |
|
3889
|
|
|
|
|
|
|
'0070,0245' => { VR => 'FL', Name => 'ShadowOffsetX' }, |
|
3890
|
|
|
|
|
|
|
'0070,0246' => { VR => 'FL', Name => 'ShadowOffsetY' }, |
|
3891
|
|
|
|
|
|
|
'0070,0247' => { VR => 'US', Name => 'ShadowColorCIELabValue' }, |
|
3892
|
|
|
|
|
|
|
'0070,0248' => { VR => 'CS', Name => 'Underlined' }, |
|
3893
|
|
|
|
|
|
|
'0070,0249' => { VR => 'CS', Name => 'Bold' }, |
|
3894
|
|
|
|
|
|
|
'0070,0250' => { VR => 'CS', Name => 'Italic' }, |
|
3895
|
|
|
|
|
|
|
'0070,0251' => { VR => 'US', Name => 'PatternOnColorCIELabValue' }, |
|
3896
|
|
|
|
|
|
|
'0070,0252' => { VR => 'US', Name => 'PatternOffColorCIELabValue' }, |
|
3897
|
|
|
|
|
|
|
'0070,0253' => { VR => 'FL', Name => 'LineThickness' }, |
|
3898
|
|
|
|
|
|
|
'0070,0254' => { VR => 'CS', Name => 'LineDashingStyle' }, |
|
3899
|
|
|
|
|
|
|
'0070,0255' => { VR => 'UL', Name => 'LinePattern' }, |
|
3900
|
|
|
|
|
|
|
'0070,0256' => { VR => 'OB', Name => 'FillPattern' }, |
|
3901
|
|
|
|
|
|
|
'0070,0257' => { VR => 'CS', Name => 'FillMode' }, |
|
3902
|
|
|
|
|
|
|
'0070,0258' => { VR => 'FL', Name => 'ShadowOpacity' }, |
|
3903
|
|
|
|
|
|
|
'0070,0261' => { VR => 'FL', Name => 'GapLength' }, |
|
3904
|
|
|
|
|
|
|
'0070,0262' => { VR => 'FL', Name => 'DiameterOfVisibility' }, |
|
3905
|
|
|
|
|
|
|
'0070,0273' => { VR => 'FL', Name => 'RotationPoint' }, |
|
3906
|
|
|
|
|
|
|
'0070,0274' => { VR => 'CS', Name => 'TickAlignment' }, |
|
3907
|
|
|
|
|
|
|
'0070,0278' => { VR => 'CS', Name => 'ShowTickLabel' }, |
|
3908
|
|
|
|
|
|
|
'0070,0279' => { VR => 'CS', Name => 'TickLabelAlignment' }, |
|
3909
|
|
|
|
|
|
|
'0070,0282' => { VR => 'CS', Name => 'CompoundGraphicUnits' }, |
|
3910
|
|
|
|
|
|
|
'0070,0284' => { VR => 'FL', Name => 'PatternOnOpacity' }, |
|
3911
|
|
|
|
|
|
|
'0070,0285' => { VR => 'FL', Name => 'PatternOffOpacity' }, |
|
3912
|
|
|
|
|
|
|
'0070,0287' => { VR => 'SQ', Name => 'MajorTicksSequence' }, |
|
3913
|
|
|
|
|
|
|
'0070,0288' => { VR => 'FL', Name => 'TickPosition' }, |
|
3914
|
|
|
|
|
|
|
'0070,0289' => { VR => 'SH', Name => 'TickLabel' }, |
|
3915
|
|
|
|
|
|
|
'0070,0294' => { VR => 'CS', Name => 'CompoundGraphicType' }, |
|
3916
|
|
|
|
|
|
|
'0070,0295' => { VR => 'UL', Name => 'GraphicGroupID' }, |
|
3917
|
|
|
|
|
|
|
'0070,0306' => { VR => 'CS', Name => 'ShapeType' }, |
|
3918
|
|
|
|
|
|
|
'0070,0308' => { VR => 'SQ', Name => 'RegistrationSequence' }, |
|
3919
|
|
|
|
|
|
|
'0070,0309' => { VR => 'SQ', Name => 'MatrixRegistrationSequence' }, |
|
3920
|
|
|
|
|
|
|
'0070,030A' => { VR => 'SQ', Name => 'MatrixSequence' }, |
|
3921
|
|
|
|
|
|
|
'0070,030B' => { VR => 'FD', Name => 'FrameOfRef2DisplayCoordTransMatrix' }, |
|
3922
|
|
|
|
|
|
|
'0070,030C' => { VR => 'CS', Name => 'FrameOfRefTransformationMatrixType' }, |
|
3923
|
|
|
|
|
|
|
'0070,030D' => { VR => 'SQ', Name => 'RegistrationTypeCodeSequence' }, |
|
3924
|
|
|
|
|
|
|
'0070,030F' => { VR => 'ST', Name => 'FiducialDescription' }, |
|
3925
|
|
|
|
|
|
|
'0070,0310' => { VR => 'SH', Name => 'FiducialIdentifier' }, |
|
3926
|
|
|
|
|
|
|
'0070,0311' => { VR => 'SQ', Name => 'FiducialIdentifierCodeSequence' }, |
|
3927
|
|
|
|
|
|
|
'0070,0312' => { VR => 'FD', Name => 'ContourUncertaintyRadius' }, |
|
3928
|
|
|
|
|
|
|
'0070,0314' => { VR => 'SQ', Name => 'UsedFiducialsSequence' }, |
|
3929
|
|
|
|
|
|
|
'0070,0315' => { VR => 'SQ', Name => 'UsedRTStructureSetROISequence' }, |
|
3930
|
|
|
|
|
|
|
'0070,0318' => { VR => 'SQ', Name => 'GraphicCoordinatesDataSequence' }, |
|
3931
|
|
|
|
|
|
|
'0070,031A' => { VR => 'UI', Name => 'FiducialUID' }, |
|
3932
|
|
|
|
|
|
|
'0070,031B' => { VR => 'UI', Name => 'ReferencedFiducialUID' }, |
|
3933
|
|
|
|
|
|
|
'0070,031C' => { VR => 'SQ', Name => 'FiducialSetSequence' }, |
|
3934
|
|
|
|
|
|
|
'0070,031E' => { VR => 'SQ', Name => 'FiducialSequence' }, |
|
3935
|
|
|
|
|
|
|
'0070,031F' => { VR => 'SQ', Name => 'FiducialsPropertyCategoryCodeSeq' }, |
|
3936
|
|
|
|
|
|
|
'0070,0401' => { VR => 'US', Name => 'GraphicLayerRecomDisplayCIELabVal' }, |
|
3937
|
|
|
|
|
|
|
'0070,0402' => { VR => 'SQ', Name => 'BlendingSequence' }, |
|
3938
|
|
|
|
|
|
|
'0070,0403' => { VR => 'FL', Name => 'RelativeOpacity' }, |
|
3939
|
|
|
|
|
|
|
'0070,0404' => { VR => 'SQ', Name => 'ReferencedSpatialRegistrationSeq' }, |
|
3940
|
|
|
|
|
|
|
'0070,0405' => { VR => 'CS', Name => 'BlendingPosition' }, |
|
3941
|
|
|
|
|
|
|
'0070,1101' => { VR => 'UI', Name => 'PresentationDisplayCollectionUID' }, |
|
3942
|
|
|
|
|
|
|
'0070,1102' => { VR => 'UI', Name => 'PresentationSequenceCollectionUID' }, |
|
3943
|
|
|
|
|
|
|
'0070,1103' => { VR => 'US', Name => 'PresentationSequencePositionIndex' }, |
|
3944
|
|
|
|
|
|
|
'0070,1104' => { VR => 'SQ', Name => 'RenderedImageReferenceSequence' }, |
|
3945
|
|
|
|
|
|
|
'0070,1201' => { VR => 'SQ', Name => 'VolumetricPresentStateInputSeq' }, |
|
3946
|
|
|
|
|
|
|
'0070,1202' => { VR => 'CS', Name => 'PresentationInputType' }, |
|
3947
|
|
|
|
|
|
|
'0070,1203' => { VR => 'US', Name => 'InputSequencePositionIndex' }, |
|
3948
|
|
|
|
|
|
|
'0070,1204' => { VR => 'CS', Name => 'Crop' }, |
|
3949
|
|
|
|
|
|
|
'0070,1205' => { VR => 'US', Name => 'CroppingSpecificationIndex' }, |
|
3950
|
|
|
|
|
|
|
'0070,1206' => { VR => 'CS', Name => 'CompositingMethod' }, |
|
3951
|
|
|
|
|
|
|
'0070,1207' => { VR => 'US', Name => 'VolumetricPresentationInputNumber' }, |
|
3952
|
|
|
|
|
|
|
'0070,1208' => { VR => 'CS', Name => 'ImageVolumeGeometry' }, |
|
3953
|
|
|
|
|
|
|
'0070,1209' => { VR => 'UI', Name => 'VolumetricPresentationInputSetUID' }, |
|
3954
|
|
|
|
|
|
|
'0070,120A' => { VR => 'SQ', Name => 'VolumetricPresentationInputSetSeq' }, |
|
3955
|
|
|
|
|
|
|
'0070,120B' => { VR => 'CS', Name => 'GlobalCrop' }, |
|
3956
|
|
|
|
|
|
|
'0070,120C' => { VR => 'US', Name => 'GlobalCroppingSpecificationIndex' }, |
|
3957
|
|
|
|
|
|
|
'0070,120D' => { VR => 'CS', Name => 'RenderingMethod' }, |
|
3958
|
|
|
|
|
|
|
'0070,1301' => { VR => 'SQ', Name => 'VolumeCroppingSequence' }, |
|
3959
|
|
|
|
|
|
|
'0070,1302' => { VR => 'CS', Name => 'VolumeCroppingMethod' }, |
|
3960
|
|
|
|
|
|
|
'0070,1303' => { VR => 'FD', Name => 'BoundingBoxCrop' }, |
|
3961
|
|
|
|
|
|
|
'0070,1304' => { VR => 'SQ', Name => 'ObliqueCroppingPlaneSequence' }, |
|
3962
|
|
|
|
|
|
|
'0070,1305' => { VR => 'FD', Name => 'Plane' }, |
|
3963
|
|
|
|
|
|
|
'0070,1306' => { VR => 'FD', Name => 'PlaneNormal' }, |
|
3964
|
|
|
|
|
|
|
'0070,1309' => { VR => 'US', Name => 'CroppingSpecificationNumber' }, |
|
3965
|
|
|
|
|
|
|
'0070,1501' => { VR => 'CS', Name => 'MultiPlanarReconstructionStyle' }, |
|
3966
|
|
|
|
|
|
|
'0070,1502' => { VR => 'CS', Name => 'MPRThicknessType' }, |
|
3967
|
|
|
|
|
|
|
'0070,1503' => { VR => 'FD', Name => 'MPRSlabThickness' }, |
|
3968
|
|
|
|
|
|
|
'0070,1505' => { VR => 'FD', Name => 'MPRTopLeftHandCorner' }, |
|
3969
|
|
|
|
|
|
|
'0070,1507' => { VR => 'FD', Name => 'MPRViewWidthDirection' }, |
|
3970
|
|
|
|
|
|
|
'0070,1508' => { VR => 'FD', Name => 'MPRViewWidth' }, |
|
3971
|
|
|
|
|
|
|
'0070,150C' => { VR => 'UL', Name => 'NumberOfVolumetricCurvePoints' }, |
|
3972
|
|
|
|
|
|
|
'0070,150D' => { VR => 'OD', Name => 'VolumetricCurvePoints' }, |
|
3973
|
|
|
|
|
|
|
'0070,1511' => { VR => 'FD', Name => 'MPRViewHeightDirection' }, |
|
3974
|
|
|
|
|
|
|
'0070,1512' => { VR => 'FD', Name => 'MPRViewHeight' }, |
|
3975
|
|
|
|
|
|
|
'0070,1602' => { VR => 'CS', Name => 'RenderProjection' }, |
|
3976
|
|
|
|
|
|
|
'0070,1603' => { VR => 'FD', Name => 'ViewpointPosition' }, |
|
3977
|
|
|
|
|
|
|
'0070,1604' => { VR => 'FD', Name => 'ViewpointLookAtPoint' }, |
|
3978
|
|
|
|
|
|
|
'0070,1605' => { VR => 'FD', Name => 'ViewpointUpDirection' }, |
|
3979
|
|
|
|
|
|
|
'0070,1606' => { VR => 'FD', Name => 'RenderFieldOfView' }, |
|
3980
|
|
|
|
|
|
|
'0070,1607' => { VR => 'FD', Name => 'SamplingStepSize' }, |
|
3981
|
|
|
|
|
|
|
'0070,1701' => { VR => 'CS', Name => 'ShadingStyle' }, |
|
3982
|
|
|
|
|
|
|
'0070,1702' => { VR => 'FD', Name => 'AmbientReflectionIntensity' }, |
|
3983
|
|
|
|
|
|
|
'0070,1703' => { VR => 'FD', Name => 'LightDirection' }, |
|
3984
|
|
|
|
|
|
|
'0070,1704' => { VR => 'FD', Name => 'DiffuseReflectionIntensity' }, |
|
3985
|
|
|
|
|
|
|
'0070,1705' => { VR => 'FD', Name => 'SpecularReflectionIntensity' }, |
|
3986
|
|
|
|
|
|
|
'0070,1706' => { VR => 'FD', Name => 'Shininess' }, |
|
3987
|
|
|
|
|
|
|
'0070,1801' => { VR => 'SQ', Name => 'PresentationStateClassComponentSeq' }, |
|
3988
|
|
|
|
|
|
|
'0070,1802' => { VR => 'CS', Name => 'ComponentType' }, |
|
3989
|
|
|
|
|
|
|
'0070,1803' => { VR => 'SQ', Name => 'ComponentInputSequence' }, |
|
3990
|
|
|
|
|
|
|
'0070,1804' => { VR => 'US', Name => 'VolumetricPresentationInputIndex' }, |
|
3991
|
|
|
|
|
|
|
'0070,1805' => { VR => 'SQ', Name => 'PresentationStateCompositorCompSeq' }, |
|
3992
|
|
|
|
|
|
|
'0070,1806' => { VR => 'SQ', Name => 'WeightingTransferFunctionSequence' }, |
|
3993
|
|
|
|
|
|
|
'0070,1807' => { VR => 'US', Name => 'WeightingLookupTableDescriptor' }, |
|
3994
|
|
|
|
|
|
|
'0070,1808' => { VR => 'OB', Name => 'WeightingLookupTableData' }, |
|
3995
|
|
|
|
|
|
|
'0070,1901' => { VR => 'SQ', Name => 'VolumetricAnnotationSequence' }, |
|
3996
|
|
|
|
|
|
|
'0070,1903' => { VR => 'SQ', Name => 'ReferencedStructuredContextSeq' }, |
|
3997
|
|
|
|
|
|
|
'0070,1904' => { VR => 'UI', Name => 'ReferencedContentItem' }, |
|
3998
|
|
|
|
|
|
|
'0070,1905' => { VR => 'SQ', Name => 'VolumetricPresentInputAnnotSeq' }, |
|
3999
|
|
|
|
|
|
|
'0070,1907' => { VR => 'CS', Name => 'AnnotationClipping' }, |
|
4000
|
|
|
|
|
|
|
'0070,1A01' => { VR => 'CS', Name => 'PresentationAnimationStyle' }, |
|
4001
|
|
|
|
|
|
|
'0070,1A03' => { VR => 'FD', Name => 'RecommendedAnimationRate' }, |
|
4002
|
|
|
|
|
|
|
'0070,1A04' => { VR => 'SQ', Name => 'AnimationCurveSequence' }, |
|
4003
|
|
|
|
|
|
|
'0070,1A05' => { VR => 'FD', Name => 'AnimationStepSize' }, |
|
4004
|
|
|
|
|
|
|
'0070,1A06' => { VR => 'FD', Name => 'SwivelRange' }, |
|
4005
|
|
|
|
|
|
|
'0070,1A07' => { VR => 'OD', Name => 'VolumetricCurveUpDirections' }, |
|
4006
|
|
|
|
|
|
|
'0070,1A08' => { VR => 'SQ', Name => 'VolumeStreamSequence' }, |
|
4007
|
|
|
|
|
|
|
'0070,1A09' => { VR => 'LO', Name => 'RGBATransferFunctionDescription' }, |
|
4008
|
|
|
|
|
|
|
'0070,1B01' => { VR => 'SQ', Name => 'AdvancedBlendingSequence' }, |
|
4009
|
|
|
|
|
|
|
'0070,1B02' => { VR => 'US', Name => 'BlendingInputNumber' }, |
|
4010
|
|
|
|
|
|
|
'0070,1B03' => { VR => 'SQ', Name => 'BlendingDisplayInputSequence' }, |
|
4011
|
|
|
|
|
|
|
'0070,1B04' => { VR => 'SQ', Name => 'BlendingDisplaySequence' }, |
|
4012
|
|
|
|
|
|
|
'0070,1B06' => { VR => 'CS', Name => 'BlendingMode' }, |
|
4013
|
|
|
|
|
|
|
'0070,1B07' => { VR => 'CS', Name => 'TimeSeriesBlending' }, |
|
4014
|
|
|
|
|
|
|
'0070,1B08' => { VR => 'CS', Name => 'GeometryForDisplay' }, |
|
4015
|
|
|
|
|
|
|
'0070,1B11' => { VR => 'SQ', Name => 'ThresholdSequence' }, |
|
4016
|
|
|
|
|
|
|
'0070,1B12' => { VR => 'SQ', Name => 'ThresholdValueSequence' }, |
|
4017
|
|
|
|
|
|
|
'0070,1B13' => { VR => 'CS', Name => 'ThresholdType' }, |
|
4018
|
|
|
|
|
|
|
'0070,1B14' => { VR => 'FD', Name => 'ThresholdValue' }, |
|
4019
|
|
|
|
|
|
|
'0072,0002' => { VR => 'SH', Name => 'HangingProtocolName' }, |
|
4020
|
|
|
|
|
|
|
'0072,0004' => { VR => 'LO', Name => 'HangingProtocolDescription' }, |
|
4021
|
|
|
|
|
|
|
'0072,0006' => { VR => 'CS', Name => 'HangingProtocolLevel' }, |
|
4022
|
|
|
|
|
|
|
'0072,0008' => { VR => 'LO', Name => 'HangingProtocolCreator' }, |
|
4023
|
|
|
|
|
|
|
'0072,000A' => { VR => 'DT', Name => 'HangingProtocolCreationDateTime' }, |
|
4024
|
|
|
|
|
|
|
'0072,000C' => { VR => 'SQ', Name => 'HangingProtocolDefinitionSequence' }, |
|
4025
|
|
|
|
|
|
|
'0072,000E' => { VR => 'SQ', Name => 'HangingProtocolUserIDCodeSequence' }, |
|
4026
|
|
|
|
|
|
|
'0072,0010' => { VR => 'LO', Name => 'HangingProtocolUserGroupName' }, |
|
4027
|
|
|
|
|
|
|
'0072,0012' => { VR => 'SQ', Name => 'SourceHangingProtocolSequence' }, |
|
4028
|
|
|
|
|
|
|
'0072,0014' => { VR => 'US', Name => 'NumberOfPriorsReferenced' }, |
|
4029
|
|
|
|
|
|
|
'0072,0020' => { VR => 'SQ', Name => 'ImageSetsSequence' }, |
|
4030
|
|
|
|
|
|
|
'0072,0022' => { VR => 'SQ', Name => 'ImageSetSelectorSequence' }, |
|
4031
|
|
|
|
|
|
|
'0072,0024' => { VR => 'CS', Name => 'ImageSetSelectorUsageFlag' }, |
|
4032
|
|
|
|
|
|
|
'0072,0026' => { VR => 'AT', Name => 'SelectorAttribute' }, |
|
4033
|
|
|
|
|
|
|
'0072,0028' => { VR => 'US', Name => 'SelectorValueNumber' }, |
|
4034
|
|
|
|
|
|
|
'0072,0030' => { VR => 'SQ', Name => 'TimeBasedImageSetsSequence' }, |
|
4035
|
|
|
|
|
|
|
'0072,0032' => { VR => 'US', Name => 'ImageSetNumber' }, |
|
4036
|
|
|
|
|
|
|
'0072,0034' => { VR => 'CS', Name => 'ImageSetSelectorCategory' }, |
|
4037
|
|
|
|
|
|
|
'0072,0038' => { VR => 'US', Name => 'RelativeTime' }, |
|
4038
|
|
|
|
|
|
|
'0072,003A' => { VR => 'CS', Name => 'RelativeTimeUnits' }, |
|
4039
|
|
|
|
|
|
|
'0072,003C' => { VR => 'SS', Name => 'AbstractPriorValue' }, |
|
4040
|
|
|
|
|
|
|
'0072,003E' => { VR => 'SQ', Name => 'AbstractPriorCodeSequence' }, |
|
4041
|
|
|
|
|
|
|
'0072,0040' => { VR => 'LO', Name => 'ImageSetLabel' }, |
|
4042
|
|
|
|
|
|
|
'0072,0050' => { VR => 'CS', Name => 'SelectorAttributeVR' }, |
|
4043
|
|
|
|
|
|
|
'0072,0052' => { VR => 'AT', Name => 'SelectorSequencePointer' }, |
|
4044
|
|
|
|
|
|
|
'0072,0054' => { VR => 'LO', Name => 'SelectorSeqPointerPrivateCreator' }, |
|
4045
|
|
|
|
|
|
|
'0072,0056' => { VR => 'LO', Name => 'SelectorAttributePrivateCreator' }, |
|
4046
|
|
|
|
|
|
|
'0072,005E' => { VR => 'AE', Name => 'SelectorAEValue' }, |
|
4047
|
|
|
|
|
|
|
'0072,005F' => { VR => 'AS', Name => 'SelectorASValue' }, |
|
4048
|
|
|
|
|
|
|
'0072,0060' => { VR => 'AT', Name => 'SelectorATValue' }, |
|
4049
|
|
|
|
|
|
|
'0072,0061' => { VR => 'DA', Name => 'SelectorDAValue' }, |
|
4050
|
|
|
|
|
|
|
'0072,0062' => { VR => 'CS', Name => 'SelectorCSValue' }, |
|
4051
|
|
|
|
|
|
|
'0072,0063' => { VR => 'DT', Name => 'SelectorDTValue' }, |
|
4052
|
|
|
|
|
|
|
'0072,0064' => { VR => 'IS', Name => 'SelectorISValue' }, |
|
4053
|
|
|
|
|
|
|
'0072,0065' => { VR => 'OB', Name => 'SelectorOBValue' }, |
|
4054
|
|
|
|
|
|
|
'0072,0066' => { VR => 'LO', Name => 'SelectorLOValue' }, |
|
4055
|
|
|
|
|
|
|
'0072,0067' => { VR => 'OF', Name => 'SelectorOFValue' }, |
|
4056
|
|
|
|
|
|
|
'0072,0068' => { VR => 'LT', Name => 'SelectorLTValue' }, |
|
4057
|
|
|
|
|
|
|
'0072,0069' => { VR => 'OW', Name => 'SelectorOWValue' }, |
|
4058
|
|
|
|
|
|
|
'0072,006A' => { VR => 'PN', Name => 'SelectorPNValue' }, |
|
4059
|
|
|
|
|
|
|
'0072,006B' => { VR => 'TM', Name => 'SelectorTMValue' }, |
|
4060
|
|
|
|
|
|
|
'0072,006C' => { VR => 'SH', Name => 'SelectorSHValue' }, |
|
4061
|
|
|
|
|
|
|
'0072,006D' => { VR => 'UN', Name => 'SelectorUNValue' }, |
|
4062
|
|
|
|
|
|
|
'0072,006E' => { VR => 'ST', Name => 'SelectorSTValue' }, |
|
4063
|
|
|
|
|
|
|
'0072,006F' => { VR => 'UC', Name => 'SelectorUCValue' }, |
|
4064
|
|
|
|
|
|
|
'0072,0070' => { VR => 'UT', Name => 'SelectorUTValue' }, |
|
4065
|
|
|
|
|
|
|
'0072,0071' => { VR => 'UR', Name => 'SelectorURValue' }, |
|
4066
|
|
|
|
|
|
|
'0072,0072' => { VR => 'DS', Name => 'SelectorDSValue' }, |
|
4067
|
|
|
|
|
|
|
'0072,0073' => { VR => 'OD', Name => 'SelectorODValue' }, |
|
4068
|
|
|
|
|
|
|
'0072,0074' => { VR => 'FD', Name => 'SelectorFDValue' }, |
|
4069
|
|
|
|
|
|
|
'0072,0075' => { VR => 'OL', Name => 'SelectorOLValue' }, |
|
4070
|
|
|
|
|
|
|
'0072,0076' => { VR => 'FL', Name => 'SelectorFLValue' }, |
|
4071
|
|
|
|
|
|
|
'0072,0078' => { VR => 'UL', Name => 'SelectorULValue' }, |
|
4072
|
|
|
|
|
|
|
'0072,007A' => { VR => 'US', Name => 'SelectorUSValue' }, |
|
4073
|
|
|
|
|
|
|
'0072,007C' => { VR => 'SL', Name => 'SelectorSLValue' }, |
|
4074
|
|
|
|
|
|
|
'0072,007E' => { VR => 'SS', Name => 'SelectorSSValue' }, |
|
4075
|
|
|
|
|
|
|
'0072,007F' => { VR => 'UI', Name => 'SelectorUIValue' }, |
|
4076
|
|
|
|
|
|
|
'0072,0080' => { VR => 'SQ', Name => 'SelectorCodeSequenceValue' }, |
|
4077
|
|
|
|
|
|
|
'0072,0081' => { VR => 'OV', Name => 'SelectorOVValue' }, |
|
4078
|
|
|
|
|
|
|
'0072,0082' => { VR => 'SV', Name => 'SelectorSVValue' }, |
|
4079
|
|
|
|
|
|
|
'0072,0083' => { VR => 'UV', Name => 'SelectorUVValue' }, |
|
4080
|
|
|
|
|
|
|
'0072,0100' => { VR => 'US', Name => 'NumberOfScreens' }, |
|
4081
|
|
|
|
|
|
|
'0072,0102' => { VR => 'SQ', Name => 'NominalScreenDefinitionSequence' }, |
|
4082
|
|
|
|
|
|
|
'0072,0104' => { VR => 'US', Name => 'NumberOfVerticalPixels' }, |
|
4083
|
|
|
|
|
|
|
'0072,0106' => { VR => 'US', Name => 'NumberOfHorizontalPixels' }, |
|
4084
|
|
|
|
|
|
|
'0072,0108' => { VR => 'FD', Name => 'DisplayEnvironmentSpatialPosition' }, |
|
4085
|
|
|
|
|
|
|
'0072,010A' => { VR => 'US', Name => 'ScreenMinimumGrayscaleBitDepth' }, |
|
4086
|
|
|
|
|
|
|
'0072,010C' => { VR => 'US', Name => 'ScreenMinimumColorBitDepth' }, |
|
4087
|
|
|
|
|
|
|
'0072,010E' => { VR => 'US', Name => 'ApplicationMaximumRepaintTime' }, |
|
4088
|
|
|
|
|
|
|
'0072,0200' => { VR => 'SQ', Name => 'DisplaySetsSequence' }, |
|
4089
|
|
|
|
|
|
|
'0072,0202' => { VR => 'US', Name => 'DisplaySetNumber' }, |
|
4090
|
|
|
|
|
|
|
'0072,0203' => { VR => 'LO', Name => 'DisplaySetLabel' }, |
|
4091
|
|
|
|
|
|
|
'0072,0204' => { VR => 'US', Name => 'DisplaySetPresentationGroup' }, |
|
4092
|
|
|
|
|
|
|
'0072,0206' => { VR => 'LO', Name => 'DisplaySetPresentationGroupDescr' }, |
|
4093
|
|
|
|
|
|
|
'0072,0208' => { VR => 'CS', Name => 'PartialDataDisplayHandling' }, |
|
4094
|
|
|
|
|
|
|
'0072,0210' => { VR => 'SQ', Name => 'SynchronizedScrollingSequence' }, |
|
4095
|
|
|
|
|
|
|
'0072,0212' => { VR => 'US', Name => 'DisplaySetScrollingGroup' }, |
|
4096
|
|
|
|
|
|
|
'0072,0214' => { VR => 'SQ', Name => 'NavigationIndicatorSequence' }, |
|
4097
|
|
|
|
|
|
|
'0072,0216' => { VR => 'US', Name => 'NavigationDisplaySet' }, |
|
4098
|
|
|
|
|
|
|
'0072,0218' => { VR => 'US', Name => 'ReferenceDisplaySets' }, |
|
4099
|
|
|
|
|
|
|
'0072,0300' => { VR => 'SQ', Name => 'ImageBoxesSequence' }, |
|
4100
|
|
|
|
|
|
|
'0072,0302' => { VR => 'US', Name => 'ImageBoxNumber' }, |
|
4101
|
|
|
|
|
|
|
'0072,0304' => { VR => 'CS', Name => 'ImageBoxLayoutType' }, |
|
4102
|
|
|
|
|
|
|
'0072,0306' => { VR => 'US', Name => 'ImageBoxTileHorizontalDimension' }, |
|
4103
|
|
|
|
|
|
|
'0072,0308' => { VR => 'US', Name => 'ImageBoxTileVerticalDimension' }, |
|
4104
|
|
|
|
|
|
|
'0072,0310' => { VR => 'CS', Name => 'ImageBoxScrollDirection' }, |
|
4105
|
|
|
|
|
|
|
'0072,0312' => { VR => 'CS', Name => 'ImageBoxSmallScrollType' }, |
|
4106
|
|
|
|
|
|
|
'0072,0314' => { VR => 'US', Name => 'ImageBoxSmallScrollAmount' }, |
|
4107
|
|
|
|
|
|
|
'0072,0316' => { VR => 'CS', Name => 'ImageBoxLargeScrollType' }, |
|
4108
|
|
|
|
|
|
|
'0072,0318' => { VR => 'US', Name => 'ImageBoxLargeScrollAmount' }, |
|
4109
|
|
|
|
|
|
|
'0072,0320' => { VR => 'US', Name => 'ImageBoxOverlapPriority' }, |
|
4110
|
|
|
|
|
|
|
'0072,0330' => { VR => 'FD', Name => 'CineRelativeToRealTime' }, |
|
4111
|
|
|
|
|
|
|
'0072,0400' => { VR => 'SQ', Name => 'FilterOperationsSequence' }, |
|
4112
|
|
|
|
|
|
|
'0072,0402' => { VR => 'CS', Name => 'FilterByCategory' }, |
|
4113
|
|
|
|
|
|
|
'0072,0404' => { VR => 'CS', Name => 'FilterByAttributePresence' }, |
|
4114
|
|
|
|
|
|
|
'0072,0406' => { VR => 'CS', Name => 'FilterByOperator' }, |
|
4115
|
|
|
|
|
|
|
'0072,0420' => { VR => 'US', Name => 'StructuredDisplayBkgCIELabValue' }, |
|
4116
|
|
|
|
|
|
|
'0072,0421' => { VR => 'US', Name => 'EmptyImageBoxCIELabValue' }, |
|
4117
|
|
|
|
|
|
|
'0072,0422' => { VR => 'SQ', Name => 'StructuredDisplayImageBoxSequence' }, |
|
4118
|
|
|
|
|
|
|
'0072,0424' => { VR => 'SQ', Name => 'StructuredDisplayTextBoxSequence' }, |
|
4119
|
|
|
|
|
|
|
'0072,0427' => { VR => 'SQ', Name => 'ReferencedFirstFrameSequence' }, |
|
4120
|
|
|
|
|
|
|
'0072,0430' => { VR => 'SQ', Name => 'ImageBoxSynchronizationSequence' }, |
|
4121
|
|
|
|
|
|
|
'0072,0432' => { VR => 'US', Name => 'SynchronizedImageBoxList' }, |
|
4122
|
|
|
|
|
|
|
'0072,0434' => { VR => 'CS', Name => 'TypeOfSynchronization' }, |
|
4123
|
|
|
|
|
|
|
'0072,0500' => { VR => 'CS', Name => 'BlendingOperationType' }, |
|
4124
|
|
|
|
|
|
|
'0072,0510' => { VR => 'CS', Name => 'ReformattingOperationType' }, |
|
4125
|
|
|
|
|
|
|
'0072,0512' => { VR => 'FD', Name => 'ReformattingThickness' }, |
|
4126
|
|
|
|
|
|
|
'0072,0514' => { VR => 'FD', Name => 'ReformattingInterval' }, |
|
4127
|
|
|
|
|
|
|
'0072,0516' => { VR => 'CS', Name => 'ReformattingOpInitialViewDir' }, |
|
4128
|
|
|
|
|
|
|
'0072,0520' => { VR => 'CS', Name => 'RenderingType3D' }, |
|
4129
|
|
|
|
|
|
|
'0072,0600' => { VR => 'SQ', Name => 'SortingOperationsSequence' }, |
|
4130
|
|
|
|
|
|
|
'0072,0602' => { VR => 'CS', Name => 'SortByCategory' }, |
|
4131
|
|
|
|
|
|
|
'0072,0604' => { VR => 'CS', Name => 'SortingDirection' }, |
|
4132
|
|
|
|
|
|
|
'0072,0700' => { VR => 'CS', Name => 'DisplaySetPatientOrientation' }, |
|
4133
|
|
|
|
|
|
|
'0072,0702' => { VR => 'CS', Name => 'VOIType' }, |
|
4134
|
|
|
|
|
|
|
'0072,0704' => { VR => 'CS', Name => 'PseudoColorType' }, |
|
4135
|
|
|
|
|
|
|
'0072,0705' => { VR => 'SQ', Name => 'PseudoColorPaletteInstanceRefSeq' }, |
|
4136
|
|
|
|
|
|
|
'0072,0706' => { VR => 'CS', Name => 'ShowGrayscaleInverted' }, |
|
4137
|
|
|
|
|
|
|
'0072,0710' => { VR => 'CS', Name => 'ShowImageTrueSizeFlag' }, |
|
4138
|
|
|
|
|
|
|
'0072,0712' => { VR => 'CS', Name => 'ShowGraphicAnnotationFlag' }, |
|
4139
|
|
|
|
|
|
|
'0072,0714' => { VR => 'CS', Name => 'ShowPatientDemographicsFlag' }, |
|
4140
|
|
|
|
|
|
|
'0072,0716' => { VR => 'CS', Name => 'ShowAcquisitionTechniquesFlag' }, |
|
4141
|
|
|
|
|
|
|
'0072,0717' => { VR => 'CS', Name => 'DisplaySetHorizontalJustification' }, |
|
4142
|
|
|
|
|
|
|
'0072,0718' => { VR => 'CS', Name => 'DisplaySetVerticalJustification' }, |
|
4143
|
|
|
|
|
|
|
'0074,0120' => { VR => 'FD', Name => 'ContinuationStartMeterset' }, |
|
4144
|
|
|
|
|
|
|
'0074,0121' => { VR => 'FD', Name => 'ContinuationEndMeterset' }, |
|
4145
|
|
|
|
|
|
|
'0074,1000' => { VR => 'CS', Name => 'UnifiedProcedureStepState' }, |
|
4146
|
|
|
|
|
|
|
'0074,1002' => { VR => 'SQ', Name => 'UPSProgressInformationSequence' }, |
|
4147
|
|
|
|
|
|
|
'0074,1004' => { VR => 'DS', Name => 'UnifiedProcedureStepProgress' }, |
|
4148
|
|
|
|
|
|
|
'0074,1006' => { VR => 'ST', Name => 'UnifiedProcedureStepProgressDescr' }, |
|
4149
|
|
|
|
|
|
|
'0074,1007' => { VR => 'SQ', Name => 'ProcedureStepProgressParametersSeq' }, |
|
4150
|
|
|
|
|
|
|
'0074,1008' => { VR => 'SQ', Name => 'UnifiedProcedureStepComURISeq' }, |
|
4151
|
|
|
|
|
|
|
'0074,100a' => { VR => 'ST', Name => 'ContactURI' }, |
|
4152
|
|
|
|
|
|
|
'0074,100c' => { VR => 'LO', Name => 'ContactDisplayName' }, |
|
4153
|
|
|
|
|
|
|
'0074,100E' => { VR => 'SQ', Name => 'ProcedureStepDiscontinuationReason' }, |
|
4154
|
|
|
|
|
|
|
'0074,1020' => { VR => 'SQ', Name => 'BeamTaskSequence' }, |
|
4155
|
|
|
|
|
|
|
'0074,1022' => { VR => 'CS', Name => 'BeamTaskType' }, |
|
4156
|
|
|
|
|
|
|
'0074,1024' => { VR => 'IS', Name => 'BeamOrderIndex' }, |
|
4157
|
|
|
|
|
|
|
'0074,1025' => { VR => 'CS', Name => 'AutosequenceFlag' }, |
|
4158
|
|
|
|
|
|
|
'0074,1026' => { VR => 'FD', Name => 'TableTopVerticalAdjustedPosition' }, |
|
4159
|
|
|
|
|
|
|
'0074,1027' => { VR => 'FD', Name => 'TableTopLongitudinalAdjustedPos' }, |
|
4160
|
|
|
|
|
|
|
'0074,1028' => { VR => 'FD', Name => 'TableTopLateralAdjustedPosition' }, |
|
4161
|
|
|
|
|
|
|
'0074,102A' => { VR => 'FD', Name => 'PatientSupportAdjustedAngle' }, |
|
4162
|
|
|
|
|
|
|
'0074,102B' => { VR => 'FD', Name => 'TableTopEccentricAdjustedAngle' }, |
|
4163
|
|
|
|
|
|
|
'0074,102C' => { VR => 'FD', Name => 'TableTopPitchAdjustedAngle' }, |
|
4164
|
|
|
|
|
|
|
'0074,102D' => { VR => 'FD', Name => 'TableTopRollAdjustedAngle' }, |
|
4165
|
|
|
|
|
|
|
'0074,1030' => { VR => 'SQ', Name => 'DeliveryVerificationImageSequence' }, |
|
4166
|
|
|
|
|
|
|
'0074,1032' => { VR => 'CS', Name => 'VerificationImageTiming' }, |
|
4167
|
|
|
|
|
|
|
'0074,1034' => { VR => 'CS', Name => 'DoubleExposureFlag' }, |
|
4168
|
|
|
|
|
|
|
'0074,1036' => { VR => 'CS', Name => 'DoubleExposureOrdering' }, |
|
4169
|
|
|
|
|
|
|
'0074,1038' => { VR => 'DS', Name => 'DoubleExposureMeterset' }, |
|
4170
|
|
|
|
|
|
|
'0074,103A' => { VR => 'DS', Name => 'DoubleExposureFieldDelta' }, |
|
4171
|
|
|
|
|
|
|
'0074,1040' => { VR => 'SQ', Name => 'RelatedReferenceRTImageSequence' }, |
|
4172
|
|
|
|
|
|
|
'0074,1042' => { VR => 'SQ', Name => 'GeneralMachineVerificationSequence' }, |
|
4173
|
|
|
|
|
|
|
'0074,1044' => { VR => 'SQ', Name => 'ConventionalMachineVerificationSeq' }, |
|
4174
|
|
|
|
|
|
|
'0074,1046' => { VR => 'SQ', Name => 'IonMachineVerificationSequence' }, |
|
4175
|
|
|
|
|
|
|
'0074,1048' => { VR => 'SQ', Name => 'FailedAttributesSequence' }, |
|
4176
|
|
|
|
|
|
|
'0074,104A' => { VR => 'SQ', Name => 'OverriddenAttributesSequence' }, |
|
4177
|
|
|
|
|
|
|
'0074,104C' => { VR => 'SQ', Name => 'ConventionalControlPointVerifySeq' }, |
|
4178
|
|
|
|
|
|
|
'0074,104E' => { VR => 'SQ', Name => 'IonControlPointVerificationSeq' }, |
|
4179
|
|
|
|
|
|
|
'0074,1050' => { VR => 'SQ', Name => 'AttributeOccurrenceSequence' }, |
|
4180
|
|
|
|
|
|
|
'0074,1052' => { VR => 'AT', Name => 'AttributeOccurrencePointer' }, |
|
4181
|
|
|
|
|
|
|
'0074,1054' => { VR => 'UL', Name => 'AttributeItemSelector' }, |
|
4182
|
|
|
|
|
|
|
'0074,1056' => { VR => 'LO', Name => 'AttributeOccurrencePrivateCreator' }, |
|
4183
|
|
|
|
|
|
|
'0074,1057' => { VR => 'IS', Name => 'SelectorSequencePointerItems' }, |
|
4184
|
|
|
|
|
|
|
'0074,1200' => { VR => 'CS', Name => 'ScheduledProcedureStepPriority' }, |
|
4185
|
|
|
|
|
|
|
'0074,1202' => { VR => 'LO', Name => 'WorklistLabel' }, |
|
4186
|
|
|
|
|
|
|
'0074,1204' => { VR => 'LO', Name => 'ProcedureStepLabel' }, |
|
4187
|
|
|
|
|
|
|
'0074,1210' => { VR => 'SQ', Name => 'ScheduledProcessingParametersSeq' }, |
|
4188
|
|
|
|
|
|
|
'0074,1212' => { VR => 'SQ', Name => 'PerformedProcessingParametersSeq' }, |
|
4189
|
|
|
|
|
|
|
'0074,1216' => { VR => 'SQ', Name => 'UPSPerformedProcedureSequence' }, |
|
4190
|
|
|
|
|
|
|
'0074,1220' => { VR => 'SQ', Name => 'RelatedProcedureStepSequence' }, |
|
4191
|
|
|
|
|
|
|
'0074,1222' => { VR => 'LO', Name => 'ProcedureStepRelationshipType' }, |
|
4192
|
|
|
|
|
|
|
'0074,1224' => { VR => 'SQ', Name => 'ReplacedProcedureStepSequence' }, |
|
4193
|
|
|
|
|
|
|
'0074,1230' => { VR => 'LO', Name => 'DeletionLock' }, |
|
4194
|
|
|
|
|
|
|
'0074,1234' => { VR => 'AE', Name => 'ReceivingAE' }, |
|
4195
|
|
|
|
|
|
|
'0074,1236' => { VR => 'AE', Name => 'RequestingAE' }, |
|
4196
|
|
|
|
|
|
|
'0074,1238' => { VR => 'LT', Name => 'ReasonForCancellation' }, |
|
4197
|
|
|
|
|
|
|
'0074,1242' => { VR => 'CS', Name => 'SCPStatus' }, |
|
4198
|
|
|
|
|
|
|
'0074,1244' => { VR => 'CS', Name => 'SubscriptionListStatus' }, |
|
4199
|
|
|
|
|
|
|
'0074,1246' => { VR => 'CS', Name => 'UPSListStatus' }, |
|
4200
|
|
|
|
|
|
|
'0074,1324' => { VR => 'UL', Name => 'BeamOrderIndex' }, |
|
4201
|
|
|
|
|
|
|
'0074,1338' => { VR => 'FD', Name => 'DoubleExposureMeterset' }, |
|
4202
|
|
|
|
|
|
|
'0074,133A' => { VR => 'FD', Name => 'DoubleExposureFieldDelta' }, |
|
4203
|
|
|
|
|
|
|
'0074,1401' => { VR => 'SQ', Name => 'BrachyTaskSequence' }, |
|
4204
|
|
|
|
|
|
|
'0074,1402' => { VR => 'DS', Name => 'ContinuationStartTotalRefAirKerma' }, |
|
4205
|
|
|
|
|
|
|
'0074,1403' => { VR => 'DS', Name => 'ContinuationEndTotalRefAirKerma' }, |
|
4206
|
|
|
|
|
|
|
'0074,1404' => { VR => 'IS', Name => 'ContinuationPulseNumber' }, |
|
4207
|
|
|
|
|
|
|
'0074,1405' => { VR => 'SQ', Name => 'ChannelDeliveryOrderSequence' }, |
|
4208
|
|
|
|
|
|
|
'0074,1406' => { VR => 'IS', Name => 'ReferencedChannelNumber' }, |
|
4209
|
|
|
|
|
|
|
'0074,1407' => { VR => 'DS', Name => 'StartCumulativeTimeWeight' }, |
|
4210
|
|
|
|
|
|
|
'0074,1408' => { VR => 'DS', Name => 'EndCumulativeTimeWeight' }, |
|
4211
|
|
|
|
|
|
|
'0074,1409' => { VR => 'SQ', Name => 'OmittedChannelSequence' }, |
|
4212
|
|
|
|
|
|
|
'0074,140A' => { VR => 'CS', Name => 'ReasonForChannelOmission' }, |
|
4213
|
|
|
|
|
|
|
'0074,140B' => { VR => 'LO', Name => 'ReasonForChannelOmissionDescr' }, |
|
4214
|
|
|
|
|
|
|
'0074,140C' => { VR => 'IS', Name => 'ChannelDeliveryOrderIndex' }, |
|
4215
|
|
|
|
|
|
|
'0074,140D' => { VR => 'SQ', Name => 'ChannelDeliveryContinuationSeq' }, |
|
4216
|
|
|
|
|
|
|
'0074,140E' => { VR => 'SQ', Name => 'OmittedApplicationSetupSequence' }, |
|
4217
|
|
|
|
|
|
|
'0076,0001' => { VR => 'LO', Name => 'ImplantAssemblyTemplateName' }, |
|
4218
|
|
|
|
|
|
|
'0076,0003' => { VR => 'LO', Name => 'ImplantAssemblyTemplateIssuer' }, |
|
4219
|
|
|
|
|
|
|
'0076,0006' => { VR => 'LO', Name => 'ImplantAssemblyTemplateVersion' }, |
|
4220
|
|
|
|
|
|
|
'0076,0008' => { VR => 'SQ', Name => 'ReplacedImplantAssemblyTemplateSeq' }, |
|
4221
|
|
|
|
|
|
|
'0076,000A' => { VR => 'CS', Name => 'ImplantAssemblyTemplateType' }, |
|
4222
|
|
|
|
|
|
|
'0076,000C' => { VR => 'SQ', Name => 'OriginalImplantAssemblyTemplateSeq' }, |
|
4223
|
|
|
|
|
|
|
'0076,000E' => { VR => 'SQ', Name => 'DerivationImplantAssyTemplateSeq' }, |
|
4224
|
|
|
|
|
|
|
'0076,0010' => { VR => 'SQ', Name => 'ImplantAssyTemplateTgtAnatomySeq' }, |
|
4225
|
|
|
|
|
|
|
'0076,0020' => { VR => 'SQ', Name => 'ProcedureTypeCodeSequence' }, |
|
4226
|
|
|
|
|
|
|
'0076,0030' => { VR => 'LO', Name => 'SurgicalTechnique' }, |
|
4227
|
|
|
|
|
|
|
'0076,0032' => { VR => 'SQ', Name => 'ComponentTypesSequence' }, |
|
4228
|
|
|
|
|
|
|
'0076,0034' => { VR => 'SQ', Name => 'ComponentTypeCodeSequence' }, |
|
4229
|
|
|
|
|
|
|
'0076,0036' => { VR => 'CS', Name => 'ExclusiveComponentType' }, |
|
4230
|
|
|
|
|
|
|
'0076,0038' => { VR => 'CS', Name => 'MandatoryComponentType' }, |
|
4231
|
|
|
|
|
|
|
'0076,0040' => { VR => 'SQ', Name => 'ComponentSequence' }, |
|
4232
|
|
|
|
|
|
|
'0076,0055' => { VR => 'US', Name => 'ComponentID' }, |
|
4233
|
|
|
|
|
|
|
'0076,0060' => { VR => 'SQ', Name => 'ComponentAssemblySequence' }, |
|
4234
|
|
|
|
|
|
|
'0076,0070' => { VR => 'US', Name => 'Component1ReferencedID' }, |
|
4235
|
|
|
|
|
|
|
'0076,0080' => { VR => 'US', Name => 'Component1RefMatingFeatureSetID' }, |
|
4236
|
|
|
|
|
|
|
'0076,0090' => { VR => 'US', Name => 'Component1RefMatingFeatureID' }, |
|
4237
|
|
|
|
|
|
|
'0076,00A0' => { VR => 'US', Name => 'Component2ReferencedID' }, |
|
4238
|
|
|
|
|
|
|
'0076,00B0' => { VR => 'US', Name => 'Component2RefMatingFeatureSetID' }, |
|
4239
|
|
|
|
|
|
|
'0076,00C0' => { VR => 'US', Name => 'Component2RefMatingFeatureID' }, |
|
4240
|
|
|
|
|
|
|
'0078,0001' => { VR => 'LO', Name => 'ImplantTemplateGroupName' }, |
|
4241
|
|
|
|
|
|
|
'0078,0010' => { VR => 'ST', Name => 'ImplantTemplateGroupDescription' }, |
|
4242
|
|
|
|
|
|
|
'0078,0020' => { VR => 'LO', Name => 'ImplantTemplateGroupIssuer' }, |
|
4243
|
|
|
|
|
|
|
'0078,0024' => { VR => 'LO', Name => 'ImplantTemplateGroupVersion' }, |
|
4244
|
|
|
|
|
|
|
'0078,0026' => { VR => 'SQ', Name => 'ReplacedImplantTemplateGroupSeq' }, |
|
4245
|
|
|
|
|
|
|
'0078,0028' => { VR => 'SQ', Name => 'ImplantTemplateGroupTgtAnatomySeq' }, |
|
4246
|
|
|
|
|
|
|
'0078,002A' => { VR => 'SQ', Name => 'ImplantTemplateGroupMembersSeq' }, |
|
4247
|
|
|
|
|
|
|
'0078,002E' => { VR => 'US', Name => 'ImplantTemplateGroupMemberID' }, |
|
4248
|
|
|
|
|
|
|
'0078,0050' => { VR => 'FD', Name => 'ThreeDImplantTemplGrpMemMatchPoint' }, |
|
4249
|
|
|
|
|
|
|
'0078,0060' => { VR => 'FD', Name => 'ThreeDImplantTemplGrpMemMatchAxes' }, |
|
4250
|
|
|
|
|
|
|
'0078,0070' => { VR => 'SQ', Name => 'ImplantTemplGrpMemMatch2DCoordSeq' }, |
|
4251
|
|
|
|
|
|
|
'0078,0090' => { VR => 'FD', Name => 'TwoDImplantTemplGrpMemMatchPoint' }, |
|
4252
|
|
|
|
|
|
|
'0078,00A0' => { VR => 'FD', Name => 'TwoDImplantTemplGrpMemberMatchAxes' }, |
|
4253
|
|
|
|
|
|
|
'0078,00B0' => { VR => 'SQ', Name => 'ImplantTemplGrpVariationDimSeq' }, |
|
4254
|
|
|
|
|
|
|
'0078,00B2' => { VR => 'LO', Name => 'ImplantTemplGrpVariationDimName' }, |
|
4255
|
|
|
|
|
|
|
'0078,00B4' => { VR => 'SQ', Name => 'ImplantTemplGrpVariationDimRankSeq' }, |
|
4256
|
|
|
|
|
|
|
'0078,00B6' => { VR => 'US', Name => 'RefImplantTemplateGroupMemberID' }, |
|
4257
|
|
|
|
|
|
|
'0078,00B8' => { VR => 'US', Name => 'ImplantTemplGrpVariationDimRank' }, |
|
4258
|
|
|
|
|
|
|
'0080,0001' => { VR => 'SQ', Name => 'SurfaceScanAcquisitionTypeCodeSeq' }, |
|
4259
|
|
|
|
|
|
|
'0080,0002' => { VR => 'SQ', Name => 'SurfaceScanModeCodeSequence' }, |
|
4260
|
|
|
|
|
|
|
'0080,0003' => { VR => 'SQ', Name => 'RegistrationMethodCodeSequence' }, |
|
4261
|
|
|
|
|
|
|
'0080,0004' => { VR => 'FD', Name => 'ShotDurationTime' }, |
|
4262
|
|
|
|
|
|
|
'0080,0005' => { VR => 'FD', Name => 'ShotOffsetTime' }, |
|
4263
|
|
|
|
|
|
|
'0080,0006' => { VR => 'US', Name => 'SurfacePointPresentationValueData' }, |
|
4264
|
|
|
|
|
|
|
'0080,0007' => { VR => 'US', Name => 'SurfacePointColorCIELabValueData' }, |
|
4265
|
|
|
|
|
|
|
'0080,0008' => { VR => 'SQ', Name => 'UVMappingSequence' }, |
|
4266
|
|
|
|
|
|
|
'0080,0009' => { VR => 'SH', Name => 'TextureLabel' }, |
|
4267
|
|
|
|
|
|
|
'0080,0010' => { VR => 'OF', Name => 'UValueData' }, |
|
4268
|
|
|
|
|
|
|
'0080,0011' => { VR => 'OF', Name => 'VValueData' }, |
|
4269
|
|
|
|
|
|
|
'0080,0012' => { VR => 'SQ', Name => 'ReferencedTextureSequence' }, |
|
4270
|
|
|
|
|
|
|
'0080,0013' => { VR => 'SQ', Name => 'ReferencedSurfaceDataSequence' }, |
|
4271
|
|
|
|
|
|
|
'0082,0001' => { VR => 'CS', Name => 'AssessmentSummary' }, |
|
4272
|
|
|
|
|
|
|
'0082,0003' => { VR => 'UT', Name => 'AssessmentSummaryDescription' }, |
|
4273
|
|
|
|
|
|
|
'0082,0004' => { VR => 'SQ', Name => 'AssessedSOPInstanceSequence' }, |
|
4274
|
|
|
|
|
|
|
'0082,0005' => { VR => 'SQ', Name => 'ReferencedComparisonSOPInstanceSeq' }, |
|
4275
|
|
|
|
|
|
|
'0082,0006' => { VR => 'UL', Name => 'NumberOfAssessmentObservations' }, |
|
4276
|
|
|
|
|
|
|
'0082,0007' => { VR => 'SQ', Name => 'AssessmentObservationsSequence' }, |
|
4277
|
|
|
|
|
|
|
'0082,0008' => { VR => 'CS', Name => 'ObservationSignificance' }, |
|
4278
|
|
|
|
|
|
|
'0082,000A' => { VR => 'UT', Name => 'ObservationDescription' }, |
|
4279
|
|
|
|
|
|
|
'0082,000C' => { VR => 'SQ', Name => 'StructuredConstraintObservationSeq' }, |
|
4280
|
|
|
|
|
|
|
'0082,0010' => { VR => 'SQ', Name => 'AssessedAttributeValueSequence' }, |
|
4281
|
|
|
|
|
|
|
'0082,0016' => { VR => 'LO', Name => 'AssessmentSetID' }, |
|
4282
|
|
|
|
|
|
|
'0082,0017' => { VR => 'SQ', Name => 'AssessmentRequesterSequence' }, |
|
4283
|
|
|
|
|
|
|
'0082,0018' => { VR => 'LO', Name => 'SelectorAttributeName' }, |
|
4284
|
|
|
|
|
|
|
'0082,0019' => { VR => 'LO', Name => 'SelectorAttributeKeyword' }, |
|
4285
|
|
|
|
|
|
|
'0082,0021' => { VR => 'SQ', Name => 'AssessmentTypeCodeSequence' }, |
|
4286
|
|
|
|
|
|
|
'0082,0022' => { VR => 'SQ', Name => 'ObservationBasisCodeSequence' }, |
|
4287
|
|
|
|
|
|
|
'0082,0023' => { VR => 'LO', Name => 'AssessmentLabel' }, |
|
4288
|
|
|
|
|
|
|
'0082,0032' => { VR => 'CS', Name => 'ConstraintType' }, |
|
4289
|
|
|
|
|
|
|
'0082,0033' => { VR => 'UT', Name => 'SpecificationSelectionGuidance' }, |
|
4290
|
|
|
|
|
|
|
'0082,0034' => { VR => 'SQ', Name => 'ConstraintValueSequence' }, |
|
4291
|
|
|
|
|
|
|
'0082,0035' => { VR => 'SQ', Name => 'RecommendedDefaultValueSequence' }, |
|
4292
|
|
|
|
|
|
|
'0082,0036' => { VR => 'CS', Name => 'ConstraintViolationSignificance' }, |
|
4293
|
|
|
|
|
|
|
'0082,0037' => { VR => 'UT', Name => 'ConstraintViolationCondition' }, |
|
4294
|
|
|
|
|
|
|
'0082,0038' => { VR => 'CS', Name => 'ModifiableConstraintFlag' }, |
|
4295
|
|
|
|
|
|
|
# storage group |
|
4296
|
|
|
|
|
|
|
'0088,0130' => { VR => 'SH', Name => 'StorageMediaFileSetID' }, |
|
4297
|
|
|
|
|
|
|
'0088,0140' => { VR => 'UI', Name => 'StorageMediaFileSetUID' }, |
|
4298
|
|
|
|
|
|
|
'0088,0200' => { VR => 'SQ', Name => 'IconImageSequence' }, |
|
4299
|
|
|
|
|
|
|
'0088,0904' => { VR => 'LO', Name => 'TopicTitle' }, |
|
4300
|
|
|
|
|
|
|
'0088,0906' => { VR => 'ST', Name => 'TopicSubject' }, |
|
4301
|
|
|
|
|
|
|
'0088,0910' => { VR => 'LO', Name => 'TopicAuthor' }, |
|
4302
|
|
|
|
|
|
|
'0088,0912' => { VR => 'LO', Name => 'TopicKeywords' }, |
|
4303
|
|
|
|
|
|
|
'0100,0410' => { VR => 'CS', Name => 'SOPInstanceStatus' }, |
|
4304
|
|
|
|
|
|
|
'0100,0420' => { VR => 'DT', Name => 'SOPAuthorizationDateAndTime' }, |
|
4305
|
|
|
|
|
|
|
'0100,0424' => { VR => 'LT', Name => 'SOPAuthorizationComment' }, |
|
4306
|
|
|
|
|
|
|
'0100,0426' => { VR => 'LO', Name => 'AuthorizationEquipmentCertNumber' }, |
|
4307
|
|
|
|
|
|
|
'0400,0005' => { VR => 'US', Name => 'MACIDNumber' }, |
|
4308
|
|
|
|
|
|
|
'0400,0010' => { VR => 'UI', Name => 'MACCalculationTransferSyntaxUID' }, |
|
4309
|
|
|
|
|
|
|
'0400,0015' => { VR => 'CS', Name => 'MACAlgorithm' }, |
|
4310
|
|
|
|
|
|
|
'0400,0020' => { VR => 'AT', Name => 'DataElementsSigned' }, |
|
4311
|
|
|
|
|
|
|
'0400,0100' => { VR => 'UI', Name => 'DigitalSignatureUID' }, |
|
4312
|
|
|
|
|
|
|
'0400,0105' => { VR => 'DT', Name => 'DigitalSignatureDateTime' }, |
|
4313
|
|
|
|
|
|
|
'0400,0110' => { VR => 'CS', Name => 'CertificateType' }, |
|
4314
|
|
|
|
|
|
|
'0400,0115' => { VR => 'OB', Name => 'CertificateOfSigner' }, |
|
4315
|
|
|
|
|
|
|
'0400,0120' => { VR => 'OB', Name => 'Signature' }, |
|
4316
|
|
|
|
|
|
|
'0400,0305' => { VR => 'CS', Name => 'CertifiedTimestampType' }, |
|
4317
|
|
|
|
|
|
|
'0400,0310' => { VR => 'OB', Name => 'CertifiedTimestamp' }, |
|
4318
|
|
|
|
|
|
|
'0400,0401' => { VR => 'SQ', Name => 'DigitalSignaturePurposeCodeSeq' }, |
|
4319
|
|
|
|
|
|
|
'0400,0402' => { VR => 'SQ', Name => 'ReferencedDigitalSignatureSeq' }, |
|
4320
|
|
|
|
|
|
|
'0400,0403' => { VR => 'SQ', Name => 'ReferencedSOPInstanceMACSeq' }, |
|
4321
|
|
|
|
|
|
|
'0400,0404' => { VR => 'OB', Name => 'MAC' }, |
|
4322
|
|
|
|
|
|
|
'0400,0500' => { VR => 'SQ', Name => 'EncryptedAttributesSequence' }, |
|
4323
|
|
|
|
|
|
|
'0400,0510' => { VR => 'UI', Name => 'EncryptedContentTransferSyntaxUID' }, |
|
4324
|
|
|
|
|
|
|
'0400,0520' => { VR => 'OB', Name => 'EncryptedContent' }, |
|
4325
|
|
|
|
|
|
|
'0400,0550' => { VR => 'SQ', Name => 'ModifiedAttributesSequence' }, |
|
4326
|
|
|
|
|
|
|
'0400,0551' => { VR => 'SQ', Name => 'NonconformingModifiedAttributesSeq' }, |
|
4327
|
|
|
|
|
|
|
'0400,0552' => { VR => 'OB', Name => 'NonconformingDataElementValue' }, |
|
4328
|
|
|
|
|
|
|
'0400,0561' => { VR => 'SQ', Name => 'OriginalAttributesSequence' }, |
|
4329
|
|
|
|
|
|
|
'0400,0562' => { VR => 'DT', Name => 'AttributeModificationDateTime' }, |
|
4330
|
|
|
|
|
|
|
'0400,0563' => { VR => 'LO', Name => 'ModifyingSystem' }, |
|
4331
|
|
|
|
|
|
|
'0400,0564' => { VR => 'LO', Name => 'SourceOfPreviousValues' }, |
|
4332
|
|
|
|
|
|
|
'0400,0565' => { VR => 'CS', Name => 'ReasonForTheAttributeModification' }, |
|
4333
|
|
|
|
|
|
|
'0400,0600' => { VR => 'CS', Name => 'InstanceOriginStatus' }, |
|
4334
|
|
|
|
|
|
|
'1000,xxx0' => { VR => 'US', Name => 'EscapeTriplet' }, |
|
4335
|
|
|
|
|
|
|
'1000,xxx1' => { VR => 'US', Name => 'RunLengthTriplet' }, |
|
4336
|
|
|
|
|
|
|
'1000,xxx2' => { VR => 'US', Name => 'HuffmanTableSize' }, |
|
4337
|
|
|
|
|
|
|
'1000,xxx3' => { VR => 'US', Name => 'HuffmanTableTriplet' }, |
|
4338
|
|
|
|
|
|
|
'1000,xxx4' => { VR => 'US', Name => 'ShiftTableSize' }, |
|
4339
|
|
|
|
|
|
|
'1000,xxx5' => { VR => 'US', Name => 'ShiftTableTriplet' }, |
|
4340
|
|
|
|
|
|
|
'1010,xxxx' => { VR => 'US', Name => 'ZonalMap' }, |
|
4341
|
|
|
|
|
|
|
'2000,0010' => { VR => 'IS', Name => 'NumberOfCopies' }, |
|
4342
|
|
|
|
|
|
|
'2000,001E' => { VR => 'SQ', Name => 'PrinterConfigurationSequence' }, |
|
4343
|
|
|
|
|
|
|
'2000,0020' => { VR => 'CS', Name => 'PrintPriority' }, |
|
4344
|
|
|
|
|
|
|
'2000,0030' => { VR => 'CS', Name => 'MediumType' }, |
|
4345
|
|
|
|
|
|
|
'2000,0040' => { VR => 'CS', Name => 'FilmDestination' }, |
|
4346
|
|
|
|
|
|
|
'2000,0050' => { VR => 'LO', Name => 'FilmSessionLabel' }, |
|
4347
|
|
|
|
|
|
|
'2000,0060' => { VR => 'IS', Name => 'MemoryAllocation' }, |
|
4348
|
|
|
|
|
|
|
'2000,0061' => { VR => 'IS', Name => 'MaximumMemoryAllocation' }, |
|
4349
|
|
|
|
|
|
|
'2000,0062' => { VR => 'CS', Name => 'ColorImagePrintingFlag' }, |
|
4350
|
|
|
|
|
|
|
'2000,0063' => { VR => 'CS', Name => 'CollationFlag' }, |
|
4351
|
|
|
|
|
|
|
'2000,0065' => { VR => 'CS', Name => 'AnnotationFlag' }, |
|
4352
|
|
|
|
|
|
|
'2000,0067' => { VR => 'CS', Name => 'ImageOverlayFlag' }, |
|
4353
|
|
|
|
|
|
|
'2000,0069' => { VR => 'CS', Name => 'PresentationLUTFlag' }, |
|
4354
|
|
|
|
|
|
|
'2000,006A' => { VR => 'CS', Name => 'ImageBoxPresentationLUTFlag' }, |
|
4355
|
|
|
|
|
|
|
'2000,00A0' => { VR => 'US', Name => 'MemoryBitDepth' }, |
|
4356
|
|
|
|
|
|
|
'2000,00A1' => { VR => 'US', Name => 'PrintingBitDepth' }, |
|
4357
|
|
|
|
|
|
|
'2000,00A2' => { VR => 'SQ', Name => 'MediaInstalledSequence' }, |
|
4358
|
|
|
|
|
|
|
'2000,00A4' => { VR => 'SQ', Name => 'OtherMediaAvailableSequence' }, |
|
4359
|
|
|
|
|
|
|
'2000,00A8' => { VR => 'SQ', Name => 'SupportedImageDisplayFormatSeq' }, |
|
4360
|
|
|
|
|
|
|
'2000,0500' => { VR => 'SQ', Name => 'ReferencedFilmBoxSequence' }, |
|
4361
|
|
|
|
|
|
|
'2000,0510' => { VR => 'SQ', Name => 'ReferencedStoredPrintSequence' }, |
|
4362
|
|
|
|
|
|
|
# film box group |
|
4363
|
|
|
|
|
|
|
'2010,0010' => { VR => 'ST', Name => 'ImageDisplayFormat' }, |
|
4364
|
|
|
|
|
|
|
'2010,0030' => { VR => 'CS', Name => 'AnnotationDisplayFormatID' }, |
|
4365
|
|
|
|
|
|
|
'2010,0040' => { VR => 'CS', Name => 'FilmOrientation' }, |
|
4366
|
|
|
|
|
|
|
'2010,0050' => { VR => 'CS', Name => 'FilmSizeID' }, |
|
4367
|
|
|
|
|
|
|
'2010,0052' => { VR => 'CS', Name => 'PrinterResolutionID' }, |
|
4368
|
|
|
|
|
|
|
'2010,0054' => { VR => 'CS', Name => 'DefaultPrinterResolutionID' }, |
|
4369
|
|
|
|
|
|
|
'2010,0060' => { VR => 'CS', Name => 'MagnificationType' }, |
|
4370
|
|
|
|
|
|
|
'2010,0080' => { VR => 'CS', Name => 'SmoothingType' }, |
|
4371
|
|
|
|
|
|
|
'2010,00A6' => { VR => 'CS', Name => 'DefaultMagnificationType' }, |
|
4372
|
|
|
|
|
|
|
'2010,00A7' => { VR => 'CS', Name => 'OtherMagnificationTypesAvailable' }, |
|
4373
|
|
|
|
|
|
|
'2010,00A8' => { VR => 'CS', Name => 'DefaultSmoothingType' }, |
|
4374
|
|
|
|
|
|
|
'2010,00A9' => { VR => 'CS', Name => 'OtherSmoothingTypesAvailable' }, |
|
4375
|
|
|
|
|
|
|
'2010,0100' => { VR => 'CS', Name => 'BorderDensity' }, |
|
4376
|
|
|
|
|
|
|
'2010,0110' => { VR => 'CS', Name => 'EmptyImageDensity' }, |
|
4377
|
|
|
|
|
|
|
'2010,0120' => { VR => 'US', Name => 'MinDensity' }, |
|
4378
|
|
|
|
|
|
|
'2010,0130' => { VR => 'US', Name => 'MaxDensity' }, |
|
4379
|
|
|
|
|
|
|
'2010,0140' => { VR => 'CS', Name => 'Trim' }, |
|
4380
|
|
|
|
|
|
|
'2010,0150' => { VR => 'ST', Name => 'ConfigurationInformation' }, |
|
4381
|
|
|
|
|
|
|
'2010,0152' => { VR => 'LT', Name => 'ConfigurationInformationDescr' }, |
|
4382
|
|
|
|
|
|
|
'2010,0154' => { VR => 'IS', Name => 'MaximumCollatedFilms' }, |
|
4383
|
|
|
|
|
|
|
'2010,015E' => { VR => 'US', Name => 'Illumination' }, |
|
4384
|
|
|
|
|
|
|
'2010,0160' => { VR => 'US', Name => 'ReflectedAmbientLight' }, |
|
4385
|
|
|
|
|
|
|
'2010,0376' => { VR => 'DS', Name => 'PrinterPixelSpacing' }, |
|
4386
|
|
|
|
|
|
|
'2010,0500' => { VR => 'SQ', Name => 'ReferencedFilmSessionSequence' }, |
|
4387
|
|
|
|
|
|
|
'2010,0510' => { VR => 'SQ', Name => 'ReferencedImageBoxSequence' }, |
|
4388
|
|
|
|
|
|
|
'2010,0520' => { VR => 'SQ', Name => 'ReferencedBasicAnnotationBoxSeq' }, |
|
4389
|
|
|
|
|
|
|
# image box group |
|
4390
|
|
|
|
|
|
|
'2020,0010' => { VR => 'US', Name => 'ImageBoxPosition' }, |
|
4391
|
|
|
|
|
|
|
'2020,0020' => { VR => 'CS', Name => 'Polarity' }, |
|
4392
|
|
|
|
|
|
|
'2020,0030' => { VR => 'DS', Name => 'RequestedImageSize' }, |
|
4393
|
|
|
|
|
|
|
'2020,0040' => { VR => 'CS', Name => 'RequestedDecimate-CropBehavior' }, |
|
4394
|
|
|
|
|
|
|
'2020,0050' => { VR => 'CS', Name => 'RequestedResolutionID' }, |
|
4395
|
|
|
|
|
|
|
'2020,00A0' => { VR => 'CS', Name => 'RequestedImageSizeFlag' }, |
|
4396
|
|
|
|
|
|
|
'2020,00A2' => { VR => 'CS', Name => 'DecimateCropResult' }, |
|
4397
|
|
|
|
|
|
|
'2020,0110' => { VR => 'SQ', Name => 'BasicGrayscaleImageSequence' }, |
|
4398
|
|
|
|
|
|
|
'2020,0111' => { VR => 'SQ', Name => 'BasicColorImageSequence' }, |
|
4399
|
|
|
|
|
|
|
'2020,0130' => { VR => 'SQ', Name => 'ReferencedImageOverlayBoxSequence' }, |
|
4400
|
|
|
|
|
|
|
'2020,0140' => { VR => 'SQ', Name => 'ReferencedVOILUTBoxSequence' }, |
|
4401
|
|
|
|
|
|
|
# annotation group |
|
4402
|
|
|
|
|
|
|
'2030,0010' => { VR => 'US', Name => 'AnnotationPosition' }, |
|
4403
|
|
|
|
|
|
|
'2030,0020' => { VR => 'LO', Name => 'TextString' }, |
|
4404
|
|
|
|
|
|
|
# overlay box group |
|
4405
|
|
|
|
|
|
|
'2040,0010' => { VR => 'SQ', Name => 'ReferencedOverlayPlaneSequence' }, |
|
4406
|
|
|
|
|
|
|
'2040,0011' => { VR => 'US', Name => 'ReferencedOverlayPlaneGroups' }, |
|
4407
|
|
|
|
|
|
|
'2040,0020' => { VR => 'SQ', Name => 'OverlayPixelDataSequence' }, |
|
4408
|
|
|
|
|
|
|
'2040,0060' => { VR => 'CS', Name => 'OverlayMagnificationType' }, |
|
4409
|
|
|
|
|
|
|
'2040,0070' => { VR => 'CS', Name => 'OverlaySmoothingType' }, |
|
4410
|
|
|
|
|
|
|
'2040,0072' => { VR => 'CS', Name => 'OverlayOrImageMagnification' }, |
|
4411
|
|
|
|
|
|
|
'2040,0074' => { VR => 'US', Name => 'MagnifyToNumberOfColumns' }, |
|
4412
|
|
|
|
|
|
|
'2040,0080' => { VR => 'CS', Name => 'OverlayForegroundDensity' }, |
|
4413
|
|
|
|
|
|
|
'2040,0082' => { VR => 'CS', Name => 'OverlayBackgroundDensity' }, |
|
4414
|
|
|
|
|
|
|
'2040,0090' => { VR => 'CS', Name => 'OverlayMode' }, |
|
4415
|
|
|
|
|
|
|
'2040,0100' => { VR => 'CS', Name => 'ThresholdDensity' }, |
|
4416
|
|
|
|
|
|
|
'2040,0500' => { VR => 'SQ', Name => 'ReferencedImageBoxSequence' }, |
|
4417
|
|
|
|
|
|
|
'2050,0010' => { VR => 'SQ', Name => 'PresentationLUTSequence' }, |
|
4418
|
|
|
|
|
|
|
'2050,0020' => { VR => 'CS', Name => 'PresentationLUTShape' }, |
|
4419
|
|
|
|
|
|
|
'2050,0500' => { VR => 'SQ', Name => 'ReferencedPresentationLUTSequence' }, |
|
4420
|
|
|
|
|
|
|
'2100,0010' => { VR => 'SH', Name => 'PrintJobID' }, |
|
4421
|
|
|
|
|
|
|
'2100,0020' => { VR => 'CS', Name => 'ExecutionStatus' }, |
|
4422
|
|
|
|
|
|
|
'2100,0030' => { VR => 'CS', Name => 'ExecutionStatusInfo' }, |
|
4423
|
|
|
|
|
|
|
'2100,0040' => { VR => 'DA', Name => 'CreationDate' }, |
|
4424
|
|
|
|
|
|
|
'2100,0050' => { VR => 'TM', Name => 'CreationTime' }, |
|
4425
|
|
|
|
|
|
|
'2100,0070' => { VR => 'AE', Name => 'Originator' }, |
|
4426
|
|
|
|
|
|
|
'2100,0140' => { VR => 'AE', Name => 'DestinationAE' }, |
|
4427
|
|
|
|
|
|
|
'2100,0160' => { VR => 'SH', Name => 'OwnerID' }, |
|
4428
|
|
|
|
|
|
|
'2100,0170' => { VR => 'IS', Name => 'NumberOfFilms' }, |
|
4429
|
|
|
|
|
|
|
'2100,0500' => { VR => 'SQ', Name => 'ReferencedPrintJobSequence' }, |
|
4430
|
|
|
|
|
|
|
# printer group |
|
4431
|
|
|
|
|
|
|
'2110,0010' => { VR => 'CS', Name => 'PrinterStatus' }, |
|
4432
|
|
|
|
|
|
|
'2110,0020' => { VR => 'CS', Name => 'PrinterStatusInfo' }, |
|
4433
|
|
|
|
|
|
|
'2110,0030' => { VR => 'LO', Name => 'PrinterName' }, |
|
4434
|
|
|
|
|
|
|
'2110,0099' => { VR => 'SH', Name => 'PrintQueueID' }, |
|
4435
|
|
|
|
|
|
|
'2120,0010' => { VR => 'CS', Name => 'QueueStatus' }, |
|
4436
|
|
|
|
|
|
|
# print job group |
|
4437
|
|
|
|
|
|
|
'2120,0050' => { VR => 'SQ', Name => 'PrintJobDescriptionSequence' }, |
|
4438
|
|
|
|
|
|
|
'2120,0070' => { VR => 'SQ', Name => 'ReferencedPrintJobSequence' }, |
|
4439
|
|
|
|
|
|
|
'2130,0010' => { VR => 'SQ', Name => 'PrintManagementCapabilitiesSeq' }, |
|
4440
|
|
|
|
|
|
|
'2130,0015' => { VR => 'SQ', Name => 'PrinterCharacteristicsSequence' }, |
|
4441
|
|
|
|
|
|
|
'2130,0030' => { VR => 'SQ', Name => 'FilmBoxContentSequence' }, |
|
4442
|
|
|
|
|
|
|
'2130,0040' => { VR => 'SQ', Name => 'ImageBoxContentSequence' }, |
|
4443
|
|
|
|
|
|
|
'2130,0050' => { VR => 'SQ', Name => 'AnnotationContentSequence' }, |
|
4444
|
|
|
|
|
|
|
'2130,0060' => { VR => 'SQ', Name => 'ImageOverlayBoxContentSequence' }, |
|
4445
|
|
|
|
|
|
|
'2130,0080' => { VR => 'SQ', Name => 'PresentationLUTContentSequence' }, |
|
4446
|
|
|
|
|
|
|
'2130,00A0' => { VR => 'SQ', Name => 'ProposedStudySequence' }, |
|
4447
|
|
|
|
|
|
|
'2130,00C0' => { VR => 'SQ', Name => 'OriginalImageSequence' }, |
|
4448
|
|
|
|
|
|
|
'2200,0001' => { VR => 'CS', Name => 'LabelFromInfoExtractedFromInstance' }, |
|
4449
|
|
|
|
|
|
|
'2200,0002' => { VR => 'UT', Name => 'LabelText' }, |
|
4450
|
|
|
|
|
|
|
'2200,0003' => { VR => 'CS', Name => 'LabelStyleSelection' }, |
|
4451
|
|
|
|
|
|
|
'2200,0004' => { VR => 'LT', Name => 'MediaDisposition' }, |
|
4452
|
|
|
|
|
|
|
'2200,0005' => { VR => 'LT', Name => 'BarcodeValue' }, |
|
4453
|
|
|
|
|
|
|
'2200,0006' => { VR => 'CS', Name => 'BarcodeSymbology' }, |
|
4454
|
|
|
|
|
|
|
'2200,0007' => { VR => 'CS', Name => 'AllowMediaSplitting' }, |
|
4455
|
|
|
|
|
|
|
'2200,0008' => { VR => 'CS', Name => 'IncludeNonDICOMObjects' }, |
|
4456
|
|
|
|
|
|
|
'2200,0009' => { VR => 'CS', Name => 'IncludeDisplayApplication' }, |
|
4457
|
|
|
|
|
|
|
'2200,000A' => { VR => 'CS', Name => 'SaveCompInstancesAfterMediaCreate' }, |
|
4458
|
|
|
|
|
|
|
'2200,000B' => { VR => 'US', Name => 'TotalNumberMediaPiecesCreated' }, |
|
4459
|
|
|
|
|
|
|
'2200,000C' => { VR => 'LO', Name => 'RequestedMediaApplicationProfile' }, |
|
4460
|
|
|
|
|
|
|
'2200,000D' => { VR => 'SQ', Name => 'ReferencedStorageMediaSequence' }, |
|
4461
|
|
|
|
|
|
|
'2200,000E' => { VR => 'AT', Name => 'FailureAttributes' }, |
|
4462
|
|
|
|
|
|
|
'2200,000F' => { VR => 'CS', Name => 'AllowLossyCompression' }, |
|
4463
|
|
|
|
|
|
|
'2200,0020' => { VR => 'CS', Name => 'RequestPriority' }, |
|
4464
|
|
|
|
|
|
|
'3002,0002' => { VR => 'SH', Name => 'RTImageLabel' }, |
|
4465
|
|
|
|
|
|
|
'3002,0003' => { VR => 'LO', Name => 'RTImageName' }, |
|
4466
|
|
|
|
|
|
|
'3002,0004' => { VR => 'ST', Name => 'RTImageDescription' }, |
|
4467
|
|
|
|
|
|
|
'3002,000A' => { VR => 'CS', Name => 'ReportedValuesOrigin' }, |
|
4468
|
|
|
|
|
|
|
'3002,000C' => { VR => 'CS', Name => 'RTImagePlane' }, |
|
4469
|
|
|
|
|
|
|
'3002,000D' => { VR => 'DS', Name => 'XRayImageReceptorTranslation' }, |
|
4470
|
|
|
|
|
|
|
'3002,000E' => { VR => 'DS', Name => 'XRayImageReceptorAngle' }, |
|
4471
|
|
|
|
|
|
|
'3002,0010' => { VR => 'DS', Name => 'RTImageOrientation' }, |
|
4472
|
|
|
|
|
|
|
'3002,0011' => { VR => 'DS', Name => 'ImagePlanePixelSpacing' }, |
|
4473
|
|
|
|
|
|
|
'3002,0012' => { VR => 'DS', Name => 'RTImagePosition' }, |
|
4474
|
|
|
|
|
|
|
'3002,0020' => { VR => 'SH', Name => 'RadiationMachineName' }, |
|
4475
|
|
|
|
|
|
|
'3002,0022' => { VR => 'DS', Name => 'RadiationMachineSAD' }, |
|
4476
|
|
|
|
|
|
|
'3002,0024' => { VR => 'DS', Name => 'RadiationMachineSSD' }, |
|
4477
|
|
|
|
|
|
|
'3002,0026' => { VR => 'DS', Name => 'RTImageSID' }, |
|
4478
|
|
|
|
|
|
|
'3002,0028' => { VR => 'DS', Name => 'SourceToReferenceObjectDistance' }, |
|
4479
|
|
|
|
|
|
|
'3002,0029' => { VR => 'IS', Name => 'FractionNumber' }, |
|
4480
|
|
|
|
|
|
|
'3002,0030' => { VR => 'SQ', Name => 'ExposureSequence' }, |
|
4481
|
|
|
|
|
|
|
'3002,0032' => { VR => 'DS', Name => 'MetersetExposure' }, |
|
4482
|
|
|
|
|
|
|
'3002,0034' => { VR => 'DS', Name => 'DiaphragmPosition' }, |
|
4483
|
|
|
|
|
|
|
'3002,0040' => { VR => 'SQ', Name => 'FluenceMapSequence' }, |
|
4484
|
|
|
|
|
|
|
'3002,0041' => { VR => 'CS', Name => 'FluenceDataSource' }, |
|
4485
|
|
|
|
|
|
|
'3002,0042' => { VR => 'DS', Name => 'FluenceDataScale' }, |
|
4486
|
|
|
|
|
|
|
'3002,0050' => { VR => 'SQ', Name => 'PrimaryFluenceModeSequence' }, |
|
4487
|
|
|
|
|
|
|
'3002,0051' => { VR => 'CS', Name => 'FluenceMode' }, |
|
4488
|
|
|
|
|
|
|
'3002,0052' => { VR => 'SH', Name => 'FluenceModeID' }, |
|
4489
|
|
|
|
|
|
|
'3002,0100' => { VR => 'IS', Name => 'SelectedFrameNumber' }, |
|
4490
|
|
|
|
|
|
|
'3002,0101' => { VR => 'SQ', Name => 'SelectedFrameFunctionalGroupsSeq' }, |
|
4491
|
|
|
|
|
|
|
'3002,0102' => { VR => 'SQ', Name => 'RTImageFrameGeneralContentSequence' }, |
|
4492
|
|
|
|
|
|
|
'3002,0103' => { VR => 'SQ', Name => 'RTImageFrameContextSequence' }, |
|
4493
|
|
|
|
|
|
|
'3002,0104' => { VR => 'SQ', Name => 'RTImageScopeSequence' }, |
|
4494
|
|
|
|
|
|
|
'3002,0105' => { VR => 'CS', Name => 'BeamModifierCoordPresenceFlag' }, |
|
4495
|
|
|
|
|
|
|
'3002,0106' => { VR => 'FD', Name => 'StartCumulativeMeterset' }, |
|
4496
|
|
|
|
|
|
|
'3002,0107' => { VR => 'FD', Name => 'StopCumulativeMeterset' }, |
|
4497
|
|
|
|
|
|
|
'3002,0108' => { VR => 'SQ', Name => 'RTAcquisitionPatientPosSeq' }, |
|
4498
|
|
|
|
|
|
|
'3002,0109' => { VR => 'SQ', Name => 'RTImageFrameImagingDevicePosSeq' }, |
|
4499
|
|
|
|
|
|
|
'3002,010A' => { VR => 'SQ', Name => 'RTImageFramekVRadiationAcqSeq' }, |
|
4500
|
|
|
|
|
|
|
'3002,010B' => { VR => 'SQ', Name => 'RTImageFrameMVRadiationAcqSeq' }, |
|
4501
|
|
|
|
|
|
|
'3002,010C' => { VR => 'SQ', Name => 'RTImageFrameRadiationAcqSeq' }, |
|
4502
|
|
|
|
|
|
|
'3002,010D' => { VR => 'SQ', Name => 'ImagingSourcePositionSequence' }, |
|
4503
|
|
|
|
|
|
|
'3002,010E' => { VR => 'SQ', Name => 'ImageReceptorPositionSequence' }, |
|
4504
|
|
|
|
|
|
|
'3002,010F' => { VR => 'FD', Name => 'DevicePosToEquipmentMappingMatrix' }, |
|
4505
|
|
|
|
|
|
|
'3002,0110' => { VR => 'SQ', Name => 'DevicePositionParameterSequence' }, |
|
4506
|
|
|
|
|
|
|
'3002,0111' => { VR => 'CS', Name => 'ImagingSourceLocSpecificationType' }, |
|
4507
|
|
|
|
|
|
|
'3002,0112' => { VR => 'SQ', Name => 'ImagingDeviceLocationMatrixSeq' }, |
|
4508
|
|
|
|
|
|
|
'3002,0113' => { VR => 'SQ', Name => 'ImagingDeviceLocationParameterSeq' }, |
|
4509
|
|
|
|
|
|
|
'3002,0114' => { VR => 'SQ', Name => 'ImagingApertureSequence' }, |
|
4510
|
|
|
|
|
|
|
'3002,0115' => { VR => 'CS', Name => 'ImagingApertureSpecificationType' }, |
|
4511
|
|
|
|
|
|
|
'3002,0116' => { VR => 'US', Name => 'NumberOfAcquisitionDevices' }, |
|
4512
|
|
|
|
|
|
|
'3002,0117' => { VR => 'SQ', Name => 'AcquisitionDeviceSequence' }, |
|
4513
|
|
|
|
|
|
|
'3002,0118' => { VR => 'SQ', Name => 'AcquisitionTaskSequence' }, |
|
4514
|
|
|
|
|
|
|
'3002,0119' => { VR => 'SQ', Name => 'AcquisitionTaskWorkitemCodeSeq' }, |
|
4515
|
|
|
|
|
|
|
'3002,011A' => { VR => 'SQ', Name => 'AcquisitionSubtaskSequence' }, |
|
4516
|
|
|
|
|
|
|
'3002,011B' => { VR => 'SQ', Name => 'SubtaskWorkitemCodeSequence' }, |
|
4517
|
|
|
|
|
|
|
'3002,011C' => { VR => 'US', Name => 'AcquisitionTaskIndex' }, |
|
4518
|
|
|
|
|
|
|
'3002,011D' => { VR => 'US', Name => 'AcquisitionSubtaskIndex' }, |
|
4519
|
|
|
|
|
|
|
'3002,011E' => { VR => 'SQ', Name => 'RefBaseParamsRTRadiationInstanceSq' }, |
|
4520
|
|
|
|
|
|
|
'3002,011F' => { VR => 'SQ', Name => 'PositionAcquisitionTemplateIDSeq' }, |
|
4521
|
|
|
|
|
|
|
'3002,0120' => { VR => 'ST', Name => 'PositionAcquisitionTemplateID' }, |
|
4522
|
|
|
|
|
|
|
'3002,0121' => { VR => 'LO', Name => 'PositionAcquisitionTemplateName' }, |
|
4523
|
|
|
|
|
|
|
'3002,0122' => { VR => 'SQ', Name => 'PositionAcqTemplateCodeSequence' }, |
|
4524
|
|
|
|
|
|
|
'3002,0123' => { VR => 'LT', Name => 'PositionAcqTemplateDescription' }, |
|
4525
|
|
|
|
|
|
|
'3002,0124' => { VR => 'SQ', Name => 'AcquisitionTaskApplicabilitySeq' }, |
|
4526
|
|
|
|
|
|
|
'3002,0125' => { VR => 'SQ', Name => 'ProjectionImagingAcqParamSeq' }, |
|
4527
|
|
|
|
|
|
|
'3002,0126' => { VR => 'SQ', Name => 'CTImagingAcquisitionParameterSeq' }, |
|
4528
|
|
|
|
|
|
|
'3002,0127' => { VR => 'SQ', Name => 'KVImagingGenerationParametersSeq' }, |
|
4529
|
|
|
|
|
|
|
'3002,0128' => { VR => 'SQ', Name => 'MVImagingGenerationParametersSeq' }, |
|
4530
|
|
|
|
|
|
|
'3002,0129' => { VR => 'CS', Name => 'AcquisitionSignalType' }, |
|
4531
|
|
|
|
|
|
|
'3002,012A' => { VR => 'CS', Name => 'AcquisitionMethod' }, |
|
4532
|
|
|
|
|
|
|
'3002,012B' => { VR => 'SQ', Name => 'ScanStartPositionSequence' }, |
|
4533
|
|
|
|
|
|
|
'3002,012C' => { VR => 'SQ', Name => 'ScanStopPositionSequence' }, |
|
4534
|
|
|
|
|
|
|
'3002,012D' => { VR => 'FD', Name => 'ImagingSourceToBeamModDefPlaneDist' }, |
|
4535
|
|
|
|
|
|
|
'3002,012E' => { VR => 'CS', Name => 'ScanArcType' }, |
|
4536
|
|
|
|
|
|
|
'3002,012F' => { VR => 'CS', Name => 'DetectorPositioningType' }, |
|
4537
|
|
|
|
|
|
|
'3002,0130' => { VR => 'SQ', Name => 'AdditionalRTAccessoryDeviceSeq' }, |
|
4538
|
|
|
|
|
|
|
'3002,0131' => { VR => 'SQ', Name => 'DeviceSpecificAcquisitionParamSeq' }, |
|
4539
|
|
|
|
|
|
|
'3002,0132' => { VR => 'SQ', Name => 'ReferencedPositionRefInstanceSeq' }, |
|
4540
|
|
|
|
|
|
|
'3002,0133' => { VR => 'SQ', Name => 'EnergyDerivationCodeSequence' }, |
|
4541
|
|
|
|
|
|
|
'3002,0134' => { VR => 'FD', Name => 'MaximumCumulativeMetersetExposure' }, |
|
4542
|
|
|
|
|
|
|
'3002,0135' => { VR => 'SQ', Name => 'AcquisitionInitiationSequence' }, |
|
4543
|
|
|
|
|
|
|
'3002,0136' => { VR => 'SQ', Name => 'RTConeBeamImagingGeometrySequence' }, |
|
4544
|
|
|
|
|
|
|
'3004,0001' => { VR => 'CS', Name => 'DVHType' }, |
|
4545
|
|
|
|
|
|
|
'3004,0002' => { VR => 'CS', Name => 'DoseUnits' }, |
|
4546
|
|
|
|
|
|
|
'3004,0004' => { VR => 'CS', Name => 'DoseType' }, |
|
4547
|
|
|
|
|
|
|
'3004,0005' => { VR => 'CS', Name => 'SpatialTransformOfDose' }, |
|
4548
|
|
|
|
|
|
|
'3004,0006' => { VR => 'LO', Name => 'DoseComment' }, |
|
4549
|
|
|
|
|
|
|
'3004,0008' => { VR => 'DS', Name => 'NormalizationPoint' }, |
|
4550
|
|
|
|
|
|
|
'3004,000A' => { VR => 'CS', Name => 'DoseSummationType' }, |
|
4551
|
|
|
|
|
|
|
'3004,000C' => { VR => 'DS', Name => 'GridFrameOffsetVector' }, |
|
4552
|
|
|
|
|
|
|
'3004,000E' => { VR => 'DS', Name => 'DoseGridScaling' }, |
|
4553
|
|
|
|
|
|
|
'3004,0010' => { VR => 'SQ', Name => 'RTDoseROISequence' }, |
|
4554
|
|
|
|
|
|
|
'3004,0012' => { VR => 'DS', Name => 'DoseValue' }, |
|
4555
|
|
|
|
|
|
|
'3004,0014' => { VR => 'CS', Name => 'TissueHeterogeneityCorrection' }, |
|
4556
|
|
|
|
|
|
|
'3004,0016' => { VR => 'SQ', Name => 'RecommendedIsodoseLevelSequence' }, |
|
4557
|
|
|
|
|
|
|
'3004,0020' => { VR => 'SQ', Name => 'DoseUnitCodeSequence' }, |
|
4558
|
|
|
|
|
|
|
'3004,0021' => { VR => 'SQ', Name => 'RTDoseInterpretedTypeCodeSequence' }, |
|
4559
|
|
|
|
|
|
|
'3004,0022' => { VR => 'SQ', Name => 'RTDoseInterpretedTypeCodeModSeq' }, |
|
4560
|
|
|
|
|
|
|
'3004,0023' => { VR => 'SQ', Name => 'DoseRadiobiologicalInterpretSeq' }, |
|
4561
|
|
|
|
|
|
|
'3004,0024' => { VR => 'SQ', Name => 'RTDoseIntentCodeSequence' }, |
|
4562
|
|
|
|
|
|
|
'3004,0040' => { VR => 'DS', Name => 'DVHNormalizationPoint' }, |
|
4563
|
|
|
|
|
|
|
'3004,0042' => { VR => 'DS', Name => 'DVHNormalizationDoseValue' }, |
|
4564
|
|
|
|
|
|
|
'3004,0050' => { VR => 'SQ', Name => 'DVHSequence' }, |
|
4565
|
|
|
|
|
|
|
'3004,0052' => { VR => 'DS', Name => 'DVHDoseScaling' }, |
|
4566
|
|
|
|
|
|
|
'3004,0054' => { VR => 'CS', Name => 'DVHVolumeUnits' }, |
|
4567
|
|
|
|
|
|
|
'3004,0056' => { VR => 'IS', Name => 'DVHNumberOfBins' }, |
|
4568
|
|
|
|
|
|
|
'3004,0058' => { VR => 'DS', Name => 'DVHData' }, |
|
4569
|
|
|
|
|
|
|
'3004,0060' => { VR => 'SQ', Name => 'DVHReferencedROISequence' }, |
|
4570
|
|
|
|
|
|
|
'3004,0062' => { VR => 'CS', Name => 'DVHROIContributionType' }, |
|
4571
|
|
|
|
|
|
|
'3004,0070' => { VR => 'DS', Name => 'DVHMinimumDose' }, |
|
4572
|
|
|
|
|
|
|
'3004,0072' => { VR => 'DS', Name => 'DVHMaximumDose' }, |
|
4573
|
|
|
|
|
|
|
'3004,0074' => { VR => 'DS', Name => 'DVHMeanDose' }, |
|
4574
|
|
|
|
|
|
|
'3004,0080' => { VR => 'SQ', Name => 'DoseCalculationModelSequence' }, |
|
4575
|
|
|
|
|
|
|
'3004,0081' => { VR => 'SQ', Name => 'DoseCalculationAlgorithmSequence' }, |
|
4576
|
|
|
|
|
|
|
'3004,0082' => { VR => 'CS', Name => 'CommissioningStatus' }, |
|
4577
|
|
|
|
|
|
|
'3004,0083' => { VR => 'SQ', Name => 'DoseCalculationModelParameterSeq' }, |
|
4578
|
|
|
|
|
|
|
'3004,0084' => { VR => 'CS', Name => 'DoseDepositionCalculationMedium' }, |
|
4579
|
|
|
|
|
|
|
'3006,0002' => { VR => 'SH', Name => 'StructureSetLabel' }, |
|
4580
|
|
|
|
|
|
|
'3006,0004' => { VR => 'LO', Name => 'StructureSetName' }, |
|
4581
|
|
|
|
|
|
|
'3006,0006' => { VR => 'ST', Name => 'StructureSetDescription' }, |
|
4582
|
|
|
|
|
|
|
'3006,0008' => { VR => 'DA', Name => 'StructureSetDate' }, |
|
4583
|
|
|
|
|
|
|
'3006,0009' => { VR => 'TM', Name => 'StructureSetTime' }, |
|
4584
|
|
|
|
|
|
|
'3006,0010' => { VR => 'SQ', Name => 'ReferencedFrameOfReferenceSequence' }, |
|
4585
|
|
|
|
|
|
|
'3006,0012' => { VR => 'SQ', Name => 'RTReferencedStudySequence' }, |
|
4586
|
|
|
|
|
|
|
'3006,0014' => { VR => 'SQ', Name => 'RTReferencedSeriesSequence' }, |
|
4587
|
|
|
|
|
|
|
'3006,0016' => { VR => 'SQ', Name => 'ContourImageSequence' }, |
|
4588
|
|
|
|
|
|
|
'3006,0018' => { VR => 'SQ', Name => 'PredecessorStructureSetSequence' }, |
|
4589
|
|
|
|
|
|
|
'3006,0020' => { VR => 'SQ', Name => 'StructureSetROISequence' }, |
|
4590
|
|
|
|
|
|
|
'3006,0022' => { VR => 'IS', Name => 'ROINumber' }, |
|
4591
|
|
|
|
|
|
|
'3006,0024' => { VR => 'UI', Name => 'ReferencedFrameOfReferenceUID' }, |
|
4592
|
|
|
|
|
|
|
'3006,0026' => { VR => 'LO', Name => 'ROIName' }, |
|
4593
|
|
|
|
|
|
|
'3006,0028' => { VR => 'ST', Name => 'ROIDescription' }, |
|
4594
|
|
|
|
|
|
|
'3006,002A' => { VR => 'IS', Name => 'ROIDisplayColor' }, |
|
4595
|
|
|
|
|
|
|
'3006,002C' => { VR => 'DS', Name => 'ROIVolume' }, |
|
4596
|
|
|
|
|
|
|
'3006,002D' => { VR => 'DT', Name => 'ROIDateTime' }, |
|
4597
|
|
|
|
|
|
|
'3006,002E' => { VR => 'DT', Name => 'ROIObservationDateTime' }, |
|
4598
|
|
|
|
|
|
|
'3006,0030' => { VR => 'SQ', Name => 'RTRelatedROISequence' }, |
|
4599
|
|
|
|
|
|
|
'3006,0033' => { VR => 'CS', Name => 'RTROIRelationship' }, |
|
4600
|
|
|
|
|
|
|
'3006,0036' => { VR => 'CS', Name => 'ROIGenerationAlgorithm' }, |
|
4601
|
|
|
|
|
|
|
'3006,0037' => { VR => 'SQ', Name => 'ROIDerivationAlgorithmIDSeq' }, |
|
4602
|
|
|
|
|
|
|
'3006,0038' => { VR => 'LO', Name => 'ROIGenerationDescription' }, |
|
4603
|
|
|
|
|
|
|
'3006,0039' => { VR => 'SQ', Name => 'ROIContourSequence' }, |
|
4604
|
|
|
|
|
|
|
'3006,0040' => { VR => 'SQ', Name => 'ContourSequence' }, |
|
4605
|
|
|
|
|
|
|
'3006,0042' => { VR => 'CS', Name => 'ContourGeometricType' }, |
|
4606
|
|
|
|
|
|
|
'3006,0044' => { VR => 'DS', Name => 'ContourSlabThickness' }, |
|
4607
|
|
|
|
|
|
|
'3006,0045' => { VR => 'DS', Name => 'ContourOffsetVector' }, |
|
4608
|
|
|
|
|
|
|
'3006,0046' => { VR => 'IS', Name => 'NumberOfContourPoints' }, |
|
4609
|
|
|
|
|
|
|
'3006,0048' => { VR => 'IS', Name => 'ContourNumber' }, |
|
4610
|
|
|
|
|
|
|
'3006,0049' => { VR => 'IS', Name => 'AttachedContours' }, |
|
4611
|
|
|
|
|
|
|
'3006,004A' => { VR => 'SQ', Name => 'SourcePixelPlanesCharSeq' }, |
|
4612
|
|
|
|
|
|
|
'3006,004B' => { VR => 'SQ', Name => 'SourceSeriesSequence' }, |
|
4613
|
|
|
|
|
|
|
'3006,004C' => { VR => 'SQ', Name => 'SourceSeriesInformationSequence' }, |
|
4614
|
|
|
|
|
|
|
'3006,004D' => { VR => 'SQ', Name => 'ROICreatorSequence' }, |
|
4615
|
|
|
|
|
|
|
'3006,004E' => { VR => 'SQ', Name => 'ROIInterpreterSequence' }, |
|
4616
|
|
|
|
|
|
|
'3006,004F' => { VR => 'SQ', Name => 'ROIObservationContextCodeSequence' }, |
|
4617
|
|
|
|
|
|
|
'3006,0050' => { VR => 'DS', Name => 'ContourData' }, |
|
4618
|
|
|
|
|
|
|
'3006,0080' => { VR => 'SQ', Name => 'RTROIObservationsSequence' }, |
|
4619
|
|
|
|
|
|
|
'3006,0082' => { VR => 'IS', Name => 'ObservationNumber' }, |
|
4620
|
|
|
|
|
|
|
'3006,0084' => { VR => 'IS', Name => 'ReferencedROINumber' }, |
|
4621
|
|
|
|
|
|
|
'3006,0085' => { VR => 'SH', Name => 'ROIObservationLabel' }, |
|
4622
|
|
|
|
|
|
|
'3006,0086' => { VR => 'SQ', Name => 'RTROIIdentificationCodeSequence' }, |
|
4623
|
|
|
|
|
|
|
'3006,0088' => { VR => 'ST', Name => 'ROIObservationDescription' }, |
|
4624
|
|
|
|
|
|
|
'3006,00A0' => { VR => 'SQ', Name => 'RelatedRTROIObservationsSequence' }, |
|
4625
|
|
|
|
|
|
|
'3006,00A4' => { VR => 'CS', Name => 'RTROIInterpretedType' }, |
|
4626
|
|
|
|
|
|
|
'3006,00A6' => { VR => 'PN', Name => 'ROIInterpreter' }, |
|
4627
|
|
|
|
|
|
|
'3006,00B0' => { VR => 'SQ', Name => 'ROIPhysicalPropertiesSequence' }, |
|
4628
|
|
|
|
|
|
|
'3006,00B2' => { VR => 'CS', Name => 'ROIPhysicalProperty' }, |
|
4629
|
|
|
|
|
|
|
'3006,00B4' => { VR => 'DS', Name => 'ROIPhysicalPropertyValue' }, |
|
4630
|
|
|
|
|
|
|
'3006,00B6' => { VR => 'SQ', Name => 'ROIElementalCompositionSequence' }, |
|
4631
|
|
|
|
|
|
|
'3006,00B7' => { VR => 'US', Name => 'ROIElementalCompAtomicNumber' }, |
|
4632
|
|
|
|
|
|
|
'3006,00B8' => { VR => 'FL', Name => 'ROIElementalCompAtomicMassFraction' }, |
|
4633
|
|
|
|
|
|
|
'3006,00B9' => { VR => 'SQ', Name => 'AdditionalRTROIIDCodeSeq' }, |
|
4634
|
|
|
|
|
|
|
'3006,00C0' => { VR => 'SQ', Name => 'FrameOfReferenceRelationshipSeq' }, |
|
4635
|
|
|
|
|
|
|
'3006,00C2' => { VR => 'UI', Name => 'RelatedFrameOfReferenceUID' }, |
|
4636
|
|
|
|
|
|
|
'3006,00C4' => { VR => 'CS', Name => 'FrameOfReferenceTransformType' }, |
|
4637
|
|
|
|
|
|
|
'3006,00C6' => { VR => 'DS', Name => 'FrameOfReferenceTransformMatrix' }, |
|
4638
|
|
|
|
|
|
|
'3006,00C8' => { VR => 'LO', Name => 'FrameOfReferenceTransformComment' }, |
|
4639
|
|
|
|
|
|
|
'3006,00C9' => { VR => 'SQ', Name => 'PatientLocationCoordinatesSequence' }, |
|
4640
|
|
|
|
|
|
|
'3006,00CA' => { VR => 'SQ', Name => 'PatientLocationCoordinatesCodeSeq' }, |
|
4641
|
|
|
|
|
|
|
'3006,00CB' => { VR => 'SQ', Name => 'PatientSupportPositionSequence' }, |
|
4642
|
|
|
|
|
|
|
'3008,0010' => { VR => 'SQ', Name => 'MeasuredDoseReferenceSequence' }, |
|
4643
|
|
|
|
|
|
|
'3008,0012' => { VR => 'ST', Name => 'MeasuredDoseDescription' }, |
|
4644
|
|
|
|
|
|
|
'3008,0014' => { VR => 'CS', Name => 'MeasuredDoseType' }, |
|
4645
|
|
|
|
|
|
|
'3008,0016' => { VR => 'DS', Name => 'MeasuredDoseValue' }, |
|
4646
|
|
|
|
|
|
|
'3008,0020' => { VR => 'SQ', Name => 'TreatmentSessionBeamSequence' }, |
|
4647
|
|
|
|
|
|
|
'3008,0021' => { VR => 'SQ', Name => 'TreatmentSessionIonBeamSequence' }, |
|
4648
|
|
|
|
|
|
|
'3008,0022' => { VR => 'IS', Name => 'CurrentFractionNumber' }, |
|
4649
|
|
|
|
|
|
|
'3008,0024' => { VR => 'DA', Name => 'TreatmentControlPointDate' }, |
|
4650
|
|
|
|
|
|
|
'3008,0025' => { VR => 'TM', Name => 'TreatmentControlPointTime' }, |
|
4651
|
|
|
|
|
|
|
'3008,002A' => { VR => 'CS', Name => 'TreatmentTerminationStatus' }, |
|
4652
|
|
|
|
|
|
|
'3008,002B' => { VR => 'SH', Name => 'TreatmentTerminationCode' }, |
|
4653
|
|
|
|
|
|
|
'3008,002C' => { VR => 'CS', Name => 'TreatmentVerificationStatus' }, |
|
4654
|
|
|
|
|
|
|
'3008,0030' => { VR => 'SQ', Name => 'ReferencedTreatmentRecordSequence' }, |
|
4655
|
|
|
|
|
|
|
'3008,0032' => { VR => 'DS', Name => 'SpecifiedPrimaryMeterset' }, |
|
4656
|
|
|
|
|
|
|
'3008,0033' => { VR => 'DS', Name => 'SpecifiedSecondaryMeterset' }, |
|
4657
|
|
|
|
|
|
|
'3008,0036' => { VR => 'DS', Name => 'DeliveredPrimaryMeterset' }, |
|
4658
|
|
|
|
|
|
|
'3008,0037' => { VR => 'DS', Name => 'DeliveredSecondaryMeterset' }, |
|
4659
|
|
|
|
|
|
|
'3008,003A' => { VR => 'DS', Name => 'SpecifiedTreatmentTime' }, |
|
4660
|
|
|
|
|
|
|
'3008,003B' => { VR => 'DS', Name => 'DeliveredTreatmentTime' }, |
|
4661
|
|
|
|
|
|
|
'3008,0040' => { VR => 'SQ', Name => 'ControlPointDeliverySequence' }, |
|
4662
|
|
|
|
|
|
|
'3008,0041' => { VR => 'SQ', Name => 'IonControlPointDeliverySequence' }, |
|
4663
|
|
|
|
|
|
|
'3008,0042' => { VR => 'DS', Name => 'SpecifiedMeterset' }, |
|
4664
|
|
|
|
|
|
|
'3008,0044' => { VR => 'DS', Name => 'DeliveredMeterset' }, |
|
4665
|
|
|
|
|
|
|
'3008,0045' => { VR => 'FL', Name => 'MetersetRateSet' }, |
|
4666
|
|
|
|
|
|
|
'3008,0046' => { VR => 'FL', Name => 'MetersetRateDelivered' }, |
|
4667
|
|
|
|
|
|
|
'3008,0047' => { VR => 'FL', Name => 'ScanSpotMetersetsDelivered' }, |
|
4668
|
|
|
|
|
|
|
'3008,0048' => { VR => 'DS', Name => 'DoseRateDelivered' }, |
|
4669
|
|
|
|
|
|
|
'3008,0050' => { VR => 'SQ', Name => 'TreatmentSummaryCalcDoseRefSeq' }, |
|
4670
|
|
|
|
|
|
|
'3008,0052' => { VR => 'DS', Name => 'CumulativeDoseToDoseReference' }, |
|
4671
|
|
|
|
|
|
|
'3008,0054' => { VR => 'DA', Name => 'FirstTreatmentDate' }, |
|
4672
|
|
|
|
|
|
|
'3008,0056' => { VR => 'DA', Name => 'MostRecentTreatmentDate' }, |
|
4673
|
|
|
|
|
|
|
'3008,005A' => { VR => 'IS', Name => 'NumberOfFractionsDelivered' }, |
|
4674
|
|
|
|
|
|
|
'3008,0060' => { VR => 'SQ', Name => 'OverrideSequence' }, |
|
4675
|
|
|
|
|
|
|
'3008,0061' => { VR => 'AT', Name => 'ParameterSequencePointer' }, |
|
4676
|
|
|
|
|
|
|
'3008,0062' => { VR => 'AT', Name => 'OverrideParameterPointer' }, |
|
4677
|
|
|
|
|
|
|
'3008,0063' => { VR => 'IS', Name => 'ParameterItemIndex' }, |
|
4678
|
|
|
|
|
|
|
'3008,0064' => { VR => 'IS', Name => 'MeasuredDoseReferenceNumber' }, |
|
4679
|
|
|
|
|
|
|
'3008,0065' => { VR => 'AT', Name => 'ParameterPointer' }, |
|
4680
|
|
|
|
|
|
|
'3008,0066' => { VR => 'ST', Name => 'OverrideReason' }, |
|
4681
|
|
|
|
|
|
|
'3008,0067' => { VR => 'US', Name => 'ParameterValueNumber' }, |
|
4682
|
|
|
|
|
|
|
'3008,0068' => { VR => 'SQ', Name => 'CorrectedParameterSequence' }, |
|
4683
|
|
|
|
|
|
|
'3008,006A' => { VR => 'FL', Name => 'CorrectionValue' }, |
|
4684
|
|
|
|
|
|
|
'3008,0070' => { VR => 'SQ', Name => 'CalculatedDoseReferenceSequence' }, |
|
4685
|
|
|
|
|
|
|
'3008,0072' => { VR => 'IS', Name => 'CalculatedDoseReferenceNumber' }, |
|
4686
|
|
|
|
|
|
|
'3008,0074' => { VR => 'ST', Name => 'CalculatedDoseReferenceDescription' }, |
|
4687
|
|
|
|
|
|
|
'3008,0076' => { VR => 'DS', Name => 'CalculatedDoseReferenceDoseValue' }, |
|
4688
|
|
|
|
|
|
|
'3008,0078' => { VR => 'DS', Name => 'StartMeterset' }, |
|
4689
|
|
|
|
|
|
|
'3008,007A' => { VR => 'DS', Name => 'EndMeterset' }, |
|
4690
|
|
|
|
|
|
|
'3008,0080' => { VR => 'SQ', Name => 'ReferencedMeasuredDoseReferenceSeq' }, |
|
4691
|
|
|
|
|
|
|
'3008,0082' => { VR => 'IS', Name => 'ReferencedMeasuredDoseReferenceNum' }, |
|
4692
|
|
|
|
|
|
|
'3008,0090' => { VR => 'SQ', Name => 'ReferencedCalculatedDoseRefSeq' }, |
|
4693
|
|
|
|
|
|
|
'3008,0092' => { VR => 'IS', Name => 'ReferencedCalculatedDoseRefNumber' }, |
|
4694
|
|
|
|
|
|
|
'3008,00A0' => { VR => 'SQ', Name => 'BeamLimitingDeviceLeafPairsSeq' }, |
|
4695
|
|
|
|
|
|
|
'3008,00A1' => { VR => 'SQ', Name => 'EnhancedRTBeamLimitingDeviceSeq' }, |
|
4696
|
|
|
|
|
|
|
'3008,00A2' => { VR => 'SQ', Name => 'EnhancedRTBeamLimitingOpeningSeq' }, |
|
4697
|
|
|
|
|
|
|
'3008,00A3' => { VR => 'CS', Name => 'EnhancedRTBeamLimitingDevDefFlag' }, |
|
4698
|
|
|
|
|
|
|
'3008,00A4' => { VR => 'FD', Name => 'ParallelRTBeamDelimiterOpenExtents' }, |
|
4699
|
|
|
|
|
|
|
'3008,00B0' => { VR => 'SQ', Name => 'RecordedWedgeSequence' }, |
|
4700
|
|
|
|
|
|
|
'3008,00C0' => { VR => 'SQ', Name => 'RecordedCompensatorSequence' }, |
|
4701
|
|
|
|
|
|
|
'3008,00D0' => { VR => 'SQ', Name => 'RecordedBlockSequence' }, |
|
4702
|
|
|
|
|
|
|
'3008,00D1' => { VR => 'SQ', Name => 'RecordedBlockSlabSequence' }, |
|
4703
|
|
|
|
|
|
|
'3008,00E0' => { VR => 'SQ', Name => 'TreatmentSummaryMeasuredDoseRefSeq' }, |
|
4704
|
|
|
|
|
|
|
'3008,00F0' => { VR => 'SQ', Name => 'RecordedSnoutSequence' }, |
|
4705
|
|
|
|
|
|
|
'3008,00F2' => { VR => 'SQ', Name => 'RecordedRangeShifterSequence' }, |
|
4706
|
|
|
|
|
|
|
'3008,00F4' => { VR => 'SQ', Name => 'RecordedLateralSpreadingDeviceSeq' }, |
|
4707
|
|
|
|
|
|
|
'3008,00F6' => { VR => 'SQ', Name => 'RecordedRangeModulatorSequence' }, |
|
4708
|
|
|
|
|
|
|
'3008,0100' => { VR => 'SQ', Name => 'RecordedSourceSequence' }, |
|
4709
|
|
|
|
|
|
|
'3008,0105' => { VR => 'LO', Name => 'SourceSerialNumber' }, |
|
4710
|
|
|
|
|
|
|
'3008,0110' => { VR => 'SQ', Name => 'TreatmentSessionAppSetupSeq' }, |
|
4711
|
|
|
|
|
|
|
'3008,0116' => { VR => 'CS', Name => 'ApplicationSetupCheck' }, |
|
4712
|
|
|
|
|
|
|
'3008,0120' => { VR => 'SQ', Name => 'RecordedBrachyAccessoryDeviceSeq' }, |
|
4713
|
|
|
|
|
|
|
'3008,0122' => { VR => 'IS', Name => 'ReferencedBrachyAccessoryDeviceNum' }, |
|
4714
|
|
|
|
|
|
|
'3008,0130' => { VR => 'SQ', Name => 'RecordedChannelSequence' }, |
|
4715
|
|
|
|
|
|
|
'3008,0132' => { VR => 'DS', Name => 'SpecifiedChannelTotalTime' }, |
|
4716
|
|
|
|
|
|
|
'3008,0134' => { VR => 'DS', Name => 'DeliveredChannelTotalTime' }, |
|
4717
|
|
|
|
|
|
|
'3008,0136' => { VR => 'IS', Name => 'SpecifiedNumberOfPulses' }, |
|
4718
|
|
|
|
|
|
|
'3008,0138' => { VR => 'IS', Name => 'DeliveredNumberOfPulses' }, |
|
4719
|
|
|
|
|
|
|
'3008,013A' => { VR => 'DS', Name => 'SpecifiedPulseRepetitionInterval' }, |
|
4720
|
|
|
|
|
|
|
'3008,013C' => { VR => 'DS', Name => 'DeliveredPulseRepetitionInterval' }, |
|
4721
|
|
|
|
|
|
|
'3008,0140' => { VR => 'SQ', Name => 'RecordedSourceApplicatorSequence' }, |
|
4722
|
|
|
|
|
|
|
'3008,0142' => { VR => 'IS', Name => 'ReferencedSourceApplicatorNumber' }, |
|
4723
|
|
|
|
|
|
|
'3008,0150' => { VR => 'SQ', Name => 'RecordedChannelShieldSequence' }, |
|
4724
|
|
|
|
|
|
|
'3008,0152' => { VR => 'IS', Name => 'ReferencedChannelShieldNumber' }, |
|
4725
|
|
|
|
|
|
|
'3008,0160' => { VR => 'SQ', Name => 'BrachyControlPointDeliveredSeq' }, |
|
4726
|
|
|
|
|
|
|
'3008,0162' => { VR => 'DA', Name => 'SafePositionExitDate' }, |
|
4727
|
|
|
|
|
|
|
'3008,0164' => { VR => 'TM', Name => 'SafePositionExitTime' }, |
|
4728
|
|
|
|
|
|
|
'3008,0166' => { VR => 'DA', Name => 'SafePositionReturnDate' }, |
|
4729
|
|
|
|
|
|
|
'3008,0168' => { VR => 'TM', Name => 'SafePositionReturnTime' }, |
|
4730
|
|
|
|
|
|
|
'3008,0171' => { VR => 'SQ', Name => 'PulseSpecBrachyCntrlPtDeliveredSeq' }, |
|
4731
|
|
|
|
|
|
|
'3008,0172' => { VR => 'US', Name => 'PulseNumber' }, |
|
4732
|
|
|
|
|
|
|
'3008,0173' => { VR => 'SQ', Name => 'BrachyPulseCntrlPointDeliveredSeq' }, |
|
4733
|
|
|
|
|
|
|
'3008,0200' => { VR => 'CS', Name => 'CurrentTreatmentStatus' }, |
|
4734
|
|
|
|
|
|
|
'3008,0202' => { VR => 'ST', Name => 'TreatmentStatusComment' }, |
|
4735
|
|
|
|
|
|
|
'3008,0220' => { VR => 'SQ', Name => 'FractionGroupSummarySequence' }, |
|
4736
|
|
|
|
|
|
|
'3008,0223' => { VR => 'IS', Name => 'ReferencedFractionNumber' }, |
|
4737
|
|
|
|
|
|
|
'3008,0224' => { VR => 'CS', Name => 'FractionGroupType' }, |
|
4738
|
|
|
|
|
|
|
'3008,0230' => { VR => 'CS', Name => 'BeamStopperPosition' }, |
|
4739
|
|
|
|
|
|
|
'3008,0240' => { VR => 'SQ', Name => 'FractionStatusSummarySequence' }, |
|
4740
|
|
|
|
|
|
|
'3008,0250' => { VR => 'DA', Name => 'TreatmentDate' }, |
|
4741
|
|
|
|
|
|
|
'3008,0251' => { VR => 'TM', Name => 'TreatmentTime' }, |
|
4742
|
|
|
|
|
|
|
'300A,0002' => { VR => 'SH', Name => 'RTPlanLabel' }, |
|
4743
|
|
|
|
|
|
|
'300A,0003' => { VR => 'LO', Name => 'RTPlanName' }, |
|
4744
|
|
|
|
|
|
|
'300A,0004' => { VR => 'ST', Name => 'RTPlanDescription' }, |
|
4745
|
|
|
|
|
|
|
'300A,0006' => { VR => 'DA', Name => 'RTPlanDate' }, |
|
4746
|
|
|
|
|
|
|
'300A,0007' => { VR => 'TM', Name => 'RTPlanTime' }, |
|
4747
|
|
|
|
|
|
|
'300A,0009' => { VR => 'LO', Name => 'TreatmentProtocols' }, |
|
4748
|
|
|
|
|
|
|
'300A,000A' => { VR => 'CS', Name => 'PlanIntent' }, |
|
4749
|
|
|
|
|
|
|
'300A,000B' => { VR => 'LO', Name => 'TreatmentSites' }, |
|
4750
|
|
|
|
|
|
|
'300A,000C' => { VR => 'CS', Name => 'RTPlanGeometry' }, |
|
4751
|
|
|
|
|
|
|
'300A,000E' => { VR => 'ST', Name => 'PrescriptionDescription' }, |
|
4752
|
|
|
|
|
|
|
'300A,0010' => { VR => 'SQ', Name => 'DoseReferenceSequence' }, |
|
4753
|
|
|
|
|
|
|
'300A,0012' => { VR => 'IS', Name => 'DoseReferenceNumber' }, |
|
4754
|
|
|
|
|
|
|
'300A,0013' => { VR => 'UI', Name => 'DoseReferenceUID' }, |
|
4755
|
|
|
|
|
|
|
'300A,0014' => { VR => 'CS', Name => 'DoseReferenceStructureType' }, |
|
4756
|
|
|
|
|
|
|
'300A,0015' => { VR => 'CS', Name => 'NominalBeamEnergyUnit' }, |
|
4757
|
|
|
|
|
|
|
'300A,0016' => { VR => 'LO', Name => 'DoseReferenceDescription' }, |
|
4758
|
|
|
|
|
|
|
'300A,0018' => { VR => 'DS', Name => 'DoseReferencePointCoordinates' }, |
|
4759
|
|
|
|
|
|
|
'300A,001A' => { VR => 'DS', Name => 'NominalPriorDose' }, |
|
4760
|
|
|
|
|
|
|
'300A,0020' => { VR => 'CS', Name => 'DoseReferenceType' }, |
|
4761
|
|
|
|
|
|
|
'300A,0021' => { VR => 'DS', Name => 'ConstraintWeight' }, |
|
4762
|
|
|
|
|
|
|
'300A,0022' => { VR => 'DS', Name => 'DeliveryWarningDose' }, |
|
4763
|
|
|
|
|
|
|
'300A,0023' => { VR => 'DS', Name => 'DeliveryMaximumDose' }, |
|
4764
|
|
|
|
|
|
|
'300A,0025' => { VR => 'DS', Name => 'TargetMinimumDose' }, |
|
4765
|
|
|
|
|
|
|
'300A,0026' => { VR => 'DS', Name => 'TargetPrescriptionDose' }, |
|
4766
|
|
|
|
|
|
|
'300A,0027' => { VR => 'DS', Name => 'TargetMaximumDose' }, |
|
4767
|
|
|
|
|
|
|
'300A,0028' => { VR => 'DS', Name => 'TargetUnderdoseVolumeFraction' }, |
|
4768
|
|
|
|
|
|
|
'300A,002A' => { VR => 'DS', Name => 'OrganAtRiskFullVolumeDose' }, |
|
4769
|
|
|
|
|
|
|
'300A,002B' => { VR => 'DS', Name => 'OrganAtRiskLimitDose' }, |
|
4770
|
|
|
|
|
|
|
'300A,002C' => { VR => 'DS', Name => 'OrganAtRiskMaximumDose' }, |
|
4771
|
|
|
|
|
|
|
'300A,002D' => { VR => 'DS', Name => 'OrganAtRiskOverdoseVolumeFraction' }, |
|
4772
|
|
|
|
|
|
|
'300A,0040' => { VR => 'SQ', Name => 'ToleranceTableSequence' }, |
|
4773
|
|
|
|
|
|
|
'300A,0042' => { VR => 'IS', Name => 'ToleranceTableNumber' }, |
|
4774
|
|
|
|
|
|
|
'300A,0043' => { VR => 'SH', Name => 'ToleranceTableLabel' }, |
|
4775
|
|
|
|
|
|
|
'300A,0044' => { VR => 'DS', Name => 'GantryAngleTolerance' }, |
|
4776
|
|
|
|
|
|
|
'300A,0046' => { VR => 'DS', Name => 'BeamLimitingDeviceAngleTolerance' }, |
|
4777
|
|
|
|
|
|
|
'300A,0048' => { VR => 'SQ', Name => 'BeamLimitingDeviceToleranceSeq' }, |
|
4778
|
|
|
|
|
|
|
'300A,004A' => { VR => 'DS', Name => 'BeamLimitingDevicePositionTol' }, |
|
4779
|
|
|
|
|
|
|
'300A,004B' => { VR => 'FL', Name => 'SnoutPositionTolerance' }, |
|
4780
|
|
|
|
|
|
|
'300A,004C' => { VR => 'DS', Name => 'PatientSupportAngleTolerance' }, |
|
4781
|
|
|
|
|
|
|
'300A,004E' => { VR => 'DS', Name => 'TableTopEccentricAngleTolerance' }, |
|
4782
|
|
|
|
|
|
|
'300A,004F' => { VR => 'FL', Name => 'TableTopPitchAngleTolerance' }, |
|
4783
|
|
|
|
|
|
|
'300A,0050' => { VR => 'FL', Name => 'TableTopRollAngleTolerance' }, |
|
4784
|
|
|
|
|
|
|
'300A,0051' => { VR => 'DS', Name => 'TableTopVerticalPositionTolerance' }, |
|
4785
|
|
|
|
|
|
|
'300A,0052' => { VR => 'DS', Name => 'TableTopLongitudinalPositionTol' }, |
|
4786
|
|
|
|
|
|
|
'300A,0053' => { VR => 'DS', Name => 'TableTopLateralPositionTolerance' }, |
|
4787
|
|
|
|
|
|
|
'300A,0054' => { VR => 'UI', Name => 'TableTopPositionAlignmentUID' }, |
|
4788
|
|
|
|
|
|
|
'300A,0055' => { VR => 'CS', Name => 'RTPlanRelationship' }, |
|
4789
|
|
|
|
|
|
|
'300A,0070' => { VR => 'SQ', Name => 'FractionGroupSequence' }, |
|
4790
|
|
|
|
|
|
|
'300A,0071' => { VR => 'IS', Name => 'FractionGroupNumber' }, |
|
4791
|
|
|
|
|
|
|
'300A,0072' => { VR => 'LO', Name => 'FractionGroupDescription' }, |
|
4792
|
|
|
|
|
|
|
'300A,0078' => { VR => 'IS', Name => 'NumberOfFractionsPlanned' }, |
|
4793
|
|
|
|
|
|
|
'300A,0079' => { VR => 'IS', Name => 'NumberFractionPatternDigitsPerDay' }, |
|
4794
|
|
|
|
|
|
|
'300A,007A' => { VR => 'IS', Name => 'RepeatFractionCycleLength' }, |
|
4795
|
|
|
|
|
|
|
'300A,007B' => { VR => 'LT', Name => 'FractionPattern' }, |
|
4796
|
|
|
|
|
|
|
'300A,0080' => { VR => 'IS', Name => 'NumberOfBeams' }, |
|
4797
|
|
|
|
|
|
|
'300A,0082' => { VR => 'DS', Name => 'BeamDoseSpecificationPoint' }, |
|
4798
|
|
|
|
|
|
|
'300A,0083' => { VR => 'UI', Name => 'ReferencedDoseReferenceUID' }, |
|
4799
|
|
|
|
|
|
|
'300A,0084' => { VR => 'DS', Name => 'BeamDose' }, |
|
4800
|
|
|
|
|
|
|
'300A,0086' => { VR => 'DS', Name => 'BeamMeterset' }, |
|
4801
|
|
|
|
|
|
|
'300A,0088' => { VR => 'FL', Name => 'BeamDosePointDepth' }, |
|
4802
|
|
|
|
|
|
|
'300A,0089' => { VR => 'FL', Name => 'BeamDosePointEquivalentDepth' }, |
|
4803
|
|
|
|
|
|
|
'300A,008A' => { VR => 'FL', Name => 'BeamDosePointSSD' }, |
|
4804
|
|
|
|
|
|
|
'300A,008B' => { VR => 'CS', Name => 'BeamDoseMeaning' }, |
|
4805
|
|
|
|
|
|
|
'300A,008C' => { VR => 'SQ', Name => 'BeamDoseVerificationCntrlPointSeq' }, |
|
4806
|
|
|
|
|
|
|
'300A,008D' => { VR => 'FL', Name => 'AverageBeamDosePointDepth' }, |
|
4807
|
|
|
|
|
|
|
'300A,008E' => { VR => 'FL', Name => 'AverageBeamDosePointEquivDepth' }, |
|
4808
|
|
|
|
|
|
|
'300A,008F' => { VR => 'FL', Name => 'AverageBeamDosePointSSD' }, |
|
4809
|
|
|
|
|
|
|
'300A,0090' => { VR => 'CS', Name => 'BeamDoseType' }, |
|
4810
|
|
|
|
|
|
|
'300A,0091' => { VR => 'DS', Name => 'AlternateBeamDose' }, |
|
4811
|
|
|
|
|
|
|
'300A,0092' => { VR => 'CS', Name => 'AlternateBeamDoseType' }, |
|
4812
|
|
|
|
|
|
|
'300A,0093' => { VR => 'CS', Name => 'DepthValueAveragingFlag' }, |
|
4813
|
|
|
|
|
|
|
'300A,0094' => { VR => 'DS', Name => 'BeamDosePointSrcToExtContourDist' }, |
|
4814
|
|
|
|
|
|
|
'300A,00A0' => { VR => 'IS', Name => 'NumberOfBrachyApplicationSetups' }, |
|
4815
|
|
|
|
|
|
|
'300A,00A2' => { VR => 'DS', Name => 'BrachyAppSetupDoseSpecPoint' }, |
|
4816
|
|
|
|
|
|
|
'300A,00A4' => { VR => 'DS', Name => 'BrachyApplicationSetupDose' }, |
|
4817
|
|
|
|
|
|
|
'300A,00B0' => { VR => 'SQ', Name => 'BeamSequence' }, |
|
4818
|
|
|
|
|
|
|
'300A,00B2' => { VR => 'SH', Name => 'TreatmentMachineName' }, |
|
4819
|
|
|
|
|
|
|
'300A,00B3' => { VR => 'CS', Name => 'PrimaryDosimeterUnit' }, |
|
4820
|
|
|
|
|
|
|
'300A,00B4' => { VR => 'DS', Name => 'SourceAxisDistance' }, |
|
4821
|
|
|
|
|
|
|
'300A,00B6' => { VR => 'SQ', Name => 'BeamLimitingDeviceSequence' }, |
|
4822
|
|
|
|
|
|
|
'300A,00B8' => { VR => 'CS', Name => 'RTBeamLimitingDeviceType' }, |
|
4823
|
|
|
|
|
|
|
'300A,00BA' => { VR => 'DS', Name => 'SourceToBeamLimitingDeviceDistance' }, |
|
4824
|
|
|
|
|
|
|
'300A,00BB' => { VR => 'FL', Name => 'IsocenterToBeamLimitingDeviceDist' }, |
|
4825
|
|
|
|
|
|
|
'300A,00BC' => { VR => 'IS', Name => 'NumberOfLeafJawPairs' }, |
|
4826
|
|
|
|
|
|
|
'300A,00BE' => { VR => 'DS', Name => 'LeafPositionBoundaries' }, |
|
4827
|
|
|
|
|
|
|
'300A,00C0' => { VR => 'IS', Name => 'BeamNumber' }, |
|
4828
|
|
|
|
|
|
|
'300A,00C2' => { VR => 'LO', Name => 'BeamName' }, |
|
4829
|
|
|
|
|
|
|
'300A,00C3' => { VR => 'ST', Name => 'BeamDescription' }, |
|
4830
|
|
|
|
|
|
|
'300A,00C4' => { VR => 'CS', Name => 'BeamType' }, |
|
4831
|
|
|
|
|
|
|
'300A,00C5' => { VR => 'FD', Name => 'BeamDeliveryDurationLimit' }, |
|
4832
|
|
|
|
|
|
|
'300A,00C6' => { VR => 'CS', Name => 'RadiationType' }, |
|
4833
|
|
|
|
|
|
|
'300A,00C7' => { VR => 'CS', Name => 'HighDoseTechniqueType' }, |
|
4834
|
|
|
|
|
|
|
'300A,00C8' => { VR => 'IS', Name => 'ReferenceImageNumber' }, |
|
4835
|
|
|
|
|
|
|
'300A,00CA' => { VR => 'SQ', Name => 'PlannedVerificationImageSequence' }, |
|
4836
|
|
|
|
|
|
|
'300A,00CC' => { VR => 'LO', Name => 'ImagingDeviceSpecificAcqParams' }, |
|
4837
|
|
|
|
|
|
|
'300A,00CE' => { VR => 'CS', Name => 'TreatmentDeliveryType' }, |
|
4838
|
|
|
|
|
|
|
'300A,00D0' => { VR => 'IS', Name => 'NumberOfWedges' }, |
|
4839
|
|
|
|
|
|
|
'300A,00D1' => { VR => 'SQ', Name => 'WedgeSequence' }, |
|
4840
|
|
|
|
|
|
|
'300A,00D2' => { VR => 'IS', Name => 'WedgeNumber' }, |
|
4841
|
|
|
|
|
|
|
'300A,00D3' => { VR => 'CS', Name => 'WedgeType' }, |
|
4842
|
|
|
|
|
|
|
'300A,00D4' => { VR => 'SH', Name => 'WedgeID' }, |
|
4843
|
|
|
|
|
|
|
'300A,00D5' => { VR => 'IS', Name => 'WedgeAngle' }, |
|
4844
|
|
|
|
|
|
|
'300A,00D6' => { VR => 'DS', Name => 'WedgeFactor' }, |
|
4845
|
|
|
|
|
|
|
'300A,00D7' => { VR => 'FL', Name => 'TotalWedgeTrayWaterEquivThickness' }, |
|
4846
|
|
|
|
|
|
|
'300A,00D8' => { VR => 'DS', Name => 'WedgeOrientation' }, |
|
4847
|
|
|
|
|
|
|
'300A,00D9' => { VR => 'FL', Name => 'IsocenterToWedgeTrayDistance' }, |
|
4848
|
|
|
|
|
|
|
'300A,00DA' => { VR => 'DS', Name => 'SourceToWedgeTrayDistance' }, |
|
4849
|
|
|
|
|
|
|
'300A,00DB' => { VR => 'FL', Name => 'WedgeThinEdgePosition' }, |
|
4850
|
|
|
|
|
|
|
'300A,00DC' => { VR => 'SH', Name => 'BolusID' }, |
|
4851
|
|
|
|
|
|
|
'300A,00DD' => { VR => 'ST', Name => 'BolusDescription' }, |
|
4852
|
|
|
|
|
|
|
'300A,00DE' => { VR => 'DS', Name => 'EffectiveWedgeAngle' }, |
|
4853
|
|
|
|
|
|
|
'300A,00E0' => { VR => 'IS', Name => 'NumberOfCompensators' }, |
|
4854
|
|
|
|
|
|
|
'300A,00E1' => { VR => 'SH', Name => 'MaterialID' }, |
|
4855
|
|
|
|
|
|
|
'300A,00E2' => { VR => 'DS', Name => 'TotalCompensatorTrayFactor' }, |
|
4856
|
|
|
|
|
|
|
'300A,00E3' => { VR => 'SQ', Name => 'CompensatorSequence' }, |
|
4857
|
|
|
|
|
|
|
'300A,00E4' => { VR => 'IS', Name => 'CompensatorNumber' }, |
|
4858
|
|
|
|
|
|
|
'300A,00E5' => { VR => 'SH', Name => 'CompensatorID' }, |
|
4859
|
|
|
|
|
|
|
'300A,00E6' => { VR => 'DS', Name => 'SourceToCompensatorTrayDistance' }, |
|
4860
|
|
|
|
|
|
|
'300A,00E7' => { VR => 'IS', Name => 'CompensatorRows' }, |
|
4861
|
|
|
|
|
|
|
'300A,00E8' => { VR => 'IS', Name => 'CompensatorColumns' }, |
|
4862
|
|
|
|
|
|
|
'300A,00E9' => { VR => 'DS', Name => 'CompensatorPixelSpacing' }, |
|
4863
|
|
|
|
|
|
|
'300A,00EA' => { VR => 'DS', Name => 'CompensatorPosition' }, |
|
4864
|
|
|
|
|
|
|
'300A,00EB' => { VR => 'DS', Name => 'CompensatorTransmissionData' }, |
|
4865
|
|
|
|
|
|
|
'300A,00EC' => { VR => 'DS', Name => 'CompensatorThicknessData' }, |
|
4866
|
|
|
|
|
|
|
'300A,00ED' => { VR => 'IS', Name => 'NumberOfBoli' }, |
|
4867
|
|
|
|
|
|
|
'300A,00EE' => { VR => 'CS', Name => 'CompensatorType' }, |
|
4868
|
|
|
|
|
|
|
'300A,00EF' => { VR => 'SH', Name => 'CompensatorTrayID' }, |
|
4869
|
|
|
|
|
|
|
'300A,00F0' => { VR => 'IS', Name => 'NumberOfBlocks' }, |
|
4870
|
|
|
|
|
|
|
'300A,00F2' => { VR => 'DS', Name => 'TotalBlockTrayFactor' }, |
|
4871
|
|
|
|
|
|
|
'300A,00F3' => { VR => 'FL', Name => 'TotalBlockTrayWaterEquivThickness' }, |
|
4872
|
|
|
|
|
|
|
'300A,00F4' => { VR => 'SQ', Name => 'BlockSequence' }, |
|
4873
|
|
|
|
|
|
|
'300A,00F5' => { VR => 'SH', Name => 'BlockTrayID' }, |
|
4874
|
|
|
|
|
|
|
'300A,00F6' => { VR => 'DS', Name => 'SourceToBlockTrayDistance' }, |
|
4875
|
|
|
|
|
|
|
'300A,00F7' => { VR => 'FL', Name => 'IsocenterToBlockTrayDistance' }, |
|
4876
|
|
|
|
|
|
|
'300A,00F8' => { VR => 'CS', Name => 'BlockType' }, |
|
4877
|
|
|
|
|
|
|
'300A,00F9' => { VR => 'LO', Name => 'AccessoryCode' }, |
|
4878
|
|
|
|
|
|
|
'300A,00FA' => { VR => 'CS', Name => 'BlockDivergence' }, |
|
4879
|
|
|
|
|
|
|
'300A,00FB' => { VR => 'CS', Name => 'BlockMountingPosition' }, |
|
4880
|
|
|
|
|
|
|
'300A,00FC' => { VR => 'IS', Name => 'BlockNumber' }, |
|
4881
|
|
|
|
|
|
|
'300A,00FE' => { VR => 'LO', Name => 'BlockName' }, |
|
4882
|
|
|
|
|
|
|
'300A,0100' => { VR => 'DS', Name => 'BlockThickness' }, |
|
4883
|
|
|
|
|
|
|
'300A,0102' => { VR => 'DS', Name => 'BlockTransmission' }, |
|
4884
|
|
|
|
|
|
|
'300A,0104' => { VR => 'IS', Name => 'BlockNumberOfPoints' }, |
|
4885
|
|
|
|
|
|
|
'300A,0106' => { VR => 'DS', Name => 'BlockData' }, |
|
4886
|
|
|
|
|
|
|
'300A,0107' => { VR => 'SQ', Name => 'ApplicatorSequence' }, |
|
4887
|
|
|
|
|
|
|
'300A,0108' => { VR => 'SH', Name => 'ApplicatorID' }, |
|
4888
|
|
|
|
|
|
|
'300A,0109' => { VR => 'CS', Name => 'ApplicatorType' }, |
|
4889
|
|
|
|
|
|
|
'300A,010A' => { VR => 'LO', Name => 'ApplicatorDescription' }, |
|
4890
|
|
|
|
|
|
|
'300A,010C' => { VR => 'DS', Name => 'CumulativeDoseReferenceCoefficient' }, |
|
4891
|
|
|
|
|
|
|
'300A,010E' => { VR => 'DS', Name => 'FinalCumulativeMetersetWeight' }, |
|
4892
|
|
|
|
|
|
|
'300A,0110' => { VR => 'IS', Name => 'NumberOfControlPoints' }, |
|
4893
|
|
|
|
|
|
|
'300A,0111' => { VR => 'SQ', Name => 'ControlPointSequence' }, |
|
4894
|
|
|
|
|
|
|
'300A,0112' => { VR => 'IS', Name => 'ControlPointIndex' }, |
|
4895
|
|
|
|
|
|
|
'300A,0114' => { VR => 'DS', Name => 'NominalBeamEnergy' }, |
|
4896
|
|
|
|
|
|
|
'300A,0115' => { VR => 'DS', Name => 'DoseRateSet' }, |
|
4897
|
|
|
|
|
|
|
'300A,0116' => { VR => 'SQ', Name => 'WedgePositionSequence' }, |
|
4898
|
|
|
|
|
|
|
'300A,0118' => { VR => 'CS', Name => 'WedgePosition' }, |
|
4899
|
|
|
|
|
|
|
'300A,011A' => { VR => 'SQ', Name => 'BeamLimitingDevicePositionSequence' }, |
|
4900
|
|
|
|
|
|
|
'300A,011C' => { VR => 'DS', Name => 'LeafJawPositions' }, |
|
4901
|
|
|
|
|
|
|
'300A,011E' => { VR => 'DS', Name => 'GantryAngle' }, |
|
4902
|
|
|
|
|
|
|
'300A,011F' => { VR => 'CS', Name => 'GantryRotationDirection' }, |
|
4903
|
|
|
|
|
|
|
'300A,0120' => { VR => 'DS', Name => 'BeamLimitingDeviceAngle' }, |
|
4904
|
|
|
|
|
|
|
'300A,0121' => { VR => 'CS', Name => 'BeamLimitingDeviceRotateDirection' }, |
|
4905
|
|
|
|
|
|
|
'300A,0122' => { VR => 'DS', Name => 'PatientSupportAngle' }, |
|
4906
|
|
|
|
|
|
|
'300A,0123' => { VR => 'CS', Name => 'PatientSupportRotationDirection' }, |
|
4907
|
|
|
|
|
|
|
'300A,0124' => { VR => 'DS', Name => 'TableTopEccentricAxisDistance' }, |
|
4908
|
|
|
|
|
|
|
'300A,0125' => { VR => 'DS', Name => 'TableTopEccentricAngle' }, |
|
4909
|
|
|
|
|
|
|
'300A,0126' => { VR => 'CS', Name => 'TableTopEccentricRotateDirection' }, |
|
4910
|
|
|
|
|
|
|
'300A,0128' => { VR => 'DS', Name => 'TableTopVerticalPosition' }, |
|
4911
|
|
|
|
|
|
|
'300A,0129' => { VR => 'DS', Name => 'TableTopLongitudinalPosition' }, |
|
4912
|
|
|
|
|
|
|
'300A,012A' => { VR => 'DS', Name => 'TableTopLateralPosition' }, |
|
4913
|
|
|
|
|
|
|
'300A,012C' => { VR => 'DS', Name => 'IsocenterPosition' }, |
|
4914
|
|
|
|
|
|
|
'300A,012E' => { VR => 'DS', Name => 'SurfaceEntryPoint' }, |
|
4915
|
|
|
|
|
|
|
'300A,0130' => { VR => 'DS', Name => 'SourceToSurfaceDistance' }, |
|
4916
|
|
|
|
|
|
|
'300A,0131' => { VR => 'FL', Name => 'AvgBeamDosePtSrcToExtContourDist' }, |
|
4917
|
|
|
|
|
|
|
'300A,0132' => { VR => 'FL', Name => 'SourceToExternalContourDistance' }, |
|
4918
|
|
|
|
|
|
|
'300A,0133' => { VR => 'FL', Name => 'ExternalContourEntryPoint' }, |
|
4919
|
|
|
|
|
|
|
'300A,0134' => { VR => 'DS', Name => 'CumulativeMetersetWeight' }, |
|
4920
|
|
|
|
|
|
|
'300A,0140' => { VR => 'FL', Name => 'TableTopPitchAngle' }, |
|
4921
|
|
|
|
|
|
|
'300A,0142' => { VR => 'CS', Name => 'TableTopPitchRotationDirection' }, |
|
4922
|
|
|
|
|
|
|
'300A,0144' => { VR => 'FL', Name => 'TableTopRollAngle' }, |
|
4923
|
|
|
|
|
|
|
'300A,0146' => { VR => 'CS', Name => 'TableTopRollRotationDirection' }, |
|
4924
|
|
|
|
|
|
|
'300A,0148' => { VR => 'FL', Name => 'HeadFixationAngle' }, |
|
4925
|
|
|
|
|
|
|
'300A,014A' => { VR => 'FL', Name => 'GantryPitchAngle' }, |
|
4926
|
|
|
|
|
|
|
'300A,014C' => { VR => 'CS', Name => 'GantryPitchRotationDirection' }, |
|
4927
|
|
|
|
|
|
|
'300A,014E' => { VR => 'FL', Name => 'GantryPitchAngleTolerance' }, |
|
4928
|
|
|
|
|
|
|
'300A,0150' => { VR => 'CS', Name => 'FixationEye' }, |
|
4929
|
|
|
|
|
|
|
'300A,0151' => { VR => 'DS', Name => 'ChairHeadFramePosition' }, |
|
4930
|
|
|
|
|
|
|
'300A,0152' => { VR => 'DS', Name => 'HeadFixationAngleTolerance' }, |
|
4931
|
|
|
|
|
|
|
'300A,0153' => { VR => 'DS', Name => 'ChairHeadFramePositionTolerance' }, |
|
4932
|
|
|
|
|
|
|
'300A,0154' => { VR => 'DS', Name => 'FixationLightAzimuthalAngleTol' }, |
|
4933
|
|
|
|
|
|
|
'300A,0155' => { VR => 'DS', Name => 'FixationLightPolarAngleTolerance' }, |
|
4934
|
|
|
|
|
|
|
'300A,0180' => { VR => 'SQ', Name => 'PatientSetupSequence' }, |
|
4935
|
|
|
|
|
|
|
'300A,0182' => { VR => 'IS', Name => 'PatientSetupNumber' }, |
|
4936
|
|
|
|
|
|
|
'300A,0183' => { VR => 'LO', Name => 'PatientSetupLabel' }, |
|
4937
|
|
|
|
|
|
|
'300A,0184' => { VR => 'LO', Name => 'PatientAdditionalPosition' }, |
|
4938
|
|
|
|
|
|
|
'300A,0190' => { VR => 'SQ', Name => 'FixationDeviceSequence' }, |
|
4939
|
|
|
|
|
|
|
'300A,0192' => { VR => 'CS', Name => 'FixationDeviceType' }, |
|
4940
|
|
|
|
|
|
|
'300A,0194' => { VR => 'SH', Name => 'FixationDeviceLabel' }, |
|
4941
|
|
|
|
|
|
|
'300A,0196' => { VR => 'ST', Name => 'FixationDeviceDescription' }, |
|
4942
|
|
|
|
|
|
|
'300A,0198' => { VR => 'SH', Name => 'FixationDevicePosition' }, |
|
4943
|
|
|
|
|
|
|
'300A,0199' => { VR => 'FL', Name => 'FixationDevicePitchAngle' }, |
|
4944
|
|
|
|
|
|
|
'300A,019A' => { VR => 'FL', Name => 'FixationDeviceRollAngle' }, |
|
4945
|
|
|
|
|
|
|
'300A,01A0' => { VR => 'SQ', Name => 'ShieldingDeviceSequence' }, |
|
4946
|
|
|
|
|
|
|
'300A,01A2' => { VR => 'CS', Name => 'ShieldingDeviceType' }, |
|
4947
|
|
|
|
|
|
|
'300A,01A4' => { VR => 'SH', Name => 'ShieldingDeviceLabel' }, |
|
4948
|
|
|
|
|
|
|
'300A,01A6' => { VR => 'ST', Name => 'ShieldingDeviceDescription' }, |
|
4949
|
|
|
|
|
|
|
'300A,01A8' => { VR => 'SH', Name => 'ShieldingDevicePosition' }, |
|
4950
|
|
|
|
|
|
|
'300A,01B0' => { VR => 'CS', Name => 'SetupTechnique' }, |
|
4951
|
|
|
|
|
|
|
'300A,01B2' => { VR => 'ST', Name => 'SetupTechniqueDescription' }, |
|
4952
|
|
|
|
|
|
|
'300A,01B4' => { VR => 'SQ', Name => 'SetupDeviceSequence' }, |
|
4953
|
|
|
|
|
|
|
'300A,01B6' => { VR => 'CS', Name => 'SetupDeviceType' }, |
|
4954
|
|
|
|
|
|
|
'300A,01B8' => { VR => 'SH', Name => 'SetupDeviceLabel' }, |
|
4955
|
|
|
|
|
|
|
'300A,01BA' => { VR => 'ST', Name => 'SetupDeviceDescription' }, |
|
4956
|
|
|
|
|
|
|
'300A,01BC' => { VR => 'DS', Name => 'SetupDeviceParameter' }, |
|
4957
|
|
|
|
|
|
|
'300A,01D0' => { VR => 'ST', Name => 'SetupReferenceDescription' }, |
|
4958
|
|
|
|
|
|
|
'300A,01D2' => { VR => 'DS', Name => 'TableTopVerticalSetupDisplacement' }, |
|
4959
|
|
|
|
|
|
|
'300A,01D4' => { VR => 'DS', Name => 'TableTopLongitudinalSetupDisplace' }, |
|
4960
|
|
|
|
|
|
|
'300A,01D6' => { VR => 'DS', Name => 'TableTopLateralSetupDisplacement' }, |
|
4961
|
|
|
|
|
|
|
'300A,0200' => { VR => 'CS', Name => 'BrachyTreatmentTechnique' }, |
|
4962
|
|
|
|
|
|
|
'300A,0202' => { VR => 'CS', Name => 'BrachyTreatmentType' }, |
|
4963
|
|
|
|
|
|
|
'300A,0206' => { VR => 'SQ', Name => 'TreatmentMachineSequence' }, |
|
4964
|
|
|
|
|
|
|
'300A,0210' => { VR => 'SQ', Name => 'SourceSequence' }, |
|
4965
|
|
|
|
|
|
|
'300A,0212' => { VR => 'IS', Name => 'SourceNumber' }, |
|
4966
|
|
|
|
|
|
|
'300A,0214' => { VR => 'CS', Name => 'SourceType' }, |
|
4967
|
|
|
|
|
|
|
'300A,0216' => { VR => 'LO', Name => 'SourceManufacturer' }, |
|
4968
|
|
|
|
|
|
|
'300A,0218' => { VR => 'DS', Name => 'ActiveSourceDiameter' }, |
|
4969
|
|
|
|
|
|
|
'300A,021A' => { VR => 'DS', Name => 'ActiveSourceLength' }, |
|
4970
|
|
|
|
|
|
|
'300A,021B' => { VR => 'SH', Name => 'SourceModelID' }, |
|
4971
|
|
|
|
|
|
|
'300A,021C' => { VR => 'LO', Name => 'SourceDescription' }, |
|
4972
|
|
|
|
|
|
|
'300A,0222' => { VR => 'DS', Name => 'SourceEncapsulationNomThickness' }, |
|
4973
|
|
|
|
|
|
|
'300A,0224' => { VR => 'DS', Name => 'SourceEncapsulationNomTransmission' }, |
|
4974
|
|
|
|
|
|
|
'300A,0226' => { VR => 'LO', Name => 'SourceIsotopeName' }, |
|
4975
|
|
|
|
|
|
|
'300A,0228' => { VR => 'DS', Name => 'SourceIsotopeHalfLife' }, |
|
4976
|
|
|
|
|
|
|
'300A,0229' => { VR => 'CS', Name => 'SourceStrengthUnits' }, |
|
4977
|
|
|
|
|
|
|
'300A,022A' => { VR => 'DS', Name => 'ReferenceAirKermaRate' }, |
|
4978
|
|
|
|
|
|
|
'300A,022B' => { VR => 'DS', Name => 'SourceStrength' }, |
|
4979
|
|
|
|
|
|
|
'300A,022C' => { VR => 'DA', Name => 'SourceStrengthReferenceDate' }, |
|
4980
|
|
|
|
|
|
|
'300A,022E' => { VR => 'TM', Name => 'SourceStrengthReferenceTime' }, |
|
4981
|
|
|
|
|
|
|
'300A,0230' => { VR => 'SQ', Name => 'ApplicationSetupSequence' }, |
|
4982
|
|
|
|
|
|
|
'300A,0232' => { VR => 'CS', Name => 'ApplicationSetupType' }, |
|
4983
|
|
|
|
|
|
|
'300A,0234' => { VR => 'IS', Name => 'ApplicationSetupNumber' }, |
|
4984
|
|
|
|
|
|
|
'300A,0236' => { VR => 'LO', Name => 'ApplicationSetupName' }, |
|
4985
|
|
|
|
|
|
|
'300A,0238' => { VR => 'LO', Name => 'ApplicationSetupManufacturer' }, |
|
4986
|
|
|
|
|
|
|
'300A,0240' => { VR => 'IS', Name => 'TemplateNumber' }, |
|
4987
|
|
|
|
|
|
|
'300A,0242' => { VR => 'SH', Name => 'TemplateType' }, |
|
4988
|
|
|
|
|
|
|
'300A,0244' => { VR => 'LO', Name => 'TemplateName' }, |
|
4989
|
|
|
|
|
|
|
'300A,0250' => { VR => 'DS', Name => 'TotalReferenceAirKerma' }, |
|
4990
|
|
|
|
|
|
|
'300A,0260' => { VR => 'SQ', Name => 'BrachyAccessoryDeviceSequence' }, |
|
4991
|
|
|
|
|
|
|
'300A,0262' => { VR => 'IS', Name => 'BrachyAccessoryDeviceNumber' }, |
|
4992
|
|
|
|
|
|
|
'300A,0263' => { VR => 'SH', Name => 'BrachyAccessoryDeviceID' }, |
|
4993
|
|
|
|
|
|
|
'300A,0264' => { VR => 'CS', Name => 'BrachyAccessoryDeviceType' }, |
|
4994
|
|
|
|
|
|
|
'300A,0266' => { VR => 'LO', Name => 'BrachyAccessoryDeviceName' }, |
|
4995
|
|
|
|
|
|
|
'300A,026A' => { VR => 'DS', Name => 'BrachyAccessoryDeviceNomThickness' }, |
|
4996
|
|
|
|
|
|
|
'300A,026C' => { VR => 'DS', Name => 'BrachyAccessoryDevNomTransmission' }, |
|
4997
|
|
|
|
|
|
|
'300A,0271' => { VR => 'DS', Name => 'ChannelEffectiveLength' }, |
|
4998
|
|
|
|
|
|
|
'300A,0272' => { VR => 'DS', Name => 'ChannelInnerLength' }, |
|
4999
|
|
|
|
|
|
|
'300A,0273' => { VR => 'SH', Name => 'AfterloaderChannelID' }, |
|
5000
|
|
|
|
|
|
|
'300A,0274' => { VR => 'DS', Name => 'SourceApplicatorTipLength' }, |
|
5001
|
|
|
|
|
|
|
'300A,0280' => { VR => 'SQ', Name => 'ChannelSequence' }, |
|
5002
|
|
|
|
|
|
|
'300A,0282' => { VR => 'IS', Name => 'ChannelNumber' }, |
|
5003
|
|
|
|
|
|
|
'300A,0284' => { VR => 'DS', Name => 'ChannelLength' }, |
|
5004
|
|
|
|
|
|
|
'300A,0286' => { VR => 'DS', Name => 'ChannelTotalTime' }, |
|
5005
|
|
|
|
|
|
|
'300A,0288' => { VR => 'CS', Name => 'SourceMovementType' }, |
|
5006
|
|
|
|
|
|
|
'300A,028A' => { VR => 'IS', Name => 'NumberOfPulses' }, |
|
5007
|
|
|
|
|
|
|
'300A,028C' => { VR => 'DS', Name => 'PulseRepetitionInterval' }, |
|
5008
|
|
|
|
|
|
|
'300A,0290' => { VR => 'IS', Name => 'SourceApplicatorNumber' }, |
|
5009
|
|
|
|
|
|
|
'300A,0291' => { VR => 'SH', Name => 'SourceApplicatorID' }, |
|
5010
|
|
|
|
|
|
|
'300A,0292' => { VR => 'CS', Name => 'SourceApplicatorType' }, |
|
5011
|
|
|
|
|
|
|
'300A,0294' => { VR => 'LO', Name => 'SourceApplicatorName' }, |
|
5012
|
|
|
|
|
|
|
'300A,0296' => { VR => 'DS', Name => 'SourceApplicatorLength' }, |
|
5013
|
|
|
|
|
|
|
'300A,0298' => { VR => 'LO', Name => 'SourceApplicatorManufacturer' }, |
|
5014
|
|
|
|
|
|
|
'300A,029C' => { VR => 'DS', Name => 'SourceApplicatorWallNomThickness' }, |
|
5015
|
|
|
|
|
|
|
'300A,029E' => { VR => 'DS', Name => 'SourceApplicatorWallNomTrans' }, |
|
5016
|
|
|
|
|
|
|
'300A,02A0' => { VR => 'DS', Name => 'SourceApplicatorStepSize' }, |
|
5017
|
|
|
|
|
|
|
'300A,02A1' => { VR => 'IS', Name => 'ApplicatorShapeReferencedROINumber' }, |
|
5018
|
|
|
|
|
|
|
'300A,02A2' => { VR => 'IS', Name => 'TransferTubeNumber' }, |
|
5019
|
|
|
|
|
|
|
'300A,02A4' => { VR => 'DS', Name => 'TransferTubeLength' }, |
|
5020
|
|
|
|
|
|
|
'300A,02B0' => { VR => 'SQ', Name => 'ChannelShieldSequence' }, |
|
5021
|
|
|
|
|
|
|
'300A,02B2' => { VR => 'IS', Name => 'ChannelShieldNumber' }, |
|
5022
|
|
|
|
|
|
|
'300A,02B3' => { VR => 'SH', Name => 'ChannelShieldID' }, |
|
5023
|
|
|
|
|
|
|
'300A,02B4' => { VR => 'LO', Name => 'ChannelShieldName' }, |
|
5024
|
|
|
|
|
|
|
'300A,02B8' => { VR => 'DS', Name => 'ChannelShieldNominalThickness' }, |
|
5025
|
|
|
|
|
|
|
'300A,02BA' => { VR => 'DS', Name => 'ChannelShieldNominalTransmission' }, |
|
5026
|
|
|
|
|
|
|
'300A,02C8' => { VR => 'DS', Name => 'FinalCumulativeTimeWeight' }, |
|
5027
|
|
|
|
|
|
|
'300A,02D0' => { VR => 'SQ', Name => 'BrachyControlPointSequence' }, |
|
5028
|
|
|
|
|
|
|
'300A,02D2' => { VR => 'DS', Name => 'ControlPointRelativePosition' }, |
|
5029
|
|
|
|
|
|
|
'300A,02D4' => { VR => 'DS', Name => 'ControlPoint3DPosition' }, |
|
5030
|
|
|
|
|
|
|
'300A,02D6' => { VR => 'DS', Name => 'CumulativeTimeWeight' }, |
|
5031
|
|
|
|
|
|
|
'300A,02E0' => { VR => 'CS', Name => 'CompensatorDivergence' }, |
|
5032
|
|
|
|
|
|
|
'300A,02E1' => { VR => 'CS', Name => 'CompensatorMountingPosition' }, |
|
5033
|
|
|
|
|
|
|
'300A,02E2' => { VR => 'DS', Name => 'SourceToCompensatorDistance' }, |
|
5034
|
|
|
|
|
|
|
'300A,02E3' => { VR => 'FL', Name => 'TotalCompTrayWaterEquivThickness' }, |
|
5035
|
|
|
|
|
|
|
'300A,02E4' => { VR => 'FL', Name => 'IsocenterToCompensatorTrayDistance' }, |
|
5036
|
|
|
|
|
|
|
'300A,02E5' => { VR => 'FL', Name => 'CompensatorColumnOffset' }, |
|
5037
|
|
|
|
|
|
|
'300A,02E6' => { VR => 'FL', Name => 'IsocenterToCompensatorDistances' }, |
|
5038
|
|
|
|
|
|
|
'300A,02E7' => { VR => 'FL', Name => 'CompensatorRelStoppingPowerRatio' }, |
|
5039
|
|
|
|
|
|
|
'300A,02E8' => { VR => 'FL', Name => 'CompensatorMillingToolDiameter' }, |
|
5040
|
|
|
|
|
|
|
'300A,02EA' => { VR => 'SQ', Name => 'IonRangeCompensatorSequence' }, |
|
5041
|
|
|
|
|
|
|
'300A,02EB' => { VR => 'LT', Name => 'CompensatorDescription' }, |
|
5042
|
|
|
|
|
|
|
'300A,02EC' => { VR => 'CS', Name => 'CompensatorSurfaceRepFlag' }, |
|
5043
|
|
|
|
|
|
|
'300A,0302' => { VR => 'IS', Name => 'RadiationMassNumber' }, |
|
5044
|
|
|
|
|
|
|
'300A,0304' => { VR => 'IS', Name => 'RadiationAtomicNumber' }, |
|
5045
|
|
|
|
|
|
|
'300A,0306' => { VR => 'SS', Name => 'RadiationChargeState' }, |
|
5046
|
|
|
|
|
|
|
'300A,0308' => { VR => 'CS', Name => 'ScanMode' }, |
|
5047
|
|
|
|
|
|
|
'300A,0309' => { VR => 'CS', Name => 'ModulatedScanModeType' }, |
|
5048
|
|
|
|
|
|
|
'300A,030A' => { VR => 'FL', Name => 'VirtualSourceAxisDistances' }, |
|
5049
|
|
|
|
|
|
|
'300A,030C' => { VR => 'SQ', Name => 'SnoutSequence' }, |
|
5050
|
|
|
|
|
|
|
'300A,030D' => { VR => 'FL', Name => 'SnoutPosition' }, |
|
5051
|
|
|
|
|
|
|
'300A,030F' => { VR => 'SH', Name => 'SnoutID' }, |
|
5052
|
|
|
|
|
|
|
'300A,0312' => { VR => 'IS', Name => 'NumberOfRangeShifters' }, |
|
5053
|
|
|
|
|
|
|
'300A,0314' => { VR => 'SQ', Name => 'RangeShifterSequence' }, |
|
5054
|
|
|
|
|
|
|
'300A,0316' => { VR => 'IS', Name => 'RangeShifterNumber' }, |
|
5055
|
|
|
|
|
|
|
'300A,0318' => { VR => 'SH', Name => 'RangeShifterID' }, |
|
5056
|
|
|
|
|
|
|
'300A,0320' => { VR => 'CS', Name => 'RangeShifterType' }, |
|
5057
|
|
|
|
|
|
|
'300A,0322' => { VR => 'LO', Name => 'RangeShifterDescription' }, |
|
5058
|
|
|
|
|
|
|
'300A,0330' => { VR => 'IS', Name => 'NumberOfLateralSpreadingDevices' }, |
|
5059
|
|
|
|
|
|
|
'300A,0332' => { VR => 'SQ', Name => 'LateralSpreadingDeviceSequence' }, |
|
5060
|
|
|
|
|
|
|
'300A,0334' => { VR => 'IS', Name => 'LateralSpreadingDeviceNumber' }, |
|
5061
|
|
|
|
|
|
|
'300A,0336' => { VR => 'SH', Name => 'LateralSpreadingDeviceID' }, |
|
5062
|
|
|
|
|
|
|
'300A,0338' => { VR => 'CS', Name => 'LateralSpreadingDeviceType' }, |
|
5063
|
|
|
|
|
|
|
'300A,033A' => { VR => 'LO', Name => 'LateralSpreadingDeviceDescription' }, |
|
5064
|
|
|
|
|
|
|
'300A,033C' => { VR => 'FL', Name => 'LateralSpreadingDevWaterEquivThick' }, |
|
5065
|
|
|
|
|
|
|
'300A,0340' => { VR => 'IS', Name => 'NumberOfRangeModulators' }, |
|
5066
|
|
|
|
|
|
|
'300A,0342' => { VR => 'SQ', Name => 'RangeModulatorSequence' }, |
|
5067
|
|
|
|
|
|
|
'300A,0344' => { VR => 'IS', Name => 'RangeModulatorNumber' }, |
|
5068
|
|
|
|
|
|
|
'300A,0346' => { VR => 'SH', Name => 'RangeModulatorID' }, |
|
5069
|
|
|
|
|
|
|
'300A,0348' => { VR => 'CS', Name => 'RangeModulatorType' }, |
|
5070
|
|
|
|
|
|
|
'300A,034A' => { VR => 'LO', Name => 'RangeModulatorDescription' }, |
|
5071
|
|
|
|
|
|
|
'300A,034C' => { VR => 'SH', Name => 'BeamCurrentModulationID' }, |
|
5072
|
|
|
|
|
|
|
'300A,0350' => { VR => 'CS', Name => 'PatientSupportType' }, |
|
5073
|
|
|
|
|
|
|
'300A,0352' => { VR => 'SH', Name => 'PatientSupportID' }, |
|
5074
|
|
|
|
|
|
|
'300A,0354' => { VR => 'LO', Name => 'PatientSupportAccessoryCode' }, |
|
5075
|
|
|
|
|
|
|
'300A,0355' => { VR => 'LO', Name => 'TrayAccessoryCode' }, |
|
5076
|
|
|
|
|
|
|
'300A,0356' => { VR => 'FL', Name => 'FixationLightAzimuthalAngle' }, |
|
5077
|
|
|
|
|
|
|
'300A,0358' => { VR => 'FL', Name => 'FixationLightPolarAngle' }, |
|
5078
|
|
|
|
|
|
|
'300A,035A' => { VR => 'FL', Name => 'MetersetRate' }, |
|
5079
|
|
|
|
|
|
|
'300A,0360' => { VR => 'SQ', Name => 'RangeShifterSettingsSequence' }, |
|
5080
|
|
|
|
|
|
|
'300A,0362' => { VR => 'LO', Name => 'RangeShifterSetting' }, |
|
5081
|
|
|
|
|
|
|
'300A,0364' => { VR => 'FL', Name => 'IsocenterToRangeShifterDistance' }, |
|
5082
|
|
|
|
|
|
|
'300A,0366' => { VR => 'FL', Name => 'RangeShifterWaterEquivThickness' }, |
|
5083
|
|
|
|
|
|
|
'300A,0370' => { VR => 'SQ', Name => 'LateralSpreadingDeviceSettingsSeq' }, |
|
5084
|
|
|
|
|
|
|
'300A,0372' => { VR => 'LO', Name => 'LateralSpreadingDeviceSetting' }, |
|
5085
|
|
|
|
|
|
|
'300A,0374' => { VR => 'FL', Name => 'IsocenterToLateralSpreadingDevDist' }, |
|
5086
|
|
|
|
|
|
|
'300A,0380' => { VR => 'SQ', Name => 'RangeModulatorSettingsSequence' }, |
|
5087
|
|
|
|
|
|
|
'300A,0382' => { VR => 'FL', Name => 'RangeModulatorGatingStartValue' }, |
|
5088
|
|
|
|
|
|
|
'300A,0384' => { VR => 'FL', Name => 'RangeModulatorGatingStopValue' }, |
|
5089
|
|
|
|
|
|
|
'300A,0386' => { VR => 'FL', Name => 'RangeModuGatingStartWaterEquiThick' }, |
|
5090
|
|
|
|
|
|
|
'300A,0388' => { VR => 'FL', Name => 'RangeModuGatingStopWaterEquivThick' }, |
|
5091
|
|
|
|
|
|
|
'300A,038A' => { VR => 'FL', Name => 'IsocenterToRangeModulatorDistance' }, |
|
5092
|
|
|
|
|
|
|
'300A,038F' => { VR => 'FL', Name => 'ScanSpotTimeOffset' }, |
|
5093
|
|
|
|
|
|
|
'300A,0390' => { VR => 'SH', Name => 'ScanSpotTuneID' }, |
|
5094
|
|
|
|
|
|
|
'300A,0391' => { VR => 'IS', Name => 'ScanSpotPrescribedIndices' }, |
|
5095
|
|
|
|
|
|
|
'300A,0392' => { VR => 'IS', Name => 'NumberOfScanSpotPositions' }, |
|
5096
|
|
|
|
|
|
|
'300A,0393' => { VR => 'CS', Name => 'ScanSpotReordered' }, |
|
5097
|
|
|
|
|
|
|
'300A,0394' => { VR => 'FL', Name => 'ScanSpotPositionMap' }, |
|
5098
|
|
|
|
|
|
|
'300A,0395' => { VR => 'CS', Name => 'ScanSpotReorderingAllowed' }, |
|
5099
|
|
|
|
|
|
|
'300A,0396' => { VR => 'FL', Name => 'ScanSpotMetersetWeights' }, |
|
5100
|
|
|
|
|
|
|
'300A,0398' => { VR => 'FL', Name => 'ScanningSpotSize' }, |
|
5101
|
|
|
|
|
|
|
'300A,0399' => { VR => 'FL', Name => 'ScanSpotSizesDelivered' }, |
|
5102
|
|
|
|
|
|
|
'300A,039A' => { VR => 'IS', Name => 'NumberOfPaintings' }, |
|
5103
|
|
|
|
|
|
|
'300A,039B' => { VR => 'FL', Name => 'ScanSpotGantryAngles' }, |
|
5104
|
|
|
|
|
|
|
'300A,039C' => { VR => 'FL', Name => 'ScanSpotPatientSupportAngles' }, |
|
5105
|
|
|
|
|
|
|
'300A,03A0' => { VR => 'SQ', Name => 'IonToleranceTableSequence' }, |
|
5106
|
|
|
|
|
|
|
'300A,03A2' => { VR => 'SQ', Name => 'IonBeamSequence' }, |
|
5107
|
|
|
|
|
|
|
'300A,03A4' => { VR => 'SQ', Name => 'IonBeamLimitingDeviceSequence' }, |
|
5108
|
|
|
|
|
|
|
'300A,03A6' => { VR => 'SQ', Name => 'IonBlockSequence' }, |
|
5109
|
|
|
|
|
|
|
'300A,03A8' => { VR => 'SQ', Name => 'IonControlPointSequence' }, |
|
5110
|
|
|
|
|
|
|
'300A,03AA' => { VR => 'SQ', Name => 'IonWedgeSequence' }, |
|
5111
|
|
|
|
|
|
|
'300A,03AC' => { VR => 'SQ', Name => 'IonWedgePositionSequence' }, |
|
5112
|
|
|
|
|
|
|
'300A,0401' => { VR => 'SQ', Name => 'ReferencedSetupImageSequence' }, |
|
5113
|
|
|
|
|
|
|
'300A,0402' => { VR => 'ST', Name => 'SetupImageComment' }, |
|
5114
|
|
|
|
|
|
|
'300A,0410' => { VR => 'SQ', Name => 'MotionSynchronizationSequence' }, |
|
5115
|
|
|
|
|
|
|
'300A,0412' => { VR => 'FL', Name => 'ControlPointOrientation' }, |
|
5116
|
|
|
|
|
|
|
'300A,0420' => { VR => 'SQ', Name => 'GeneralAccessorySequence' }, |
|
5117
|
|
|
|
|
|
|
'300A,0421' => { VR => 'SH', Name => 'GeneralAccessoryID' }, |
|
5118
|
|
|
|
|
|
|
'300A,0422' => { VR => 'ST', Name => 'GeneralAccessoryDescription' }, |
|
5119
|
|
|
|
|
|
|
'300A,0423' => { VR => 'CS', Name => 'GeneralAccessoryType' }, |
|
5120
|
|
|
|
|
|
|
'300A,0424' => { VR => 'IS', Name => 'GeneralAccessoryNumber' }, |
|
5121
|
|
|
|
|
|
|
'300A,0425' => { VR => 'FL', Name => 'SourceToGeneralAccessoryDistance' }, |
|
5122
|
|
|
|
|
|
|
'300A,0426' => { VR => 'DS', Name => 'IsocenterToGeneralAccessoryDist' }, |
|
5123
|
|
|
|
|
|
|
'300A,0431' => { VR => 'SQ', Name => 'ApplicatorGeometrySequence' }, |
|
5124
|
|
|
|
|
|
|
'300A,0432' => { VR => 'CS', Name => 'ApplicatorApertureShape' }, |
|
5125
|
|
|
|
|
|
|
'300A,0433' => { VR => 'FL', Name => 'ApplicatorOpening' }, |
|
5126
|
|
|
|
|
|
|
'300A,0434' => { VR => 'FL', Name => 'ApplicatorOpeningX' }, |
|
5127
|
|
|
|
|
|
|
'300A,0435' => { VR => 'FL', Name => 'ApplicatorOpeningY' }, |
|
5128
|
|
|
|
|
|
|
'300A,0436' => { VR => 'FL', Name => 'SourceToApplicatorMountingPosDist' }, |
|
5129
|
|
|
|
|
|
|
'300A,0440' => { VR => 'IS', Name => 'NumberOfBlockSlabItems' }, |
|
5130
|
|
|
|
|
|
|
'300A,0441' => { VR => 'SQ', Name => 'BlockSlabSequence' }, |
|
5131
|
|
|
|
|
|
|
'300A,0442' => { VR => 'DS', Name => 'BlockSlabThickness' }, |
|
5132
|
|
|
|
|
|
|
'300A,0443' => { VR => 'US', Name => 'BlockSlabNumber' }, |
|
5133
|
|
|
|
|
|
|
'300A,0450' => { VR => 'SQ', Name => 'DeviceMotionControlSequence' }, |
|
5134
|
|
|
|
|
|
|
'300A,0451' => { VR => 'CS', Name => 'DeviceMotionExecutionMode' }, |
|
5135
|
|
|
|
|
|
|
'300A,0452' => { VR => 'CS', Name => 'DeviceMotionObservationMode' }, |
|
5136
|
|
|
|
|
|
|
'300A,0453' => { VR => 'SQ', Name => 'DeviceMotionParameterCodeSequence' }, |
|
5137
|
|
|
|
|
|
|
'300A,0501' => { VR => 'FL', Name => 'DistalDepthFraction' }, |
|
5138
|
|
|
|
|
|
|
'300A,0502' => { VR => 'FL', Name => 'DistalDepth' }, |
|
5139
|
|
|
|
|
|
|
'300A,0503' => { VR => 'FL', Name => 'NominalRangeModulationFractions' }, |
|
5140
|
|
|
|
|
|
|
'300A,0504' => { VR => 'FL', Name => 'NominalRangeModulatedRegionDepths' }, |
|
5141
|
|
|
|
|
|
|
'300A,0505' => { VR => 'SQ', Name => 'DepthDoseParametersSequence' }, |
|
5142
|
|
|
|
|
|
|
'300A,0506' => { VR => 'SQ', Name => 'DeliveredDepthDoseParametersSeq' }, |
|
5143
|
|
|
|
|
|
|
'300A,0507' => { VR => 'FL', Name => 'DeliveredDistalDepthFraction' }, |
|
5144
|
|
|
|
|
|
|
'300A,0508' => { VR => 'FL', Name => 'DeliveredDistalDepth' }, |
|
5145
|
|
|
|
|
|
|
'300A,0509' => { VR => 'FL', Name => 'DeliveredNomRngModulationFractions' }, |
|
5146
|
|
|
|
|
|
|
'300A,0510' => { VR => 'FL', Name => 'DeliveredNomRngModulatedRgnDepths' }, |
|
5147
|
|
|
|
|
|
|
'300A,0511' => { VR => 'CS', Name => 'DeliveredReferenceDoseDefinition' }, |
|
5148
|
|
|
|
|
|
|
'300A,0512' => { VR => 'CS', Name => 'ReferenceDoseDefinition' }, |
|
5149
|
|
|
|
|
|
|
'300A,0600' => { VR => 'US', Name => 'RTControlPointIndex' }, |
|
5150
|
|
|
|
|
|
|
'300A,0601' => { VR => 'US', Name => 'RadiationGenerationModeIndex' }, |
|
5151
|
|
|
|
|
|
|
'300A,0602' => { VR => 'US', Name => 'ReferencedDefinedDeviceIndex' }, |
|
5152
|
|
|
|
|
|
|
'300A,0603' => { VR => 'US', Name => 'RadiationDoseIdentificationIndex' }, |
|
5153
|
|
|
|
|
|
|
'300A,0604' => { VR => 'US', Name => 'NumberOfRTControlPoints' }, |
|
5154
|
|
|
|
|
|
|
'300A,0605' => { VR => 'US', Name => 'RefRadiationGenerationModeIndex' }, |
|
5155
|
|
|
|
|
|
|
'300A,0606' => { VR => 'US', Name => 'TreatmentPositionIndex' }, |
|
5156
|
|
|
|
|
|
|
'300A,0607' => { VR => 'US', Name => 'ReferencedDeviceIndex' }, |
|
5157
|
|
|
|
|
|
|
'300A,0608' => { VR => 'LO', Name => 'TreatmentPositionGroupLabel' }, |
|
5158
|
|
|
|
|
|
|
'300A,0609' => { VR => 'UI', Name => 'TreatmentPositionGroupUID' }, |
|
5159
|
|
|
|
|
|
|
'300A,060A' => { VR => 'SQ', Name => 'TreatmentPositionGroupSequence' }, |
|
5160
|
|
|
|
|
|
|
'300A,060B' => { VR => 'US', Name => 'ReferencedTreatmentPositionIndex' }, |
|
5161
|
|
|
|
|
|
|
'300A,060C' => { VR => 'US', Name => 'ReferencedRadiationDoseIDIndex' }, |
|
5162
|
|
|
|
|
|
|
'300A,060D' => { VR => 'FD', Name => 'RTAccHolderWaterEquivThickness' }, |
|
5163
|
|
|
|
|
|
|
'300A,060E' => { VR => 'US', Name => 'ReferencedRTAccHolderDeviceIndex' }, |
|
5164
|
|
|
|
|
|
|
'300A,060F' => { VR => 'CS', Name => 'RTAccessoryHolderSlotExistenceFlag' }, |
|
5165
|
|
|
|
|
|
|
'300A,0610' => { VR => 'SQ', Name => 'RTAccessoryHolderSlotSequence' }, |
|
5166
|
|
|
|
|
|
|
'300A,0611' => { VR => 'LO', Name => 'RTAccessoryHolderSlotID' }, |
|
5167
|
|
|
|
|
|
|
'300A,0612' => { VR => 'FD', Name => 'RTAccessoryHolderSlotDistance' }, |
|
5168
|
|
|
|
|
|
|
'300A,0613' => { VR => 'FD', Name => 'RTAccessorySlotDistance' }, |
|
5169
|
|
|
|
|
|
|
'300A,0614' => { VR => 'SQ', Name => 'RTAccessoryHolderDefinitionSeq' }, |
|
5170
|
|
|
|
|
|
|
'300A,0615' => { VR => 'LO', Name => 'RTAccessoryDeviceSlotID' }, |
|
5171
|
|
|
|
|
|
|
'300A,0616' => { VR => 'SQ', Name => 'RTRadiationSequence' }, |
|
5172
|
|
|
|
|
|
|
'300A,0617' => { VR => 'SQ', Name => 'RadiationDoseSequence' }, |
|
5173
|
|
|
|
|
|
|
'300A,0618' => { VR => 'SQ', Name => 'RadiationDoseIdentificationSeq' }, |
|
5174
|
|
|
|
|
|
|
'300A,0619' => { VR => 'LO', Name => 'RadiationDoseIdentificationLabel' }, |
|
5175
|
|
|
|
|
|
|
'300A,061A' => { VR => 'CS', Name => 'ReferenceDoseType' }, |
|
5176
|
|
|
|
|
|
|
'300A,061B' => { VR => 'CS', Name => 'PrimaryDoseValueIndicator' }, |
|
5177
|
|
|
|
|
|
|
'300A,061C' => { VR => 'SQ', Name => 'DoseValuesSequence' }, |
|
5178
|
|
|
|
|
|
|
'300A,061D' => { VR => 'CS', Name => 'DoseValuePurpose' }, |
|
5179
|
|
|
|
|
|
|
'300A,061E' => { VR => 'FD', Name => 'ReferenceDosePointCoordinates' }, |
|
5180
|
|
|
|
|
|
|
'300A,061F' => { VR => 'SQ', Name => 'RadiationDoseValuesParametersSeq' }, |
|
5181
|
|
|
|
|
|
|
'300A,0620' => { VR => 'SQ', Name => 'MetersetToDoseMappingSequence' }, |
|
5182
|
|
|
|
|
|
|
'300A,0621' => { VR => 'SQ', Name => 'ExpectedInVivoMeasurementValuesSeq' }, |
|
5183
|
|
|
|
|
|
|
'300A,0622' => { VR => 'US', Name => 'ExpectedInVivoMeasurementValueIdx' }, |
|
5184
|
|
|
|
|
|
|
'300A,0623' => { VR => 'LO', Name => 'RadiationDoseInVivoMeasurementLbl' }, |
|
5185
|
|
|
|
|
|
|
'300A,0624' => { VR => 'FD', Name => 'RadiationDoseCentralAxisDispl' }, |
|
5186
|
|
|
|
|
|
|
'300A,0625' => { VR => 'FD', Name => 'RadiationDoseValue' }, |
|
5187
|
|
|
|
|
|
|
'300A,0626' => { VR => 'FD', Name => 'RadiationDoseSourceToSkinDistance' }, |
|
5188
|
|
|
|
|
|
|
'300A,0627' => { VR => 'FD', Name => 'RadiationDoseMeasPointCoordinates' }, |
|
5189
|
|
|
|
|
|
|
'300A,0628' => { VR => 'FD', Name => 'RadiationDoseSrcToExtContourDist' }, |
|
5190
|
|
|
|
|
|
|
'300A,0629' => { VR => 'SQ', Name => 'RTToleranceSetSequence' }, |
|
5191
|
|
|
|
|
|
|
'300A,062A' => { VR => 'LO', Name => 'RTToleranceSetLabel' }, |
|
5192
|
|
|
|
|
|
|
'300A,062B' => { VR => 'SQ', Name => 'AttributeToleranceValuesSequence' }, |
|
5193
|
|
|
|
|
|
|
'300A,062C' => { VR => 'FD', Name => 'ToleranceValue' }, |
|
5194
|
|
|
|
|
|
|
'300A,062D' => { VR => 'SQ', Name => 'PatientSupportPositionToleranceSeq' }, |
|
5195
|
|
|
|
|
|
|
'300A,062E' => { VR => 'FD', Name => 'TreatmentTimeLimit' }, |
|
5196
|
|
|
|
|
|
|
'300A,062F' => { VR => 'SQ', Name => 'CArmPhotonElectronControlPointSeq' }, |
|
5197
|
|
|
|
|
|
|
'300A,0630' => { VR => 'SQ', Name => 'ReferencedRTRadiationSequence' }, |
|
5198
|
|
|
|
|
|
|
'300A,0631' => { VR => 'SQ', Name => 'ReferencedRTInstanceSequence' }, |
|
5199
|
|
|
|
|
|
|
'300A,0632' => { VR => 'SQ', Name => 'ReferencedRTPatientSetupSequence' }, |
|
5200
|
|
|
|
|
|
|
'300A,0634' => { VR => 'FD', Name => 'SourceToPatientSurfaceDistance' }, |
|
5201
|
|
|
|
|
|
|
'300A,0635' => { VR => 'SQ', Name => 'TreatmentMachineSpecialModeCodeSeq' }, |
|
5202
|
|
|
|
|
|
|
'300A,0636' => { VR => 'US', Name => 'IntendedNumberOfFractions' }, |
|
5203
|
|
|
|
|
|
|
'300A,0637' => { VR => 'CS', Name => 'RTRadiationSetIntent' }, |
|
5204
|
|
|
|
|
|
|
'300A,0638' => { VR => 'CS', Name => 'RTRadPhysAndGeomContentDetailFlag' }, |
|
5205
|
|
|
|
|
|
|
'300A,0639' => { VR => 'CS', Name => 'RTRecordFlag' }, |
|
5206
|
|
|
|
|
|
|
'300A,063A' => { VR => 'SQ', Name => 'TreatmentDeviceIdentificationSeq' }, |
|
5207
|
|
|
|
|
|
|
'300A,063B' => { VR => 'SQ', Name => 'ReferencedRTPhysicianIntentSeq' }, |
|
5208
|
|
|
|
|
|
|
'300A,063C' => { VR => 'FD', Name => 'CumulativeMeterset' }, |
|
5209
|
|
|
|
|
|
|
'300A,063D' => { VR => 'FD', Name => 'DeliveryRate' }, |
|
5210
|
|
|
|
|
|
|
'300A,063E' => { VR => 'SQ', Name => 'DeliveryRateUnitSequence' }, |
|
5211
|
|
|
|
|
|
|
'300A,063F' => { VR => 'SQ', Name => 'TreatmentPositionSequence' }, |
|
5212
|
|
|
|
|
|
|
'300A,0640' => { VR => 'FD', Name => 'RadiationSourceAxisDistance' }, |
|
5213
|
|
|
|
|
|
|
'300A,0641' => { VR => 'US', Name => 'NumberOfRTBeamLimitingDevices' }, |
|
5214
|
|
|
|
|
|
|
'300A,0642' => { VR => 'FD', Name => 'RTBeamLimitingDeviceProximalDist' }, |
|
5215
|
|
|
|
|
|
|
'300A,0643' => { VR => 'FD', Name => 'RTBeamLimitingDeviceDistalDistance' }, |
|
5216
|
|
|
|
|
|
|
'300A,0644' => { VR => 'SQ', Name => 'ParallelRTBeamDelimDevOrientLabel' }, |
|
5217
|
|
|
|
|
|
|
'300A,0645' => { VR => 'FD', Name => 'BeamModifierOrientationAngle' }, |
|
5218
|
|
|
|
|
|
|
'300A,0646' => { VR => 'SQ', Name => 'FixedRTBeamDelimiterDeviceSequence' }, |
|
5219
|
|
|
|
|
|
|
'300A,0647' => { VR => 'SQ', Name => 'ParallelRTBeamDelimiterDeviceSeq' }, |
|
5220
|
|
|
|
|
|
|
'300A,0648' => { VR => 'US', Name => 'NumberOfParallelRTBeamDelimiters' }, |
|
5221
|
|
|
|
|
|
|
'300A,0649' => { VR => 'FD', Name => 'ParallelRTBeamDelimiterBoundaries' }, |
|
5222
|
|
|
|
|
|
|
'300A,064A' => { VR => 'FD', Name => 'ParallelRTBeamDelimiterPositions' }, |
|
5223
|
|
|
|
|
|
|
'300A,064B' => { VR => 'FD', Name => 'RTBeamLimitingDeviceOffset' }, |
|
5224
|
|
|
|
|
|
|
'300A,064C' => { VR => 'SQ', Name => 'RTBeamDelimiterGeometrySequence' }, |
|
5225
|
|
|
|
|
|
|
'300A,064D' => { VR => 'SQ', Name => 'RTBeamLimitingDeviceDefinitionSeq' }, |
|
5226
|
|
|
|
|
|
|
'300A,064E' => { VR => 'CS', Name => 'ParallelRTBeamDelimiterOpeningMode' }, |
|
5227
|
|
|
|
|
|
|
'300A,064F' => { VR => 'CS', Name => 'ParallelRTBeamDelimLeafMountSide' }, |
|
5228
|
|
|
|
|
|
|
'300A,0650' => { VR => 'UI', Name => 'PatientSetupUID' }, |
|
5229
|
|
|
|
|
|
|
'300A,0651' => { VR => 'SQ', Name => 'WedgeDefinitionSequence' }, |
|
5230
|
|
|
|
|
|
|
'300A,0652' => { VR => 'FD', Name => 'RadiationBeamWedgeAngle' }, |
|
5231
|
|
|
|
|
|
|
'300A,0653' => { VR => 'FD', Name => 'RadiationBeamWedgeThinEdgeDistance' }, |
|
5232
|
|
|
|
|
|
|
'300A,0654' => { VR => 'FD', Name => 'RadiationBeamEffectiveWedgeAngle' }, |
|
5233
|
|
|
|
|
|
|
'300A,0655' => { VR => 'US', Name => 'NumberOfWedgePositions' }, |
|
5234
|
|
|
|
|
|
|
'300A,0656' => { VR => 'SQ', Name => 'RTBeamLimitingDeviceOpeningSeq' }, |
|
5235
|
|
|
|
|
|
|
'300A,0657' => { VR => 'US', Name => 'NumberOfRTBeamLimitingDevOpenings' }, |
|
5236
|
|
|
|
|
|
|
'300A,0658' => { VR => 'SQ', Name => 'RadiationDosimeterUnitSequence' }, |
|
5237
|
|
|
|
|
|
|
'300A,0659' => { VR => 'SQ', Name => 'RTDeviceDistanceRefLocCodeSeq' }, |
|
5238
|
|
|
|
|
|
|
'300A,065A' => { VR => 'SQ', Name => 'RadiationDevConfigAndCommissKeySeq' }, |
|
5239
|
|
|
|
|
|
|
'300A,065B' => { VR => 'SQ', Name => 'PatientSupportPositionParameterSeq' }, |
|
5240
|
|
|
|
|
|
|
'300A,065C' => { VR => 'CS', Name => 'PatientSupportPositionSpecMethod' }, |
|
5241
|
|
|
|
|
|
|
'300A,065D' => { VR => 'SQ', Name => 'PatientSupportPositionDevParamSeq' }, |
|
5242
|
|
|
|
|
|
|
'300A,065E' => { VR => 'US', Name => 'DeviceOrderIndex' }, |
|
5243
|
|
|
|
|
|
|
'300A,065F' => { VR => 'US', Name => 'PatientSupportPosParamOrderIndex' }, |
|
5244
|
|
|
|
|
|
|
'300A,0660' => { VR => 'SQ', Name => 'PatientSupportPosDeviceTolSeq' }, |
|
5245
|
|
|
|
|
|
|
'300A,0661' => { VR => 'US', Name => 'PatientSupportPosTolOrderIndex' }, |
|
5246
|
|
|
|
|
|
|
'300A,0662' => { VR => 'SQ', Name => 'CompensatorDefinitionSequence' }, |
|
5247
|
|
|
|
|
|
|
'300A,0663' => { VR => 'CS', Name => 'CompensatorMapOrientation' }, |
|
5248
|
|
|
|
|
|
|
'300A,0664' => { VR => 'OF', Name => 'CompensatorProximalThicknessMap' }, |
|
5249
|
|
|
|
|
|
|
'300A,0665' => { VR => 'OF', Name => 'CompensatorDistalThicknessMap' }, |
|
5250
|
|
|
|
|
|
|
'300A,0666' => { VR => 'FD', Name => 'CompensatorBasePlaneOffset' }, |
|
5251
|
|
|
|
|
|
|
'300A,0667' => { VR => 'SQ', Name => 'CompensatorShapeFabricationCodeSeq' }, |
|
5252
|
|
|
|
|
|
|
'300A,0668' => { VR => 'SQ', Name => 'CompensatorShapeSequence' }, |
|
5253
|
|
|
|
|
|
|
'300A,0669' => { VR => 'FD', Name => 'RadiationBeamCompMillingToolDia' }, |
|
5254
|
|
|
|
|
|
|
'300A,066A' => { VR => 'SQ', Name => 'BlockDefinitionSequence' }, |
|
5255
|
|
|
|
|
|
|
'300A,066B' => { VR => 'OF', Name => 'BlockEdgeData' }, |
|
5256
|
|
|
|
|
|
|
'300A,066C' => { VR => 'CS', Name => 'BlockOrientation' }, |
|
5257
|
|
|
|
|
|
|
'300A,066D' => { VR => 'FD', Name => 'RadiationBeamBlockThickness' }, |
|
5258
|
|
|
|
|
|
|
'300A,066E' => { VR => 'FD', Name => 'RadiationBeamBlockSlabThickness' }, |
|
5259
|
|
|
|
|
|
|
'300A,066F' => { VR => 'SQ', Name => 'BlockEdgeDataSequence' }, |
|
5260
|
|
|
|
|
|
|
'300A,0670' => { VR => 'US', Name => 'NumberOfRTAccessoryHolders' }, |
|
5261
|
|
|
|
|
|
|
'300A,0671' => { VR => 'SQ', Name => 'GeneralAccessoryDefinitionSequence' }, |
|
5262
|
|
|
|
|
|
|
'300A,0672' => { VR => 'US', Name => 'NumberOfGeneralAccessories' }, |
|
5263
|
|
|
|
|
|
|
'300A,0673' => { VR => 'SQ', Name => 'BolusDefinitionSequence' }, |
|
5264
|
|
|
|
|
|
|
'300A,0674' => { VR => 'US', Name => 'NumberOfBoluses' }, |
|
5265
|
|
|
|
|
|
|
'300A,0675' => { VR => 'UI', Name => 'EquipmentFrameOfReferenceUID' }, |
|
5266
|
|
|
|
|
|
|
'300A,0676' => { VR => 'ST', Name => 'EquipmentFrameOfReferenceDescr' }, |
|
5267
|
|
|
|
|
|
|
'300A,0677' => { VR => 'SQ', Name => 'EquipmentReferencePointCoordsSeq' }, |
|
5268
|
|
|
|
|
|
|
'300A,0678' => { VR => 'SQ', Name => 'EquipmentReferencePointCodeSeq' }, |
|
5269
|
|
|
|
|
|
|
'300A,0679' => { VR => 'FD', Name => 'RTBeamLimitingDeviceAngle' }, |
|
5270
|
|
|
|
|
|
|
'300A,067A' => { VR => 'FD', Name => 'SourceRollAngle' }, |
|
5271
|
|
|
|
|
|
|
'300A,067B' => { VR => 'SQ', Name => 'RadiationGenerationModeSequence' }, |
|
5272
|
|
|
|
|
|
|
'300A,067C' => { VR => 'SH', Name => 'RadiationGenerationModeLabel' }, |
|
5273
|
|
|
|
|
|
|
'300A,067D' => { VR => 'ST', Name => 'RadiationGenerationModeDescription' }, |
|
5274
|
|
|
|
|
|
|
'300A,067E' => { VR => 'SQ', Name => 'RadiationGenModeMachineCodeSeq' }, |
|
5275
|
|
|
|
|
|
|
'300A,067F' => { VR => 'SQ', Name => 'RadiationTypeCodeSequence' }, |
|
5276
|
|
|
|
|
|
|
'300A,0680' => { VR => 'DS', Name => 'NominalEnergy' }, |
|
5277
|
|
|
|
|
|
|
'300A,0681' => { VR => 'DS', Name => 'MinimumNominalEnergy' }, |
|
5278
|
|
|
|
|
|
|
'300A,0682' => { VR => 'DS', Name => 'MaximumNominalEnergy' }, |
|
5279
|
|
|
|
|
|
|
'300A,0683' => { VR => 'SQ', Name => 'RadiationFluenceModifierCodeSeq' }, |
|
5280
|
|
|
|
|
|
|
'300A,0684' => { VR => 'SQ', Name => 'EnergyUnitCodeSequence' }, |
|
5281
|
|
|
|
|
|
|
'300A,0685' => { VR => 'US', Name => 'NumberOfRadiationGenerationModes' }, |
|
5282
|
|
|
|
|
|
|
'300A,0686' => { VR => 'SQ', Name => 'PatientSupportDevicesSequence' }, |
|
5283
|
|
|
|
|
|
|
'300A,0687' => { VR => 'US', Name => 'NumberOfPatientSupportDevices' }, |
|
5284
|
|
|
|
|
|
|
'300A,0688' => { VR => 'FD', Name => 'RTBeamModifierDefinitionDistance' }, |
|
5285
|
|
|
|
|
|
|
'300A,0689' => { VR => 'SQ', Name => 'BeamAreaLimitSequence' }, |
|
5286
|
|
|
|
|
|
|
'300A,068A' => { VR => 'SQ', Name => 'ReferencedRTPrescriptionSequence' }, |
|
5287
|
|
|
|
|
|
|
'300A,068B' => { VR => 'CS', Name => 'DoseValueInterpretation' }, |
|
5288
|
|
|
|
|
|
|
'300A,0700' => { VR => 'UI', Name => 'TreatmentSessionUID' }, |
|
5289
|
|
|
|
|
|
|
'300A,0701' => { VR => 'CS', Name => 'RTRadiationUsage' }, |
|
5290
|
|
|
|
|
|
|
'300A,0702' => { VR => 'SQ', Name => 'ReferencedRTRadiationSetSequence' }, |
|
5291
|
|
|
|
|
|
|
'300A,0703' => { VR => 'SQ', Name => 'ReferencedRTRadiationRecordSeq' }, |
|
5292
|
|
|
|
|
|
|
'300A,0704' => { VR => 'US', Name => 'RTRadiationSetDeliveryNumber' }, |
|
5293
|
|
|
|
|
|
|
'300A,0705' => { VR => 'US', Name => 'ClinicalFractionNumber' }, |
|
5294
|
|
|
|
|
|
|
'300A,0706' => { VR => 'CS', Name => 'RTTreatmentFractionCompletionStat' }, |
|
5295
|
|
|
|
|
|
|
'300A,0707' => { VR => 'CS', Name => 'RTRadiationSetUsage' }, |
|
5296
|
|
|
|
|
|
|
'300A,0708' => { VR => 'CS', Name => 'TreatmentDeliveryContinuationFlag' }, |
|
5297
|
|
|
|
|
|
|
'300A,0709' => { VR => 'CS', Name => 'TreatmentRecordContentOrigin' }, |
|
5298
|
|
|
|
|
|
|
'300A,0714' => { VR => 'CS', Name => 'RTTreatmentTerminationStatus' }, |
|
5299
|
|
|
|
|
|
|
'300A,0715' => { VR => 'SQ', Name => 'RTTreatmentTermReasonCodeSeq' }, |
|
5300
|
|
|
|
|
|
|
'300A,0716' => { VR => 'SQ', Name => 'MachineSpecTreatmentTermCodeSeq' }, |
|
5301
|
|
|
|
|
|
|
'300A,0722' => { VR => 'SQ', Name => 'RTRadiationSalvageRecordCtrlPtSeq' }, |
|
5302
|
|
|
|
|
|
|
'300A,0723' => { VR => 'CS', Name => 'StartingMetersetValueKnownFlag' }, |
|
5303
|
|
|
|
|
|
|
'300A,0730' => { VR => 'ST', Name => 'TreatmentTerminationDescription' }, |
|
5304
|
|
|
|
|
|
|
'300A,0731' => { VR => 'SQ', Name => 'TreatmentToleranceViolationSeq' }, |
|
5305
|
|
|
|
|
|
|
'300A,0732' => { VR => 'CS', Name => 'TreatmentTolViolationCategory' }, |
|
5306
|
|
|
|
|
|
|
'300A,0733' => { VR => 'SQ', Name => 'TreatmentTolViolationAttributeSeq' }, |
|
5307
|
|
|
|
|
|
|
'300A,0734' => { VR => 'ST', Name => 'TreatmentTolViolationDescription' }, |
|
5308
|
|
|
|
|
|
|
'300A,0735' => { VR => 'ST', Name => 'TreatmentTolViolationID' }, |
|
5309
|
|
|
|
|
|
|
'300A,0736' => { VR => 'DT', Name => 'TreatmentTolViolationDateTime' }, |
|
5310
|
|
|
|
|
|
|
'300A,073A' => { VR => 'DT', Name => 'RecordedRTControlPointDateTime' }, |
|
5311
|
|
|
|
|
|
|
'300A,073B' => { VR => 'US', Name => 'ReferencedRadiationRTCtrlPtIndex' }, |
|
5312
|
|
|
|
|
|
|
'300A,073E' => { VR => 'SQ', Name => 'AlternateValueSequence' }, |
|
5313
|
|
|
|
|
|
|
'300A,073F' => { VR => 'SQ', Name => 'ConfirmationSequence' }, |
|
5314
|
|
|
|
|
|
|
'300A,0740' => { VR => 'SQ', Name => 'InterlockSequence' }, |
|
5315
|
|
|
|
|
|
|
'300A,0741' => { VR => 'DT', Name => 'InterlockDateTime' }, |
|
5316
|
|
|
|
|
|
|
'300A,0742' => { VR => 'ST', Name => 'InterlockDescription' }, |
|
5317
|
|
|
|
|
|
|
'300A,0743' => { VR => 'SQ', Name => 'InterlockOriginatingDeviceSequence' }, |
|
5318
|
|
|
|
|
|
|
'300A,0744' => { VR => 'SQ', Name => 'InterlockCodeSequence' }, |
|
5319
|
|
|
|
|
|
|
'300A,0745' => { VR => 'SQ', Name => 'InterlockResolutionCodeSequence' }, |
|
5320
|
|
|
|
|
|
|
'300A,0746' => { VR => 'SQ', Name => 'InterlockResolutionUserSequence' }, |
|
5321
|
|
|
|
|
|
|
'300A,0760' => { VR => 'DT', Name => 'OverrideDateTime' }, |
|
5322
|
|
|
|
|
|
|
'300A,0761' => { VR => 'SQ', Name => 'TreatmentTolViolationTypeCodeSeq' }, |
|
5323
|
|
|
|
|
|
|
'300A,0762' => { VR => 'SQ', Name => 'TreatmentTolViolationCauseCodeSeq' }, |
|
5324
|
|
|
|
|
|
|
'300A,0772' => { VR => 'SQ', Name => 'MeasuredMetersetToDoseMappingSeq' }, |
|
5325
|
|
|
|
|
|
|
'300A,0773' => { VR => 'US', Name => 'RefExpectedInVivoMeasValueIndex' }, |
|
5326
|
|
|
|
|
|
|
'300A,0774' => { VR => 'SQ', Name => 'DoseMeasurementDeviceCodeSequence' }, |
|
5327
|
|
|
|
|
|
|
'300A,0780' => { VR => 'SQ', Name => 'AdditionalParamRecordInstanceSeq' }, |
|
5328
|
|
|
|
|
|
|
'300A,0783' => { VR => 'ST', Name => 'InterlockOriginDescription' }, |
|
5329
|
|
|
|
|
|
|
'300A,0784' => { VR => 'SQ', Name => 'RTPatientPositionScopeSequence' }, |
|
5330
|
|
|
|
|
|
|
'300A,0785' => { VR => 'UI', Name => 'ReferencedTreatmentPosGroupUID' }, |
|
5331
|
|
|
|
|
|
|
'300A,0786' => { VR => 'US', Name => 'RadiationOrderIndex' }, |
|
5332
|
|
|
|
|
|
|
'300A,0787' => { VR => 'SQ', Name => 'OmittedRadiationSequence' }, |
|
5333
|
|
|
|
|
|
|
'300A,0788' => { VR => 'SQ', Name => 'ReasonForOmissionCodeSequence' }, |
|
5334
|
|
|
|
|
|
|
'300A,0789' => { VR => 'SQ', Name => 'RTDeliveryStartPatientPositionSeq' }, |
|
5335
|
|
|
|
|
|
|
'300A,078A' => { VR => 'SQ', Name => 'RTTreatmentPrepPatientPosSeq' }, |
|
5336
|
|
|
|
|
|
|
'300A,078B' => { VR => 'SQ', Name => 'ReferencedRTTreatmentPrepSeq' }, |
|
5337
|
|
|
|
|
|
|
'300A,078C' => { VR => 'SQ', Name => 'ReferencedPatientSetupPhotoSeq' }, |
|
5338
|
|
|
|
|
|
|
'300A,078D' => { VR => 'SQ', Name => 'PatientTreatmentPrepMethodCodeSeq' }, |
|
5339
|
|
|
|
|
|
|
'300A,078E' => { VR => 'LT', Name => 'PatientTreatmentPrepProcParamDesc' }, |
|
5340
|
|
|
|
|
|
|
'300A,078F' => { VR => 'SQ', Name => 'PatientTreatmentPrepDeviceSeq' }, |
|
5341
|
|
|
|
|
|
|
'300A,0790' => { VR => 'SQ', Name => 'PatientTreatmentPrepProcedureSeq' }, |
|
5342
|
|
|
|
|
|
|
'300A,0791' => { VR => 'SQ', Name => 'PatientTreatmentPrepProcCodeSeq' }, |
|
5343
|
|
|
|
|
|
|
'300A,0792' => { VR => 'LT', Name => 'PatientTreatmentPrepMethodDesc' }, |
|
5344
|
|
|
|
|
|
|
'300A,0793' => { VR => 'SQ', Name => 'PatientTreatmentPrepProcParamSeq' }, |
|
5345
|
|
|
|
|
|
|
'300A,0794' => { VR => 'LT', Name => 'PatientSetupPhotoDescription' }, |
|
5346
|
|
|
|
|
|
|
'300A,0795' => { VR => 'US', Name => 'PatientTreatmentPrepProcIndex' }, |
|
5347
|
|
|
|
|
|
|
'300A,0796' => { VR => 'US', Name => 'ReferencedPatientSetupProcedureIdx' }, |
|
5348
|
|
|
|
|
|
|
'300A,0797' => { VR => 'SQ', Name => 'RTRadiationTaskSequence' }, |
|
5349
|
|
|
|
|
|
|
'300A,0798' => { VR => 'SQ', Name => 'RTPatientPositionDisplacementSeq' }, |
|
5350
|
|
|
|
|
|
|
'300A,0799' => { VR => 'SQ', Name => 'RTPatientPositionSequence' }, |
|
5351
|
|
|
|
|
|
|
'300A,079A' => { VR => 'LO', Name => 'DisplacementReferenceLabel' }, |
|
5352
|
|
|
|
|
|
|
'300A,079B' => { VR => 'FD', Name => 'DisplacementMatrix' }, |
|
5353
|
|
|
|
|
|
|
'300A,079C' => { VR => 'SQ', Name => 'PatientSupportDisplacementSequence' }, |
|
5354
|
|
|
|
|
|
|
'300A,079D' => { VR => 'SQ', Name => 'DisplacementReferenceLocCodeSeq' }, |
|
5355
|
|
|
|
|
|
|
'300A,079E' => { VR => 'CS', Name => 'RTRadiationSetDeliveryUsage' }, |
|
5356
|
|
|
|
|
|
|
'300A,079F' => { VR => 'SQ', Name => 'PatientTreatmentPreparationSeq' }, |
|
5357
|
|
|
|
|
|
|
'300A,07A0' => { VR => 'SQ', Name => 'PatientToEquipmentRelationshipSeq' }, |
|
5358
|
|
|
|
|
|
|
'300A,07A1' => { VR => 'SQ', Name => 'ImagingEquipToTreatDelivDevRelSeq' }, |
|
5359
|
|
|
|
|
|
|
'300C,0002' => { VR => 'SQ', Name => 'ReferencedRTPlanSequence' }, |
|
5360
|
|
|
|
|
|
|
'300C,0004' => { VR => 'SQ', Name => 'ReferencedBeamSequence' }, |
|
5361
|
|
|
|
|
|
|
'300C,0006' => { VR => 'IS', Name => 'ReferencedBeamNumber' }, |
|
5362
|
|
|
|
|
|
|
'300C,0007' => { VR => 'IS', Name => 'ReferencedReferenceImageNumber' }, |
|
5363
|
|
|
|
|
|
|
'300C,0008' => { VR => 'DS', Name => 'StartCumulativeMetersetWeight' }, |
|
5364
|
|
|
|
|
|
|
'300C,0009' => { VR => 'DS', Name => 'EndCumulativeMetersetWeight' }, |
|
5365
|
|
|
|
|
|
|
'300C,000A' => { VR => 'SQ', Name => 'ReferencedBrachyAppSetupSeq' }, |
|
5366
|
|
|
|
|
|
|
'300C,000C' => { VR => 'IS', Name => 'ReferencedBrachyAppSetupNumber' }, |
|
5367
|
|
|
|
|
|
|
'300C,000E' => { VR => 'IS', Name => 'ReferencedSourceNumber' }, |
|
5368
|
|
|
|
|
|
|
'300C,0020' => { VR => 'SQ', Name => 'ReferencedFractionGroupSequence' }, |
|
5369
|
|
|
|
|
|
|
'300C,0022' => { VR => 'IS', Name => 'ReferencedFractionGroupNumber' }, |
|
5370
|
|
|
|
|
|
|
'300C,0040' => { VR => 'SQ', Name => 'ReferencedVerificationImageSeq' }, |
|
5371
|
|
|
|
|
|
|
'300C,0042' => { VR => 'SQ', Name => 'ReferencedReferenceImageSequence' }, |
|
5372
|
|
|
|
|
|
|
'300C,0050' => { VR => 'SQ', Name => 'ReferencedDoseReferenceSequence' }, |
|
5373
|
|
|
|
|
|
|
'300C,0051' => { VR => 'IS', Name => 'ReferencedDoseReferenceNumber' }, |
|
5374
|
|
|
|
|
|
|
'300C,0055' => { VR => 'SQ', Name => 'BrachyReferencedDoseReferenceSeq' }, |
|
5375
|
|
|
|
|
|
|
'300C,0060' => { VR => 'SQ', Name => 'ReferencedStructureSetSequence' }, |
|
5376
|
|
|
|
|
|
|
'300C,006A' => { VR => 'IS', Name => 'ReferencedPatientSetupNumber' }, |
|
5377
|
|
|
|
|
|
|
'300C,0080' => { VR => 'SQ', Name => 'ReferencedDoseSequence' }, |
|
5378
|
|
|
|
|
|
|
'300C,00A0' => { VR => 'IS', Name => 'ReferencedToleranceTableNumber' }, |
|
5379
|
|
|
|
|
|
|
'300C,00B0' => { VR => 'SQ', Name => 'ReferencedBolusSequence' }, |
|
5380
|
|
|
|
|
|
|
'300C,00C0' => { VR => 'IS', Name => 'ReferencedWedgeNumber' }, |
|
5381
|
|
|
|
|
|
|
'300C,00D0' => { VR => 'IS', Name => 'ReferencedCompensatorNumber' }, |
|
5382
|
|
|
|
|
|
|
'300C,00E0' => { VR => 'IS', Name => 'ReferencedBlockNumber' }, |
|
5383
|
|
|
|
|
|
|
'300C,00F0' => { VR => 'IS', Name => 'ReferencedControlPointIndex' }, |
|
5384
|
|
|
|
|
|
|
'300C,00F2' => { VR => 'SQ', Name => 'ReferencedControlPointSequence' }, |
|
5385
|
|
|
|
|
|
|
'300C,00F4' => { VR => 'IS', Name => 'ReferencedStartControlPointIndex' }, |
|
5386
|
|
|
|
|
|
|
'300C,00F6' => { VR => 'IS', Name => 'ReferencedStopControlPointIndex' }, |
|
5387
|
|
|
|
|
|
|
'300C,0100' => { VR => 'IS', Name => 'ReferencedRangeShifterNumber' }, |
|
5388
|
|
|
|
|
|
|
'300C,0102' => { VR => 'IS', Name => 'ReferencedLateralSpreadingDevNum' }, |
|
5389
|
|
|
|
|
|
|
'300C,0104' => { VR => 'IS', Name => 'ReferencedRangeModulatorNumber' }, |
|
5390
|
|
|
|
|
|
|
'300C,0111' => { VR => 'SQ', Name => 'OmittedBeamTaskSequence' }, |
|
5391
|
|
|
|
|
|
|
'300C,0112' => { VR => 'CS', Name => 'ReasonForOmission' }, |
|
5392
|
|
|
|
|
|
|
'300C,0113' => { VR => 'LO', Name => 'ReasonForOmissionDescription' }, |
|
5393
|
|
|
|
|
|
|
'300C,0114' => { VR => 'SQ', Name => 'PrescriptionOverviewSequence' }, |
|
5394
|
|
|
|
|
|
|
'300C,0115' => { VR => 'FL', Name => 'TotalPrescriptionDose' }, |
|
5395
|
|
|
|
|
|
|
'300C,0116' => { VR => 'SQ', Name => 'PlanOverviewSequence' }, |
|
5396
|
|
|
|
|
|
|
'300C,0117' => { VR => 'US', Name => 'PlanOverviewIndex' }, |
|
5397
|
|
|
|
|
|
|
'300C,0118' => { VR => 'US', Name => 'ReferencedPlanOverviewIndex' }, |
|
5398
|
|
|
|
|
|
|
'300C,0119' => { VR => 'US', Name => 'NumberOfFractionsIncluded' }, |
|
5399
|
|
|
|
|
|
|
'300C,0120' => { VR => 'SQ', Name => 'DoseCalibrationConditionsSequence' }, |
|
5400
|
|
|
|
|
|
|
'300C,0121' => { VR => 'FD', Name => 'AbsorbedDoseToMetersetRatio' }, |
|
5401
|
|
|
|
|
|
|
'300C,0122' => { VR => 'FD', Name => 'DelineatedRadiationFieldSize' }, |
|
5402
|
|
|
|
|
|
|
'300C,0123' => { VR => 'CS', Name => 'DoseCalConditionsVerifiedFlag' }, |
|
5403
|
|
|
|
|
|
|
'300C,0124' => { VR => 'FD', Name => 'CalibrationReferencePointDepth' }, |
|
5404
|
|
|
|
|
|
|
'300C,0125' => { VR => 'SQ', Name => 'GatingBeamHoldTransitionSequence' }, |
|
5405
|
|
|
|
|
|
|
'300C,0126' => { VR => 'CS', Name => 'BeamHoldTransition' }, |
|
5406
|
|
|
|
|
|
|
'300C,0127' => { VR => 'DT', Name => 'BeamHoldTransitionDateTime' }, |
|
5407
|
|
|
|
|
|
|
'300C,0128' => { VR => 'SQ', Name => 'BeamHoldOriginatingDeviceSequence' }, |
|
5408
|
|
|
|
|
|
|
'300C,0129' => { VR => 'CS', Name => 'BeamHoldTransitionTriggerSource' }, |
|
5409
|
|
|
|
|
|
|
'300E,0002' => { VR => 'CS', Name => 'ApprovalStatus' }, |
|
5410
|
|
|
|
|
|
|
'300E,0004' => { VR => 'DA', Name => 'ReviewDate' }, |
|
5411
|
|
|
|
|
|
|
'300E,0005' => { VR => 'TM', Name => 'ReviewTime' }, |
|
5412
|
|
|
|
|
|
|
'300E,0008' => { VR => 'PN', Name => 'ReviewerName' }, |
|
5413
|
|
|
|
|
|
|
'3010,0001' => { VR => 'SQ', Name => 'RadiobiologicalDoseEffectSequence' }, |
|
5414
|
|
|
|
|
|
|
'3010,0002' => { VR => 'CS', Name => 'RadiobiologicalDoseEffectFlag' }, |
|
5415
|
|
|
|
|
|
|
'3010,0003' => { VR => 'SQ', Name => 'EffDoseCalcMethodCategoryCodeSeq' }, |
|
5416
|
|
|
|
|
|
|
'3010,0004' => { VR => 'SQ', Name => 'EffectiveDoseCalcMethodCodeSeq' }, |
|
5417
|
|
|
|
|
|
|
'3010,0005' => { VR => 'LO', Name => 'EffectiveDoseCalcMethodDescription' }, |
|
5418
|
|
|
|
|
|
|
'3010,0006' => { VR => 'UI', Name => 'ConceptualVolumeUID' }, |
|
5419
|
|
|
|
|
|
|
'3010,0007' => { VR => 'SQ', Name => 'OriginatingSOPInstanceReferenceSeq' }, |
|
5420
|
|
|
|
|
|
|
'3010,0008' => { VR => 'SQ', Name => 'ConceptualVolumeConstituentSeq' }, |
|
5421
|
|
|
|
|
|
|
'3010,0009' => { VR => 'SQ', Name => 'EquivConceptVolumeInstanceRefSeq' }, |
|
5422
|
|
|
|
|
|
|
'3010,000A' => { VR => 'SQ', Name => 'EquivalentConceptualVolumesSeq' }, |
|
5423
|
|
|
|
|
|
|
'3010,000B' => { VR => 'UI', Name => 'ReferencedConceptualVolumeUID' }, |
|
5424
|
|
|
|
|
|
|
'3010,000C' => { VR => 'UT', Name => 'ConceptualVolumeCombinationExpr' }, |
|
5425
|
|
|
|
|
|
|
'3010,000D' => { VR => 'US', Name => 'ConceptualVolumeConstituentIndex' }, |
|
5426
|
|
|
|
|
|
|
'3010,000E' => { VR => 'CS', Name => 'ConceptualVolumeCombinationFlag' }, |
|
5427
|
|
|
|
|
|
|
'3010,000F' => { VR => 'ST', Name => 'ConceptualVolumeCombinationDescr' }, |
|
5428
|
|
|
|
|
|
|
'3010,0010' => { VR => 'CS', Name => 'ConceptualVolumeSegmentDefinedFlag' }, |
|
5429
|
|
|
|
|
|
|
'3010,0011' => { VR => 'SQ', Name => 'ConceptualVolumeSegmentRefSeq' }, |
|
5430
|
|
|
|
|
|
|
'3010,0012' => { VR => 'SQ', Name => 'ConceptVolumeConstituentSegRefSeq' }, |
|
5431
|
|
|
|
|
|
|
'3010,0013' => { VR => 'UI', Name => 'ConstituentConceptualVolumeUID' }, |
|
5432
|
|
|
|
|
|
|
'3010,0014' => { VR => 'SQ', Name => 'DerivationConceptualVolumeSequence' }, |
|
5433
|
|
|
|
|
|
|
'3010,0015' => { VR => 'UI', Name => 'SourceConceptualVolumeUID' }, |
|
5434
|
|
|
|
|
|
|
'3010,0016' => { VR => 'SQ', Name => 'ConceptualVolumeDerivAlgorithmSeq' }, |
|
5435
|
|
|
|
|
|
|
'3010,0017' => { VR => 'ST', Name => 'ConceptualVolumeDescription' }, |
|
5436
|
|
|
|
|
|
|
'3010,0018' => { VR => 'SQ', Name => 'SourceConceptualVolumeSequence' }, |
|
5437
|
|
|
|
|
|
|
'3010,0019' => { VR => 'SQ', Name => 'AuthorIdentificationSequence' }, |
|
5438
|
|
|
|
|
|
|
'3010,001A' => { VR => 'LO', Name => 'ManufacturerModelVersion' }, |
|
5439
|
|
|
|
|
|
|
'3010,001B' => { VR => 'UC', Name => 'DeviceAlternateIdentifier' }, |
|
5440
|
|
|
|
|
|
|
'3010,001C' => { VR => 'CS', Name => 'DeviceAlternateIdentifierType' }, |
|
5441
|
|
|
|
|
|
|
'3010,001D' => { VR => 'LT', Name => 'DeviceAlternateIdentifierFormat' }, |
|
5442
|
|
|
|
|
|
|
'3010,001E' => { VR => 'LO', Name => 'SegmentationCreationTemplateLabel' }, |
|
5443
|
|
|
|
|
|
|
'3010,001F' => { VR => 'UI', Name => 'SegmentationTemplateUID' }, |
|
5444
|
|
|
|
|
|
|
'3010,0020' => { VR => 'US', Name => 'ReferencedSegmentReferenceIndex' }, |
|
5445
|
|
|
|
|
|
|
'3010,0021' => { VR => 'SQ', Name => 'SegmentReferenceSequence' }, |
|
5446
|
|
|
|
|
|
|
'3010,0022' => { VR => 'US', Name => 'SegmentReferenceIndex' }, |
|
5447
|
|
|
|
|
|
|
'3010,0023' => { VR => 'SQ', Name => 'DirectSegmentReferenceSequence' }, |
|
5448
|
|
|
|
|
|
|
'3010,0024' => { VR => 'SQ', Name => 'CombinationSegmentReferenceSeq' }, |
|
5449
|
|
|
|
|
|
|
'3010,0025' => { VR => 'SQ', Name => 'ConceptualVolumeSequence' }, |
|
5450
|
|
|
|
|
|
|
'3010,0026' => { VR => 'SQ', Name => 'SegmentedRTAccessoryDeviceSequence' }, |
|
5451
|
|
|
|
|
|
|
'3010,0027' => { VR => 'SQ', Name => 'SegmentCharacteristicsSequence' }, |
|
5452
|
|
|
|
|
|
|
'3010,0028' => { VR => 'SQ', Name => 'RelatedSegmentCharacteristicsSeq' }, |
|
5453
|
|
|
|
|
|
|
'3010,0029' => { VR => 'US', Name => 'SegmentCharacteristicsPrecedence' }, |
|
5454
|
|
|
|
|
|
|
'3010,002A' => { VR => 'SQ', Name => 'RTSegmentAnnotationSequence' }, |
|
5455
|
|
|
|
|
|
|
'3010,002B' => { VR => 'SQ', Name => 'SegmentAnnotationCategoryCodeSeq' }, |
|
5456
|
|
|
|
|
|
|
'3010,002C' => { VR => 'SQ', Name => 'SegmentAnnotationTypeCodeSequence' }, |
|
5457
|
|
|
|
|
|
|
'3010,002D' => { VR => 'LO', Name => 'DeviceLabel' }, |
|
5458
|
|
|
|
|
|
|
'3010,002E' => { VR => 'SQ', Name => 'DeviceTypeCodeSequence' }, |
|
5459
|
|
|
|
|
|
|
'3010,002F' => { VR => 'SQ', Name => 'SegmentAnnotTypeModifierCodeSeq' }, |
|
5460
|
|
|
|
|
|
|
'3010,0030' => { VR => 'SQ', Name => 'PatientEquipRelationshipCodeSeq' }, |
|
5461
|
|
|
|
|
|
|
'3010,0031' => { VR => 'UI', Name => 'ReferencedFiducialsUID' }, |
|
5462
|
|
|
|
|
|
|
'3010,0032' => { VR => 'SQ', Name => 'PatientTreatmentOrientationSeq' }, |
|
5463
|
|
|
|
|
|
|
'3010,0033' => { VR => 'SH', Name => 'UserContentLabel' }, |
|
5464
|
|
|
|
|
|
|
'3010,0034' => { VR => 'LO', Name => 'UserContentLongLabel' }, |
|
5465
|
|
|
|
|
|
|
'3010,0035' => { VR => 'SH', Name => 'EntityLabel' }, |
|
5466
|
|
|
|
|
|
|
'3010,0036' => { VR => 'LO', Name => 'EntityName' }, |
|
5467
|
|
|
|
|
|
|
'3010,0037' => { VR => 'ST', Name => 'EntityDescription' }, |
|
5468
|
|
|
|
|
|
|
'3010,0038' => { VR => 'LO', Name => 'EntityLongLabel' }, |
|
5469
|
|
|
|
|
|
|
'3010,0039' => { VR => 'US', Name => 'DeviceIndex' }, |
|
5470
|
|
|
|
|
|
|
'3010,003A' => { VR => 'US', Name => 'RTTreatmentPhaseIndex' }, |
|
5471
|
|
|
|
|
|
|
'3010,003B' => { VR => 'UI', Name => 'RTTreatmentPhaseUID' }, |
|
5472
|
|
|
|
|
|
|
'3010,003C' => { VR => 'US', Name => 'RTPrescriptionIndex' }, |
|
5473
|
|
|
|
|
|
|
'3010,003D' => { VR => 'US', Name => 'RTSegmentAnnotationIndex' }, |
|
5474
|
|
|
|
|
|
|
'3010,003E' => { VR => 'US', Name => 'BasisRTTreatmentPhaseIndex' }, |
|
5475
|
|
|
|
|
|
|
'3010,003F' => { VR => 'US', Name => 'RelatedRTTreatmentPhaseIndex' }, |
|
5476
|
|
|
|
|
|
|
'3010,0040' => { VR => 'US', Name => 'ReferencedRTTreatmentPhaseIndex' }, |
|
5477
|
|
|
|
|
|
|
'3010,0041' => { VR => 'US', Name => 'ReferencedRTPrescriptionIndex' }, |
|
5478
|
|
|
|
|
|
|
'3010,0042' => { VR => 'US', Name => 'ReferencedParentRTPrescriptionIdx' }, |
|
5479
|
|
|
|
|
|
|
'3010,0043' => { VR => 'ST', Name => 'ManufacturerDeviceIdentifier' }, |
|
5480
|
|
|
|
|
|
|
'3010,0044' => { VR => 'SQ', Name => 'InstanceLvlRefPerformedProcStepSeq' }, |
|
5481
|
|
|
|
|
|
|
'3010,0045' => { VR => 'CS', Name => 'RTTreatmentPhaseIntentPresenceFlag' }, |
|
5482
|
|
|
|
|
|
|
'3010,0046' => { VR => 'CS', Name => 'RadiotherapyTreatmentType' }, |
|
5483
|
|
|
|
|
|
|
'3010,0047' => { VR => 'CS', Name => 'TeletherapyRadiationType' }, |
|
5484
|
|
|
|
|
|
|
'3010,0048' => { VR => 'CS', Name => 'BrachytherapySourceType' }, |
|
5485
|
|
|
|
|
|
|
'3010,0049' => { VR => 'SQ', Name => 'ReferencedRTTreatmentPhaseSequence' }, |
|
5486
|
|
|
|
|
|
|
'3010,004A' => { VR => 'SQ', Name => 'ReferencedDirectSegmentInstanceSeq' }, |
|
5487
|
|
|
|
|
|
|
'3010,004B' => { VR => 'SQ', Name => 'IntendedRTTreatmentPhaseSequence' }, |
|
5488
|
|
|
|
|
|
|
'3010,004C' => { VR => 'DA', Name => 'IntendedPhaseStartDate' }, |
|
5489
|
|
|
|
|
|
|
'3010,004D' => { VR => 'DA', Name => 'IntendedPhaseEndDate' }, |
|
5490
|
|
|
|
|
|
|
'3010,004E' => { VR => 'SQ', Name => 'RTTreatmentPhaseIntervalSequence' }, |
|
5491
|
|
|
|
|
|
|
'3010,004F' => { VR => 'CS', Name => 'TemporalRelationshipIntervalAnchor' }, |
|
5492
|
|
|
|
|
|
|
'3010,0050' => { VR => 'FD', Name => 'MinimumNumberOfIntervalDays' }, |
|
5493
|
|
|
|
|
|
|
'3010,0051' => { VR => 'FD', Name => 'MaximumNumberOfIntervalDays' }, |
|
5494
|
|
|
|
|
|
|
'3010,0052' => { VR => 'UI', Name => 'PertinentSOPClassesInStudy' }, |
|
5495
|
|
|
|
|
|
|
'3010,0053' => { VR => 'UI', Name => 'PertinentSOPClassesInSeries' }, |
|
5496
|
|
|
|
|
|
|
'3010,0054' => { VR => 'LO', Name => 'RTPrescriptionLabel' }, |
|
5497
|
|
|
|
|
|
|
'3010,0055' => { VR => 'SQ', Name => 'RTPhysicianIntentPredecessorSeq' }, |
|
5498
|
|
|
|
|
|
|
'3010,0056' => { VR => 'LO', Name => 'RTTreatmentApproachLabel' }, |
|
5499
|
|
|
|
|
|
|
'3010,0057' => { VR => 'SQ', Name => 'RTPhysicianIntentSequence' }, |
|
5500
|
|
|
|
|
|
|
'3010,0058' => { VR => 'US', Name => 'RTPhysicianIntentIndex' }, |
|
5501
|
|
|
|
|
|
|
'3010,0059' => { VR => 'CS', Name => 'RTTreatmentIntentType' }, |
|
5502
|
|
|
|
|
|
|
'3010,005A' => { VR => 'UT', Name => 'RTPhysicianIntentNarrative' }, |
|
5503
|
|
|
|
|
|
|
'3010,005B' => { VR => 'SQ', Name => 'RTProtocolCodeSequence' }, |
|
5504
|
|
|
|
|
|
|
'3010,005C' => { VR => 'ST', Name => 'ReasonForSuperseding' }, |
|
5505
|
|
|
|
|
|
|
'3010,005D' => { VR => 'SQ', Name => 'RTDiagnosisCodeSequence' }, |
|
5506
|
|
|
|
|
|
|
'3010,005E' => { VR => 'US', Name => 'ReferencedRTPhysicianIntentIndex' }, |
|
5507
|
|
|
|
|
|
|
'3010,005F' => { VR => 'SQ', Name => 'RTPhysicianIntentInputInstanceSeq' }, |
|
5508
|
|
|
|
|
|
|
'3010,0060' => { VR => 'SQ', Name => 'RTAnatomicPrescriptionSequence' }, |
|
5509
|
|
|
|
|
|
|
'3010,0061' => { VR => 'UT', Name => 'PriorTreatmentDoseDescription' }, |
|
5510
|
|
|
|
|
|
|
'3010,0062' => { VR => 'SQ', Name => 'PriorTreatmentReferenceSequence' }, |
|
5511
|
|
|
|
|
|
|
'3010,0063' => { VR => 'CS', Name => 'DosimetricObjectiveEvaluationScope' }, |
|
5512
|
|
|
|
|
|
|
'3010,0064' => { VR => 'SQ', Name => 'TherapeuticRoleCategoryCodeSeq' }, |
|
5513
|
|
|
|
|
|
|
'3010,0065' => { VR => 'SQ', Name => 'TherapeuticRoleTypeCodeSequence' }, |
|
5514
|
|
|
|
|
|
|
'3010,0066' => { VR => 'US', Name => 'ConceptualVolumeOptPrecedence' }, |
|
5515
|
|
|
|
|
|
|
'3010,0067' => { VR => 'SQ', Name => 'ConceptualVolumeCategoryCodeSeq' }, |
|
5516
|
|
|
|
|
|
|
'3010,0068' => { VR => 'CS', Name => 'ConceptualVolumeBlockingConstraint' }, |
|
5517
|
|
|
|
|
|
|
'3010,0069' => { VR => 'SQ', Name => 'ConceptualVolumeTypeCodeSequence' }, |
|
5518
|
|
|
|
|
|
|
'3010,006A' => { VR => 'SQ', Name => 'ConceptualVolumeTypeModCodeSeq' }, |
|
5519
|
|
|
|
|
|
|
'3010,006B' => { VR => 'SQ', Name => 'RTPrescriptionSequence' }, |
|
5520
|
|
|
|
|
|
|
'3010,006C' => { VR => 'SQ', Name => 'DosimetricObjectiveSequence' }, |
|
5521
|
|
|
|
|
|
|
'3010,006D' => { VR => 'SQ', Name => 'DosimetricObjectiveTypeCodeSeq' }, |
|
5522
|
|
|
|
|
|
|
'3010,006E' => { VR => 'UI', Name => 'DosimetricObjectiveUID' }, |
|
5523
|
|
|
|
|
|
|
'3010,006F' => { VR => 'UI', Name => 'ReferencedDosimetricObjectiveUID' }, |
|
5524
|
|
|
|
|
|
|
'3010,0070' => { VR => 'SQ', Name => 'DosimetricObjectiveParameterSeq' }, |
|
5525
|
|
|
|
|
|
|
'3010,0071' => { VR => 'SQ', Name => 'ReferencedDosimetricObjectivesSeq' }, |
|
5526
|
|
|
|
|
|
|
'3010,0073' => { VR => 'CS', Name => 'AbsoluteDosimetricObjectiveFlag' }, |
|
5527
|
|
|
|
|
|
|
'3010,0074' => { VR => 'FD', Name => 'DosimetricObjectiveWeight' }, |
|
5528
|
|
|
|
|
|
|
'3010,0075' => { VR => 'CS', Name => 'DosimetricObjectivePurpose' }, |
|
5529
|
|
|
|
|
|
|
'3010,0076' => { VR => 'SQ', Name => 'PlanningInputInformationSequence' }, |
|
5530
|
|
|
|
|
|
|
'3010,0077' => { VR => 'LO', Name => 'TreatmentSite' }, |
|
5531
|
|
|
|
|
|
|
'3010,0078' => { VR => 'SQ', Name => 'TreatmentSiteCodeSequence' }, |
|
5532
|
|
|
|
|
|
|
'3010,0079' => { VR => 'SQ', Name => 'FractionPatternSequence' }, |
|
5533
|
|
|
|
|
|
|
'3010,007A' => { VR => 'UT', Name => 'TreatmentTechniqueNotes' }, |
|
5534
|
|
|
|
|
|
|
'3010,007B' => { VR => 'UT', Name => 'PrescriptionNotes' }, |
|
5535
|
|
|
|
|
|
|
'3010,007C' => { VR => 'IS', Name => 'NumberOfIntervalFractions' }, |
|
5536
|
|
|
|
|
|
|
'3010,007D' => { VR => 'US', Name => 'NumberOfFractions' }, |
|
5537
|
|
|
|
|
|
|
'3010,007E' => { VR => 'US', Name => 'IntendedDeliveryDuration' }, |
|
5538
|
|
|
|
|
|
|
'3010,007F' => { VR => 'UT', Name => 'FractionationNotes' }, |
|
5539
|
|
|
|
|
|
|
'3010,0080' => { VR => 'SQ', Name => 'RTTreatmentTechniqueCodeSequence' }, |
|
5540
|
|
|
|
|
|
|
'3010,0081' => { VR => 'SQ', Name => 'PrescriptionNotesSequence' }, |
|
5541
|
|
|
|
|
|
|
'3010,0082' => { VR => 'SQ', Name => 'FractionBasedRelationshipSequence' }, |
|
5542
|
|
|
|
|
|
|
'3010,0083' => { VR => 'CS', Name => 'FracBasedRelationIntervalAnchor' }, |
|
5543
|
|
|
|
|
|
|
'3010,0084' => { VR => 'FD', Name => 'MinimumHoursBetweenFractions' }, |
|
5544
|
|
|
|
|
|
|
'3010,0085' => { VR => 'TM', Name => 'IntendedFractionStartTime' }, |
|
5545
|
|
|
|
|
|
|
'3010,0086' => { VR => 'LT', Name => 'IntendedStartDayOfWeek' }, |
|
5546
|
|
|
|
|
|
|
'3010,0087' => { VR => 'SQ', Name => 'WeekdayFractionPatternSequence' }, |
|
5547
|
|
|
|
|
|
|
'3010,0088' => { VR => 'SQ', Name => 'DeliveryTimeStructureCodeSequence' }, |
|
5548
|
|
|
|
|
|
|
'3010,0089' => { VR => 'SQ', Name => 'TreatmentSiteModifierCodeSequence' }, |
|
5549
|
|
|
|
|
|
|
'3010,0090' => { VR => 'CS', Name => 'RoboticBaseLocationIndicator' }, |
|
5550
|
|
|
|
|
|
|
'3010,0091' => { VR => 'SQ', Name => 'RoboticPathNodeSetCodeSequence' }, |
|
5551
|
|
|
|
|
|
|
'3010,0092' => { VR => 'UL', Name => 'RoboticNodeIdentifier' }, |
|
5552
|
|
|
|
|
|
|
'3010,0093' => { VR => 'FD', Name => 'RTTreatmentSourceCoordinates' }, |
|
5553
|
|
|
|
|
|
|
'3010,0094' => { VR => 'FD', Name => 'RadiationSourceCoordYawAngle' }, |
|
5554
|
|
|
|
|
|
|
'3010,0095' => { VR => 'FD', Name => 'RadiationSourceCoordRollAngle' }, |
|
5555
|
|
|
|
|
|
|
'3010,0096' => { VR => 'FD', Name => 'RadiationSourceCoordPitchAngle' }, |
|
5556
|
|
|
|
|
|
|
'3010,0097' => { VR => 'SQ', Name => 'RoboticPathControlPointSequence' }, |
|
5557
|
|
|
|
|
|
|
'3010,0098' => { VR => 'SQ', Name => 'TomotherapeuticControlPointSeq' }, |
|
5558
|
|
|
|
|
|
|
'3010,0099' => { VR => 'FD', Name => 'TomotherapeuticLeafOpenDurations' }, |
|
5559
|
|
|
|
|
|
|
'3010,009A' => { VR => 'FD', Name => 'TomotherapeuticLeafInitClosedDur' }, |
|
5560
|
|
|
|
|
|
|
'3010,00A0' => { VR => 'SQ', Name => 'ConceptualVolumeIdentificationSeq' }, |
|
5561
|
|
|
|
|
|
|
# text group |
|
5562
|
|
|
|
|
|
|
'4000,0000' => { VR => 'UL', Name => 'TextGroupLength' }, |
|
5563
|
|
|
|
|
|
|
'4000,0010' => { VR => 'LT', Name => 'Arbitrary' }, |
|
5564
|
|
|
|
|
|
|
'4000,4000' => { VR => 'LT', Name => 'TextComments' }, |
|
5565
|
|
|
|
|
|
|
# results group |
|
5566
|
|
|
|
|
|
|
'4008,0040' => { VR => 'SH', Name => 'ResultsID' }, |
|
5567
|
|
|
|
|
|
|
'4008,0042' => { VR => 'LO', Name => 'ResultsIDIssuer' }, |
|
5568
|
|
|
|
|
|
|
'4008,0050' => { VR => 'SQ', Name => 'ReferencedInterpretationSequence' }, |
|
5569
|
|
|
|
|
|
|
'4008,00FF' => { VR => 'CS', Name => 'ReportProductionStatusTrial' }, |
|
5570
|
|
|
|
|
|
|
'4008,0100' => { VR => 'DA', Name => 'InterpretationRecordedDate' }, |
|
5571
|
|
|
|
|
|
|
'4008,0101' => { VR => 'TM', Name => 'InterpretationRecordedTime' }, |
|
5572
|
|
|
|
|
|
|
'4008,0102' => { VR => 'PN', Name => 'InterpretationRecorder' }, |
|
5573
|
|
|
|
|
|
|
'4008,0103' => { VR => 'LO', Name => 'ReferenceToRecordedSound' }, |
|
5574
|
|
|
|
|
|
|
'4008,0108' => { VR => 'DA', Name => 'InterpretationTranscriptionDate' }, |
|
5575
|
|
|
|
|
|
|
'4008,0109' => { VR => 'TM', Name => 'InterpretationTranscriptionTime' }, |
|
5576
|
|
|
|
|
|
|
'4008,010A' => { VR => 'PN', Name => 'InterpretationTranscriber' }, |
|
5577
|
|
|
|
|
|
|
'4008,010B' => { VR => 'ST', Name => 'InterpretationText' }, |
|
5578
|
|
|
|
|
|
|
'4008,010C' => { VR => 'PN', Name => 'InterpretationAuthor' }, |
|
5579
|
|
|
|
|
|
|
'4008,0111' => { VR => 'SQ', Name => 'InterpretationApproverSequence' }, |
|
5580
|
|
|
|
|
|
|
'4008,0112' => { VR => 'DA', Name => 'InterpretationApprovalDate' }, |
|
5581
|
|
|
|
|
|
|
'4008,0113' => { VR => 'TM', Name => 'InterpretationApprovalTime' }, |
|
5582
|
|
|
|
|
|
|
'4008,0114' => { VR => 'PN', Name => 'PhysicianApprovingInterpretation' }, |
|
5583
|
|
|
|
|
|
|
'4008,0115' => { VR => 'LT', Name => 'InterpretationDiagnosisDescription' }, |
|
5584
|
|
|
|
|
|
|
'4008,0117' => { VR => 'SQ', Name => 'InterpretationDiagnosisCodeSeq' }, |
|
5585
|
|
|
|
|
|
|
'4008,0118' => { VR => 'SQ', Name => 'ResultsDistributionListSequence' }, |
|
5586
|
|
|
|
|
|
|
'4008,0119' => { VR => 'PN', Name => 'DistributionName' }, |
|
5587
|
|
|
|
|
|
|
'4008,011A' => { VR => 'LO', Name => 'DistributionAddress' }, |
|
5588
|
|
|
|
|
|
|
'4008,0200' => { VR => 'SH', Name => 'InterpretationID' }, |
|
5589
|
|
|
|
|
|
|
'4008,0202' => { VR => 'LO', Name => 'InterpretationIDIssuer' }, |
|
5590
|
|
|
|
|
|
|
'4008,0210' => { VR => 'CS', Name => 'InterpretationTypeID' }, |
|
5591
|
|
|
|
|
|
|
'4008,0212' => { VR => 'CS', Name => 'InterpretationStatusID' }, |
|
5592
|
|
|
|
|
|
|
'4008,0300' => { VR => 'ST', Name => 'Impressions' }, |
|
5593
|
|
|
|
|
|
|
'4008,4000' => { VR => 'ST', Name => 'ResultsComments' }, |
|
5594
|
|
|
|
|
|
|
'4010,0001' => { VR => 'CS', Name => 'LowEnergyDetectors' }, |
|
5595
|
|
|
|
|
|
|
'4010,0002' => { VR => 'CS', Name => 'HighEnergyDetectors' }, |
|
5596
|
|
|
|
|
|
|
'4010,0004' => { VR => 'SQ', Name => 'DetectorGeometrySequence' }, |
|
5597
|
|
|
|
|
|
|
'4010,1001' => { VR => 'SQ', Name => 'ThreatROIVoxelSequence' }, |
|
5598
|
|
|
|
|
|
|
'4010,1004' => { VR => 'FL', Name => 'ThreatROIBase' }, |
|
5599
|
|
|
|
|
|
|
'4010,1005' => { VR => 'FL', Name => 'ThreatROIExtents' }, |
|
5600
|
|
|
|
|
|
|
'4010,1006' => { VR => 'OB', Name => 'ThreatROIBitmap' }, |
|
5601
|
|
|
|
|
|
|
'4010,1007' => { VR => 'SH', Name => 'RouteSegmentID' }, |
|
5602
|
|
|
|
|
|
|
'4010,1008' => { VR => 'CS', Name => 'GantryType' }, |
|
5603
|
|
|
|
|
|
|
'4010,1009' => { VR => 'CS', Name => 'OOIOwnerType' }, |
|
5604
|
|
|
|
|
|
|
'4010,100A' => { VR => 'SQ', Name => 'RouteSegmentSequence' }, |
|
5605
|
|
|
|
|
|
|
'4010,1010' => { VR => 'US', Name => 'PotentialThreatObjectID' }, |
|
5606
|
|
|
|
|
|
|
'4010,1011' => { VR => 'SQ', Name => 'ThreatSequence' }, |
|
5607
|
|
|
|
|
|
|
'4010,1012' => { VR => 'CS', Name => 'ThreatCategory' }, |
|
5608
|
|
|
|
|
|
|
'4010,1013' => { VR => 'LT', Name => 'ThreatCategoryDescription' }, |
|
5609
|
|
|
|
|
|
|
'4010,1014' => { VR => 'CS', Name => 'ATDAbilityAssessment' }, |
|
5610
|
|
|
|
|
|
|
'4010,1015' => { VR => 'CS', Name => 'ATDAssessmentFlag' }, |
|
5611
|
|
|
|
|
|
|
'4010,1016' => { VR => 'FL', Name => 'ATDAssessmentProbability' }, |
|
5612
|
|
|
|
|
|
|
'4010,1017' => { VR => 'FL', Name => 'Mass' }, |
|
5613
|
|
|
|
|
|
|
'4010,1018' => { VR => 'FL', Name => 'Density' }, |
|
5614
|
|
|
|
|
|
|
'4010,1019' => { VR => 'FL', Name => 'ZEffective' }, |
|
5615
|
|
|
|
|
|
|
'4010,101A' => { VR => 'SH', Name => 'BoardingPassID' }, |
|
5616
|
|
|
|
|
|
|
'4010,101B' => { VR => 'FL', Name => 'CenterOfMass' }, |
|
5617
|
|
|
|
|
|
|
'4010,101C' => { VR => 'FL', Name => 'CenterOfPTO' }, |
|
5618
|
|
|
|
|
|
|
'4010,101D' => { VR => 'FL', Name => 'BoundingPolygon' }, |
|
5619
|
|
|
|
|
|
|
'4010,101E' => { VR => 'SH', Name => 'RouteSegmentStartLocationID' }, |
|
5620
|
|
|
|
|
|
|
'4010,101F' => { VR => 'SH', Name => 'RouteSegmentEndLocationID' }, |
|
5621
|
|
|
|
|
|
|
'4010,1020' => { VR => 'CS', Name => 'RouteSegmentLocationIDType' }, |
|
5622
|
|
|
|
|
|
|
'4010,1021' => { VR => 'CS', Name => 'AbortReason' }, |
|
5623
|
|
|
|
|
|
|
'4010,1023' => { VR => 'FL', Name => 'VolumeOfPTO' }, |
|
5624
|
|
|
|
|
|
|
'4010,1024' => { VR => 'CS', Name => 'AbortFlag' }, |
|
5625
|
|
|
|
|
|
|
'4010,1025' => { VR => 'DT', Name => 'RouteSegmentStartTime' }, |
|
5626
|
|
|
|
|
|
|
'4010,1026' => { VR => 'DT', Name => 'RouteSegmentEndTime' }, |
|
5627
|
|
|
|
|
|
|
'4010,1027' => { VR => 'CS', Name => 'TDRType' }, |
|
5628
|
|
|
|
|
|
|
'4010,1028' => { VR => 'CS', Name => 'InternationalRouteSegment' }, |
|
5629
|
|
|
|
|
|
|
'4010,1029' => { VR => 'LO', Name => 'ThreatDetectionAlgorithmAndVersion' }, |
|
5630
|
|
|
|
|
|
|
'4010,102A' => { VR => 'SH', Name => 'AssignedLocation' }, |
|
5631
|
|
|
|
|
|
|
'4010,102B' => { VR => 'DT', Name => 'AlarmDecisionTime' }, |
|
5632
|
|
|
|
|
|
|
'4010,1031' => { VR => 'CS', Name => 'AlarmDecision' }, |
|
5633
|
|
|
|
|
|
|
'4010,1033' => { VR => 'US', Name => 'NumberOfTotalObjects' }, |
|
5634
|
|
|
|
|
|
|
'4010,1034' => { VR => 'US', Name => 'NumberOfAlarmObjects' }, |
|
5635
|
|
|
|
|
|
|
'4010,1037' => { VR => 'SQ', Name => 'PTORepresentationSequence' }, |
|
5636
|
|
|
|
|
|
|
'4010,1038' => { VR => 'SQ', Name => 'ATDAssessmentSequence' }, |
|
5637
|
|
|
|
|
|
|
'4010,1039' => { VR => 'CS', Name => 'TIPType' }, |
|
5638
|
|
|
|
|
|
|
'4010,103A' => { VR => 'CS', Name => 'DICOSVersion' }, |
|
5639
|
|
|
|
|
|
|
'4010,1041' => { VR => 'DT', Name => 'OOIOwnerCreationTime' }, |
|
5640
|
|
|
|
|
|
|
'4010,1042' => { VR => 'CS', Name => 'OOIType' }, |
|
5641
|
|
|
|
|
|
|
'4010,1043' => { VR => 'FL', Name => 'OOISize' }, |
|
5642
|
|
|
|
|
|
|
'4010,1044' => { VR => 'CS', Name => 'AcquisitionStatus' }, |
|
5643
|
|
|
|
|
|
|
'4010,1045' => { VR => 'SQ', Name => 'BasisMaterialsCodeSequence' }, |
|
5644
|
|
|
|
|
|
|
'4010,1046' => { VR => 'CS', Name => 'PhantomType' }, |
|
5645
|
|
|
|
|
|
|
'4010,1047' => { VR => 'SQ', Name => 'OOIOwnerSequence' }, |
|
5646
|
|
|
|
|
|
|
'4010,1048' => { VR => 'CS', Name => 'ScanType' }, |
|
5647
|
|
|
|
|
|
|
'4010,1051' => { VR => 'LO', Name => 'ItineraryID' }, |
|
5648
|
|
|
|
|
|
|
'4010,1052' => { VR => 'SH', Name => 'ItineraryIDType' }, |
|
5649
|
|
|
|
|
|
|
'4010,1053' => { VR => 'LO', Name => 'ItineraryIDAssigningAuthority' }, |
|
5650
|
|
|
|
|
|
|
'4010,1054' => { VR => 'SH', Name => 'RouteID' }, |
|
5651
|
|
|
|
|
|
|
'4010,1055' => { VR => 'SH', Name => 'RouteIDAssigningAuthority' }, |
|
5652
|
|
|
|
|
|
|
'4010,1056' => { VR => 'CS', Name => 'InboundArrivalType' }, |
|
5653
|
|
|
|
|
|
|
'4010,1058' => { VR => 'SH', Name => 'CarrierID' }, |
|
5654
|
|
|
|
|
|
|
'4010,1059' => { VR => 'CS', Name => 'CarrierIDAssigningAuthority' }, |
|
5655
|
|
|
|
|
|
|
'4010,1060' => { VR => 'FL', Name => 'SourceOrientation' }, |
|
5656
|
|
|
|
|
|
|
'4010,1061' => { VR => 'FL', Name => 'SourcePosition' }, |
|
5657
|
|
|
|
|
|
|
'4010,1062' => { VR => 'FL', Name => 'BeltHeight' }, |
|
5658
|
|
|
|
|
|
|
'4010,1064' => { VR => 'SQ', Name => 'AlgorithmRoutingCodeSequence' }, |
|
5659
|
|
|
|
|
|
|
'4010,1067' => { VR => 'CS', Name => 'TransportClassification' }, |
|
5660
|
|
|
|
|
|
|
'4010,1068' => { VR => 'LT', Name => 'OOITypeDescriptor' }, |
|
5661
|
|
|
|
|
|
|
'4010,1069' => { VR => 'FL', Name => 'TotalProcessingTime' }, |
|
5662
|
|
|
|
|
|
|
'4010,106C' => { VR => 'OB', Name => 'DetectorCalibrationData' }, |
|
5663
|
|
|
|
|
|
|
'4010,106D' => { VR => 'CS', Name => 'AdditionalScreeningPerformed' }, |
|
5664
|
|
|
|
|
|
|
'4010,106E' => { VR => 'CS', Name => 'AdditionalInspectionSelectCriteria' }, |
|
5665
|
|
|
|
|
|
|
'4010,106F' => { VR => 'SQ', Name => 'AdditionalInspectionMethodSequence' }, |
|
5666
|
|
|
|
|
|
|
'4010,1070' => { VR => 'CS', Name => 'AITDeviceType' }, |
|
5667
|
|
|
|
|
|
|
'4010,1071' => { VR => 'SQ', Name => 'QRMeasurementsSequence' }, |
|
5668
|
|
|
|
|
|
|
'4010,1072' => { VR => 'SQ', Name => 'TargetMaterialSequence' }, |
|
5669
|
|
|
|
|
|
|
'4010,1073' => { VR => 'FD', Name => 'SNRThreshold' }, |
|
5670
|
|
|
|
|
|
|
'4010,1075' => { VR => 'DS', Name => 'ImageScaleRepresentation' }, |
|
5671
|
|
|
|
|
|
|
'4010,1076' => { VR => 'SQ', Name => 'ReferencedPTOSequence' }, |
|
5672
|
|
|
|
|
|
|
'4010,1077' => { VR => 'SQ', Name => 'ReferencedTDRInstanceSequence' }, |
|
5673
|
|
|
|
|
|
|
'4010,1078' => { VR => 'ST', Name => 'PTOLocationDescription' }, |
|
5674
|
|
|
|
|
|
|
'4010,1079' => { VR => 'SQ', Name => 'AnomalyLocatorIndicatorSequence' }, |
|
5675
|
|
|
|
|
|
|
'4010,107A' => { VR => 'FL', Name => 'AnomalyLocatorIndicator' }, |
|
5676
|
|
|
|
|
|
|
'4010,107B' => { VR => 'SQ', Name => 'PTORegionSequence' }, |
|
5677
|
|
|
|
|
|
|
'4010,107C' => { VR => 'CS', Name => 'InspectionSelectionCriteria' }, |
|
5678
|
|
|
|
|
|
|
'4010,107D' => { VR => 'SQ', Name => 'SecondaryInspectionMethodSequence' }, |
|
5679
|
|
|
|
|
|
|
'4010,107E' => { VR => 'DS', Name => 'PRCSToRCSOrientation' }, |
|
5680
|
|
|
|
|
|
|
'4FFE,0001' => { VR => 'SQ', Name => 'MACParametersSequence' }, |
|
5681
|
|
|
|
|
|
|
# curve group |
|
5682
|
|
|
|
|
|
|
'50xx,0005' => { VR => 'US', Name => 'CurveDimensions' }, |
|
5683
|
|
|
|
|
|
|
'50xx,0010' => { VR => 'US', Name => 'NumberOfPoints' }, |
|
5684
|
|
|
|
|
|
|
'50xx,0020' => { VR => 'CS', Name => 'TypeOfData' }, |
|
5685
|
|
|
|
|
|
|
'50xx,0022' => { VR => 'LO', Name => 'CurveDescription' }, |
|
5686
|
|
|
|
|
|
|
'50xx,0030' => { VR => 'SH', Name => 'AxisUnits' }, |
|
5687
|
|
|
|
|
|
|
'50xx,0040' => { VR => 'SH', Name => 'AxisLabels' }, |
|
5688
|
|
|
|
|
|
|
'50xx,0103' => { VR => 'US', Name => 'DataValueRepresentation' }, |
|
5689
|
|
|
|
|
|
|
'50xx,0104' => { VR => 'US', Name => 'MinimumCoordinateValue' }, |
|
5690
|
|
|
|
|
|
|
'50xx,0105' => { VR => 'US', Name => 'MaximumCoordinateValue' }, |
|
5691
|
|
|
|
|
|
|
'50xx,0106' => { VR => 'SH', Name => 'CurveRange' }, |
|
5692
|
|
|
|
|
|
|
'50xx,0110' => { VR => 'US', Name => 'CurveDataDescriptor' }, |
|
5693
|
|
|
|
|
|
|
'50xx,0112' => { VR => 'US', Name => 'CoordinateStartValue' }, |
|
5694
|
|
|
|
|
|
|
'50xx,0114' => { VR => 'US', Name => 'CoordinateStepValue' }, |
|
5695
|
|
|
|
|
|
|
'50xx,1001' => { VR => 'CS', Name => 'CurveActivationLayer' }, |
|
5696
|
|
|
|
|
|
|
'50xx,2000' => { VR => 'US', Name => 'AudioType' }, |
|
5697
|
|
|
|
|
|
|
'50xx,2002' => { VR => 'US', Name => 'AudioSampleFormat' }, |
|
5698
|
|
|
|
|
|
|
'50xx,2004' => { VR => 'US', Name => 'NumberOfChannels' }, |
|
5699
|
|
|
|
|
|
|
'50xx,2006' => { VR => 'UL', Name => 'NumberOfSamples' }, |
|
5700
|
|
|
|
|
|
|
'50xx,2008' => { VR => 'UL', Name => 'SampleRate' }, |
|
5701
|
|
|
|
|
|
|
'50xx,200A' => { VR => 'UL', Name => 'TotalTime' }, |
|
5702
|
|
|
|
|
|
|
'50xx,200C' => { VR => 'OW', Name => 'AudioSampleData' }, |
|
5703
|
|
|
|
|
|
|
'50xx,200E' => { VR => 'LT', Name => 'AudioComments' }, |
|
5704
|
|
|
|
|
|
|
'50xx,2500' => { VR => 'LO', Name => 'CurveLabel' }, |
|
5705
|
|
|
|
|
|
|
'50xx,2600' => { VR => 'SQ', Name => 'ReferencedOverlaySequence' }, |
|
5706
|
|
|
|
|
|
|
'50xx,2610' => { VR => 'US', Name => 'ReferencedOverlayGroup' }, |
|
5707
|
|
|
|
|
|
|
'50xx,3000' => { VR => 'OW', Name => 'CurveData' }, |
|
5708
|
|
|
|
|
|
|
'5200,9229' => { VR => 'SQ', Name => 'SharedFunctionalGroupsSequence' }, |
|
5709
|
|
|
|
|
|
|
'5200,9230' => { VR => 'SQ', Name => 'PerFrameFunctionalGroupsSequence' }, |
|
5710
|
|
|
|
|
|
|
'5400,0100' => { VR => 'SQ', Name => 'WaveformSequence' }, |
|
5711
|
|
|
|
|
|
|
'5400,0110' => { VR => 'OB', Name => 'ChannelMinimumValue' }, |
|
5712
|
|
|
|
|
|
|
'5400,0112' => { VR => 'OB', Name => 'ChannelMaximumValue' }, |
|
5713
|
|
|
|
|
|
|
'5400,1004' => { VR => 'US', Name => 'WaveformBitsAllocated' }, |
|
5714
|
|
|
|
|
|
|
'5400,1006' => { VR => 'CS', Name => 'WaveformSampleInterpretation' }, |
|
5715
|
|
|
|
|
|
|
'5400,100A' => { VR => 'OB', Name => 'WaveformPaddingValue' }, |
|
5716
|
|
|
|
|
|
|
'5400,1010' => { VR => 'OB', Name => 'WaveformData' }, |
|
5717
|
|
|
|
|
|
|
'5600,0010' => { VR => 'OF', Name => 'FirstOrderPhaseCorrectionAngle' }, |
|
5718
|
|
|
|
|
|
|
'5600,0020' => { VR => 'OF', Name => 'SpectroscopyData' }, |
|
5719
|
|
|
|
|
|
|
# overlay group |
|
5720
|
|
|
|
|
|
|
'6000,0000' => { VR => 'UL', Name => 'OverlayGroupLength' }, |
|
5721
|
|
|
|
|
|
|
'60xx,0010' => { VR => 'US', Name => 'OverlayRows' }, |
|
5722
|
|
|
|
|
|
|
'60xx,0011' => { VR => 'US', Name => 'OverlayColumns' }, |
|
5723
|
|
|
|
|
|
|
'60xx,0012' => { VR => 'US', Name => 'OverlayPlanes' }, |
|
5724
|
|
|
|
|
|
|
'60xx,0015' => { VR => 'IS', Name => 'NumberOfFramesInOverlay' }, |
|
5725
|
|
|
|
|
|
|
'60xx,0022' => { VR => 'LO', Name => 'OverlayDescription' }, |
|
5726
|
|
|
|
|
|
|
'60xx,0040' => { VR => 'CS', Name => 'OverlayType' }, |
|
5727
|
|
|
|
|
|
|
'60xx,0045' => { VR => 'LO', Name => 'OverlaySubtype' }, |
|
5728
|
|
|
|
|
|
|
'60xx,0050' => { VR => 'SS', Name => 'OverlayOrigin' }, |
|
5729
|
|
|
|
|
|
|
'60xx,0051' => { VR => 'US', Name => 'ImageFrameOrigin' }, |
|
5730
|
|
|
|
|
|
|
'60xx,0052' => { VR => 'US', Name => 'OverlayPlaneOrigin' }, |
|
5731
|
|
|
|
|
|
|
'60xx,0060' => { VR => 'CS', Name => 'OverlayCompressionCode' }, |
|
5732
|
|
|
|
|
|
|
'60xx,0061' => { VR => 'SH', Name => 'OverlayCompressionOriginator' }, |
|
5733
|
|
|
|
|
|
|
'60xx,0062' => { VR => 'SH', Name => 'OverlayCompressionLabel' }, |
|
5734
|
|
|
|
|
|
|
'60xx,0063' => { VR => 'CS', Name => 'OverlayCompressionDescription' }, |
|
5735
|
|
|
|
|
|
|
'60xx,0066' => { VR => 'AT', Name => 'OverlayCompressionStepPointers' }, |
|
5736
|
|
|
|
|
|
|
'60xx,0068' => { VR => 'US', Name => 'OverlayRepeatInterval' }, |
|
5737
|
|
|
|
|
|
|
'60xx,0069' => { VR => 'US', Name => 'OverlayBitsGrouped' }, |
|
5738
|
|
|
|
|
|
|
'60xx,0100' => { VR => 'US', Name => 'OverlayBitsAllocated' }, |
|
5739
|
|
|
|
|
|
|
'60xx,0102' => { VR => 'US', Name => 'OverlayBitPosition' }, |
|
5740
|
|
|
|
|
|
|
'60xx,0110' => { VR => 'CS', Name => 'OverlayFormat' }, |
|
5741
|
|
|
|
|
|
|
'60xx,0200' => { VR => 'US', Name => 'OverlayLocation' }, |
|
5742
|
|
|
|
|
|
|
'60xx,0800' => { VR => 'CS', Name => 'OverlayCodeLabel' }, |
|
5743
|
|
|
|
|
|
|
'60xx,0802' => { VR => 'US', Name => 'OverlayNumberOfTables' }, |
|
5744
|
|
|
|
|
|
|
'60xx,0803' => { VR => 'AT', Name => 'OverlayCodeTableLocation' }, |
|
5745
|
|
|
|
|
|
|
'60xx,0804' => { VR => 'US', Name => 'OverlayBitsForCodeWord' }, |
|
5746
|
|
|
|
|
|
|
'60xx,1001' => { VR => 'CS', Name => 'OverlayActivationLayer' }, |
|
5747
|
|
|
|
|
|
|
'60xx,1100' => { VR => 'US', Name => 'OverlayDescriptorGray' }, |
|
5748
|
|
|
|
|
|
|
'60xx,1101' => { VR => 'US', Name => 'OverlayDescriptorRed' }, |
|
5749
|
|
|
|
|
|
|
'60xx,1102' => { VR => 'US', Name => 'OverlayDescriptorGreen' }, |
|
5750
|
|
|
|
|
|
|
'60xx,1103' => { VR => 'US', Name => 'OverlayDescriptorBlue' }, |
|
5751
|
|
|
|
|
|
|
'60xx,1200' => { VR => 'US', Name => 'OverlaysGray' }, |
|
5752
|
|
|
|
|
|
|
'60xx,1201' => { VR => 'US', Name => 'OverlaysRed' }, |
|
5753
|
|
|
|
|
|
|
'60xx,1202' => { VR => 'US', Name => 'OverlaysGreen' }, |
|
5754
|
|
|
|
|
|
|
'60xx,1203' => { VR => 'US', Name => 'OverlaysBlue' }, |
|
5755
|
|
|
|
|
|
|
'60xx,1301' => { VR => 'IS', Name => 'ROIArea' }, |
|
5756
|
|
|
|
|
|
|
'60xx,1302' => { VR => 'DS', Name => 'ROIMean' }, |
|
5757
|
|
|
|
|
|
|
'60xx,1303' => { VR => 'DS', Name => 'ROIStandardDeviation' }, |
|
5758
|
|
|
|
|
|
|
'60xx,1500' => { VR => 'LO', Name => 'OverlayLabel' }, |
|
5759
|
|
|
|
|
|
|
'60xx,3000' => { VR => 'OB', Name => 'OverlayData' }, |
|
5760
|
|
|
|
|
|
|
'60xx,4000' => { VR => 'LT', Name => 'OverlayComments' }, |
|
5761
|
|
|
|
|
|
|
'7FE0,0001' => { VR => 'OV', Name => 'ExtendedOffsetTable' }, |
|
5762
|
|
|
|
|
|
|
'7FE0,0002' => { VR => 'OV', Name => 'ExtendedOffsetTableLengths' }, |
|
5763
|
|
|
|
|
|
|
'7FE0,0003' => { VR => 'UV', Name => 'EncapsulatedPixelDataValueTotalLen' }, |
|
5764
|
|
|
|
|
|
|
'7FE0,0008' => { VR => 'OF', Name => 'FloatPixelData', Binary => 1 }, |
|
5765
|
|
|
|
|
|
|
'7FE0,0009' => { VR => 'OD', Name => 'DoubleFloatPixelData', Binary => 1 }, |
|
5766
|
|
|
|
|
|
|
# pixel data group |
|
5767
|
|
|
|
|
|
|
'7Fxx,0000' => { VR => 'UL', Name => 'PixelDataGroupLength' }, |
|
5768
|
|
|
|
|
|
|
'7Fxx,0010' => { VR => 'OB', Name => 'PixelData', Binary => 1 }, |
|
5769
|
|
|
|
|
|
|
'7Fxx,0011' => { VR => 'US', Name => 'VariableNextDataGroup' }, |
|
5770
|
|
|
|
|
|
|
'7Fxx,0020' => { VR => 'OW', Name => 'VariableCoefficientsSDVN' }, |
|
5771
|
|
|
|
|
|
|
'7Fxx,0030' => { VR => 'OW', Name => 'VariableCoefficientsSDHN' }, |
|
5772
|
|
|
|
|
|
|
'7Fxx,0040' => { VR => 'OW', Name => 'VariableCoefficientsSDDN' }, |
|
5773
|
|
|
|
|
|
|
'FFFA,FFFA' => { VR => 'SQ', Name => 'DigitalSignaturesSequence' }, |
|
5774
|
|
|
|
|
|
|
'FFFC,FFFC' => { VR => 'OB', Name => 'DataSetTrailingPadding', Binary => 1 }, |
|
5775
|
|
|
|
|
|
|
# the sequence delimiters have no VR: |
|
5776
|
|
|
|
|
|
|
'FFFE,E000' => 'StartOfItem', |
|
5777
|
|
|
|
|
|
|
'FFFE,E00D' => 'EndOfItems', |
|
5778
|
|
|
|
|
|
|
'FFFE,E0DD' => 'EndOfSequence', |
|
5779
|
|
|
|
|
|
|
); |
|
5780
|
|
|
|
|
|
|
|
|
5781
|
|
|
|
|
|
|
# table to translate registered UID values to readable strings |
|
5782
|
|
|
|
|
|
|
# (the PrintConv is added dynamically when a 'UI' format tag is extracted) |
|
5783
|
|
|
|
|
|
|
%uid = ( |
|
5784
|
|
|
|
|
|
|
'1.2.840.10008.1.1' => 'Verification SOP Class', |
|
5785
|
|
|
|
|
|
|
'1.2.840.10008.1.2' => 'Implicit VR Little Endian', |
|
5786
|
|
|
|
|
|
|
'1.2.840.10008.1.2.1' => 'Explicit VR Little Endian', |
|
5787
|
|
|
|
|
|
|
'1.2.840.10008.1.2.1.98' => 'Encapsulated Uncompressed Explicit VR Little Endian', |
|
5788
|
|
|
|
|
|
|
'1.2.840.10008.1.2.1.99' => 'Deflated Explicit VR Little Endian', |
|
5789
|
|
|
|
|
|
|
'1.2.840.10008.1.2.2' => 'Explicit VR Big Endian', |
|
5790
|
|
|
|
|
|
|
'1.2.840.10008.1.2.4.50' => 'JPEG Baseline (Process 1)', |
|
5791
|
|
|
|
|
|
|
'1.2.840.10008.1.2.4.51' => 'JPEG Extended (Process 2 & 4)', |
|
5792
|
|
|
|
|
|
|
'1.2.840.10008.1.2.4.52' => 'JPEG Extended (Process 3 & 5)', |
|
5793
|
|
|
|
|
|
|
'1.2.840.10008.1.2.4.53' => 'JPEG Spectral Selection, Non-Hierarchical (Process 6 & 8)', |
|
5794
|
|
|
|
|
|
|
'1.2.840.10008.1.2.4.54' => 'JPEG Spectral Selection, Non-Hierarchical (Process 7 & 9)', |
|
5795
|
|
|
|
|
|
|
'1.2.840.10008.1.2.4.55' => 'JPEG Full Progression, Non-Hierarchical (Process 10 & 12)', |
|
5796
|
|
|
|
|
|
|
'1.2.840.10008.1.2.4.56' => 'JPEG Full Progression, Non-Hierarchical (Process 11 & 13)', |
|
5797
|
|
|
|
|
|
|
'1.2.840.10008.1.2.4.57' => 'JPEG Lossless, Non-Hierarchical (Process 14)', |
|
5798
|
|
|
|
|
|
|
'1.2.840.10008.1.2.4.58' => 'JPEG Lossless, Non-Hierarchical (Process 15) ', |
|
5799
|
|
|
|
|
|
|
'1.2.840.10008.1.2.4.59' => 'JPEG Extended, Hierarchical (Process 16 & 18) ', |
|
5800
|
|
|
|
|
|
|
'1.2.840.10008.1.2.4.60' => 'JPEG Extended, Hierarchical (Process 17 & 19) ', |
|
5801
|
|
|
|
|
|
|
'1.2.840.10008.1.2.4.61' => 'JPEG Spectral Selection, Hierarchical (Process 20 & 22)', |
|
5802
|
|
|
|
|
|
|
'1.2.840.10008.1.2.4.62' => 'JPEG Spectral Selection, Hierarchical (Process 21 & 23)', |
|
5803
|
|
|
|
|
|
|
'1.2.840.10008.1.2.4.63' => 'JPEG Full Progression, Hierarchical (Process 24 & 26)', |
|
5804
|
|
|
|
|
|
|
'1.2.840.10008.1.2.4.64' => 'JPEG Full Progression, Hierarchical (Process 25 & 27)', |
|
5805
|
|
|
|
|
|
|
'1.2.840.10008.1.2.4.65' => 'JPEG Lossless, Hierarchical (Process 28) ', |
|
5806
|
|
|
|
|
|
|
'1.2.840.10008.1.2.4.66' => 'JPEG Lossless, Hierarchical (Process 29) ', |
|
5807
|
|
|
|
|
|
|
'1.2.840.10008.1.2.4.70' => 'JPEG Lossless, Non-Hierarchical, First-Order Prediction (Process 14-1)', |
|
5808
|
|
|
|
|
|
|
'1.2.840.10008.1.2.4.80' => 'JPEG-LS Lossless Image Compression', |
|
5809
|
|
|
|
|
|
|
'1.2.840.10008.1.2.4.81' => 'JPEG-LS Lossy (Near-Lossless) Image Compression', |
|
5810
|
|
|
|
|
|
|
'1.2.840.10008.1.2.4.90' => 'JPEG 2000 Image Compression (Lossless Only)', |
|
5811
|
|
|
|
|
|
|
'1.2.840.10008.1.2.4.91' => 'JPEG 2000 Image Compression', |
|
5812
|
|
|
|
|
|
|
'1.2.840.10008.1.2.4.92' => 'JPEG 2000 Part 2 Multi-component Image Compression (Lossless Only)', |
|
5813
|
|
|
|
|
|
|
'1.2.840.10008.1.2.4.93' => 'JPEG 2000 Part 2 Multi-component Image Compression', |
|
5814
|
|
|
|
|
|
|
'1.2.840.10008.1.2.4.94' => 'JPIP Referenced', |
|
5815
|
|
|
|
|
|
|
'1.2.840.10008.1.2.4.95' => 'JPIP Referenced Deflate', |
|
5816
|
|
|
|
|
|
|
'1.2.840.10008.1.2.4.100' => 'MPEG2 Main Profile / Main Level', |
|
5817
|
|
|
|
|
|
|
'1.2.840.10008.1.2.4.101' => 'MPEG2 Main Profile / High Level', |
|
5818
|
|
|
|
|
|
|
'1.2.840.10008.1.2.4.100.1' => 'Fragmentable MPEG2 Main Profile / Main Level', |
|
5819
|
|
|
|
|
|
|
'1.2.840.10008.1.2.4.102' => 'MPEG-4 AVC/H.264 High Profile / Level 4.1', |
|
5820
|
|
|
|
|
|
|
'1.2.840.10008.1.2.4.102.1' => 'Fragmentable MPEG-4 AVC/H.264 High Profile / Level 4.1', |
|
5821
|
|
|
|
|
|
|
'1.2.840.10008.1.2.4.103' => 'MPEG-4 AVC/H.264 BD-compatible High Profile / Level 4.1', |
|
5822
|
|
|
|
|
|
|
'1.2.840.10008.1.2.4.103.1' => 'Fragmentable MPEG-4 AVC/H.264 BD-compatible High Profile / Level 4.1', |
|
5823
|
|
|
|
|
|
|
'1.2.840.10008.1.2.4.104' => 'MPEG-4 AVC/H.264 High Profile / Level 4.2 For 2D Video', |
|
5824
|
|
|
|
|
|
|
'1.2.840.10008.1.2.4.104.1' => 'Fragmentable MPEG-4 AVC/H.264 High Profile / Level 4.2 For 2D Video', |
|
5825
|
|
|
|
|
|
|
'1.2.840.10008.1.2.4.105' => 'MPEG-4 AVC/H.264 High Profile / Level 4.2 For 3D Video', |
|
5826
|
|
|
|
|
|
|
'1.2.840.10008.1.2.4.105.1' => 'Fragmentable MPEG-4 AVC/H.264 High Profile / Level 4.2 For 3D Video', |
|
5827
|
|
|
|
|
|
|
'1.2.840.10008.1.2.4.106' => 'MPEG-4 AVC/H.264 Stereo High Profile / Level 4.2', |
|
5828
|
|
|
|
|
|
|
'1.2.840.10008.1.2.4.106.1' => 'Fragmentable MPEG-4 AVC/H.264 Stereo High Profile / Level 4.2', |
|
5829
|
|
|
|
|
|
|
'1.2.840.10008.1.2.4.107' => 'HEVC/H.265 Main Profile / Level 5.1', |
|
5830
|
|
|
|
|
|
|
'1.2.840.10008.1.2.4.108' => 'HEVC/H.265 Main 10 Profile / Level 5.1', |
|
5831
|
|
|
|
|
|
|
'1.2.840.10008.1.2.4.110' => 'JPEG XL Lossless', |
|
5832
|
|
|
|
|
|
|
'1.2.840.10008.1.2.4.111' => 'JPEG XL JPEG Recompression', |
|
5833
|
|
|
|
|
|
|
'1.2.840.10008.1.2.4.112' => 'JPEG XL', |
|
5834
|
|
|
|
|
|
|
'1.2.840.10008.1.2.4.201' => 'High-Throughput JPEG 2000 Image Compression (Lossless Only)', |
|
5835
|
|
|
|
|
|
|
'1.2.840.10008.1.2.4.202' => 'High-Throughput JPEG 2000 with RPCL Options Image Compression (Lossless Only)', |
|
5836
|
|
|
|
|
|
|
'1.2.840.10008.1.2.4.203' => 'High-Throughput JPEG 2000 Image Compression', |
|
5837
|
|
|
|
|
|
|
'1.2.840.10008.1.2.4.204' => 'JPIP HTJ2K Referenced', |
|
5838
|
|
|
|
|
|
|
'1.2.840.10008.1.2.4.205' => 'JPIP HTJ2K Referenced Deflate', |
|
5839
|
|
|
|
|
|
|
'1.2.840.10008.1.2.5' => 'RLE Lossless', |
|
5840
|
|
|
|
|
|
|
'1.2.840.10008.1.2.6.1' => 'RFC 2557 MIME encapsulation', |
|
5841
|
|
|
|
|
|
|
'1.2.840.10008.1.2.6.2' => 'XML Encoding', |
|
5842
|
|
|
|
|
|
|
'1.2.840.10008.1.2.7.1' => 'SMPTE ST 2110-20 Uncompressed Progressive Active Video', |
|
5843
|
|
|
|
|
|
|
'1.2.840.10008.1.2.7.2' => 'SMPTE ST 2110-20 Uncompressed Interlaced Active Video', |
|
5844
|
|
|
|
|
|
|
'1.2.840.10008.1.2.7.3' => 'SMPTE ST 2110-30 PCM Digital Audio', |
|
5845
|
|
|
|
|
|
|
'1.2.840.10008.1.2.8.1' => 'Deflated Image Frame Compression', |
|
5846
|
|
|
|
|
|
|
'1.2.840.10008.1.3.10' => 'Media Storage Directory Storage', |
|
5847
|
|
|
|
|
|
|
'1.2.840.10008.1.4.1.1' => 'Talairach Brain Atlas Frame of Reference', |
|
5848
|
|
|
|
|
|
|
'1.2.840.10008.1.4.1.2' => 'SPM2 T1 Frame of Reference', |
|
5849
|
|
|
|
|
|
|
'1.2.840.10008.1.4.1.3' => 'SPM2 T2 Frame of Reference', |
|
5850
|
|
|
|
|
|
|
'1.2.840.10008.1.4.1.4' => 'SPM2 PD Frame of Reference', |
|
5851
|
|
|
|
|
|
|
'1.2.840.10008.1.4.1.5' => 'SPM2 EPI Frame of Reference', |
|
5852
|
|
|
|
|
|
|
'1.2.840.10008.1.4.1.6' => 'SPM2 FIL T1 Frame of Reference', |
|
5853
|
|
|
|
|
|
|
'1.2.840.10008.1.4.1.7' => 'SPM2 PET Frame of Reference', |
|
5854
|
|
|
|
|
|
|
'1.2.840.10008.1.4.1.8' => 'SPM2 TRANSM Frame of Reference', |
|
5855
|
|
|
|
|
|
|
'1.2.840.10008.1.4.1.9' => 'SPM2 SPECT Frame of Reference', |
|
5856
|
|
|
|
|
|
|
'1.2.840.10008.1.4.1.10' => 'SPM2 GRAY Frame of Reference', |
|
5857
|
|
|
|
|
|
|
'1.2.840.10008.1.4.1.11' => 'SPM2 WHITE Frame of Reference', |
|
5858
|
|
|
|
|
|
|
'1.2.840.10008.1.4.1.12' => 'SPM2 CSF Frame of Reference', |
|
5859
|
|
|
|
|
|
|
'1.2.840.10008.1.4.1.13' => 'SPM2 BRAINMASK Frame of Reference', |
|
5860
|
|
|
|
|
|
|
'1.2.840.10008.1.4.1.14' => 'SPM2 AVG305T1 Frame of Reference', |
|
5861
|
|
|
|
|
|
|
'1.2.840.10008.1.4.1.15' => 'SPM2 AVG152T1 Frame of Reference', |
|
5862
|
|
|
|
|
|
|
'1.2.840.10008.1.4.1.16' => 'SPM2 AVG152T2 Frame of Reference', |
|
5863
|
|
|
|
|
|
|
'1.2.840.10008.1.4.1.17' => 'SPM2 AVG152PD Frame of Reference', |
|
5864
|
|
|
|
|
|
|
'1.2.840.10008.1.4.1.18' => 'SPM2 SINGLESUBJT1 Frame of Reference', |
|
5865
|
|
|
|
|
|
|
'1.2.840.10008.1.4.2.1' => 'ICBM 452 T1 Frame of Reference', |
|
5866
|
|
|
|
|
|
|
'1.2.840.10008.1.4.2.2' => 'ICBM Single Subject MRI Frame of Reference', |
|
5867
|
|
|
|
|
|
|
'1.2.840.10008.1.4.3.1' => 'IEC 61217 Fixed Coordinate System Frame of Reference', |
|
5868
|
|
|
|
|
|
|
'1.2.840.10008.1.4.3.2' => 'Standard Robotic-Arm Coordinate System Frame of Reference', |
|
5869
|
|
|
|
|
|
|
'1.2.840.10008.1.4.3.3' => 'IEC 61217 Table Top Coordinate System Frame of Reference', |
|
5870
|
|
|
|
|
|
|
'1.2.840.10008.1.4.4.1' => 'SRI24 Frame of Reference', |
|
5871
|
|
|
|
|
|
|
'1.2.840.10008.1.4.5.1' => 'Colin27 Frame of Reference', |
|
5872
|
|
|
|
|
|
|
'1.2.840.10008.1.4.6.1' => 'LPBA40/AIR Frame of Reference', |
|
5873
|
|
|
|
|
|
|
'1.2.840.10008.1.4.6.2' => 'LPBA40/FLIRT Frame of Reference', |
|
5874
|
|
|
|
|
|
|
'1.2.840.10008.1.4.6.3' => 'LPBA40/SPM5 Frame of Reference', |
|
5875
|
|
|
|
|
|
|
'1.2.840.10008.1.5.1' => 'Hot Iron Color Palette SOP Instance', |
|
5876
|
|
|
|
|
|
|
'1.2.840.10008.1.5.2' => 'PET Color Palette SOP Instance', |
|
5877
|
|
|
|
|
|
|
'1.2.840.10008.1.5.3' => 'Hot Metal Blue Color Palette SOP Instance', |
|
5878
|
|
|
|
|
|
|
'1.2.840.10008.1.5.4' => 'PET 20 Step Color Palette SOP Instance', |
|
5879
|
|
|
|
|
|
|
'1.2.840.10008.1.5.5' => 'Spring Color Palette SOP Instance', |
|
5880
|
|
|
|
|
|
|
'1.2.840.10008.1.5.6' => 'Summer Color Palette SOP Instance', |
|
5881
|
|
|
|
|
|
|
'1.2.840.10008.1.5.7' => 'Fall Color Palette SOP Instance', |
|
5882
|
|
|
|
|
|
|
'1.2.840.10008.1.5.8' => 'Winter Color Palette SOP Instance', |
|
5883
|
|
|
|
|
|
|
'1.2.840.10008.1.9' => 'Basic Study Content Notification SOP Class', |
|
5884
|
|
|
|
|
|
|
'1.2.840.10008.1.20' => 'Papyrus 3 Implicit VR Little Endian (Retired)', |
|
5885
|
|
|
|
|
|
|
'1.2.840.10008.1.20.1' => 'Storage Commitment Push Model SOP Class', |
|
5886
|
|
|
|
|
|
|
'1.2.840.10008.1.20.1.1' => 'Storage Commitment Push Model SOP Instance', |
|
5887
|
|
|
|
|
|
|
'1.2.840.10008.1.20.2' => 'Storage Commitment Pull Model SOP Class ', |
|
5888
|
|
|
|
|
|
|
'1.2.840.10008.1.20.2.1' => 'Storage Commitment Pull Model SOP Instance ', |
|
5889
|
|
|
|
|
|
|
'1.2.840.10008.1.40' => 'Procedural Event Logging SOP Class', |
|
5890
|
|
|
|
|
|
|
'1.2.840.10008.1.40.1' => 'Procedural Event Logging SOP Instance', |
|
5891
|
|
|
|
|
|
|
'1.2.840.10008.1.42' => 'Substance Administration Logging SOP Class', |
|
5892
|
|
|
|
|
|
|
'1.2.840.10008.1.42.1' => 'Substance Administration Logging SOP Instance', |
|
5893
|
|
|
|
|
|
|
'1.2.840.10008.2.6.1' => 'DICOM UID Registry', |
|
5894
|
|
|
|
|
|
|
'1.2.840.10008.2.16.4' => 'DICOM Controlled Terminology', |
|
5895
|
|
|
|
|
|
|
'1.2.840.10008.2.16.5' => 'Adult Mouse Anatomy Ontology', |
|
5896
|
|
|
|
|
|
|
'1.2.840.10008.2.16.6' => 'Uberon Ontology', |
|
5897
|
|
|
|
|
|
|
'1.2.840.10008.2.16.7' => 'Integrated Taxonomic Information System (ITIS) Taxonomic Serial Number (TSN)', |
|
5898
|
|
|
|
|
|
|
'1.2.840.10008.2.16.8' => 'Mouse Genome Initiative (MGI)', |
|
5899
|
|
|
|
|
|
|
'1.2.840.10008.2.16.9' => 'PubChem Compound CID', |
|
5900
|
|
|
|
|
|
|
'1.2.840.10008.2.16.10' => 'Dublin Core', |
|
5901
|
|
|
|
|
|
|
'1.2.840.10008.2.16.11' => 'New York University Melanoma Clinical Cooperative Group', |
|
5902
|
|
|
|
|
|
|
'1.2.840.10008.2.16.12' => 'Mayo Clinic Non-radiological Images Specific Body Structure Anatomical Surface Region Guide', |
|
5903
|
|
|
|
|
|
|
'1.2.840.10008.2.16.13' => 'Image Biomarker Standardisation Initiative', |
|
5904
|
|
|
|
|
|
|
'1.2.840.10008.2.16.14' => 'Radiomics Ontology', |
|
5905
|
|
|
|
|
|
|
'1.2.840.10008.2.16.15' => 'RadElement', |
|
5906
|
|
|
|
|
|
|
'1.2.840.10008.2.16.16' => 'ICD-11', |
|
5907
|
|
|
|
|
|
|
'1.2.840.10008.2.16.17' => 'Unified numbering system (UNS) for metals and alloys', |
|
5908
|
|
|
|
|
|
|
'1.2.840.10008.2.16.18' => 'Research Resource Identification', |
|
5909
|
|
|
|
|
|
|
'1.2.840.10008.3.1.1.1' => 'DICOM Application Context Name', |
|
5910
|
|
|
|
|
|
|
'1.2.840.10008.3.1.2.1.1' => 'Detached Patient Management SOP Class', |
|
5911
|
|
|
|
|
|
|
'1.2.840.10008.3.1.2.1.4' => 'Detached Patient Management Meta SOP Class', |
|
5912
|
|
|
|
|
|
|
'1.2.840.10008.3.1.2.2.1' => 'Detached Visit Management SOP Class', |
|
5913
|
|
|
|
|
|
|
'1.2.840.10008.3.1.2.3.1' => 'Detached Study Management SOP Class', |
|
5914
|
|
|
|
|
|
|
'1.2.840.10008.3.1.2.3.2' => 'Study Component Management SOP Class', |
|
5915
|
|
|
|
|
|
|
'1.2.840.10008.3.1.2.3.3' => 'Modality Performed Procedure Step SOP Class', |
|
5916
|
|
|
|
|
|
|
'1.2.840.10008.3.1.2.3.4' => 'Modality Performed Procedure Step Retrieve SOP Class', |
|
5917
|
|
|
|
|
|
|
'1.2.840.10008.3.1.2.3.5' => 'Modality Performed Procedure Step Notification SOP Class', |
|
5918
|
|
|
|
|
|
|
'1.2.840.10008.3.1.2.5.1' => 'Detached Results Management SOP Class', |
|
5919
|
|
|
|
|
|
|
'1.2.840.10008.3.1.2.5.4' => 'Detached Results Management Meta SOP Class', |
|
5920
|
|
|
|
|
|
|
'1.2.840.10008.3.1.2.5.5' => 'Detached Study Management Meta SOP Class', |
|
5921
|
|
|
|
|
|
|
'1.2.840.10008.3.1.2.6.1' => 'Detached Interpretation Management SOP Class', |
|
5922
|
|
|
|
|
|
|
'1.2.840.10008.4.2' => 'Storage Service Class Service Class PS 3.4', |
|
5923
|
|
|
|
|
|
|
'1.2.840.10008.5.1.1.1' => 'Basic Film Session SOP Class', |
|
5924
|
|
|
|
|
|
|
'1.2.840.10008.5.1.1.2' => 'Basic Film Box SOP Class', |
|
5925
|
|
|
|
|
|
|
'1.2.840.10008.5.1.1.4' => 'Basic Grayscale Image Box SOP Class', |
|
5926
|
|
|
|
|
|
|
'1.2.840.10008.5.1.1.4.1' => 'Basic Color Image Box SOP Class', |
|
5927
|
|
|
|
|
|
|
'1.2.840.10008.5.1.1.4.2' => 'Referenced Image Box SOP Class', |
|
5928
|
|
|
|
|
|
|
'1.2.840.10008.5.1.1.9' => 'Basic Grayscale Print ManagementMeta SOP Class', |
|
5929
|
|
|
|
|
|
|
'1.2.840.10008.5.1.1.9.1' => 'Referenced Grayscale Print Management Meta SOP Class', |
|
5930
|
|
|
|
|
|
|
'1.2.840.10008.5.1.1.14' => 'Print Job SOP Class', |
|
5931
|
|
|
|
|
|
|
'1.2.840.10008.5.1.1.15' => 'Basic Annotation Box SOP Class', |
|
5932
|
|
|
|
|
|
|
'1.2.840.10008.5.1.1.16' => 'Printer SOP Class', |
|
5933
|
|
|
|
|
|
|
'1.2.840.10008.5.1.1.16.376' => 'Printer Configuration Retrieval SOP Class', |
|
5934
|
|
|
|
|
|
|
'1.2.840.10008.5.1.1.17' => 'Printer SOP Instance', |
|
5935
|
|
|
|
|
|
|
'1.2.840.10008.5.1.1.17.376' => 'Printer Configuration RetrievalSOP Instance', |
|
5936
|
|
|
|
|
|
|
'1.2.840.10008.5.1.1.18' => 'Basic Color Print Management Meta SOP Class', |
|
5937
|
|
|
|
|
|
|
'1.2.840.10008.5.1.1.18.1' => 'Referenced Color Print Management Meta SOP Class', |
|
5938
|
|
|
|
|
|
|
'1.2.840.10008.5.1.1.22' => 'VOI LUT Box SOP Class', |
|
5939
|
|
|
|
|
|
|
'1.2.840.10008.5.1.1.23' => 'Presentation LUT SOP Class', |
|
5940
|
|
|
|
|
|
|
'1.2.840.10008.5.1.1.24' => 'Image Overlay Box SOP Class', |
|
5941
|
|
|
|
|
|
|
'1.2.840.10008.5.1.1.24.1' => 'Basic Print Image Overlay Box SOP Class', |
|
5942
|
|
|
|
|
|
|
'1.2.840.10008.5.1.1.25' => 'Print Queue SOP Instance', |
|
5943
|
|
|
|
|
|
|
'1.2.840.10008.5.1.1.26' => 'Print Queue Management SOP Class', |
|
5944
|
|
|
|
|
|
|
'1.2.840.10008.5.1.1.27' => 'Stored Print Storage SOP Class', |
|
5945
|
|
|
|
|
|
|
'1.2.840.10008.5.1.1.29' => 'Hardcopy Grayscale Image', |
|
5946
|
|
|
|
|
|
|
'1.2.840.10008.5.1.1.30' => 'Hardcopy Color Image Storage SOP Class', |
|
5947
|
|
|
|
|
|
|
'1.2.840.10008.5.1.1.31' => 'Pull Print Request SOP Class', |
|
5948
|
|
|
|
|
|
|
'1.2.840.10008.5.1.1.32' => 'Pull Stored Print Management Meta SOP Class', |
|
5949
|
|
|
|
|
|
|
'1.2.840.10008.5.1.1.33' => 'Media Creation Management SOP Class', |
|
5950
|
|
|
|
|
|
|
'1.2.840.10008.5.1.1.40' => 'Display System SOP Class', |
|
5951
|
|
|
|
|
|
|
'1.2.840.10008.5.1.1.40.1' => 'Display System SOP Instance', |
|
5952
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.1' => 'Computed Radiography Image Storage', |
|
5953
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.1.1' => 'Digital X-Ray Image Storage - For Presentation', |
|
5954
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.1.1.1' => 'Digital X-Ray Image Storage - For Processing', |
|
5955
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.1.2' => 'Digital Mammography X-Ray Image Storage - For Presentation', |
|
5956
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.1.2.1' => 'Digital Mammography X-Ray Image Storage - For Processing', |
|
5957
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.1.3' => 'Digital Intra-oral X-Ray Image Storage - For Presentation', |
|
5958
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.1.3.1' => 'Digital Intra-oral X-Ray Image Storage - For Processing', |
|
5959
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.2' => 'CT Image Storage', |
|
5960
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.2.1' => 'Enhanced CT Image Storage', |
|
5961
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.2.2' => 'Legacy Converted Enhanced CT Image Storage', |
|
5962
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.3' => 'Ultrasound Multi-frame Image Storage ', |
|
5963
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.3.1' => 'Ultrasound Multi-frame Image Storage', |
|
5964
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.4' => 'MR Image Storage', |
|
5965
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.4.1' => 'Enhanced MR Image Storage', |
|
5966
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.4.2' => 'MR Spectroscopy Storage', |
|
5967
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.4.3' => 'Enhanced MR Color Image Storage', |
|
5968
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.4.4' => 'Legacy Converted Enhanced MR Image Storage', |
|
5969
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.5' => 'Nuclear Medicine Image Storage', |
|
5970
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.6' => 'Ultrasound Image Storage', |
|
5971
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.6.1' => 'Ultrasound Image Storage', |
|
5972
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.6.2' => 'Enhanced US Volume Storage', |
|
5973
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.6.3' => 'Photoacoustic Image Storage', |
|
5974
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.7' => 'Secondary Capture Image Storage', |
|
5975
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.7.1' => 'Multi-frame Single Bit Secondary', |
|
5976
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.7.2' => 'Multi-frame Grayscale Byte Secondary Capture Image Storage', |
|
5977
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.7.3' => 'Multi-frame Grayscale Word Secondary Capture Image Storage', |
|
5978
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.7.4' => 'Multi-frame True Color Secondary Capture Image Storage', |
|
5979
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.8' => 'Standalone Overlay Storage', |
|
5980
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.9' => 'Standalone Curve Storage', |
|
5981
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.9.1' => 'Waveform Storage - Trial (Retired)', |
|
5982
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.9.1.1' => '12-lead ECG Waveform Storage', |
|
5983
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.9.1.2' => 'General ECG Waveform Storage', |
|
5984
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.9.1.3' => 'Ambulatory ECG Waveform Storage', |
|
5985
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.9.1.4' => 'General 32-bit ECG Waveform Storage', |
|
5986
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.9.2.1' => 'Hemodynamic Waveform Storage', |
|
5987
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.9.3.1' => 'Cardiac Electrophysiology Waveform Storage', |
|
5988
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.9.4.1' => 'Basic Voice Audio Waveform Storage', |
|
5989
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.9.4.2' => 'General Audio Waveform Storage', |
|
5990
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.9.5.1' => 'Arterial Pulse Waveform Storage', |
|
5991
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.9.6.1' => 'Respiratory Waveform Storage', |
|
5992
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.9.6.2' => 'Multi-channel Respiratory Waveform Storage', |
|
5993
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.9.7.1' => 'Routine Scalp Electroencephalogram Waveform Storage', |
|
5994
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.9.7.2' => 'Electromyogram Waveform Storage', |
|
5995
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.9.7.3' => 'Electrooculogram Waveform Storage', |
|
5996
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.9.7.4' => 'Sleep Electroencephalogram Waveform Storage', |
|
5997
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.9.8.1' => 'Body Position Waveform Storage', |
|
5998
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.9.100.1' => 'Waveform Presentation State Storage', |
|
5999
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.9.100.2' => 'Waveform Acquisition Presentation State Storage', |
|
6000
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.10' => 'Standalone Modality LUT Storage', |
|
6001
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.11' => 'Standalone VOI LUT Storage', |
|
6002
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.11.1' => 'Grayscale Softcopy Presentation State Storage SOP Class', |
|
6003
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.11.2' => 'Color Softcopy Presentation State Storage SOP Class', |
|
6004
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.11.3' => 'Pseudo-Color Softcopy Presentation State Storage SOP Class', |
|
6005
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.11.4' => 'Blending Softcopy Presentation State Storage SOP Class', |
|
6006
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.11.5' => 'XA/XRF Grayscale Softcopy Presentation State Storage', |
|
6007
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.11.6' => 'Grayscale Planar MPR Volumetric Presentation State Storage', |
|
6008
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.11.7' => 'Compositing Planar MPR Volumetric Presentation State Storage', |
|
6009
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.11.8' => 'Advanced Blending Presentation State Storage', |
|
6010
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.11.9' => 'Volume Rendering Volumetric Presentation State Storage', |
|
6011
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.11.10' => 'Segmented Volume Rendering Volumetric Presentation State Storage', |
|
6012
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.11.11' => 'Multiple Volume Rendering Volumetric Presentation State Storage', |
|
6013
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.11.12' => 'Variable Modality LUT Softcopy Presentation State Storage', |
|
6014
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.12.1' => 'X-Ray Angiographic Image Storage', |
|
6015
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.12.1.1' => 'Enhanced XA Image Storage', |
|
6016
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.12.2' => 'X-Ray Radiofluoroscopic Image Storage', |
|
6017
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.12.2.1' => 'Enhanced XRF Image Storage', |
|
6018
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.12.3' => 'X-Ray Angiographic Bi-Plane Image Storage ', |
|
6019
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.13.1.1' => 'X-Ray 3D Angiographic Image Storage', |
|
6020
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.13.1.2' => 'X-Ray 3D Craniofacial Image Storage', |
|
6021
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.13.1.3' => 'Breast Tomosynthesis Image Storage', |
|
6022
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.13.1.4' => 'Breast Projection X-Ray Image Storage - For Presentation', |
|
6023
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.13.1.5' => 'Breast Projection X-Ray Image Storage - For Processing', |
|
6024
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.14.1' => 'Intravascular Optical Coherence Tomography Image Storage - For Presentation', |
|
6025
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.14.2' => 'Intravascular Optical Coherence Tomography Image Storage - For Processing', |
|
6026
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.20' => 'Nuclear Medicine Image Storage', |
|
6027
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.30' => 'Parametric Map Storage', |
|
6028
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.66' => 'Raw Data Storage', |
|
6029
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.66.1' => 'Spatial Registration Storage', |
|
6030
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.66.2' => 'Spatial Fiducials Storage', |
|
6031
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.66.3' => 'Deformable Spatial Registration Storage', |
|
6032
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.66.4' => 'Segmentation Storage', |
|
6033
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.66.5' => 'Surface Segmentation Storage', |
|
6034
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.66.6' => 'Tractography Results Storage', |
|
6035
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.66.7' => 'Label Map Segmentation Storage', |
|
6036
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.66.8' => 'Height Map Segmentation Storage', |
|
6037
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.66' => 'Raw Data Storage', |
|
6038
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.67' => 'Real World Value Mapping Storage', |
|
6039
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.68.1' => 'Surface Scan Mesh Storage', |
|
6040
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.68.2' => 'Surface Scan Point Cloud Storage', |
|
6041
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.77.1' => 'VL Image Storage ', |
|
6042
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.77.1.1' => 'VL Endoscopic Image Storage', |
|
6043
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.77.1.1.1' => 'Video Endoscopic Image Storage', |
|
6044
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.77.1.2' => 'VL Microscopic Image Storage', |
|
6045
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.77.1.2.1' => 'Video Microscopic Image Storage', |
|
6046
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.77.1.3' => 'VL Slide-Coordinates Microscopic Image Storage', |
|
6047
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.77.1.4' => 'VL Photographic Image Storage', |
|
6048
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.77.1.4.1' => 'Video Photographic Image Storage', |
|
6049
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.77.1.5.1' => 'Ophthalmic Photography 8 Bit Image Storage', |
|
6050
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.77.1.5.2' => 'Ophthalmic Photography 16 Bit Image Storage', |
|
6051
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.77.1.5.3' => 'Stereometric Relationship Storage', |
|
6052
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.77.1.5.4' => 'Ophthalmic Tomography Image Storage', |
|
6053
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.77.1.5.5' => 'Wide Field Ophthalmic Photography Stereographic Projection Image Storage', |
|
6054
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.77.1.5.6' => 'Wide Field Ophthalmic Photography 3D Coordinates Image Storage', |
|
6055
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.77.1.5.7' => 'Ophthalmic Optical Coherence Tomography En Face Image Storage', |
|
6056
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.77.1.5.8' => 'Ophthalmic Optical Coherence Tomography B-scan Volume Analysis Storage', |
|
6057
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.77.1.6' => 'VL Whole Slide Microscopy Image Storage', |
|
6058
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.77.1.7' => 'Dermoscopic Photography Image Storage', |
|
6059
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.77.1.8' => 'Confocal Microscopy Image Storage', |
|
6060
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.77.1.9' => 'Confocal Microscopy Tiled Pyramidal Image Storage', |
|
6061
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.77.2' => 'VL Multi-frame Image Storage', |
|
6062
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.78.1' => 'Lensometry Measurements Storage', |
|
6063
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.78.2' => 'Autorefraction Measurements Storage', |
|
6064
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.78.3' => 'Keratometry Measurements Storage', |
|
6065
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.78.4' => 'Subjective Refraction Measurements Storage', |
|
6066
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.78.5' => 'Visual Acuity Measurements Storage', |
|
6067
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.78.6' => 'Spectacle Prescription Report Storage', |
|
6068
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.78.7' => 'Ophthalmic Axial Measurements Storage', |
|
6069
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.78.8' => 'Intraocular Lens Calculations Storage', |
|
6070
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.79.1' => 'Macular Grid Thickness and Volume Report Storage SOP Class', |
|
6071
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.80.1' => 'Ophthalmic Visual Field Static Perimetry Measurements Storage', |
|
6072
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.81.1' => 'Ophthalmic Thickness Map Storage', |
|
6073
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.82.1' => 'Corneal Topography Map Storage', |
|
6074
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.88.1' => 'Text SR Storage - Trial (Retired)', |
|
6075
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.88.2' => 'Audio SR Storage - Trial (Retired)', |
|
6076
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.88.3' => 'Detail SR Storage - Trial (Retired)', |
|
6077
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.88.4' => 'Comprehensive SR Storage - Trial (Retired)', |
|
6078
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.88.11' => 'Basic Text SR', |
|
6079
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.88.22' => 'Enhanced SR', |
|
6080
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.88.33' => 'Comprehensive SR', |
|
6081
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.88.34' => 'Comprehensive 3D SR Storage', |
|
6082
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.88.35' => 'Extensible SR Storage', |
|
6083
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.88.40' => 'Procedure Log Storage', |
|
6084
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.88.50' => 'Mammography CAD SR', |
|
6085
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.88.59' => 'Key Object Selection Document', |
|
6086
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.88.65' => 'Chest CAD SR', |
|
6087
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.88.67' => 'X-Ray Radiation Dose SR Storage', |
|
6088
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.88.68' => 'Radiopharmaceutical Radiation Dose SR Storage', |
|
6089
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.88.69' => 'Colon CAD SR', |
|
6090
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.88.70' => 'Implantation Plan SR Document Storage', |
|
6091
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.88.71' => 'Acquisition Context SR Storage', |
|
6092
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.88.72' => 'Simplified Adult Echo SR Storage', |
|
6093
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.88.73' => 'Patient Radiation Dose SR Storage', |
|
6094
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.88.74' => 'Planned Imaging Agent Administration SR Storage', |
|
6095
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.88.75' => 'Performed Imaging Agent Administration SR Storage', |
|
6096
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.88.76' => 'Enhanced X-Ray Radiation Dose SR Storage', |
|
6097
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.88.77' => 'Waveform Annotation SR Storage', |
|
6098
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.90.1' => 'Content Assessment Results Storage', |
|
6099
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.91.1' => 'Microscopy Bulk Simple Annotations Storage', |
|
6100
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.104.1' => 'Encapsulated PDF Storage', |
|
6101
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.104.2' => 'Encapsulated CDA Storage', |
|
6102
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.104.3' => 'Encapsulated STL Storage', |
|
6103
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.104.4' => 'Encapsulated OBJ Storage', |
|
6104
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.104.5' => 'Encapsulated MTL Storage', |
|
6105
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.128.1' => 'Legacy Converted Enhanced PET Image Storage', |
|
6106
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.128' => 'Positron Emission Tomography Image Storage', |
|
6107
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.129' => 'Standalone PET Curve Storage', |
|
6108
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.130' => 'Enhanced PET Image Storage', |
|
6109
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.131' => 'Basic Structured Display Storage', |
|
6110
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.200.1' => 'CT Defined Procedure Protocol Storage', |
|
6111
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.200.2' => 'CT Performed Procedure Protocol Storage', |
|
6112
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.200.3' => 'Protocol Approval Storage', |
|
6113
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.200.4' => 'Protocol Approval Information Model - FIND', |
|
6114
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.200.5' => 'Protocol Approval Information Model - MOVE', |
|
6115
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.200.6' => 'Protocol Approval Information Model - GET', |
|
6116
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.200.7' => 'XA Defined Procedure Protocol Storage', |
|
6117
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.200.8' => 'XA Performed Procedure Protocol Storage', |
|
6118
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.201.1' => 'Inventory Storage', |
|
6119
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.201.1.1' => 'Storage Management SOP Instance', |
|
6120
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.201.2' => 'Inventory - FIND', |
|
6121
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.201.3' => 'Inventory - MOVE', |
|
6122
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.201.4' => 'Inventory - GET', |
|
6123
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.201.5' => 'Inventory Creation', |
|
6124
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.201.6' => 'Repository Query', |
|
6125
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.481.1' => 'RT Image Storage', |
|
6126
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.481.2' => 'RT Dose Storage', |
|
6127
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.481.3' => 'RT Structure Set Storage', |
|
6128
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.481.4' => 'RT Beams Treatment Record Storage', |
|
6129
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.481.5' => 'RT Plan Storage', |
|
6130
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.481.6' => 'RT Brachy Treatment Record Storage', |
|
6131
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.481.7' => 'RT Treatment Summary Record Storage', |
|
6132
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.481.8' => 'RT Ion Plan Storage', |
|
6133
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.481.9' => 'RT Ion Beams Treatment Record Storage', |
|
6134
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.481.10' => 'RT Physician Intent Storage', |
|
6135
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.481.11' => 'RT Segment Annotation Storage', |
|
6136
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.481.12' => 'RT Radiation Set Storage', |
|
6137
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.481.13' => 'C-Arm Photon-Electron Radiation Storage', |
|
6138
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.481.14' => 'Tomotherapeutic Radiation Storage', |
|
6139
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.481.15' => 'Robotic-Arm Radiation Storage', |
|
6140
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.481.16' => 'RT Radiation Record Set Storage', |
|
6141
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.481.17' => 'RT Radiation Salvage Record Storage', |
|
6142
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.481.18' => 'Tomotherapeutic Radiation Record Storage', |
|
6143
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.481.19' => 'C-Arm Photon-Electron Radiation Record Storage', |
|
6144
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.481.20' => 'Robotic Radiation Record Storage', |
|
6145
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.481.21' => 'RT Radiation Set Delivery Instruction Storage', |
|
6146
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.481.22' => 'RT Treatment Preparation Storage', |
|
6147
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.481.23' => 'Enhanced RT Image Storage', |
|
6148
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.481.24' => 'Enhanced Continuous RT Image Storage', |
|
6149
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.481.25' => 'RT Patient Position Acquisition Instruction Storage', |
|
6150
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.501.1' => 'DICOS CT Image Storage', |
|
6151
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.501.2.1' => 'DICOS Digital X-Ray Image Storage - For Presentation', |
|
6152
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.501.2.2' => 'DICOS Digital X-Ray Image Storage - For Processing', |
|
6153
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.501.3' => 'DICOS Threat Detection Report Storage', |
|
6154
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.501.4' => 'DICOS 2D AIT Storage', |
|
6155
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.501.5' => 'DICOS 3D AIT Storage', |
|
6156
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.501.6' => 'DICOS Quadrupole Resonance (QR) Storage', |
|
6157
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.601.1' => 'Eddy Current Image Storage', |
|
6158
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.601.2' => 'Eddy Current Multi-frame Image Storage', |
|
6159
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.601.3' => 'Thermography Image Storage', |
|
6160
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.601.4' => 'Thermography Multi-frame Image Storage', |
|
6161
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.1.601.5' => 'Ultrasound Waveform Storage', |
|
6162
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.2.1.1' => 'Patient Root Query/Retrieve Information Model - FIND', |
|
6163
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.2.1.2' => 'Patient Root Query/Retrieve Information Model - MOVE', |
|
6164
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.2.1.3' => 'Patient Root Query/Retrieve Information Model - GET', |
|
6165
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.2.2.1' => 'Study Root Query/Retrieve Information Model - FIND', |
|
6166
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.2.2.2' => 'Study Root Query/Retrieve Information Model - MOVE', |
|
6167
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.2.2.3' => 'Study Root Query/Retrieve Information Model - GET', |
|
6168
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.2.3.1' => 'Patient/Study Only Query/Retrieve Information Model - FIND', |
|
6169
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.2.3.2' => 'Patient/Study Only Query/Retrieve Information Model - MOVE', |
|
6170
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.2.3.3' => 'Patient/Study Only Query/Retrieve Information Model - GET', |
|
6171
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.2.4.2' => 'Composite Instance Root Retrieve - MOVE', |
|
6172
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.2.4.3' => 'Composite Instance Root Retrieve - GET', |
|
6173
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.1.2.5.3' => 'Composite Instance Retrieve Without Bulk Data - GET', |
|
6174
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.20.1' => 'Defined Procedure Protocol Information Model - FIND', |
|
6175
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.20.2' => 'Defined Procedure Protocol Information Model - MOVE', |
|
6176
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.20.3' => 'Defined Procedure Protocol Information Model - GET', |
|
6177
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.31' => 'Modality Worklist Information Model - FIND', |
|
6178
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.32.1' => 'General Purpose Worklist Information Model - FIND', |
|
6179
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.32.2' => 'General Purpose Scheduled Procedure Step SOP Class', |
|
6180
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.32.3' => 'General Purpose Performed Procedure Step SOP Class', |
|
6181
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.32' => 'General Purpose Worklist Management Meta SOP Class', |
|
6182
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.33' => 'Instance Availability Notification SOP Class', |
|
6183
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.34.1' => 'RT Beams Delivery Instruction Storage', |
|
6184
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.34.2' => 'RT Conventional Machine Verification', |
|
6185
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.34.3' => 'RT Ion Machine Verification', |
|
6186
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.34.4' => 'Unified Worklist and Procedure Step Service Class', |
|
6187
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.34.4.1' => 'Unified Procedure Step - Push SOP Class', |
|
6188
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.34.4.2' => 'Unified Procedure Step - Watch SOP Class', |
|
6189
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.34.4.3' => 'Unified Procedure Step - Pull SOP Class', |
|
6190
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.34.4.4' => 'Unified Procedure Step - Event SOP Class', |
|
6191
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.34.5' => 'Unified Worklist and Procedure Step SOP Instance', |
|
6192
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.34.5.1' => 'UPS Filtered Global Subscription SOP Instance', |
|
6193
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.34.6' => 'Unified Worklist and Procedure Step Service Class', |
|
6194
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.34.6.1' => 'Unified Procedure Step - Push SOP Class', |
|
6195
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.34.6.2' => 'Unified Procedure Step - Watch SOP Class', |
|
6196
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.34.6.3' => 'Unified Procedure Step - Pull SOP Class', |
|
6197
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.34.6.4' => 'Unified Procedure Step - Event SOP Class', |
|
6198
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.34.6.5' => 'Unified Procedure Step - Query SOP Class', |
|
6199
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.34.7' => 'RT Beams Delivery Instruction Storage', |
|
6200
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.34.8' => 'RT Conventional Machine Verification', |
|
6201
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.34.9' => 'RT Ion Machine Verification', |
|
6202
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.34.10' => 'RT Brachy Application Setup Delivery Instruction Storage', |
|
6203
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.37.1' => 'General Relevant Patient Information Query', |
|
6204
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.37.2' => 'Breast Imaging Relevant Patient Information Query', |
|
6205
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.37.3' => 'Cardiac Relevant Patient Information Query', |
|
6206
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.38.1' => 'Hanging Protocol Storage', |
|
6207
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.38.2' => 'Hanging Protocol Information Model - FIND', |
|
6208
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.38.3' => 'Hanging Protocol Information Model - MOVE', |
|
6209
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.38.4' => 'Hanging Protocol Information Model - GET', |
|
6210
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.39.1' => 'Color Palette Storage', |
|
6211
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.39.2' => 'Color Palette Information Model - FIND', |
|
6212
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.39.3' => 'Color Palette Information Model - MOVE', |
|
6213
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.39.4' => 'Color Palette Information Model - GET', |
|
6214
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.41' => 'Product Characteristics Query SOP Class', |
|
6215
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.42' => 'Substance Approval Query SOP Class', |
|
6216
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.43.1' => 'Generic Implant Template Storage', |
|
6217
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.43.2' => 'Generic Implant Template Information Model - FIND', |
|
6218
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.43.3' => 'Generic Implant Template Information Model - MOVE', |
|
6219
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.43.4' => 'Generic Implant Template Information Model - GET', |
|
6220
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.44.1' => 'Implant Assembly Template Storage', |
|
6221
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.44.2' => 'Implant Assembly Template Information Model - FIND', |
|
6222
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.44.3' => 'Implant Assembly Template Information Model - MOVE', |
|
6223
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.44.4' => 'Implant Assembly Template Information Model - GET', |
|
6224
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.45.1' => 'Implant Template Group Storage', |
|
6225
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.45.2' => 'Implant Template Group Information Model - FIND', |
|
6226
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.45.3' => 'Implant Template Group Information Model - MOVE', |
|
6227
|
|
|
|
|
|
|
'1.2.840.10008.5.1.4.45.4' => 'Implant Template Group Information Model - GET', |
|
6228
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1' => 'Anatomic Modifier', |
|
6229
|
|
|
|
|
|
|
'1.2.840.10008.6.1.2' => 'Anatomic Region', |
|
6230
|
|
|
|
|
|
|
'1.2.840.10008.6.1.3' => 'Transducer Approach', |
|
6231
|
|
|
|
|
|
|
'1.2.840.10008.6.1.4' => 'Transducer Orientation', |
|
6232
|
|
|
|
|
|
|
'1.2.840.10008.6.1.5' => 'Ultrasound Beam Path', |
|
6233
|
|
|
|
|
|
|
'1.2.840.10008.6.1.6' => 'Angiographic Interventional Device', |
|
6234
|
|
|
|
|
|
|
'1.2.840.10008.6.1.7' => 'Image Guided Therapeutic Procedure', |
|
6235
|
|
|
|
|
|
|
'1.2.840.10008.6.1.8' => 'Interventional Drug', |
|
6236
|
|
|
|
|
|
|
'1.2.840.10008.6.1.9' => 'Administration Route', |
|
6237
|
|
|
|
|
|
|
'1.2.840.10008.6.1.10' => 'Imaging Contrast Agent', |
|
6238
|
|
|
|
|
|
|
'1.2.840.10008.6.1.11' => 'Imaging Contrast Agent Ingredient', |
|
6239
|
|
|
|
|
|
|
'1.2.840.10008.6.1.12' => 'Radiopharmaceutical Isotope', |
|
6240
|
|
|
|
|
|
|
'1.2.840.10008.6.1.13' => 'Patient Orientation', |
|
6241
|
|
|
|
|
|
|
'1.2.840.10008.6.1.14' => 'Patient Orientation Modifier', |
|
6242
|
|
|
|
|
|
|
'1.2.840.10008.6.1.15' => 'Patient Equipment Relationship', |
|
6243
|
|
|
|
|
|
|
'1.2.840.10008.6.1.16' => 'Cranio-Caudad Angulation', |
|
6244
|
|
|
|
|
|
|
'1.2.840.10008.6.1.17' => 'Radiopharmaceutical', |
|
6245
|
|
|
|
|
|
|
'1.2.840.10008.6.1.18' => 'Nuclear Medicine Projection', |
|
6246
|
|
|
|
|
|
|
'1.2.840.10008.6.1.19' => 'Acquisition Modality', |
|
6247
|
|
|
|
|
|
|
'1.2.840.10008.6.1.20' => 'DICOM Device', |
|
6248
|
|
|
|
|
|
|
'1.2.840.10008.6.1.21' => 'Abstract Prior', |
|
6249
|
|
|
|
|
|
|
'1.2.840.10008.6.1.22' => 'Numeric Value Qualifier', |
|
6250
|
|
|
|
|
|
|
'1.2.840.10008.6.1.23' => 'Measurement Unit', |
|
6251
|
|
|
|
|
|
|
'1.2.840.10008.6.1.24' => 'Real World Value Mapping Unit', |
|
6252
|
|
|
|
|
|
|
'1.2.840.10008.6.1.25' => 'Significance Level', |
|
6253
|
|
|
|
|
|
|
'1.2.840.10008.6.1.26' => 'Measurement Range Concept', |
|
6254
|
|
|
|
|
|
|
'1.2.840.10008.6.1.27' => 'Normality', |
|
6255
|
|
|
|
|
|
|
'1.2.840.10008.6.1.28' => 'Normal Range Value', |
|
6256
|
|
|
|
|
|
|
'1.2.840.10008.6.1.29' => 'Selection Method', |
|
6257
|
|
|
|
|
|
|
'1.2.840.10008.6.1.30' => 'Measurement Uncertainty Concept', |
|
6258
|
|
|
|
|
|
|
'1.2.840.10008.6.1.31' => 'Population Statistical Descriptor', |
|
6259
|
|
|
|
|
|
|
'1.2.840.10008.6.1.32' => 'Sample Statistical Descriptor', |
|
6260
|
|
|
|
|
|
|
'1.2.840.10008.6.1.33' => 'Equation or Table', |
|
6261
|
|
|
|
|
|
|
'1.2.840.10008.6.1.34' => 'Yes-No', |
|
6262
|
|
|
|
|
|
|
'1.2.840.10008.6.1.35' => 'Present-Absent', |
|
6263
|
|
|
|
|
|
|
'1.2.840.10008.6.1.36' => 'Normal-Abnormal', |
|
6264
|
|
|
|
|
|
|
'1.2.840.10008.6.1.37' => 'Laterality', |
|
6265
|
|
|
|
|
|
|
'1.2.840.10008.6.1.38' => 'Positive-Negative', |
|
6266
|
|
|
|
|
|
|
'1.2.840.10008.6.1.39' => 'Complication Severity', |
|
6267
|
|
|
|
|
|
|
'1.2.840.10008.6.1.40' => 'Observer Type', |
|
6268
|
|
|
|
|
|
|
'1.2.840.10008.6.1.41' => 'Observation Subject Class', |
|
6269
|
|
|
|
|
|
|
'1.2.840.10008.6.1.42' => 'Audio Channel Source', |
|
6270
|
|
|
|
|
|
|
'1.2.840.10008.6.1.43' => 'ECG Lead', |
|
6271
|
|
|
|
|
|
|
'1.2.840.10008.6.1.44' => 'Hemodynamic Waveform Source', |
|
6272
|
|
|
|
|
|
|
'1.2.840.10008.6.1.45' => 'Cardiovascular Anatomic Structure', |
|
6273
|
|
|
|
|
|
|
'1.2.840.10008.6.1.46' => 'Electrophysiology Anatomic Location', |
|
6274
|
|
|
|
|
|
|
'1.2.840.10008.6.1.47' => 'Coronary Artery Segment', |
|
6275
|
|
|
|
|
|
|
'1.2.840.10008.6.1.48' => 'Coronary Artery', |
|
6276
|
|
|
|
|
|
|
'1.2.840.10008.6.1.49' => 'Cardiovascular Anatomic Structure Modifier', |
|
6277
|
|
|
|
|
|
|
'1.2.840.10008.6.1.50' => 'CID 3082', |
|
6278
|
|
|
|
|
|
|
'1.2.840.10008.6.1.51' => 'Time Synchronization Channel Type', |
|
6279
|
|
|
|
|
|
|
'1.2.840.10008.6.1.52' => 'Cardiac Procedural State Value', |
|
6280
|
|
|
|
|
|
|
'1.2.840.10008.6.1.53' => 'Electrophysiology Measurement Function/Technique', |
|
6281
|
|
|
|
|
|
|
'1.2.840.10008.6.1.54' => 'Hemodynamic Measurement Technique', |
|
6282
|
|
|
|
|
|
|
'1.2.840.10008.6.1.55' => 'Catheterization Procedure Phase', |
|
6283
|
|
|
|
|
|
|
'1.2.840.10008.6.1.56' => 'Electrophysiology Procedure Phase', |
|
6284
|
|
|
|
|
|
|
'1.2.840.10008.6.1.57' => 'Stress Protocol', |
|
6285
|
|
|
|
|
|
|
'1.2.840.10008.6.1.58' => 'ECG Patient State Value', |
|
6286
|
|
|
|
|
|
|
'1.2.840.10008.6.1.59' => 'Electrode Placement Value', |
|
6287
|
|
|
|
|
|
|
'1.2.840.10008.6.1.60' => 'CID 3264', |
|
6288
|
|
|
|
|
|
|
'1.2.840.10008.6.1.61' => 'Hemodynamic Physiological Challenge', |
|
6289
|
|
|
|
|
|
|
'1.2.840.10008.6.1.62' => 'ECG Annotation', |
|
6290
|
|
|
|
|
|
|
'1.2.840.10008.6.1.63' => 'Hemodynamic Annotation', |
|
6291
|
|
|
|
|
|
|
'1.2.840.10008.6.1.64' => 'Electrophysiology Annotation', |
|
6292
|
|
|
|
|
|
|
'1.2.840.10008.6.1.65' => 'Procedure Log Title', |
|
6293
|
|
|
|
|
|
|
'1.2.840.10008.6.1.66' => 'Log Note Type', |
|
6294
|
|
|
|
|
|
|
'1.2.840.10008.6.1.67' => 'Patient Status and Event', |
|
6295
|
|
|
|
|
|
|
'1.2.840.10008.6.1.68' => 'Percutaneous Entry', |
|
6296
|
|
|
|
|
|
|
'1.2.840.10008.6.1.69' => 'Staff Action', |
|
6297
|
|
|
|
|
|
|
'1.2.840.10008.6.1.70' => 'Procedure Action Value', |
|
6298
|
|
|
|
|
|
|
'1.2.840.10008.6.1.71' => 'Non-coronary Transcatheter Intervention', |
|
6299
|
|
|
|
|
|
|
'1.2.840.10008.6.1.72' => 'Object Reference Purpose', |
|
6300
|
|
|
|
|
|
|
'1.2.840.10008.6.1.73' => 'Consumable Action', |
|
6301
|
|
|
|
|
|
|
'1.2.840.10008.6.1.74' => 'Drug/Contrast Administration', |
|
6302
|
|
|
|
|
|
|
'1.2.840.10008.6.1.75' => 'Drug/Contrast Numeric Parameter', |
|
6303
|
|
|
|
|
|
|
'1.2.840.10008.6.1.76' => 'Intracoronary Device', |
|
6304
|
|
|
|
|
|
|
'1.2.840.10008.6.1.77' => 'Intervention Action/Status', |
|
6305
|
|
|
|
|
|
|
'1.2.840.10008.6.1.78' => 'Adverse Outcome', |
|
6306
|
|
|
|
|
|
|
'1.2.840.10008.6.1.79' => 'Procedure Urgency', |
|
6307
|
|
|
|
|
|
|
'1.2.840.10008.6.1.80' => 'Cardiac Rhythm', |
|
6308
|
|
|
|
|
|
|
'1.2.840.10008.6.1.81' => 'Respiration Rhythm', |
|
6309
|
|
|
|
|
|
|
'1.2.840.10008.6.1.82' => 'Lesion Risk', |
|
6310
|
|
|
|
|
|
|
'1.2.840.10008.6.1.83' => 'Finding Title', |
|
6311
|
|
|
|
|
|
|
'1.2.840.10008.6.1.84' => 'Procedure Action', |
|
6312
|
|
|
|
|
|
|
'1.2.840.10008.6.1.85' => 'Device Use Action', |
|
6313
|
|
|
|
|
|
|
'1.2.840.10008.6.1.86' => 'Numeric Device Characteristic', |
|
6314
|
|
|
|
|
|
|
'1.2.840.10008.6.1.87' => 'Intervention Parameter', |
|
6315
|
|
|
|
|
|
|
'1.2.840.10008.6.1.88' => 'Consumables Parameter', |
|
6316
|
|
|
|
|
|
|
'1.2.840.10008.6.1.89' => 'Equipment Event', |
|
6317
|
|
|
|
|
|
|
'1.2.840.10008.6.1.90' => 'Cardiovascular Imaging Procedure', |
|
6318
|
|
|
|
|
|
|
'1.2.840.10008.6.1.91' => 'Catheterization Device', |
|
6319
|
|
|
|
|
|
|
'1.2.840.10008.6.1.92' => 'DateTime Qualifier', |
|
6320
|
|
|
|
|
|
|
'1.2.840.10008.6.1.93' => 'Peripheral Pulse Location', |
|
6321
|
|
|
|
|
|
|
'1.2.840.10008.6.1.94' => 'Patient Assessment', |
|
6322
|
|
|
|
|
|
|
'1.2.840.10008.6.1.95' => 'Peripheral Pulse Method', |
|
6323
|
|
|
|
|
|
|
'1.2.840.10008.6.1.96' => 'Skin Condition', |
|
6324
|
|
|
|
|
|
|
'1.2.840.10008.6.1.97' => 'Airway Assessment', |
|
6325
|
|
|
|
|
|
|
'1.2.840.10008.6.1.98' => 'Calibration Object', |
|
6326
|
|
|
|
|
|
|
'1.2.840.10008.6.1.99' => 'Calibration Method', |
|
6327
|
|
|
|
|
|
|
'1.2.840.10008.6.1.100' => 'Cardiac Volume Method', |
|
6328
|
|
|
|
|
|
|
'1.2.840.10008.6.1.101' => 'Index Method', |
|
6329
|
|
|
|
|
|
|
'1.2.840.10008.6.1.102' => 'Sub-segment Method', |
|
6330
|
|
|
|
|
|
|
'1.2.840.10008.6.1.103' => 'Contour Realignment', |
|
6331
|
|
|
|
|
|
|
'1.2.840.10008.6.1.104' => 'Circumferential Extent', |
|
6332
|
|
|
|
|
|
|
'1.2.840.10008.6.1.105' => 'Regional Extent', |
|
6333
|
|
|
|
|
|
|
'1.2.840.10008.6.1.106' => 'Chamber Identification', |
|
6334
|
|
|
|
|
|
|
'1.2.840.10008.6.1.107' => 'QA Reference Method', |
|
6335
|
|
|
|
|
|
|
'1.2.840.10008.6.1.108' => 'Plane Identification', |
|
6336
|
|
|
|
|
|
|
'1.2.840.10008.6.1.109' => 'Ejection Fraction', |
|
6337
|
|
|
|
|
|
|
'1.2.840.10008.6.1.110' => 'ED Volume', |
|
6338
|
|
|
|
|
|
|
'1.2.840.10008.6.1.111' => 'ES Volume', |
|
6339
|
|
|
|
|
|
|
'1.2.840.10008.6.1.112' => 'Vessel Lumen Cross-sectional Area Calculation Method', |
|
6340
|
|
|
|
|
|
|
'1.2.840.10008.6.1.113' => 'Estimated Volume', |
|
6341
|
|
|
|
|
|
|
'1.2.840.10008.6.1.114' => 'Cardiac Contraction Phase', |
|
6342
|
|
|
|
|
|
|
'1.2.840.10008.6.1.115' => 'IVUS Procedure Phase', |
|
6343
|
|
|
|
|
|
|
'1.2.840.10008.6.1.116' => 'IVUS Distance Measurement', |
|
6344
|
|
|
|
|
|
|
'1.2.840.10008.6.1.117' => 'IVUS Area Measurement', |
|
6345
|
|
|
|
|
|
|
'1.2.840.10008.6.1.118' => 'IVUS Longitudinal Measurement', |
|
6346
|
|
|
|
|
|
|
'1.2.840.10008.6.1.119' => 'IVUS Index/Ratio', |
|
6347
|
|
|
|
|
|
|
'1.2.840.10008.6.1.120' => 'IVUS Volume Measurement', |
|
6348
|
|
|
|
|
|
|
'1.2.840.10008.6.1.121' => 'Vascular Measurement Site', |
|
6349
|
|
|
|
|
|
|
'1.2.840.10008.6.1.122' => 'Intravascular Volumetric Region', |
|
6350
|
|
|
|
|
|
|
'1.2.840.10008.6.1.123' => 'Min/Max/Mean', |
|
6351
|
|
|
|
|
|
|
'1.2.840.10008.6.1.124' => 'Calcium Distribution', |
|
6352
|
|
|
|
|
|
|
'1.2.840.10008.6.1.125' => 'IVUS Lesion Morphology', |
|
6353
|
|
|
|
|
|
|
'1.2.840.10008.6.1.126' => 'Vascular Dissection Classification', |
|
6354
|
|
|
|
|
|
|
'1.2.840.10008.6.1.127' => 'IVUS Relative Stenosis Severity', |
|
6355
|
|
|
|
|
|
|
'1.2.840.10008.6.1.128' => 'IVUS Non Morphological Finding', |
|
6356
|
|
|
|
|
|
|
'1.2.840.10008.6.1.129' => 'IVUS Plaque Composition', |
|
6357
|
|
|
|
|
|
|
'1.2.840.10008.6.1.130' => 'IVUS Fiducial Point', |
|
6358
|
|
|
|
|
|
|
'1.2.840.10008.6.1.131' => 'IVUS Arterial Morphology', |
|
6359
|
|
|
|
|
|
|
'1.2.840.10008.6.1.132' => 'Pressure Unit', |
|
6360
|
|
|
|
|
|
|
'1.2.840.10008.6.1.133' => 'Hemodynamic Resistance Unit', |
|
6361
|
|
|
|
|
|
|
'1.2.840.10008.6.1.134' => 'Indexed Hemodynamic Resistance Unit', |
|
6362
|
|
|
|
|
|
|
'1.2.840.10008.6.1.135' => 'Catheter Size Unit', |
|
6363
|
|
|
|
|
|
|
'1.2.840.10008.6.1.136' => 'Specimen Collection', |
|
6364
|
|
|
|
|
|
|
'1.2.840.10008.6.1.137' => 'Blood Source Type', |
|
6365
|
|
|
|
|
|
|
'1.2.840.10008.6.1.138' => 'Blood Gas Pressure', |
|
6366
|
|
|
|
|
|
|
'1.2.840.10008.6.1.139' => 'Blood Gas Content', |
|
6367
|
|
|
|
|
|
|
'1.2.840.10008.6.1.140' => 'Blood Gas Saturation', |
|
6368
|
|
|
|
|
|
|
'1.2.840.10008.6.1.141' => 'Blood Base Excess', |
|
6369
|
|
|
|
|
|
|
'1.2.840.10008.6.1.142' => 'Blood pH', |
|
6370
|
|
|
|
|
|
|
'1.2.840.10008.6.1.143' => 'Arterial / Venous Content', |
|
6371
|
|
|
|
|
|
|
'1.2.840.10008.6.1.144' => 'Oxygen Administration Action', |
|
6372
|
|
|
|
|
|
|
'1.2.840.10008.6.1.145' => 'Oxygen Administration', |
|
6373
|
|
|
|
|
|
|
'1.2.840.10008.6.1.146' => 'Circulatory Support Action', |
|
6374
|
|
|
|
|
|
|
'1.2.840.10008.6.1.147' => 'Ventilation Action', |
|
6375
|
|
|
|
|
|
|
'1.2.840.10008.6.1.148' => 'Pacing Action', |
|
6376
|
|
|
|
|
|
|
'1.2.840.10008.6.1.149' => 'Circulatory Support', |
|
6377
|
|
|
|
|
|
|
'1.2.840.10008.6.1.150' => 'Ventilation', |
|
6378
|
|
|
|
|
|
|
'1.2.840.10008.6.1.151' => 'Pacing', |
|
6379
|
|
|
|
|
|
|
'1.2.840.10008.6.1.152' => 'Blood Pressure Method', |
|
6380
|
|
|
|
|
|
|
'1.2.840.10008.6.1.153' => 'Relative Time', |
|
6381
|
|
|
|
|
|
|
'1.2.840.10008.6.1.154' => 'Hemodynamic Patient State', |
|
6382
|
|
|
|
|
|
|
'1.2.840.10008.6.1.155' => 'Arterial Lesion Location', |
|
6383
|
|
|
|
|
|
|
'1.2.840.10008.6.1.156' => 'Arterial Source Location', |
|
6384
|
|
|
|
|
|
|
'1.2.840.10008.6.1.157' => 'Venous Source Location', |
|
6385
|
|
|
|
|
|
|
'1.2.840.10008.6.1.158' => 'Atrial Source Location', |
|
6386
|
|
|
|
|
|
|
'1.2.840.10008.6.1.159' => 'Ventricular Source Location', |
|
6387
|
|
|
|
|
|
|
'1.2.840.10008.6.1.160' => 'Gradient Source Location', |
|
6388
|
|
|
|
|
|
|
'1.2.840.10008.6.1.161' => 'Pressure Measurement', |
|
6389
|
|
|
|
|
|
|
'1.2.840.10008.6.1.162' => 'Blood Velocity Measurement', |
|
6390
|
|
|
|
|
|
|
'1.2.840.10008.6.1.163' => 'Hemodynamic Time Measurement', |
|
6391
|
|
|
|
|
|
|
'1.2.840.10008.6.1.164' => 'Non-mitral Valve Area', |
|
6392
|
|
|
|
|
|
|
'1.2.840.10008.6.1.165' => 'Valve Area', |
|
6393
|
|
|
|
|
|
|
'1.2.840.10008.6.1.166' => 'Hemodynamic Period Measurement', |
|
6394
|
|
|
|
|
|
|
'1.2.840.10008.6.1.167' => 'Valve Flow', |
|
6395
|
|
|
|
|
|
|
'1.2.840.10008.6.1.168' => 'Hemodynamic Flow', |
|
6396
|
|
|
|
|
|
|
'1.2.840.10008.6.1.169' => 'Hemodynamic Resistance Measurement', |
|
6397
|
|
|
|
|
|
|
'1.2.840.10008.6.1.170' => 'Hemodynamic Ratio', |
|
6398
|
|
|
|
|
|
|
'1.2.840.10008.6.1.171' => 'Fractional Flow Reserve', |
|
6399
|
|
|
|
|
|
|
'1.2.840.10008.6.1.172' => 'Measurement Type', |
|
6400
|
|
|
|
|
|
|
'1.2.840.10008.6.1.173' => 'Cardiac Output Method', |
|
6401
|
|
|
|
|
|
|
'1.2.840.10008.6.1.174' => 'Procedure Intent', |
|
6402
|
|
|
|
|
|
|
'1.2.840.10008.6.1.175' => 'Cardiovascular Anatomic Location', |
|
6403
|
|
|
|
|
|
|
'1.2.840.10008.6.1.176' => 'Hypertension', |
|
6404
|
|
|
|
|
|
|
'1.2.840.10008.6.1.177' => 'Hemodynamic Assessment', |
|
6405
|
|
|
|
|
|
|
'1.2.840.10008.6.1.178' => 'Degree Finding', |
|
6406
|
|
|
|
|
|
|
'1.2.840.10008.6.1.179' => 'Hemodynamic Measurement Phase', |
|
6407
|
|
|
|
|
|
|
'1.2.840.10008.6.1.180' => 'Body Surface Area Equation', |
|
6408
|
|
|
|
|
|
|
'1.2.840.10008.6.1.181' => 'Oxygen Consumption Equation/Table', |
|
6409
|
|
|
|
|
|
|
'1.2.840.10008.6.1.182' => 'P50 Equation', |
|
6410
|
|
|
|
|
|
|
'1.2.840.10008.6.1.183' => 'Framingham Score', |
|
6411
|
|
|
|
|
|
|
'1.2.840.10008.6.1.184' => 'Framingham Table', |
|
6412
|
|
|
|
|
|
|
'1.2.840.10008.6.1.185' => 'ECG Procedure Type', |
|
6413
|
|
|
|
|
|
|
'1.2.840.10008.6.1.186' => 'Reason for ECG Study', |
|
6414
|
|
|
|
|
|
|
'1.2.840.10008.6.1.187' => 'Pacemaker', |
|
6415
|
|
|
|
|
|
|
'1.2.840.10008.6.1.188' => 'CID 3673', |
|
6416
|
|
|
|
|
|
|
'1.2.840.10008.6.1.189' => 'CID 3675', |
|
6417
|
|
|
|
|
|
|
'1.2.840.10008.6.1.190' => 'Lead Measurement Technique', |
|
6418
|
|
|
|
|
|
|
'1.2.840.10008.6.1.191' => 'Summary Codes ECG', |
|
6419
|
|
|
|
|
|
|
'1.2.840.10008.6.1.192' => 'QT Correction Algorithm', |
|
6420
|
|
|
|
|
|
|
'1.2.840.10008.6.1.193' => 'CID 3679', |
|
6421
|
|
|
|
|
|
|
'1.2.840.10008.6.1.194' => 'ECG Lead Noise Description', |
|
6422
|
|
|
|
|
|
|
'1.2.840.10008.6.1.195' => 'ECG Lead Noise Modifier (Retired)', |
|
6423
|
|
|
|
|
|
|
'1.2.840.10008.6.1.196' => 'CID 3682', |
|
6424
|
|
|
|
|
|
|
'1.2.840.10008.6.1.197' => 'CID 3683', |
|
6425
|
|
|
|
|
|
|
'1.2.840.10008.6.1.198' => 'CID 3684', |
|
6426
|
|
|
|
|
|
|
'1.2.840.10008.6.1.199' => 'CID 3685', |
|
6427
|
|
|
|
|
|
|
'1.2.840.10008.6.1.200' => 'CID 3686', |
|
6428
|
|
|
|
|
|
|
'1.2.840.10008.6.1.201' => 'Electrophysiology Waveform Duration', |
|
6429
|
|
|
|
|
|
|
'1.2.840.10008.6.1.202' => 'Electrophysiology Waveform Voltage', |
|
6430
|
|
|
|
|
|
|
'1.2.840.10008.6.1.203' => 'Cath Diagnosis', |
|
6431
|
|
|
|
|
|
|
'1.2.840.10008.6.1.204' => 'Cardiac Valve/Tract', |
|
6432
|
|
|
|
|
|
|
'1.2.840.10008.6.1.205' => 'Wall Motion', |
|
6433
|
|
|
|
|
|
|
'1.2.840.10008.6.1.206' => 'Myocardium Wall Morphology Finding', |
|
6434
|
|
|
|
|
|
|
'1.2.840.10008.6.1.207' => 'Chamber Size', |
|
6435
|
|
|
|
|
|
|
'1.2.840.10008.6.1.208' => 'Overall Contractility', |
|
6436
|
|
|
|
|
|
|
'1.2.840.10008.6.1.209' => 'VSD Description', |
|
6437
|
|
|
|
|
|
|
'1.2.840.10008.6.1.210' => 'Aortic Root Description', |
|
6438
|
|
|
|
|
|
|
'1.2.840.10008.6.1.211' => 'Coronary Dominance', |
|
6439
|
|
|
|
|
|
|
'1.2.840.10008.6.1.212' => 'Valvular Abnormality', |
|
6440
|
|
|
|
|
|
|
'1.2.840.10008.6.1.213' => 'Vessel Descriptor', |
|
6441
|
|
|
|
|
|
|
'1.2.840.10008.6.1.214' => 'TIMI Flow Characteristic', |
|
6442
|
|
|
|
|
|
|
'1.2.840.10008.6.1.215' => 'Thrombus', |
|
6443
|
|
|
|
|
|
|
'1.2.840.10008.6.1.216' => 'Lesion Margin', |
|
6444
|
|
|
|
|
|
|
'1.2.840.10008.6.1.217' => 'Severity', |
|
6445
|
|
|
|
|
|
|
'1.2.840.10008.6.1.218' => 'Left Ventricle Myocardial Wall 17 Segment Model', |
|
6446
|
|
|
|
|
|
|
'1.2.840.10008.6.1.219' => 'Myocardial Wall Segments in Projection', |
|
6447
|
|
|
|
|
|
|
'1.2.840.10008.6.1.220' => 'Canadian Clinical Classification', |
|
6448
|
|
|
|
|
|
|
'1.2.840.10008.6.1.221' => 'CID 3720', |
|
6449
|
|
|
|
|
|
|
'1.2.840.10008.6.1.222' => 'Cardiovascular Surgery', |
|
6450
|
|
|
|
|
|
|
'1.2.840.10008.6.1.223' => 'Diabetic Therapy', |
|
6451
|
|
|
|
|
|
|
'1.2.840.10008.6.1.224' => 'MI Type', |
|
6452
|
|
|
|
|
|
|
'1.2.840.10008.6.1.225' => 'Smoking History', |
|
6453
|
|
|
|
|
|
|
'1.2.840.10008.6.1.226' => 'Coronary Intervention Indication', |
|
6454
|
|
|
|
|
|
|
'1.2.840.10008.6.1.227' => 'Catheterization Indication', |
|
6455
|
|
|
|
|
|
|
'1.2.840.10008.6.1.228' => 'Cath Finding', |
|
6456
|
|
|
|
|
|
|
'1.2.840.10008.6.1.229' => 'Admission Status', |
|
6457
|
|
|
|
|
|
|
'1.2.840.10008.6.1.230' => 'Insurance Payor', |
|
6458
|
|
|
|
|
|
|
'1.2.840.10008.6.1.231' => 'Primary Cause of Death', |
|
6459
|
|
|
|
|
|
|
'1.2.840.10008.6.1.232' => 'Acute Coronary Syndrome Time Period', |
|
6460
|
|
|
|
|
|
|
'1.2.840.10008.6.1.233' => 'NYHA Classification', |
|
6461
|
|
|
|
|
|
|
'1.2.840.10008.6.1.234' => 'Ischemia Non-invasive Test', |
|
6462
|
|
|
|
|
|
|
'1.2.840.10008.6.1.235' => 'Pre-Cath Angina Type', |
|
6463
|
|
|
|
|
|
|
'1.2.840.10008.6.1.236' => 'Cath Procedure Type', |
|
6464
|
|
|
|
|
|
|
'1.2.840.10008.6.1.237' => 'Thrombolytic Administration', |
|
6465
|
|
|
|
|
|
|
'1.2.840.10008.6.1.238' => 'Lab Visit Medication Administration', |
|
6466
|
|
|
|
|
|
|
'1.2.840.10008.6.1.239' => 'PCI Medication Administration', |
|
6467
|
|
|
|
|
|
|
'1.2.840.10008.6.1.240' => 'Clopidogrel/Ticlopidine Administration', |
|
6468
|
|
|
|
|
|
|
'1.2.840.10008.6.1.241' => 'EF Testing Method', |
|
6469
|
|
|
|
|
|
|
'1.2.840.10008.6.1.242' => 'Calculation Method', |
|
6470
|
|
|
|
|
|
|
'1.2.840.10008.6.1.243' => 'Percutaneous Entry Site', |
|
6471
|
|
|
|
|
|
|
'1.2.840.10008.6.1.244' => 'Percutaneous Closure', |
|
6472
|
|
|
|
|
|
|
'1.2.840.10008.6.1.245' => 'Angiographic EF Testing Method', |
|
6473
|
|
|
|
|
|
|
'1.2.840.10008.6.1.246' => 'PCI Procedure Result', |
|
6474
|
|
|
|
|
|
|
'1.2.840.10008.6.1.247' => 'Previously Dilated Lesion', |
|
6475
|
|
|
|
|
|
|
'1.2.840.10008.6.1.248' => 'Guidewire Crossing', |
|
6476
|
|
|
|
|
|
|
'1.2.840.10008.6.1.249' => 'Vascular Complication', |
|
6477
|
|
|
|
|
|
|
'1.2.840.10008.6.1.250' => 'Cath Complication', |
|
6478
|
|
|
|
|
|
|
'1.2.840.10008.6.1.251' => 'Cardiac Patient Risk Factor', |
|
6479
|
|
|
|
|
|
|
'1.2.840.10008.6.1.252' => 'Cardiac Diagnostic Procedure', |
|
6480
|
|
|
|
|
|
|
'1.2.840.10008.6.1.253' => 'Cardiovascular Family History', |
|
6481
|
|
|
|
|
|
|
'1.2.840.10008.6.1.254' => 'Hypertension Therapy', |
|
6482
|
|
|
|
|
|
|
'1.2.840.10008.6.1.255' => 'Antilipemic Agent', |
|
6483
|
|
|
|
|
|
|
'1.2.840.10008.6.1.256' => 'Antiarrhythmic Agent', |
|
6484
|
|
|
|
|
|
|
'1.2.840.10008.6.1.257' => 'Myocardial Infarction Therapy', |
|
6485
|
|
|
|
|
|
|
'1.2.840.10008.6.1.258' => 'Concern Type', |
|
6486
|
|
|
|
|
|
|
'1.2.840.10008.6.1.259' => 'Problem Status', |
|
6487
|
|
|
|
|
|
|
'1.2.840.10008.6.1.260' => 'Health Status', |
|
6488
|
|
|
|
|
|
|
'1.2.840.10008.6.1.261' => 'Use Status', |
|
6489
|
|
|
|
|
|
|
'1.2.840.10008.6.1.262' => 'Social History', |
|
6490
|
|
|
|
|
|
|
'1.2.840.10008.6.1.263' => 'Cardiovascular Implant', |
|
6491
|
|
|
|
|
|
|
'1.2.840.10008.6.1.264' => 'Plaque Structure', |
|
6492
|
|
|
|
|
|
|
'1.2.840.10008.6.1.265' => 'Stenosis Measurement Method', |
|
6493
|
|
|
|
|
|
|
'1.2.840.10008.6.1.266' => 'Stenosis Type', |
|
6494
|
|
|
|
|
|
|
'1.2.840.10008.6.1.267' => 'Stenosis Shape', |
|
6495
|
|
|
|
|
|
|
'1.2.840.10008.6.1.268' => 'Volume Measurement Method', |
|
6496
|
|
|
|
|
|
|
'1.2.840.10008.6.1.269' => 'Aneurysm Type', |
|
6497
|
|
|
|
|
|
|
'1.2.840.10008.6.1.270' => 'Associated Condition', |
|
6498
|
|
|
|
|
|
|
'1.2.840.10008.6.1.271' => 'Vascular Morphology', |
|
6499
|
|
|
|
|
|
|
'1.2.840.10008.6.1.272' => 'Stent Finding', |
|
6500
|
|
|
|
|
|
|
'1.2.840.10008.6.1.273' => 'Stent Composition', |
|
6501
|
|
|
|
|
|
|
'1.2.840.10008.6.1.274' => 'Source of Vascular Finding', |
|
6502
|
|
|
|
|
|
|
'1.2.840.10008.6.1.275' => 'Vascular Sclerosis Type', |
|
6503
|
|
|
|
|
|
|
'1.2.840.10008.6.1.276' => 'Non-invasive Vascular Procedure', |
|
6504
|
|
|
|
|
|
|
'1.2.840.10008.6.1.277' => 'Papillary Muscle Included/Excluded', |
|
6505
|
|
|
|
|
|
|
'1.2.840.10008.6.1.278' => 'Respiratory Status', |
|
6506
|
|
|
|
|
|
|
'1.2.840.10008.6.1.279' => 'Heart Rhythm', |
|
6507
|
|
|
|
|
|
|
'1.2.840.10008.6.1.280' => 'Vessel Segment', |
|
6508
|
|
|
|
|
|
|
'1.2.840.10008.6.1.281' => 'Pulmonary Artery', |
|
6509
|
|
|
|
|
|
|
'1.2.840.10008.6.1.282' => 'Stenosis Length', |
|
6510
|
|
|
|
|
|
|
'1.2.840.10008.6.1.283' => 'Stenosis Grade', |
|
6511
|
|
|
|
|
|
|
'1.2.840.10008.6.1.284' => 'Cardiac Ejection Fraction', |
|
6512
|
|
|
|
|
|
|
'1.2.840.10008.6.1.285' => 'Cardiac Volume Measurement', |
|
6513
|
|
|
|
|
|
|
'1.2.840.10008.6.1.286' => 'Time-based Perfusion Measurement', |
|
6514
|
|
|
|
|
|
|
'1.2.840.10008.6.1.287' => 'Fiducial Feature', |
|
6515
|
|
|
|
|
|
|
'1.2.840.10008.6.1.288' => 'Diameter Derivation', |
|
6516
|
|
|
|
|
|
|
'1.2.840.10008.6.1.289' => 'Coronary Vein', |
|
6517
|
|
|
|
|
|
|
'1.2.840.10008.6.1.290' => 'Pulmonary Vein', |
|
6518
|
|
|
|
|
|
|
'1.2.840.10008.6.1.291' => 'Myocardial Subsegment', |
|
6519
|
|
|
|
|
|
|
'1.2.840.10008.6.1.292' => 'Partial View Section for Mammography', |
|
6520
|
|
|
|
|
|
|
'1.2.840.10008.6.1.293' => 'DX Anatomy Imaged', |
|
6521
|
|
|
|
|
|
|
'1.2.840.10008.6.1.294' => 'DX View', |
|
6522
|
|
|
|
|
|
|
'1.2.840.10008.6.1.295' => 'DX View Modifier', |
|
6523
|
|
|
|
|
|
|
'1.2.840.10008.6.1.296' => 'Projection Eponymous Name', |
|
6524
|
|
|
|
|
|
|
'1.2.840.10008.6.1.297' => 'Anatomic Region for Mammography', |
|
6525
|
|
|
|
|
|
|
'1.2.840.10008.6.1.298' => 'View for Mammography', |
|
6526
|
|
|
|
|
|
|
'1.2.840.10008.6.1.299' => 'View Modifier for Mammography', |
|
6527
|
|
|
|
|
|
|
'1.2.840.10008.6.1.300' => 'Anatomic Region for Intra-oral Radiography', |
|
6528
|
|
|
|
|
|
|
'1.2.840.10008.6.1.301' => 'Anatomic Region Modifier for Intra-oral Radiography', |
|
6529
|
|
|
|
|
|
|
'1.2.840.10008.6.1.302' => 'Primary Anatomic Structure for Intra-oral Radiography (Permanent Dentition - Designation of Teeth)', |
|
6530
|
|
|
|
|
|
|
'1.2.840.10008.6.1.303' => 'Primary Anatomic Structure for Intra-oral Radiography (Deciduous Dentition - Designation of Teeth)', |
|
6531
|
|
|
|
|
|
|
'1.2.840.10008.6.1.304' => 'PET Radionuclide', |
|
6532
|
|
|
|
|
|
|
'1.2.840.10008.6.1.305' => 'PET Radiopharmaceutical', |
|
6533
|
|
|
|
|
|
|
'1.2.840.10008.6.1.306' => 'Craniofacial Anatomic Region', |
|
6534
|
|
|
|
|
|
|
'1.2.840.10008.6.1.307' => 'CT, MR and PET Anatomy Imaged', |
|
6535
|
|
|
|
|
|
|
'1.2.840.10008.6.1.308' => 'Common Anatomic Region', |
|
6536
|
|
|
|
|
|
|
'1.2.840.10008.6.1.309' => 'MR Spectroscopy Metabolite', |
|
6537
|
|
|
|
|
|
|
'1.2.840.10008.6.1.310' => 'MR Proton Spectroscopy Metabolite', |
|
6538
|
|
|
|
|
|
|
'1.2.840.10008.6.1.311' => 'Endoscopy Anatomic Region', |
|
6539
|
|
|
|
|
|
|
'1.2.840.10008.6.1.312' => 'XA/XRF Anatomy Imaged', |
|
6540
|
|
|
|
|
|
|
'1.2.840.10008.6.1.313' => 'Drug or Contrast Agent Characteristic', |
|
6541
|
|
|
|
|
|
|
'1.2.840.10008.6.1.314' => 'General Device', |
|
6542
|
|
|
|
|
|
|
'1.2.840.10008.6.1.315' => 'Phantom Device', |
|
6543
|
|
|
|
|
|
|
'1.2.840.10008.6.1.316' => 'Ophthalmic Imaging Agent', |
|
6544
|
|
|
|
|
|
|
'1.2.840.10008.6.1.317' => 'Patient Eye Movement Command', |
|
6545
|
|
|
|
|
|
|
'1.2.840.10008.6.1.318' => 'Ophthalmic Photography Acquisition Device', |
|
6546
|
|
|
|
|
|
|
'1.2.840.10008.6.1.319' => 'Ophthalmic Photography Illumination', |
|
6547
|
|
|
|
|
|
|
'1.2.840.10008.6.1.320' => 'Ophthalmic Filter', |
|
6548
|
|
|
|
|
|
|
'1.2.840.10008.6.1.321' => 'Ophthalmic Lens', |
|
6549
|
|
|
|
|
|
|
'1.2.840.10008.6.1.322' => 'Ophthalmic Channel Description', |
|
6550
|
|
|
|
|
|
|
'1.2.840.10008.6.1.323' => 'Ophthalmic Image Position', |
|
6551
|
|
|
|
|
|
|
'1.2.840.10008.6.1.324' => 'Mydriatic Agent', |
|
6552
|
|
|
|
|
|
|
'1.2.840.10008.6.1.325' => 'Ophthalmic Anatomic Structure Imaged', |
|
6553
|
|
|
|
|
|
|
'1.2.840.10008.6.1.326' => 'Ophthalmic Tomography Acquisition Device', |
|
6554
|
|
|
|
|
|
|
'1.2.840.10008.6.1.327' => 'Ophthalmic OCT Anatomic Structure Imaged', |
|
6555
|
|
|
|
|
|
|
'1.2.840.10008.6.1.328' => 'Language', |
|
6556
|
|
|
|
|
|
|
'1.2.840.10008.6.1.329' => 'Country', |
|
6557
|
|
|
|
|
|
|
'1.2.840.10008.6.1.330' => 'Overall Breast Composition', |
|
6558
|
|
|
|
|
|
|
'1.2.840.10008.6.1.331' => 'Overall Breast Composition from BI-RADS', |
|
6559
|
|
|
|
|
|
|
'1.2.840.10008.6.1.332' => 'Change Since Last Mammogram or Prior Surgery', |
|
6560
|
|
|
|
|
|
|
'1.2.840.10008.6.1.333' => 'Change Since Last Mammogram or Prior Surgery from BI-RADS', |
|
6561
|
|
|
|
|
|
|
'1.2.840.10008.6.1.334' => 'Mammography Shape Characteristic', |
|
6562
|
|
|
|
|
|
|
'1.2.840.10008.6.1.335' => 'Shape Characteristic from BI-RADS', |
|
6563
|
|
|
|
|
|
|
'1.2.840.10008.6.1.336' => 'Mammography Margin Characteristic', |
|
6564
|
|
|
|
|
|
|
'1.2.840.10008.6.1.337' => 'Margin Characteristic from BI-RADS', |
|
6565
|
|
|
|
|
|
|
'1.2.840.10008.6.1.338' => 'Density Modifier', |
|
6566
|
|
|
|
|
|
|
'1.2.840.10008.6.1.339' => 'Density Modifier from BI-RADS', |
|
6567
|
|
|
|
|
|
|
'1.2.840.10008.6.1.340' => 'Mammography Calcification Type', |
|
6568
|
|
|
|
|
|
|
'1.2.840.10008.6.1.341' => 'Calcification Type from BI-RADS', |
|
6569
|
|
|
|
|
|
|
'1.2.840.10008.6.1.342' => 'Calcification Distribution Modifier', |
|
6570
|
|
|
|
|
|
|
'1.2.840.10008.6.1.343' => 'Calcification Distribution Modifier from BI-RADS', |
|
6571
|
|
|
|
|
|
|
'1.2.840.10008.6.1.344' => 'Mammography Single Image Finding', |
|
6572
|
|
|
|
|
|
|
'1.2.840.10008.6.1.345' => 'Single Image Finding from BI-RADS', |
|
6573
|
|
|
|
|
|
|
'1.2.840.10008.6.1.346' => 'Mammography Composite Feature', |
|
6574
|
|
|
|
|
|
|
'1.2.840.10008.6.1.347' => 'Composite Feature from BI-RADS', |
|
6575
|
|
|
|
|
|
|
'1.2.840.10008.6.1.348' => 'Clockface Location or Region', |
|
6576
|
|
|
|
|
|
|
'1.2.840.10008.6.1.349' => 'Clockface Location or Region from BI-RADS', |
|
6577
|
|
|
|
|
|
|
'1.2.840.10008.6.1.350' => 'Quadrant Location', |
|
6578
|
|
|
|
|
|
|
'1.2.840.10008.6.1.351' => 'Quadrant Location from BI-RADS', |
|
6579
|
|
|
|
|
|
|
'1.2.840.10008.6.1.352' => 'Side', |
|
6580
|
|
|
|
|
|
|
'1.2.840.10008.6.1.353' => 'Side from BI-RADS', |
|
6581
|
|
|
|
|
|
|
'1.2.840.10008.6.1.354' => 'Depth', |
|
6582
|
|
|
|
|
|
|
'1.2.840.10008.6.1.355' => 'Depth from BI-RADS', |
|
6583
|
|
|
|
|
|
|
'1.2.840.10008.6.1.356' => 'Mammography Assessment', |
|
6584
|
|
|
|
|
|
|
'1.2.840.10008.6.1.357' => 'Assessment from BI-RADS', |
|
6585
|
|
|
|
|
|
|
'1.2.840.10008.6.1.358' => 'Mammography Recommended Follow-up', |
|
6586
|
|
|
|
|
|
|
'1.2.840.10008.6.1.359' => 'Recommended Follow-up from BI-RADS', |
|
6587
|
|
|
|
|
|
|
'1.2.840.10008.6.1.360' => 'Mammography Pathology Code', |
|
6588
|
|
|
|
|
|
|
'1.2.840.10008.6.1.361' => 'Benign Pathology Code from BI-RADS', |
|
6589
|
|
|
|
|
|
|
'1.2.840.10008.6.1.362' => 'High Risk Lesion Pathology Code from BI-RADS', |
|
6590
|
|
|
|
|
|
|
'1.2.840.10008.6.1.363' => 'Malignant Pathology Code from BI-RADS', |
|
6591
|
|
|
|
|
|
|
'1.2.840.10008.6.1.364' => 'CAD Output Intended Use', |
|
6592
|
|
|
|
|
|
|
'1.2.840.10008.6.1.365' => 'Composite Feature Relation', |
|
6593
|
|
|
|
|
|
|
'1.2.840.10008.6.1.366' => 'Feature Scope', |
|
6594
|
|
|
|
|
|
|
'1.2.840.10008.6.1.367' => 'Mammography Quantitative Temporal Difference Type', |
|
6595
|
|
|
|
|
|
|
'1.2.840.10008.6.1.368' => 'Mammography Qualitative Temporal Difference Type', |
|
6596
|
|
|
|
|
|
|
'1.2.840.10008.6.1.369' => 'Nipple Characteristic', |
|
6597
|
|
|
|
|
|
|
'1.2.840.10008.6.1.370' => 'Non-lesion Object Type', |
|
6598
|
|
|
|
|
|
|
'1.2.840.10008.6.1.371' => 'Mammography Image Quality Finding', |
|
6599
|
|
|
|
|
|
|
'1.2.840.10008.6.1.372' => 'Result Status', |
|
6600
|
|
|
|
|
|
|
'1.2.840.10008.6.1.373' => 'Mammography CAD Analysis Type', |
|
6601
|
|
|
|
|
|
|
'1.2.840.10008.6.1.374' => 'Image Quality Assessment Type', |
|
6602
|
|
|
|
|
|
|
'1.2.840.10008.6.1.375' => 'Mammography Quality Control Standard Type', |
|
6603
|
|
|
|
|
|
|
'1.2.840.10008.6.1.376' => 'Follow-up Interval Unit', |
|
6604
|
|
|
|
|
|
|
'1.2.840.10008.6.1.377' => 'CAD Processing and Finding Summary', |
|
6605
|
|
|
|
|
|
|
'1.2.840.10008.6.1.378' => 'CAD Operating Point Axis Label', |
|
6606
|
|
|
|
|
|
|
'1.2.840.10008.6.1.379' => 'Breast Procedure Reported', |
|
6607
|
|
|
|
|
|
|
'1.2.840.10008.6.1.380' => 'Breast Procedure Reason', |
|
6608
|
|
|
|
|
|
|
'1.2.840.10008.6.1.381' => 'Breast Imaging Report Section Title', |
|
6609
|
|
|
|
|
|
|
'1.2.840.10008.6.1.382' => 'Breast Imaging Report Element', |
|
6610
|
|
|
|
|
|
|
'1.2.840.10008.6.1.383' => 'Breast Imaging Finding', |
|
6611
|
|
|
|
|
|
|
'1.2.840.10008.6.1.384' => 'Breast Clinical Finding or Indicated Problem', |
|
6612
|
|
|
|
|
|
|
'1.2.840.10008.6.1.385' => 'Associated Finding for Breast', |
|
6613
|
|
|
|
|
|
|
'1.2.840.10008.6.1.386' => 'Ductography Finding for Breast', |
|
6614
|
|
|
|
|
|
|
'1.2.840.10008.6.1.387' => 'Procedure Modifiers for Breast', |
|
6615
|
|
|
|
|
|
|
'1.2.840.10008.6.1.388' => 'Breast Implant Type', |
|
6616
|
|
|
|
|
|
|
'1.2.840.10008.6.1.389' => 'Breast Biopsy Technique', |
|
6617
|
|
|
|
|
|
|
'1.2.840.10008.6.1.390' => 'Breast Imaging Procedure Modifier', |
|
6618
|
|
|
|
|
|
|
'1.2.840.10008.6.1.391' => 'Interventional Procedure Complication', |
|
6619
|
|
|
|
|
|
|
'1.2.840.10008.6.1.392' => 'Interventional Procedure Result', |
|
6620
|
|
|
|
|
|
|
'1.2.840.10008.6.1.393' => 'Ultrasound Finding for Breast', |
|
6621
|
|
|
|
|
|
|
'1.2.840.10008.6.1.394' => 'Instrument Approach', |
|
6622
|
|
|
|
|
|
|
'1.2.840.10008.6.1.395' => 'Target Confirmation', |
|
6623
|
|
|
|
|
|
|
'1.2.840.10008.6.1.396' => 'Fluid Color', |
|
6624
|
|
|
|
|
|
|
'1.2.840.10008.6.1.397' => 'Tumor Stages From AJCC', |
|
6625
|
|
|
|
|
|
|
'1.2.840.10008.6.1.398' => 'Nottingham Combined Histologic Grade', |
|
6626
|
|
|
|
|
|
|
'1.2.840.10008.6.1.399' => 'Bloom-Richardson Histologic Grade', |
|
6627
|
|
|
|
|
|
|
'1.2.840.10008.6.1.400' => 'Histologic Grading Method', |
|
6628
|
|
|
|
|
|
|
'1.2.840.10008.6.1.401' => 'Breast Implant Finding', |
|
6629
|
|
|
|
|
|
|
'1.2.840.10008.6.1.402' => 'Gynecological Hormone', |
|
6630
|
|
|
|
|
|
|
'1.2.840.10008.6.1.403' => 'Breast Cancer Risk Factor', |
|
6631
|
|
|
|
|
|
|
'1.2.840.10008.6.1.404' => 'Gynecological Procedure', |
|
6632
|
|
|
|
|
|
|
'1.2.840.10008.6.1.405' => 'Procedures for Breast', |
|
6633
|
|
|
|
|
|
|
'1.2.840.10008.6.1.406' => 'Mammoplasty Procedure', |
|
6634
|
|
|
|
|
|
|
'1.2.840.10008.6.1.407' => 'Therapies for Breast', |
|
6635
|
|
|
|
|
|
|
'1.2.840.10008.6.1.408' => 'Menopausal Phase', |
|
6636
|
|
|
|
|
|
|
'1.2.840.10008.6.1.409' => 'General Risk Factor', |
|
6637
|
|
|
|
|
|
|
'1.2.840.10008.6.1.410' => 'OB-GYN Maternal Risk Factor', |
|
6638
|
|
|
|
|
|
|
'1.2.840.10008.6.1.411' => 'Substance', |
|
6639
|
|
|
|
|
|
|
'1.2.840.10008.6.1.412' => 'Relative Usage/Exposure Amount', |
|
6640
|
|
|
|
|
|
|
'1.2.840.10008.6.1.413' => 'Relative Frequency of Event Value', |
|
6641
|
|
|
|
|
|
|
'1.2.840.10008.6.1.414' => 'Usage/Exposure Qualitative Concept', |
|
6642
|
|
|
|
|
|
|
'1.2.840.10008.6.1.415' => 'Usage/Exposure/Amount Qualitative Concept', |
|
6643
|
|
|
|
|
|
|
'1.2.840.10008.6.1.416' => 'Usage/Exposure/Frequency Qualitative Concept', |
|
6644
|
|
|
|
|
|
|
'1.2.840.10008.6.1.417' => 'Procedure Numeric Property', |
|
6645
|
|
|
|
|
|
|
'1.2.840.10008.6.1.418' => 'Pregnancy Status', |
|
6646
|
|
|
|
|
|
|
'1.2.840.10008.6.1.419' => 'Side of Family', |
|
6647
|
|
|
|
|
|
|
'1.2.840.10008.6.1.420' => 'Chest Component Category', |
|
6648
|
|
|
|
|
|
|
'1.2.840.10008.6.1.421' => 'Chest Finding or Feature', |
|
6649
|
|
|
|
|
|
|
'1.2.840.10008.6.1.422' => 'Chest Finding or Feature Modifier', |
|
6650
|
|
|
|
|
|
|
'1.2.840.10008.6.1.423' => 'Abnormal Lines Finding or Feature', |
|
6651
|
|
|
|
|
|
|
'1.2.840.10008.6.1.424' => 'Abnormal Opacity Finding or Feature', |
|
6652
|
|
|
|
|
|
|
'1.2.840.10008.6.1.425' => 'Abnormal Lucency Finding or Feature', |
|
6653
|
|
|
|
|
|
|
'1.2.840.10008.6.1.426' => 'Abnormal Texture Finding or Feature', |
|
6654
|
|
|
|
|
|
|
'1.2.840.10008.6.1.427' => 'Width Descriptor', |
|
6655
|
|
|
|
|
|
|
'1.2.840.10008.6.1.428' => 'Chest Anatomic Structure Abnormal Distribution', |
|
6656
|
|
|
|
|
|
|
'1.2.840.10008.6.1.429' => 'Radiographic Anatomy Finding or Feature', |
|
6657
|
|
|
|
|
|
|
'1.2.840.10008.6.1.430' => 'Lung Anatomy Finding or Feature', |
|
6658
|
|
|
|
|
|
|
'1.2.840.10008.6.1.431' => 'Bronchovascular Anatomy Finding or Feature', |
|
6659
|
|
|
|
|
|
|
'1.2.840.10008.6.1.432' => 'Pleura Anatomy Finding or Feature', |
|
6660
|
|
|
|
|
|
|
'1.2.840.10008.6.1.433' => 'Mediastinum Anatomy Finding or Feature', |
|
6661
|
|
|
|
|
|
|
'1.2.840.10008.6.1.434' => 'Osseous Anatomy Finding or Feature', |
|
6662
|
|
|
|
|
|
|
'1.2.840.10008.6.1.435' => 'Osseous Anatomy Modifier', |
|
6663
|
|
|
|
|
|
|
'1.2.840.10008.6.1.436' => 'Muscular Anatomy', |
|
6664
|
|
|
|
|
|
|
'1.2.840.10008.6.1.437' => 'Vascular Anatomy', |
|
6665
|
|
|
|
|
|
|
'1.2.840.10008.6.1.438' => 'Size Descriptor', |
|
6666
|
|
|
|
|
|
|
'1.2.840.10008.6.1.439' => 'Chest Border Shape', |
|
6667
|
|
|
|
|
|
|
'1.2.840.10008.6.1.440' => 'Chest Border Definition', |
|
6668
|
|
|
|
|
|
|
'1.2.840.10008.6.1.441' => 'Chest Orientation Descriptor', |
|
6669
|
|
|
|
|
|
|
'1.2.840.10008.6.1.442' => 'Chest Content Descriptor', |
|
6670
|
|
|
|
|
|
|
'1.2.840.10008.6.1.443' => 'Chest Opacity Descriptor', |
|
6671
|
|
|
|
|
|
|
'1.2.840.10008.6.1.444' => 'Location in Chest', |
|
6672
|
|
|
|
|
|
|
'1.2.840.10008.6.1.445' => 'General Chest Location', |
|
6673
|
|
|
|
|
|
|
'1.2.840.10008.6.1.446' => 'Location in Lung', |
|
6674
|
|
|
|
|
|
|
'1.2.840.10008.6.1.447' => 'Segment Location in Lung', |
|
6675
|
|
|
|
|
|
|
'1.2.840.10008.6.1.448' => 'Chest Distribution Descriptor', |
|
6676
|
|
|
|
|
|
|
'1.2.840.10008.6.1.449' => 'Chest Site Involvement', |
|
6677
|
|
|
|
|
|
|
'1.2.840.10008.6.1.450' => 'Severity Descriptor', |
|
6678
|
|
|
|
|
|
|
'1.2.840.10008.6.1.451' => 'Chest Texture Descriptor', |
|
6679
|
|
|
|
|
|
|
'1.2.840.10008.6.1.452' => 'Chest Calcification Descriptor', |
|
6680
|
|
|
|
|
|
|
'1.2.840.10008.6.1.453' => 'Chest Quantitative Temporal Difference Type', |
|
6681
|
|
|
|
|
|
|
'1.2.840.10008.6.1.454' => 'Chest Qualitative Temporal Difference Type', |
|
6682
|
|
|
|
|
|
|
'1.2.840.10008.6.1.455' => 'Image Quality Finding', |
|
6683
|
|
|
|
|
|
|
'1.2.840.10008.6.1.456' => 'Chest Types of Quality Control Standard', |
|
6684
|
|
|
|
|
|
|
'1.2.840.10008.6.1.457' => 'CAD Analysis Type', |
|
6685
|
|
|
|
|
|
|
'1.2.840.10008.6.1.458' => 'Chest Non-lesion Object Type', |
|
6686
|
|
|
|
|
|
|
'1.2.840.10008.6.1.459' => 'Non-lesion Modifier', |
|
6687
|
|
|
|
|
|
|
'1.2.840.10008.6.1.460' => 'Calculation Method', |
|
6688
|
|
|
|
|
|
|
'1.2.840.10008.6.1.461' => 'Attenuation Coefficient Measurement', |
|
6689
|
|
|
|
|
|
|
'1.2.840.10008.6.1.462' => 'Calculated Value', |
|
6690
|
|
|
|
|
|
|
'1.2.840.10008.6.1.463' => 'Lesion Response', |
|
6691
|
|
|
|
|
|
|
'1.2.840.10008.6.1.464' => 'RECIST Defined Lesion Response', |
|
6692
|
|
|
|
|
|
|
'1.2.840.10008.6.1.465' => 'Baseline Category', |
|
6693
|
|
|
|
|
|
|
'1.2.840.10008.6.1.466' => 'Background Echotexture', |
|
6694
|
|
|
|
|
|
|
'1.2.840.10008.6.1.467' => 'Orientation', |
|
6695
|
|
|
|
|
|
|
'1.2.840.10008.6.1.468' => 'Lesion Boundary', |
|
6696
|
|
|
|
|
|
|
'1.2.840.10008.6.1.469' => 'Echo Pattern', |
|
6697
|
|
|
|
|
|
|
'1.2.840.10008.6.1.470' => 'Posterior Acoustic Feature', |
|
6698
|
|
|
|
|
|
|
'1.2.840.10008.6.1.471' => 'Vascularity', |
|
6699
|
|
|
|
|
|
|
'1.2.840.10008.6.1.472' => 'Correlation to Other Finding', |
|
6700
|
|
|
|
|
|
|
'1.2.840.10008.6.1.473' => 'Malignancy Type', |
|
6701
|
|
|
|
|
|
|
'1.2.840.10008.6.1.474' => 'Breast Primary Tumor Assessment From AJCC', |
|
6702
|
|
|
|
|
|
|
'1.2.840.10008.6.1.475' => 'Pathological Regional Lymph Node Assessment for Breast', |
|
6703
|
|
|
|
|
|
|
'1.2.840.10008.6.1.476' => 'Assessment of Metastasis for Breast', |
|
6704
|
|
|
|
|
|
|
'1.2.840.10008.6.1.477' => 'Menstrual Cycle Phase', |
|
6705
|
|
|
|
|
|
|
'1.2.840.10008.6.1.478' => 'Time Interval', |
|
6706
|
|
|
|
|
|
|
'1.2.840.10008.6.1.479' => 'Breast Linear Measurement', |
|
6707
|
|
|
|
|
|
|
'1.2.840.10008.6.1.480' => 'CAD Geometry Secondary Graphical Representation', |
|
6708
|
|
|
|
|
|
|
'1.2.840.10008.6.1.481' => 'Diagnostic Imaging Report Document Title', |
|
6709
|
|
|
|
|
|
|
'1.2.840.10008.6.1.482' => 'Diagnostic Imaging Report Heading', |
|
6710
|
|
|
|
|
|
|
'1.2.840.10008.6.1.483' => 'Diagnostic Imaging Report Element', |
|
6711
|
|
|
|
|
|
|
'1.2.840.10008.6.1.484' => 'Diagnostic Imaging Report Purpose of Reference', |
|
6712
|
|
|
|
|
|
|
'1.2.840.10008.6.1.485' => 'Waveform Purpose of Reference', |
|
6713
|
|
|
|
|
|
|
'1.2.840.10008.6.1.486' => 'Contributing Equipment Purpose of Reference', |
|
6714
|
|
|
|
|
|
|
'1.2.840.10008.6.1.487' => 'SR Document Purpose of Reference', |
|
6715
|
|
|
|
|
|
|
'1.2.840.10008.6.1.488' => 'Signature Purpose', |
|
6716
|
|
|
|
|
|
|
'1.2.840.10008.6.1.489' => 'Media Import', |
|
6717
|
|
|
|
|
|
|
'1.2.840.10008.6.1.490' => 'Key Object Selection Document Title', |
|
6718
|
|
|
|
|
|
|
'1.2.840.10008.6.1.491' => 'Rejected for Quality Reason', |
|
6719
|
|
|
|
|
|
|
'1.2.840.10008.6.1.492' => 'Best in Set', |
|
6720
|
|
|
|
|
|
|
'1.2.840.10008.6.1.493' => 'Document Title', |
|
6721
|
|
|
|
|
|
|
'1.2.840.10008.6.1.494' => 'RCS Registration Method Type', |
|
6722
|
|
|
|
|
|
|
'1.2.840.10008.6.1.495' => 'Brain Atlas Fiducial', |
|
6723
|
|
|
|
|
|
|
'1.2.840.10008.6.1.496' => 'Segmentation Property Category', |
|
6724
|
|
|
|
|
|
|
'1.2.840.10008.6.1.497' => 'Segmentation Property Type', |
|
6725
|
|
|
|
|
|
|
'1.2.840.10008.6.1.498' => 'Cardiac Structure Segmentation Type', |
|
6726
|
|
|
|
|
|
|
'1.2.840.10008.6.1.499' => 'CNS Segmentation Type', |
|
6727
|
|
|
|
|
|
|
'1.2.840.10008.6.1.500' => 'Abdominal Segmentation Type', |
|
6728
|
|
|
|
|
|
|
'1.2.840.10008.6.1.501' => 'Thoracic Segmentation Type', |
|
6729
|
|
|
|
|
|
|
'1.2.840.10008.6.1.502' => 'Vascular Segmentation Type', |
|
6730
|
|
|
|
|
|
|
'1.2.840.10008.6.1.503' => 'Device Segmentation Type', |
|
6731
|
|
|
|
|
|
|
'1.2.840.10008.6.1.504' => 'Artifact Segmentation Type', |
|
6732
|
|
|
|
|
|
|
'1.2.840.10008.6.1.505' => 'Lesion Segmentation Type', |
|
6733
|
|
|
|
|
|
|
'1.2.840.10008.6.1.506' => 'Pelvic Organ Segmentation Type', |
|
6734
|
|
|
|
|
|
|
'1.2.840.10008.6.1.507' => 'Physiology Segmentation Type', |
|
6735
|
|
|
|
|
|
|
'1.2.840.10008.6.1.508' => 'Referenced Image Purpose of Reference', |
|
6736
|
|
|
|
|
|
|
'1.2.840.10008.6.1.509' => 'Source Image Purpose of Reference', |
|
6737
|
|
|
|
|
|
|
'1.2.840.10008.6.1.510' => 'Image Derivation', |
|
6738
|
|
|
|
|
|
|
'1.2.840.10008.6.1.511' => 'Purpose of Reference to Alternate Representation', |
|
6739
|
|
|
|
|
|
|
'1.2.840.10008.6.1.512' => 'Related Series Purpose of Reference', |
|
6740
|
|
|
|
|
|
|
'1.2.840.10008.6.1.513' => 'Multi-Frame Subset Type', |
|
6741
|
|
|
|
|
|
|
'1.2.840.10008.6.1.514' => 'Person Role', |
|
6742
|
|
|
|
|
|
|
'1.2.840.10008.6.1.515' => 'Family Member', |
|
6743
|
|
|
|
|
|
|
'1.2.840.10008.6.1.516' => 'Organizational Role', |
|
6744
|
|
|
|
|
|
|
'1.2.840.10008.6.1.517' => 'Performing Role', |
|
6745
|
|
|
|
|
|
|
'1.2.840.10008.6.1.518' => 'Animal Taxonomic Rank Value', |
|
6746
|
|
|
|
|
|
|
'1.2.840.10008.6.1.519' => 'Sex', |
|
6747
|
|
|
|
|
|
|
'1.2.840.10008.6.1.520' => 'Age Unit', |
|
6748
|
|
|
|
|
|
|
'1.2.840.10008.6.1.521' => 'Linear Measurement Unit', |
|
6749
|
|
|
|
|
|
|
'1.2.840.10008.6.1.522' => 'Area Measurement Unit', |
|
6750
|
|
|
|
|
|
|
'1.2.840.10008.6.1.523' => 'Volume Measurement Unit', |
|
6751
|
|
|
|
|
|
|
'1.2.840.10008.6.1.524' => 'Linear Measurement', |
|
6752
|
|
|
|
|
|
|
'1.2.840.10008.6.1.525' => 'Area Measurement', |
|
6753
|
|
|
|
|
|
|
'1.2.840.10008.6.1.526' => 'Volume Measurement', |
|
6754
|
|
|
|
|
|
|
'1.2.840.10008.6.1.527' => 'General Area Calculation Method', |
|
6755
|
|
|
|
|
|
|
'1.2.840.10008.6.1.528' => 'General Volume Calculation Method', |
|
6756
|
|
|
|
|
|
|
'1.2.840.10008.6.1.529' => 'Breed', |
|
6757
|
|
|
|
|
|
|
'1.2.840.10008.6.1.530' => 'Breed Registry', |
|
6758
|
|
|
|
|
|
|
'1.2.840.10008.6.1.531' => 'Workitem Definition', |
|
6759
|
|
|
|
|
|
|
'1.2.840.10008.6.1.532' => 'CID 9232', |
|
6760
|
|
|
|
|
|
|
'1.2.840.10008.6.1.533' => 'Procedure Discontinuation Reason', |
|
6761
|
|
|
|
|
|
|
'1.2.840.10008.6.1.534' => 'Scope of Accumulation', |
|
6762
|
|
|
|
|
|
|
'1.2.840.10008.6.1.535' => 'UID Type', |
|
6763
|
|
|
|
|
|
|
'1.2.840.10008.6.1.536' => 'Irradiation Event Type', |
|
6764
|
|
|
|
|
|
|
'1.2.840.10008.6.1.537' => 'Equipment Plane Identification', |
|
6765
|
|
|
|
|
|
|
'1.2.840.10008.6.1.538' => 'Fluoro Mode', |
|
6766
|
|
|
|
|
|
|
'1.2.840.10008.6.1.539' => 'X-Ray Filter Material', |
|
6767
|
|
|
|
|
|
|
'1.2.840.10008.6.1.540' => 'X-Ray Filter Type', |
|
6768
|
|
|
|
|
|
|
'1.2.840.10008.6.1.541' => 'Dose Related Distance Measurement', |
|
6769
|
|
|
|
|
|
|
'1.2.840.10008.6.1.542' => 'Measured/Calculated', |
|
6770
|
|
|
|
|
|
|
'1.2.840.10008.6.1.543' => 'Dose Measurement Device', |
|
6771
|
|
|
|
|
|
|
'1.2.840.10008.6.1.544' => 'Effective Dose Evaluation Method', |
|
6772
|
|
|
|
|
|
|
'1.2.840.10008.6.1.545' => 'CT Acquisition Type', |
|
6773
|
|
|
|
|
|
|
'1.2.840.10008.6.1.546' => 'CT IV Contrast Imaging Technique', |
|
6774
|
|
|
|
|
|
|
'1.2.840.10008.6.1.547' => 'CT Dose Reference Authority', |
|
6775
|
|
|
|
|
|
|
'1.2.840.10008.6.1.548' => 'Anode Target Material', |
|
6776
|
|
|
|
|
|
|
'1.2.840.10008.6.1.549' => 'X-Ray Grid', |
|
6777
|
|
|
|
|
|
|
'1.2.840.10008.6.1.550' => 'Ultrasound Protocol Type', |
|
6778
|
|
|
|
|
|
|
'1.2.840.10008.6.1.551' => 'Ultrasound Protocol Stage Type', |
|
6779
|
|
|
|
|
|
|
'1.2.840.10008.6.1.552' => 'OB-GYN Date', |
|
6780
|
|
|
|
|
|
|
'1.2.840.10008.6.1.553' => 'Fetal Biometry Ratio', |
|
6781
|
|
|
|
|
|
|
'1.2.840.10008.6.1.554' => 'Fetal Biometry Measurement', |
|
6782
|
|
|
|
|
|
|
'1.2.840.10008.6.1.555' => 'Fetal Long Bones Biometry Measurement', |
|
6783
|
|
|
|
|
|
|
'1.2.840.10008.6.1.556' => 'Fetal Cranium Measurement', |
|
6784
|
|
|
|
|
|
|
'1.2.840.10008.6.1.557' => 'OB-GYN Amniotic Sac Measurement', |
|
6785
|
|
|
|
|
|
|
'1.2.840.10008.6.1.558' => 'Early Gestation Biometry Measurement', |
|
6786
|
|
|
|
|
|
|
'1.2.840.10008.6.1.559' => 'Ultrasound Pelvis and Uterus Measurement', |
|
6787
|
|
|
|
|
|
|
'1.2.840.10008.6.1.560' => 'OB Equation/Table', |
|
6788
|
|
|
|
|
|
|
'1.2.840.10008.6.1.561' => 'Gestational Age Equation/Table', |
|
6789
|
|
|
|
|
|
|
'1.2.840.10008.6.1.562' => 'OB Fetal Body Weight Equation/Table', |
|
6790
|
|
|
|
|
|
|
'1.2.840.10008.6.1.563' => 'Fetal Growth Equation/Table', |
|
6791
|
|
|
|
|
|
|
'1.2.840.10008.6.1.564' => 'Estimated Fetal Weight Percentile Equation/Table', |
|
6792
|
|
|
|
|
|
|
'1.2.840.10008.6.1.565' => 'Growth Distribution Rank', |
|
6793
|
|
|
|
|
|
|
'1.2.840.10008.6.1.566' => 'OB-GYN Summary', |
|
6794
|
|
|
|
|
|
|
'1.2.840.10008.6.1.567' => 'OB-GYN Fetus Summary', |
|
6795
|
|
|
|
|
|
|
'1.2.840.10008.6.1.568' => 'Vascular Summary', |
|
6796
|
|
|
|
|
|
|
'1.2.840.10008.6.1.569' => 'Temporal Period Relating to Procedure or Therapy', |
|
6797
|
|
|
|
|
|
|
'1.2.840.10008.6.1.570' => 'Vascular Ultrasound Anatomic Location', |
|
6798
|
|
|
|
|
|
|
'1.2.840.10008.6.1.571' => 'Extracranial Artery', |
|
6799
|
|
|
|
|
|
|
'1.2.840.10008.6.1.572' => 'Intracranial Cerebral Vessel', |
|
6800
|
|
|
|
|
|
|
'1.2.840.10008.6.1.573' => 'Intracranial Cerebral Vessel (Unilateral)', |
|
6801
|
|
|
|
|
|
|
'1.2.840.10008.6.1.574' => 'Upper Extremity Artery', |
|
6802
|
|
|
|
|
|
|
'1.2.840.10008.6.1.575' => 'Upper Extremity Vein', |
|
6803
|
|
|
|
|
|
|
'1.2.840.10008.6.1.576' => 'Lower Extremity Artery', |
|
6804
|
|
|
|
|
|
|
'1.2.840.10008.6.1.577' => 'Lower Extremity Vein', |
|
6805
|
|
|
|
|
|
|
'1.2.840.10008.6.1.578' => 'Abdominopelvic Artery (Paired)', |
|
6806
|
|
|
|
|
|
|
'1.2.840.10008.6.1.579' => 'Abdominopelvic Artery (Unpaired)', |
|
6807
|
|
|
|
|
|
|
'1.2.840.10008.6.1.580' => 'Abdominopelvic Vein (Paired)', |
|
6808
|
|
|
|
|
|
|
'1.2.840.10008.6.1.581' => 'Abdominopelvic Vein (Unpaired)', |
|
6809
|
|
|
|
|
|
|
'1.2.840.10008.6.1.582' => 'Renal Vessel', |
|
6810
|
|
|
|
|
|
|
'1.2.840.10008.6.1.583' => 'Vessel Segment Modifier', |
|
6811
|
|
|
|
|
|
|
'1.2.840.10008.6.1.584' => 'Vessel Branch Modifier', |
|
6812
|
|
|
|
|
|
|
'1.2.840.10008.6.1.585' => 'Vascular Ultrasound Property', |
|
6813
|
|
|
|
|
|
|
'1.2.840.10008.6.1.586' => 'Ultrasound Blood Velocity Measurement', |
|
6814
|
|
|
|
|
|
|
'1.2.840.10008.6.1.587' => 'Vascular Index/Ratio', |
|
6815
|
|
|
|
|
|
|
'1.2.840.10008.6.1.588' => 'Other Vascular Property', |
|
6816
|
|
|
|
|
|
|
'1.2.840.10008.6.1.589' => 'Carotid Ratio', |
|
6817
|
|
|
|
|
|
|
'1.2.840.10008.6.1.590' => 'Renal Ratio', |
|
6818
|
|
|
|
|
|
|
'1.2.840.10008.6.1.591' => 'Pelvic Vasculature Anatomical Location', |
|
6819
|
|
|
|
|
|
|
'1.2.840.10008.6.1.592' => 'Fetal Vasculature Anatomical Location', |
|
6820
|
|
|
|
|
|
|
'1.2.840.10008.6.1.593' => 'Echocardiography Left Ventricle Measurement', |
|
6821
|
|
|
|
|
|
|
'1.2.840.10008.6.1.594' => 'Left Ventricle Linear Measurement', |
|
6822
|
|
|
|
|
|
|
'1.2.840.10008.6.1.595' => 'Left Ventricle Volume Measurement', |
|
6823
|
|
|
|
|
|
|
'1.2.840.10008.6.1.596' => 'Left Ventricle Other Measurement', |
|
6824
|
|
|
|
|
|
|
'1.2.840.10008.6.1.597' => 'Echocardiography Right Ventricle Measurement', |
|
6825
|
|
|
|
|
|
|
'1.2.840.10008.6.1.598' => 'Echocardiography Left Atrium Measurement', |
|
6826
|
|
|
|
|
|
|
'1.2.840.10008.6.1.599' => 'Echocardiography Right Atrium Measurement', |
|
6827
|
|
|
|
|
|
|
'1.2.840.10008.6.1.600' => 'Echocardiography Mitral Valve Measurement', |
|
6828
|
|
|
|
|
|
|
'1.2.840.10008.6.1.601' => 'Echocardiography Tricuspid Valve Measurement', |
|
6829
|
|
|
|
|
|
|
'1.2.840.10008.6.1.602' => 'Echocardiography Pulmonic Valve Measurement', |
|
6830
|
|
|
|
|
|
|
'1.2.840.10008.6.1.603' => 'Echocardiography Pulmonary Artery Measurement', |
|
6831
|
|
|
|
|
|
|
'1.2.840.10008.6.1.604' => 'Echocardiography Aortic Valve Measurement', |
|
6832
|
|
|
|
|
|
|
'1.2.840.10008.6.1.605' => 'Echocardiography Aorta Measurement', |
|
6833
|
|
|
|
|
|
|
'1.2.840.10008.6.1.606' => 'Echocardiography Pulmonary Vein Measurement', |
|
6834
|
|
|
|
|
|
|
'1.2.840.10008.6.1.607' => 'Echocardiography Vena Cava Measurement', |
|
6835
|
|
|
|
|
|
|
'1.2.840.10008.6.1.608' => 'Echocardiography Hepatic Vein Measurement', |
|
6836
|
|
|
|
|
|
|
'1.2.840.10008.6.1.609' => 'Echocardiography Cardiac Shunt Measurement', |
|
6837
|
|
|
|
|
|
|
'1.2.840.10008.6.1.610' => 'Echocardiography Congenital Anomaly Measurement', |
|
6838
|
|
|
|
|
|
|
'1.2.840.10008.6.1.611' => 'Pulmonary Vein Modifier', |
|
6839
|
|
|
|
|
|
|
'1.2.840.10008.6.1.612' => 'Echocardiography Common Measurement', |
|
6840
|
|
|
|
|
|
|
'1.2.840.10008.6.1.613' => 'Flow Direction', |
|
6841
|
|
|
|
|
|
|
'1.2.840.10008.6.1.614' => 'Orifice Flow Property', |
|
6842
|
|
|
|
|
|
|
'1.2.840.10008.6.1.615' => 'Echocardiography Stroke Volume Origin', |
|
6843
|
|
|
|
|
|
|
'1.2.840.10008.6.1.616' => 'Ultrasound Image Mode', |
|
6844
|
|
|
|
|
|
|
'1.2.840.10008.6.1.617' => 'Echocardiography Image View', |
|
6845
|
|
|
|
|
|
|
'1.2.840.10008.6.1.618' => 'Echocardiography Measurement Method', |
|
6846
|
|
|
|
|
|
|
'1.2.840.10008.6.1.619' => 'Echocardiography Volume Method', |
|
6847
|
|
|
|
|
|
|
'1.2.840.10008.6.1.620' => 'Echocardiography Area Method', |
|
6848
|
|
|
|
|
|
|
'1.2.840.10008.6.1.621' => 'Gradient Method', |
|
6849
|
|
|
|
|
|
|
'1.2.840.10008.6.1.622' => 'Volume Flow Method', |
|
6850
|
|
|
|
|
|
|
'1.2.840.10008.6.1.623' => 'Myocardium Mass Method', |
|
6851
|
|
|
|
|
|
|
'1.2.840.10008.6.1.624' => 'Cardiac Phase', |
|
6852
|
|
|
|
|
|
|
'1.2.840.10008.6.1.625' => 'Respiration State', |
|
6853
|
|
|
|
|
|
|
'1.2.840.10008.6.1.626' => 'Mitral Valve Anatomic Site', |
|
6854
|
|
|
|
|
|
|
'1.2.840.10008.6.1.627' => 'Echocardiography Anatomic Site', |
|
6855
|
|
|
|
|
|
|
'1.2.840.10008.6.1.628' => 'Echocardiography Anatomic Site Modifier', |
|
6856
|
|
|
|
|
|
|
'1.2.840.10008.6.1.629' => 'Wall Motion Scoring Scheme', |
|
6857
|
|
|
|
|
|
|
'1.2.840.10008.6.1.630' => 'Cardiac Output Property', |
|
6858
|
|
|
|
|
|
|
'1.2.840.10008.6.1.631' => 'Left Ventricle Area Measurement', |
|
6859
|
|
|
|
|
|
|
'1.2.840.10008.6.1.632' => 'Tricuspid Valve Finding Site', |
|
6860
|
|
|
|
|
|
|
'1.2.840.10008.6.1.633' => 'Aortic Valve Finding Site', |
|
6861
|
|
|
|
|
|
|
'1.2.840.10008.6.1.634' => 'Left Ventricle Finding Site', |
|
6862
|
|
|
|
|
|
|
'1.2.840.10008.6.1.635' => 'Congenital Finding Site', |
|
6863
|
|
|
|
|
|
|
'1.2.840.10008.6.1.636' => 'Surface Processing Algorithm Family', |
|
6864
|
|
|
|
|
|
|
'1.2.840.10008.6.1.637' => 'Stress Test Procedure Phase', |
|
6865
|
|
|
|
|
|
|
'1.2.840.10008.6.1.638' => 'Stage', |
|
6866
|
|
|
|
|
|
|
'1.2.840.10008.6.1.735' => 'S-M-L Size Descriptor', |
|
6867
|
|
|
|
|
|
|
'1.2.840.10008.6.1.736' => 'Major Coronary Artery', |
|
6868
|
|
|
|
|
|
|
'1.2.840.10008.6.1.737' => 'Radioactivity Unit', |
|
6869
|
|
|
|
|
|
|
'1.2.840.10008.6.1.738' => 'Rest/Stress State', |
|
6870
|
|
|
|
|
|
|
'1.2.840.10008.6.1.739' => 'PET Cardiology Protocol', |
|
6871
|
|
|
|
|
|
|
'1.2.840.10008.6.1.740' => 'PET Cardiology Radiopharmaceutical', |
|
6872
|
|
|
|
|
|
|
'1.2.840.10008.6.1.741' => 'NM/PET Procedure', |
|
6873
|
|
|
|
|
|
|
'1.2.840.10008.6.1.742' => 'Nuclear Cardiology Protocol', |
|
6874
|
|
|
|
|
|
|
'1.2.840.10008.6.1.743' => 'Nuclear Cardiology Radiopharmaceutical', |
|
6875
|
|
|
|
|
|
|
'1.2.840.10008.6.1.744' => 'Attenuation Correction', |
|
6876
|
|
|
|
|
|
|
'1.2.840.10008.6.1.745' => 'Perfusion Defect Type', |
|
6877
|
|
|
|
|
|
|
'1.2.840.10008.6.1.746' => 'Study Quality', |
|
6878
|
|
|
|
|
|
|
'1.2.840.10008.6.1.747' => 'Stress Imaging Quality Issue', |
|
6879
|
|
|
|
|
|
|
'1.2.840.10008.6.1.748' => 'NM Extracardiac Finding', |
|
6880
|
|
|
|
|
|
|
'1.2.840.10008.6.1.749' => 'Attenuation Correction Method', |
|
6881
|
|
|
|
|
|
|
'1.2.840.10008.6.1.750' => 'Level of Risk', |
|
6882
|
|
|
|
|
|
|
'1.2.840.10008.6.1.751' => 'LV Function', |
|
6883
|
|
|
|
|
|
|
'1.2.840.10008.6.1.752' => 'Perfusion Finding', |
|
6884
|
|
|
|
|
|
|
'1.2.840.10008.6.1.753' => 'Perfusion Morphology', |
|
6885
|
|
|
|
|
|
|
'1.2.840.10008.6.1.754' => 'Ventricular Enlargement', |
|
6886
|
|
|
|
|
|
|
'1.2.840.10008.6.1.755' => 'Stress Test Procedure', |
|
6887
|
|
|
|
|
|
|
'1.2.840.10008.6.1.756' => 'Indications for Stress Test', |
|
6888
|
|
|
|
|
|
|
'1.2.840.10008.6.1.757' => 'Chest Pain', |
|
6889
|
|
|
|
|
|
|
'1.2.840.10008.6.1.758' => 'Exerciser Device', |
|
6890
|
|
|
|
|
|
|
'1.2.840.10008.6.1.759' => 'Stress Agent', |
|
6891
|
|
|
|
|
|
|
'1.2.840.10008.6.1.760' => 'Indications for Pharmacological Stress Test', |
|
6892
|
|
|
|
|
|
|
'1.2.840.10008.6.1.761' => 'Non-invasive Cardiac Imaging Procedure', |
|
6893
|
|
|
|
|
|
|
'1.2.840.10008.6.1.763' => 'Exercise ECG Summary Code', |
|
6894
|
|
|
|
|
|
|
'1.2.840.10008.6.1.764' => 'Stress Imaging Summary Code', |
|
6895
|
|
|
|
|
|
|
'1.2.840.10008.6.1.765' => 'Speed of Response', |
|
6896
|
|
|
|
|
|
|
'1.2.840.10008.6.1.766' => 'BP Response', |
|
6897
|
|
|
|
|
|
|
'1.2.840.10008.6.1.767' => 'Treadmill Speed', |
|
6898
|
|
|
|
|
|
|
'1.2.840.10008.6.1.768' => 'Stress Hemodynamic Finding', |
|
6899
|
|
|
|
|
|
|
'1.2.840.10008.6.1.769' => 'Perfusion Finding Method', |
|
6900
|
|
|
|
|
|
|
'1.2.840.10008.6.1.770' => 'Comparison Finding', |
|
6901
|
|
|
|
|
|
|
'1.2.840.10008.6.1.771' => 'Stress Symptom', |
|
6902
|
|
|
|
|
|
|
'1.2.840.10008.6.1.772' => 'Stress Test Termination Reason', |
|
6903
|
|
|
|
|
|
|
'1.2.840.10008.6.1.773' => 'QTc Measurement', |
|
6904
|
|
|
|
|
|
|
'1.2.840.10008.6.1.774' => 'ECG Timing Measurement', |
|
6905
|
|
|
|
|
|
|
'1.2.840.10008.6.1.775' => 'ECG Axis Measurement', |
|
6906
|
|
|
|
|
|
|
'1.2.840.10008.6.1.776' => 'ECG Finding', |
|
6907
|
|
|
|
|
|
|
'1.2.840.10008.6.1.777' => 'ST Segment Finding', |
|
6908
|
|
|
|
|
|
|
'1.2.840.10008.6.1.778' => 'ST Segment Location', |
|
6909
|
|
|
|
|
|
|
'1.2.840.10008.6.1.779' => 'ST Segment Morphology', |
|
6910
|
|
|
|
|
|
|
'1.2.840.10008.6.1.780' => 'Ectopic Beat Morphology', |
|
6911
|
|
|
|
|
|
|
'1.2.840.10008.6.1.781' => 'Perfusion Comparison Finding', |
|
6912
|
|
|
|
|
|
|
'1.2.840.10008.6.1.782' => 'Tolerance Comparison Finding', |
|
6913
|
|
|
|
|
|
|
'1.2.840.10008.6.1.783' => 'Wall Motion Comparison Finding', |
|
6914
|
|
|
|
|
|
|
'1.2.840.10008.6.1.784' => 'Stress Scoring Scale', |
|
6915
|
|
|
|
|
|
|
'1.2.840.10008.6.1.785' => 'Perceived Exertion Scale', |
|
6916
|
|
|
|
|
|
|
'1.2.840.10008.6.1.786' => 'Ventricle Identification', |
|
6917
|
|
|
|
|
|
|
'1.2.840.10008.6.1.787' => 'Colon Overall Assessment', |
|
6918
|
|
|
|
|
|
|
'1.2.840.10008.6.1.788' => 'Colon Finding or Feature', |
|
6919
|
|
|
|
|
|
|
'1.2.840.10008.6.1.789' => 'Colon Finding or Feature Modifier', |
|
6920
|
|
|
|
|
|
|
'1.2.840.10008.6.1.790' => 'Colon Non-lesion Object Type', |
|
6921
|
|
|
|
|
|
|
'1.2.840.10008.6.1.791' => 'Anatomic Non-colon Finding', |
|
6922
|
|
|
|
|
|
|
'1.2.840.10008.6.1.792' => 'Clockface Location for Colon', |
|
6923
|
|
|
|
|
|
|
'1.2.840.10008.6.1.793' => 'Recumbent Patient Orientation for Colon', |
|
6924
|
|
|
|
|
|
|
'1.2.840.10008.6.1.794' => 'Colon Quantitative Temporal Difference Type', |
|
6925
|
|
|
|
|
|
|
'1.2.840.10008.6.1.795' => 'Colon Types of Quality Control Standard', |
|
6926
|
|
|
|
|
|
|
'1.2.840.10008.6.1.796' => 'Colon Morphology Descriptor', |
|
6927
|
|
|
|
|
|
|
'1.2.840.10008.6.1.797' => 'Location in Intestinal Tract', |
|
6928
|
|
|
|
|
|
|
'1.2.840.10008.6.1.798' => 'Colon CAD Material Description', |
|
6929
|
|
|
|
|
|
|
'1.2.840.10008.6.1.799' => 'Calculated Value for Colon Finding', |
|
6930
|
|
|
|
|
|
|
'1.2.840.10008.6.1.800' => 'Ophthalmic Horizontal Direction', |
|
6931
|
|
|
|
|
|
|
'1.2.840.10008.6.1.801' => 'Ophthalmic Vertical Direction', |
|
6932
|
|
|
|
|
|
|
'1.2.840.10008.6.1.802' => 'Ophthalmic Visual Acuity Type', |
|
6933
|
|
|
|
|
|
|
'1.2.840.10008.6.1.803' => 'Arterial Pulse Waveform', |
|
6934
|
|
|
|
|
|
|
'1.2.840.10008.6.1.804' => 'Respiration Waveform', |
|
6935
|
|
|
|
|
|
|
'1.2.840.10008.6.1.805' => 'Ultrasound Contrast/Bolus Agent', |
|
6936
|
|
|
|
|
|
|
'1.2.840.10008.6.1.806' => 'Protocol Interval Event', |
|
6937
|
|
|
|
|
|
|
'1.2.840.10008.6.1.807' => 'Transducer Scan Pattern', |
|
6938
|
|
|
|
|
|
|
'1.2.840.10008.6.1.808' => 'Ultrasound Transducer Geometry', |
|
6939
|
|
|
|
|
|
|
'1.2.840.10008.6.1.809' => 'Ultrasound Transducer Beam Steering', |
|
6940
|
|
|
|
|
|
|
'1.2.840.10008.6.1.810' => 'Ultrasound Transducer Application', |
|
6941
|
|
|
|
|
|
|
'1.2.840.10008.6.1.811' => 'Instance Availability Status', |
|
6942
|
|
|
|
|
|
|
'1.2.840.10008.6.1.812' => 'Modality PPS Discontinuation Reason', |
|
6943
|
|
|
|
|
|
|
'1.2.840.10008.6.1.813' => 'Media Import PPS Discontinuation Reason', |
|
6944
|
|
|
|
|
|
|
'1.2.840.10008.6.1.814' => 'DX Anatomy Imaged for Animal', |
|
6945
|
|
|
|
|
|
|
'1.2.840.10008.6.1.815' => 'Common Anatomic Regions for Animal', |
|
6946
|
|
|
|
|
|
|
'1.2.840.10008.6.1.816' => 'DX View for Animal', |
|
6947
|
|
|
|
|
|
|
'1.2.840.10008.6.1.817' => 'Institutional Department/Unit/Service', |
|
6948
|
|
|
|
|
|
|
'1.2.840.10008.6.1.818' => 'Purpose of Reference to Predecessor Report', |
|
6949
|
|
|
|
|
|
|
'1.2.840.10008.6.1.819' => 'Visual Fixation Quality During Acquisition', |
|
6950
|
|
|
|
|
|
|
'1.2.840.10008.6.1.820' => 'Visual Fixation Quality Problem', |
|
6951
|
|
|
|
|
|
|
'1.2.840.10008.6.1.821' => 'Ophthalmic Macular Grid Problem', |
|
6952
|
|
|
|
|
|
|
'1.2.840.10008.6.1.822' => 'Organization', |
|
6953
|
|
|
|
|
|
|
'1.2.840.10008.6.1.823' => 'Mixed Breed', |
|
6954
|
|
|
|
|
|
|
'1.2.840.10008.6.1.824' => 'Broselow-Luten Pediatric Size Category', |
|
6955
|
|
|
|
|
|
|
'1.2.840.10008.6.1.825' => 'CMDCTECC Calcium Scoring Patient Size Category', |
|
6956
|
|
|
|
|
|
|
'1.2.840.10008.6.1.826' => 'Cardiac Ultrasound Report Title', |
|
6957
|
|
|
|
|
|
|
'1.2.840.10008.6.1.827' => 'Cardiac Ultrasound Indication for Study', |
|
6958
|
|
|
|
|
|
|
'1.2.840.10008.6.1.828' => 'Pediatric, Fetal and Congenital Cardiac Surgical Intervention', |
|
6959
|
|
|
|
|
|
|
'1.2.840.10008.6.1.829' => 'Cardiac Ultrasound Summary Code', |
|
6960
|
|
|
|
|
|
|
'1.2.840.10008.6.1.830' => 'Cardiac Ultrasound Fetal Summary Code', |
|
6961
|
|
|
|
|
|
|
'1.2.840.10008.6.1.831' => 'Cardiac Ultrasound Common Linear Measurement', |
|
6962
|
|
|
|
|
|
|
'1.2.840.10008.6.1.832' => 'Cardiac Ultrasound Linear Valve Measurement', |
|
6963
|
|
|
|
|
|
|
'1.2.840.10008.6.1.833' => 'Cardiac Ultrasound Cardiac Function', |
|
6964
|
|
|
|
|
|
|
'1.2.840.10008.6.1.834' => 'Cardiac Ultrasound Area Measurement', |
|
6965
|
|
|
|
|
|
|
'1.2.840.10008.6.1.835' => 'Cardiac Ultrasound Hemodynamic Measurement', |
|
6966
|
|
|
|
|
|
|
'1.2.840.10008.6.1.836' => 'CID 12255', |
|
6967
|
|
|
|
|
|
|
'1.2.840.10008.6.1.838' => 'Cardiac Ultrasound Left Ventricle Measurement', |
|
6968
|
|
|
|
|
|
|
'1.2.840.10008.6.1.839' => 'Cardiac Ultrasound Right Ventricle Measurement', |
|
6969
|
|
|
|
|
|
|
'1.2.840.10008.6.1.840' => 'Cardiac Ultrasound Ventricles Measurement', |
|
6970
|
|
|
|
|
|
|
'1.2.840.10008.6.1.841' => 'Cardiac Ultrasound Pulmonary Artery Measurement', |
|
6971
|
|
|
|
|
|
|
'1.2.840.10008.6.1.842' => 'Cardiac Ultrasound Pulmonary Vein', |
|
6972
|
|
|
|
|
|
|
'1.2.840.10008.6.1.843' => 'Cardiac Ultrasound Pulmonary Valve Measurement', |
|
6973
|
|
|
|
|
|
|
'1.2.840.10008.6.1.844' => 'Cardiac Ultrasound Venous Return Pulmonary Measurement', |
|
6974
|
|
|
|
|
|
|
'1.2.840.10008.6.1.845' => 'Cardiac Ultrasound Venous Return Systemic Measurement', |
|
6975
|
|
|
|
|
|
|
'1.2.840.10008.6.1.846' => 'Cardiac Ultrasound Atria and Atrial Septum Measurement', |
|
6976
|
|
|
|
|
|
|
'1.2.840.10008.6.1.847' => 'Cardiac Ultrasound Mitral Valve Measurement', |
|
6977
|
|
|
|
|
|
|
'1.2.840.10008.6.1.848' => 'Cardiac Ultrasound Tricuspid Valve Measurement', |
|
6978
|
|
|
|
|
|
|
'1.2.840.10008.6.1.849' => 'Cardiac Ultrasound Atrioventricular Valve Measurement', |
|
6979
|
|
|
|
|
|
|
'1.2.840.10008.6.1.850' => 'Cardiac Ultrasound Interventricular Septum Measurement', |
|
6980
|
|
|
|
|
|
|
'1.2.840.10008.6.1.851' => 'Cardiac Ultrasound Aortic Valve Measurement', |
|
6981
|
|
|
|
|
|
|
'1.2.840.10008.6.1.852' => 'Cardiac Ultrasound Outflow Tract Measurement', |
|
6982
|
|
|
|
|
|
|
'1.2.840.10008.6.1.853' => 'Cardiac Ultrasound Semilunar Valve, Annulate and Sinus Measurement', |
|
6983
|
|
|
|
|
|
|
'1.2.840.10008.6.1.854' => 'Cardiac Ultrasound Aortic Sinotubular Junction Measurement', |
|
6984
|
|
|
|
|
|
|
'1.2.840.10008.6.1.855' => 'Cardiac Ultrasound Aorta Measurement', |
|
6985
|
|
|
|
|
|
|
'1.2.840.10008.6.1.856' => 'Cardiac Ultrasound Coronary Artery Measurement', |
|
6986
|
|
|
|
|
|
|
'1.2.840.10008.6.1.857' => 'Cardiac Ultrasound Aorto Pulmonary Connection Measurement', |
|
6987
|
|
|
|
|
|
|
'1.2.840.10008.6.1.858' => 'Cardiac Ultrasound Pericardium and Pleura Measurement', |
|
6988
|
|
|
|
|
|
|
'1.2.840.10008.6.1.859' => 'Cardiac Ultrasound Fetal General Measurement', |
|
6989
|
|
|
|
|
|
|
'1.2.840.10008.6.1.860' => 'Cardiac Ultrasound Target Site', |
|
6990
|
|
|
|
|
|
|
'1.2.840.10008.6.1.861' => 'Cardiac Ultrasound Target Site Modifier', |
|
6991
|
|
|
|
|
|
|
'1.2.840.10008.6.1.862' => 'Cardiac Ultrasound Venous Return Systemic Finding Site', |
|
6992
|
|
|
|
|
|
|
'1.2.840.10008.6.1.863' => 'Cardiac Ultrasound Venous Return Pulmonary Finding Site', |
|
6993
|
|
|
|
|
|
|
'1.2.840.10008.6.1.864' => 'Cardiac Ultrasound Atria and Atrial Septum Finding Site', |
|
6994
|
|
|
|
|
|
|
'1.2.840.10008.6.1.865' => 'Cardiac Ultrasound Atrioventricular Valve Finding Site', |
|
6995
|
|
|
|
|
|
|
'1.2.840.10008.6.1.866' => 'Cardiac Ultrasound Interventricular Septum Finding Site', |
|
6996
|
|
|
|
|
|
|
'1.2.840.10008.6.1.867' => 'Cardiac Ultrasound Ventricle Finding Site', |
|
6997
|
|
|
|
|
|
|
'1.2.840.10008.6.1.868' => 'Cardiac Ultrasound Outflow Tract Finding Site', |
|
6998
|
|
|
|
|
|
|
'1.2.840.10008.6.1.869' => 'Cardiac Ultrasound Semilunar Valve, Annulus and Sinus Finding Site', |
|
6999
|
|
|
|
|
|
|
'1.2.840.10008.6.1.870' => 'Cardiac Ultrasound Pulmonary Artery Finding Site', |
|
7000
|
|
|
|
|
|
|
'1.2.840.10008.6.1.871' => 'Cardiac Ultrasound Aorta Finding Site', |
|
7001
|
|
|
|
|
|
|
'1.2.840.10008.6.1.872' => 'Cardiac Ultrasound Coronary Artery Finding Site', |
|
7002
|
|
|
|
|
|
|
'1.2.840.10008.6.1.873' => 'Cardiac Ultrasound Aortopulmonary Connection Finding Site', |
|
7003
|
|
|
|
|
|
|
'1.2.840.10008.6.1.874' => 'Cardiac Ultrasound Pericardium and Pleura Finding Site', |
|
7004
|
|
|
|
|
|
|
'1.2.840.10008.6.1.876' => 'Ophthalmic Ultrasound Axial Measurements Type', |
|
7005
|
|
|
|
|
|
|
'1.2.840.10008.6.1.877' => 'Lens Status', |
|
7006
|
|
|
|
|
|
|
'1.2.840.10008.6.1.878' => 'Vitreous Status', |
|
7007
|
|
|
|
|
|
|
'1.2.840.10008.6.1.879' => 'Ophthalmic Axial Length Measurements Segment Name', |
|
7008
|
|
|
|
|
|
|
'1.2.840.10008.6.1.880' => 'Refractive Surgery Type', |
|
7009
|
|
|
|
|
|
|
'1.2.840.10008.6.1.881' => 'Keratometry Descriptor', |
|
7010
|
|
|
|
|
|
|
'1.2.840.10008.6.1.882' => 'IOL Calculation Formula', |
|
7011
|
|
|
|
|
|
|
'1.2.840.10008.6.1.883' => 'Lens Constant Type', |
|
7012
|
|
|
|
|
|
|
'1.2.840.10008.6.1.884' => 'Refractive Error Type', |
|
7013
|
|
|
|
|
|
|
'1.2.840.10008.6.1.885' => 'Anterior Chamber Depth Definition', |
|
7014
|
|
|
|
|
|
|
'1.2.840.10008.6.1.886' => 'Ophthalmic Measurement or Calculation Data Source', |
|
7015
|
|
|
|
|
|
|
'1.2.840.10008.6.1.887' => 'CID 4241', |
|
7016
|
|
|
|
|
|
|
'1.2.840.10008.6.1.889' => 'Ophthalmic Quality Metric Type', |
|
7017
|
|
|
|
|
|
|
'1.2.840.10008.6.1.890' => 'Ophthalmic Agent Concentration Unit', |
|
7018
|
|
|
|
|
|
|
'1.2.840.10008.6.1.891' => 'Functional Condition Present During Acquisition', |
|
7019
|
|
|
|
|
|
|
'1.2.840.10008.6.1.892' => 'Joint Position During Acquisition', |
|
7020
|
|
|
|
|
|
|
'1.2.840.10008.6.1.893' => 'Joint Positioning Method', |
|
7021
|
|
|
|
|
|
|
'1.2.840.10008.6.1.894' => 'Physical Force Applied During Acquisition', |
|
7022
|
|
|
|
|
|
|
'1.2.840.10008.6.1.895' => 'ECG Control Numeric Variable', |
|
7023
|
|
|
|
|
|
|
'1.2.840.10008.6.1.896' => 'ECG Control Text Variable', |
|
7024
|
|
|
|
|
|
|
'1.2.840.10008.6.1.897' => 'Whole Slide Microscopy Image Referenced Image Purpose of Reference', |
|
7025
|
|
|
|
|
|
|
'1.2.840.10008.6.1.898' => 'Microscopy Lens Type', |
|
7026
|
|
|
|
|
|
|
'1.2.840.10008.6.1.899' => 'Microscopy Illuminator and Sensor Color', |
|
7027
|
|
|
|
|
|
|
'1.2.840.10008.6.1.900' => 'Microscopy Illumination Method', |
|
7028
|
|
|
|
|
|
|
'1.2.840.10008.6.1.901' => 'Microscopy Filter', |
|
7029
|
|
|
|
|
|
|
'1.2.840.10008.6.1.902' => 'Microscopy Illuminator Type', |
|
7030
|
|
|
|
|
|
|
'1.2.840.10008.6.1.903' => 'Audit Event ID', |
|
7031
|
|
|
|
|
|
|
'1.2.840.10008.6.1.904' => 'Audit Event Type Code', |
|
7032
|
|
|
|
|
|
|
'1.2.840.10008.6.1.905' => 'Audit Active Participant Role ID Code', |
|
7033
|
|
|
|
|
|
|
'1.2.840.10008.6.1.906' => 'Security Alert Type Code', |
|
7034
|
|
|
|
|
|
|
'1.2.840.10008.6.1.907' => 'Audit Participant Object ID Type Code', |
|
7035
|
|
|
|
|
|
|
'1.2.840.10008.6.1.908' => 'Media Type Code', |
|
7036
|
|
|
|
|
|
|
'1.2.840.10008.6.1.909' => 'Visual Field Static Perimetry Test Pattern', |
|
7037
|
|
|
|
|
|
|
'1.2.840.10008.6.1.910' => 'Visual Field Static Perimetry Test Strategy', |
|
7038
|
|
|
|
|
|
|
'1.2.840.10008.6.1.911' => 'Visual Field Static Perimetry Screening Test Mode', |
|
7039
|
|
|
|
|
|
|
'1.2.840.10008.6.1.912' => 'Visual Field Static Perimetry Fixation Strategy', |
|
7040
|
|
|
|
|
|
|
'1.2.840.10008.6.1.913' => 'Visual Field Static Perimetry Test Analysis Result', |
|
7041
|
|
|
|
|
|
|
'1.2.840.10008.6.1.914' => 'Visual Field Illumination Color', |
|
7042
|
|
|
|
|
|
|
'1.2.840.10008.6.1.915' => 'Visual Field Procedure Modifier', |
|
7043
|
|
|
|
|
|
|
'1.2.840.10008.6.1.916' => 'Visual Field Global Index Name', |
|
7044
|
|
|
|
|
|
|
'1.2.840.10008.6.1.917' => 'Abstract Multi-dimensional Image Model Component Semantic', |
|
7045
|
|
|
|
|
|
|
'1.2.840.10008.6.1.918' => 'Abstract Multi-dimensional Image Model Component Unit', |
|
7046
|
|
|
|
|
|
|
'1.2.840.10008.6.1.919' => 'Abstract Multi-dimensional Image Model Dimension Semantic', |
|
7047
|
|
|
|
|
|
|
'1.2.840.10008.6.1.920' => 'Abstract Multi-dimensional Image Model Dimension Unit', |
|
7048
|
|
|
|
|
|
|
'1.2.840.10008.6.1.921' => 'Abstract Multi-dimensional Image Model Axis Direction', |
|
7049
|
|
|
|
|
|
|
'1.2.840.10008.6.1.922' => 'Abstract Multi-dimensional Image Model Axis Orientation', |
|
7050
|
|
|
|
|
|
|
'1.2.840.10008.6.1.923' => 'Abstract Multi-dimensional Image Model Qualitative Dimension Sample Semantic', |
|
7051
|
|
|
|
|
|
|
'1.2.840.10008.6.1.924' => 'Planning Method', |
|
7052
|
|
|
|
|
|
|
'1.2.840.10008.6.1.925' => 'De-identification Method', |
|
7053
|
|
|
|
|
|
|
'1.2.840.10008.6.1.926' => 'Measurement Orientation', |
|
7054
|
|
|
|
|
|
|
'1.2.840.10008.6.1.927' => 'ECG Global Waveform Duration', |
|
7055
|
|
|
|
|
|
|
'1.2.840.10008.6.1.930' => 'ICD', |
|
7056
|
|
|
|
|
|
|
'1.2.840.10008.6.1.931' => 'Radiotherapy General Workitem Definition', |
|
7057
|
|
|
|
|
|
|
'1.2.840.10008.6.1.932' => 'Radiotherapy Acquisition Workitem Definition', |
|
7058
|
|
|
|
|
|
|
'1.2.840.10008.6.1.933' => 'Radiotherapy Registration Workitem Definition', |
|
7059
|
|
|
|
|
|
|
'1.2.840.10008.6.1.934' => 'Contrast Bolus Substance', |
|
7060
|
|
|
|
|
|
|
'1.2.840.10008.6.1.935' => 'Label Type', |
|
7061
|
|
|
|
|
|
|
'1.2.840.10008.6.1.936' => 'Ophthalmic Mapping Unit for Real World Value Mapping', |
|
7062
|
|
|
|
|
|
|
'1.2.840.10008.6.1.937' => 'Ophthalmic Mapping Acquisition Method', |
|
7063
|
|
|
|
|
|
|
'1.2.840.10008.6.1.938' => 'Retinal Thickness Definition', |
|
7064
|
|
|
|
|
|
|
'1.2.840.10008.6.1.939' => 'Ophthalmic Thickness Map Value Type', |
|
7065
|
|
|
|
|
|
|
'1.2.840.10008.6.1.940' => 'Ophthalmic Map Purpose of Reference', |
|
7066
|
|
|
|
|
|
|
'1.2.840.10008.6.1.941' => 'Ophthalmic Thickness Deviation Category', |
|
7067
|
|
|
|
|
|
|
'1.2.840.10008.6.1.942' => 'Ophthalmic Anatomic Structure Reference Point', |
|
7068
|
|
|
|
|
|
|
'1.2.840.10008.6.1.943' => 'Cardiac Synchronization Technique', |
|
7069
|
|
|
|
|
|
|
'1.2.840.10008.6.1.944' => 'CID 8130', |
|
7070
|
|
|
|
|
|
|
'1.2.840.10008.6.1.947' => 'Size Specific Dose Estimation Method for CT', |
|
7071
|
|
|
|
|
|
|
'1.2.840.10008.6.1.948' => 'Pathology Imaging Protocol', |
|
7072
|
|
|
|
|
|
|
'1.2.840.10008.6.1.949' => 'Magnification Selection', |
|
7073
|
|
|
|
|
|
|
'1.2.840.10008.6.1.950' => 'Tissue Selection', |
|
7074
|
|
|
|
|
|
|
'1.2.840.10008.6.1.951' => 'General Region of Interest Measurement Modifier', |
|
7075
|
|
|
|
|
|
|
'1.2.840.10008.6.1.952' => 'Measurement Derived From Multiple ROI Measurements', |
|
7076
|
|
|
|
|
|
|
'1.2.840.10008.6.1.953' => 'Surface Scan Acquisition Type', |
|
7077
|
|
|
|
|
|
|
'1.2.840.10008.6.1.954' => 'Surface Scan Mode Type', |
|
7078
|
|
|
|
|
|
|
'1.2.840.10008.6.1.956' => 'Surface Scan Registration Method Type', |
|
7079
|
|
|
|
|
|
|
'1.2.840.10008.6.1.957' => 'Basic Cardiac View', |
|
7080
|
|
|
|
|
|
|
'1.2.840.10008.6.1.958' => 'CT Reconstruction Algorithm', |
|
7081
|
|
|
|
|
|
|
'1.2.840.10008.6.1.959' => 'Detector Type', |
|
7082
|
|
|
|
|
|
|
'1.2.840.10008.6.1.960' => 'CR/DR Mechanical Configuration', |
|
7083
|
|
|
|
|
|
|
'1.2.840.10008.6.1.961' => 'Projection X-Ray Acquisition Device Type', |
|
7084
|
|
|
|
|
|
|
'1.2.840.10008.6.1.962' => 'Abstract Segmentation Type', |
|
7085
|
|
|
|
|
|
|
'1.2.840.10008.6.1.963' => 'Common Tissue Segmentation Type', |
|
7086
|
|
|
|
|
|
|
'1.2.840.10008.6.1.964' => 'Peripheral Nervous System Segmentation Type', |
|
7087
|
|
|
|
|
|
|
'1.2.840.10008.6.1.965' => 'Corneal Topography Mapping Unit for Real World Value Mapping', |
|
7088
|
|
|
|
|
|
|
'1.2.840.10008.6.1.966' => 'Corneal Topography Map Value Type', |
|
7089
|
|
|
|
|
|
|
'1.2.840.10008.6.1.967' => 'Brain Structure for Volumetric Measurement', |
|
7090
|
|
|
|
|
|
|
'1.2.840.10008.6.1.968' => 'RT Dose Derivation', |
|
7091
|
|
|
|
|
|
|
'1.2.840.10008.6.1.969' => 'RT Dose Purpose of Reference', |
|
7092
|
|
|
|
|
|
|
'1.2.840.10008.6.1.970' => 'Spectroscopy Purpose of Reference', |
|
7093
|
|
|
|
|
|
|
'1.2.840.10008.6.1.971' => 'Scheduled Processing Parameter Concept Codes for RT Treatment', |
|
7094
|
|
|
|
|
|
|
'1.2.840.10008.6.1.972' => 'Radiopharmaceutical Organ Dose Reference Authority', |
|
7095
|
|
|
|
|
|
|
'1.2.840.10008.6.1.973' => 'Source of Radioisotope Activity Information', |
|
7096
|
|
|
|
|
|
|
'1.2.840.10008.6.1.975' => 'Intravenous Extravasation Symptom', |
|
7097
|
|
|
|
|
|
|
'1.2.840.10008.6.1.976' => 'Radiosensitive Organ', |
|
7098
|
|
|
|
|
|
|
'1.2.840.10008.6.1.977' => 'Radiopharmaceutical Patient State', |
|
7099
|
|
|
|
|
|
|
'1.2.840.10008.6.1.978' => 'GFR Measurement', |
|
7100
|
|
|
|
|
|
|
'1.2.840.10008.6.1.979' => 'GFR Measurement Method', |
|
7101
|
|
|
|
|
|
|
'1.2.840.10008.6.1.980' => 'Visual Evaluation Method', |
|
7102
|
|
|
|
|
|
|
'1.2.840.10008.6.1.981' => 'Test Pattern Code', |
|
7103
|
|
|
|
|
|
|
'1.2.840.10008.6.1.982' => 'Measurement Pattern Code', |
|
7104
|
|
|
|
|
|
|
'1.2.840.10008.6.1.983' => 'Display Device Type', |
|
7105
|
|
|
|
|
|
|
'1.2.840.10008.6.1.984' => 'SUV Unit', |
|
7106
|
|
|
|
|
|
|
'1.2.840.10008.6.1.985' => 'T1 Measurement Method', |
|
7107
|
|
|
|
|
|
|
'1.2.840.10008.6.1.986' => 'Tracer Kinetic Model', |
|
7108
|
|
|
|
|
|
|
'1.2.840.10008.6.1.987' => 'Perfusion Measurement Method', |
|
7109
|
|
|
|
|
|
|
'1.2.840.10008.6.1.988' => 'Arterial Input Function Measurement Method', |
|
7110
|
|
|
|
|
|
|
'1.2.840.10008.6.1.989' => 'Bolus Arrival Time Derivation Method', |
|
7111
|
|
|
|
|
|
|
'1.2.840.10008.6.1.990' => 'Perfusion Analysis Method', |
|
7112
|
|
|
|
|
|
|
'1.2.840.10008.6.1.991' => 'Quantitative Method Used for Perfusion and Tracer Kinetic Model', |
|
7113
|
|
|
|
|
|
|
'1.2.840.10008.6.1.992' => 'Tracer Kinetic Model Parameter', |
|
7114
|
|
|
|
|
|
|
'1.2.840.10008.6.1.993' => 'Perfusion Model Parameter', |
|
7115
|
|
|
|
|
|
|
'1.2.840.10008.6.1.994' => 'Model-Independent Dynamic Contrast Analysis Parameter', |
|
7116
|
|
|
|
|
|
|
'1.2.840.10008.6.1.995' => 'Tracer Kinetic Modeling Covariate', |
|
7117
|
|
|
|
|
|
|
'1.2.840.10008.6.1.996' => 'Contrast Characteristic', |
|
7118
|
|
|
|
|
|
|
'1.2.840.10008.6.1.997' => 'Measurement Report Document Title', |
|
7119
|
|
|
|
|
|
|
'1.2.840.10008.6.1.998' => 'Quantitative Diagnostic Imaging Procedure', |
|
7120
|
|
|
|
|
|
|
'1.2.840.10008.6.1.999' => 'PET Region of Interest Measurement', |
|
7121
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1000' => 'Gray Level Co-occurrence Matrix Measurement', |
|
7122
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1001' => 'Texture Measurement', |
|
7123
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1002' => 'Time Point Type', |
|
7124
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1003' => 'Generic Intensity and Size Measurement', |
|
7125
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1004' => 'Response Criteria', |
|
7126
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1005' => 'Fetal Biometry Anatomic Site', |
|
7127
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1006' => 'Fetal Long Bone Anatomic Site', |
|
7128
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1007' => 'Fetal Cranium Anatomic Site', |
|
7129
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1008' => 'Pelvis and Uterus Anatomic Site', |
|
7130
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1009' => 'Parametric Map Derivation Image Purpose of Reference', |
|
7131
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1010' => 'Physical Quantity Descriptor', |
|
7132
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1011' => 'Lymph Node Anatomic Site', |
|
7133
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1012' => 'Head and Neck Cancer Anatomic Site', |
|
7134
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1013' => 'Fiber Tract In Brainstem', |
|
7135
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1014' => 'Projection and Thalamic Fiber', |
|
7136
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1015' => 'Association Fiber', |
|
7137
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1016' => 'Limbic System Tract', |
|
7138
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1017' => 'Commissural Fiber', |
|
7139
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1018' => 'Cranial Nerve', |
|
7140
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1019' => 'Spinal Cord Fiber', |
|
7141
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1020' => 'Tractography Anatomic Site', |
|
7142
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1021' => 'Primary Anatomic Structure for Intra-oral Radiography (Supernumerary Dentition - Designation of Teeth)', |
|
7143
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1022' => 'Primary Anatomic Structure for Intra-oral and Craniofacial Radiography - Teeth', |
|
7144
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1023' => 'IEC61217 Device Position Parameter', |
|
7145
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1024' => 'IEC61217 Gantry Position Parameter', |
|
7146
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1025' => 'IEC61217 Patient Support Position Parameter', |
|
7147
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1026' => 'Actionable Finding Classification', |
|
7148
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1027' => 'Image Quality Assessment', |
|
7149
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1028' => 'Summary Radiation Exposure Quantity', |
|
7150
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1029' => 'Wide Field Ophthalmic Photography Transformation Method', |
|
7151
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1030' => 'PET Unit', |
|
7152
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1031' => 'Implant Material', |
|
7153
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1032' => 'Intervention Type', |
|
7154
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1033' => 'Implant Template View Orientation', |
|
7155
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1034' => 'Implant Template Modified View Orientation', |
|
7156
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1035' => 'Implant Target Anatomy', |
|
7157
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1036' => 'Implant Planning Landmark', |
|
7158
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1037' => 'Human Hip Implant Planning Landmark', |
|
7159
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1038' => 'Implant Component Type', |
|
7160
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1039' => 'Human Hip Implant Component Type', |
|
7161
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1040' => 'Human Trauma Implant Component Type', |
|
7162
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1041' => 'Implant Fixation Method', |
|
7163
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1042' => 'Device Participating Role', |
|
7164
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1043' => 'Container Type', |
|
7165
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1044' => 'Container Component Type', |
|
7166
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1045' => 'Anatomic Pathology Specimen Type', |
|
7167
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1046' => 'Breast Tissue Specimen Type', |
|
7168
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1047' => 'Specimen Collection Procedure', |
|
7169
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1048' => 'Specimen Sampling Procedure', |
|
7170
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1049' => 'Specimen Preparation Procedure', |
|
7171
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1050' => 'Specimen Stain', |
|
7172
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1051' => 'Specimen Preparation Step', |
|
7173
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1052' => 'Specimen Fixative', |
|
7174
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1053' => 'Specimen Embedding Media', |
|
7175
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1054' => 'Source of Projection X-Ray Dose Information', |
|
7176
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1055' => 'Source of CT Dose Information', |
|
7177
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1056' => 'Radiation Dose Reference Point', |
|
7178
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1057' => 'Volumetric View Description', |
|
7179
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1058' => 'Volumetric View Modifier', |
|
7180
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1059' => 'Diffusion Acquisition Value Type', |
|
7181
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1060' => 'Diffusion Model Value Type', |
|
7182
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1061' => 'Diffusion Tractography Algorithm Family', |
|
7183
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1062' => 'Diffusion Tractography Measurement Type', |
|
7184
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1063' => 'Research Animal Source Registry', |
|
7185
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1064' => 'Yes-No Only', |
|
7186
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1065' => 'Biosafety Level', |
|
7187
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1066' => 'Biosafety Control Reason', |
|
7188
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1067' => 'Sex - Male Female or Both', |
|
7189
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1068' => 'Animal Room Type', |
|
7190
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1069' => 'Device Reuse', |
|
7191
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1070' => 'Animal Bedding Material', |
|
7192
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1071' => 'Animal Shelter Type', |
|
7193
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1072' => 'Animal Feed Type', |
|
7194
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1073' => 'Animal Feed Source', |
|
7195
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1074' => 'Animal Feeding Method', |
|
7196
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1075' => 'Water Type', |
|
7197
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1076' => 'Anesthesia Category Code Type for Small Animal Anesthesia', |
|
7198
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1077' => 'Anesthesia Category Code Type from Anesthesia Quality Initiative', |
|
7199
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1078' => 'Anesthesia Induction Code Type for Small Animal Anesthesia', |
|
7200
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1079' => 'Anesthesia Induction Code Type from Anesthesia Quality Initiative', |
|
7201
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1080' => 'Anesthesia Maintenance Code Type for Small Animal Anesthesia', |
|
7202
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1081' => 'Anesthesia Maintenance Code Type from Anesthesia Quality Initiative', |
|
7203
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1082' => 'Airway Management Method Code Type for Small Animal Anesthesia', |
|
7204
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1083' => 'Airway Management Method Code Type from Anesthesia Quality Initiative', |
|
7205
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1084' => 'Airway Management Sub-Method Code Type for Small Animal Anesthesia', |
|
7206
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1085' => 'Airway Management Sub-Method Code Type from Anesthesia Quality Initiative', |
|
7207
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1086' => 'Medication Type for Small Animal Anesthesia', |
|
7208
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1087' => 'Medication Type Code Type from Anesthesia Quality Initiative', |
|
7209
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1088' => 'Medication for Small Animal Anesthesia', |
|
7210
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1089' => 'Inhalational Anesthesia Agent for Small Animal Anesthesia', |
|
7211
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1090' => 'Injectable Anesthesia Agent for Small Animal Anesthesia', |
|
7212
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1091' => 'Premedication Agent for Small Animal Anesthesia', |
|
7213
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1092' => 'Neuromuscular Blocking Agent for Small Animal Anesthesia', |
|
7214
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1093' => 'Ancillary Medications for Small Animal Anesthesia', |
|
7215
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1094' => 'Carrier Gases for Small Animal Anesthesia', |
|
7216
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1095' => 'Local Anesthetics for Small Animal Anesthesia', |
|
7217
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1096' => 'Procedure Phase Requiring Anesthesia', |
|
7218
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1097' => 'Surgical Procedure Phase Requiring Anesthesia', |
|
7219
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1098' => 'CID 633', |
|
7220
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1099' => 'Animal Handling Phase', |
|
7221
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1100' => 'Heating Method', |
|
7222
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1101' => 'Temperature Sensor Device Component Type for Small Animal Procedure', |
|
7223
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1102' => 'Exogenous Substance Type', |
|
7224
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1103' => 'Exogenous Substance', |
|
7225
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1104' => 'Tumor Graft Histologic Type', |
|
7226
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1105' => 'Fibril', |
|
7227
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1106' => 'Virus', |
|
7228
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1107' => 'Cytokine', |
|
7229
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1108' => 'Toxin', |
|
7230
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1109' => 'Exogenous Substance Administration Site', |
|
7231
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1110' => 'Exogenous Substance Origin Tissue', |
|
7232
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1111' => 'Preclinical Small Animal Imaging Procedure', |
|
7233
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1112' => 'Position Reference Indicator for Frame of Reference', |
|
7234
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1113' => 'Present-Absent Only', |
|
7235
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1114' => 'Water Equivalent Diameter Method', |
|
7236
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1115' => 'Radiotherapy Purpose of Reference', |
|
7237
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1116' => 'Content Assessment Type', |
|
7238
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1117' => 'RT Content Assessment Type', |
|
7239
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1118' => 'Assessment Basis', |
|
7240
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1119' => 'Reader Specialty', |
|
7241
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1120' => 'Requested Report Type', |
|
7242
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1121' => 'CT Transverse Plane Reference Basis', |
|
7243
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1122' => 'Anatomical Reference Basis', |
|
7244
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1123' => 'Anatomical Reference Basis - Head', |
|
7245
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1124' => 'Anatomical Reference Basis - Spine', |
|
7246
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1125' => 'Anatomical Reference Basis - Chest', |
|
7247
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1126' => 'Anatomical Reference Basis - Abdomen/Pelvis', |
|
7248
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1127' => 'Anatomical Reference Basis - Extremity', |
|
7249
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1128' => 'Reference Geometry - Plane', |
|
7250
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1129' => 'Reference Geometry - Point', |
|
7251
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1130' => 'Patient Alignment Method', |
|
7252
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1131' => 'Contraindications For CT Imaging', |
|
7253
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1132' => 'Fiducial Category', |
|
7254
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1133' => 'Fiducial', |
|
7255
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1134' => 'Non-Image Source Instance Purpose of Reference', |
|
7256
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1135' => 'RT Process Output', |
|
7257
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1136' => 'RT Process Input', |
|
7258
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1137' => 'RT Process Input Used', |
|
7259
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1138' => 'Prostate Anatomy', |
|
7260
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1139' => 'Prostate Sector Anatomy from PI-RADS v2', |
|
7261
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1140' => 'Prostate Sector Anatomy from European Concensus 16 Sector (Minimal) Model', |
|
7262
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1141' => 'Prostate Sector Anatomy from European Concensus 27 Sector (Optimal) Model', |
|
7263
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1142' => 'Measurement Selection Reason', |
|
7264
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1143' => 'Echo Finding Observation Type', |
|
7265
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1144' => 'Echo Measurement Type', |
|
7266
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1145' => 'Cardiovascular Measured Property', |
|
7267
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1146' => 'Basic Echo Anatomic Site', |
|
7268
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1147' => 'Echo Flow Direction', |
|
7269
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1148' => 'Cardiac Phase and Time Point', |
|
7270
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1149' => 'Core Echo Measurement', |
|
7271
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1150' => 'OCT-A Processing Algorithm Family', |
|
7272
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1151' => 'En Face Image Type', |
|
7273
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1152' => 'OPT Scan Pattern Type', |
|
7274
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1153' => 'Retinal Segmentation Surface', |
|
7275
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1154' => 'Organ for Radiation Dose Estimate', |
|
7276
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1155' => 'Absorbed Radiation Dose Type', |
|
7277
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1156' => 'Equivalent Radiation Dose Type', |
|
7278
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1157' => 'Radiation Dose Estimate Distribution Representation', |
|
7279
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1158' => 'Patient Model Type', |
|
7280
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1159' => 'Radiation Transport Model Type', |
|
7281
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1160' => 'Attenuator Category', |
|
7282
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1161' => 'Radiation Attenuator Material', |
|
7283
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1162' => 'Estimate Method Type', |
|
7284
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1163' => 'Radiation Dose Estimate Parameter', |
|
7285
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1164' => 'Radiation Dose Type', |
|
7286
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1165' => 'MR Diffusion Component Semantic', |
|
7287
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1166' => 'MR Diffusion Anisotropy Index', |
|
7288
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1167' => 'MR Diffusion Model Parameter', |
|
7289
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1168' => 'MR Diffusion Model', |
|
7290
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1169' => 'MR Diffusion Model Fitting Method', |
|
7291
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1170' => 'MR Diffusion Model Specific Method', |
|
7292
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1171' => 'MR Diffusion Model Input', |
|
7293
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1172' => 'Diffusion Rate Area Over Time Unit', |
|
7294
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1173' => 'Pediatric Size Category', |
|
7295
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1174' => 'Calcium Scoring Patient Size Category', |
|
7296
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1175' => 'Reason for Repeating Acquisition', |
|
7297
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1176' => 'Protocol Assertion', |
|
7298
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1177' => 'Radiotherapeutic Dose Measurement Device', |
|
7299
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1178' => 'Export Additional Information Document Title', |
|
7300
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1179' => 'Export Delay Reason', |
|
7301
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1180' => 'Level of Difficulty', |
|
7302
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1181' => 'Category of Teaching Material - Imaging', |
|
7303
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1182' => 'Miscellaneous Document Title', |
|
7304
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1183' => 'Segmentation Non-Image Source Purpose of Reference', |
|
7305
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1184' => 'Longitudinal Temporal Event Type', |
|
7306
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1185' => 'Non-lesion Object Type - Physical Object', |
|
7307
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1186' => 'Non-lesion Object Type - Substance', |
|
7308
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1187' => 'Non-lesion Object Type - Tissue', |
|
7309
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1188' => 'Chest Non-lesion Object Type - Physical Object', |
|
7310
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1189' => 'Chest Non-lesion Object Type - Tissue', |
|
7311
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1190' => 'Tissue Segmentation Property Type', |
|
7312
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1191' => 'Anatomical Structure Segmentation Property Type', |
|
7313
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1192' => 'Physical Object Segmentation Property Type', |
|
7314
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1193' => 'Morphologically Abnormal Structure Segmentation Property Type', |
|
7315
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1194' => 'Function Segmentation Property Type', |
|
7316
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1195' => 'Spatial and Relational Concept Segmentation Property Type', |
|
7317
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1196' => 'Body Substance Segmentation Property Type', |
|
7318
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1197' => 'Substance Segmentation Property Type', |
|
7319
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1198' => 'Interpretation Request Discontinuation Reason', |
|
7320
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1199' => 'Gray Level Run Length Based Feature', |
|
7321
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1200' => 'Gray Level Size Zone Based Feature', |
|
7322
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1201' => 'Encapsulated Document Source Purpose of Reference', |
|
7323
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1202' => 'Model Document Title', |
|
7324
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1203' => 'Purpose of Reference to Predecessor 3D Model', |
|
7325
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1204' => 'Model Scale Unit', |
|
7326
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1205' => 'Model Usage', |
|
7327
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1206' => 'Radiation Dose Unit', |
|
7328
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1207' => 'Radiotherapy Fiducial', |
|
7329
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1208' => 'Multi-energy Relevant Material', |
|
7330
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1209' => 'Multi-energy Material Unit', |
|
7331
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1210' => 'Dosimetric Objective Type', |
|
7332
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1211' => 'Prescription Anatomy Category', |
|
7333
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1212' => 'RT Segment Annotation Category', |
|
7334
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1213' => 'Radiotherapy Therapeutic Role Category', |
|
7335
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1214' => 'RT Geometric Information', |
|
7336
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1215' => 'Fixation or Positioning Device', |
|
7337
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1216' => 'Brachytherapy Device', |
|
7338
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1217' => 'External Body Model', |
|
7339
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1218' => 'Non-specific Volume', |
|
7340
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1219' => 'Purpose of Reference For RT Physician Intent Input', |
|
7341
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1220' => 'Purpose of Reference For RT Treatment Planning Input', |
|
7342
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1221' => 'General External Radiotherapy Procedure Technique', |
|
7343
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1222' => 'Tomotherapeutic Radiotherapy Procedure Technique', |
|
7344
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1223' => 'Fixation Device', |
|
7345
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1224' => 'Anatomical Structure For Radiotherapy', |
|
7346
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1225' => 'RT Patient Support Device', |
|
7347
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1226' => 'Radiotherapy Bolus Device Type', |
|
7348
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1227' => 'Radiotherapy Block Device Type', |
|
7349
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1228' => 'Radiotherapy Accessory No-slot Holder Device Type', |
|
7350
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1229' => 'Radiotherapy Accessory Slot Holder Device Type', |
|
7351
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1230' => 'Segmented RT Accessory Device', |
|
7352
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1231' => 'Radiotherapy Treatment Energy Unit', |
|
7353
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1232' => 'Multi-source Radiotherapy Procedure Technique', |
|
7354
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1233' => 'Robotic Radiotherapy Procedure Technique', |
|
7355
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1234' => 'Radiotherapy Procedure Technique', |
|
7356
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1235' => 'Radiation Therapy Particle', |
|
7357
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1236' => 'Ion Therapy Particle', |
|
7358
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1237' => 'Teletherapy Isotope', |
|
7359
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1238' => 'Brachytherapy Isotope', |
|
7360
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1239' => 'Single Dose Dosimetric Objective', |
|
7361
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1240' => 'Percentage and Dose Dosimetric Objective', |
|
7362
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1241' => 'Volume and Dose Dosimetric Objective', |
|
7363
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1242' => 'No-Parameter Dosimetric Objective', |
|
7364
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1243' => 'Delivery Time Structure', |
|
7365
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1244' => 'Radiotherapy Target', |
|
7366
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1245' => 'Radiotherapy Dose Calculation Role', |
|
7367
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1246' => 'Radiotherapy Prescribing and Segmenting Person Role', |
|
7368
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1247' => 'Effective Dose Calculation Method Category', |
|
7369
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1248' => 'Radiation Transport-based Effective Dose Method Modifier', |
|
7370
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1249' => 'Fractionation-based Effective Dose Method Modifier', |
|
7371
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1250' => 'Imaging Agent Administration Adverse Event', |
|
7372
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1251' => 'CID 61', |
|
7373
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1252' => 'Imaging Agent Administration Phase Type', |
|
7374
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1253' => 'Imaging Agent Administration Mode', |
|
7375
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1254' => 'Imaging Agent Administration Patient State', |
|
7376
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1255' => 'Imaging Agent Administration Premedication', |
|
7377
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1256' => 'Imaging Agent Administration Medication', |
|
7378
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1257' => 'Imaging Agent Administration Completion Status', |
|
7379
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1258' => 'Imaging Agent Administration Pharmaceutical Presentation Unit', |
|
7380
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1259' => 'Imaging Agent Administration Consumable', |
|
7381
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1260' => 'Flush', |
|
7382
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1261' => 'Imaging Agent Administration Injector Event Type', |
|
7383
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1262' => 'Imaging Agent Administration Step Type', |
|
7384
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1263' => 'Bolus Shaping Curve', |
|
7385
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1264' => 'Imaging Agent Administration Consumable Catheter Type', |
|
7386
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1265' => 'Low High or Equal', |
|
7387
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1266' => 'Premedication Type', |
|
7388
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1267' => 'Laterality with Median', |
|
7389
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1268' => 'Dermatology Anatomic Site', |
|
7390
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1269' => 'Quantitative Image Feature', |
|
7391
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1270' => 'Global Shape Descriptor', |
|
7392
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1271' => 'Intensity Histogram Feature', |
|
7393
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1272' => 'Grey Level Distance Zone Based Feature', |
|
7394
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1273' => 'Neighbourhood Grey Tone Difference Based Feature', |
|
7395
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1274' => 'Neighbouring Grey Level Dependence Based Feature', |
|
7396
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1275' => 'Cornea Measurement Method Descriptor', |
|
7397
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1276' => 'Segmented Radiotherapeutic Dose Measurement Device', |
|
7398
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1277' => 'Clinical Course of Disease', |
|
7399
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1278' => 'Racial Group', |
|
7400
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1279' => 'Relative Laterality', |
|
7401
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1280' => 'Brain Lesion Segmentation Type With Necrosis', |
|
7402
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1281' => 'Brain Lesion Segmentation Type Without Necrosis', |
|
7403
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1282' => 'Non-Acquisition Modality', |
|
7404
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1283' => 'Modality', |
|
7405
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1284' => 'Laterality Left-Right Only', |
|
7406
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1285' => 'Qualitative Evaluation Modifier Type', |
|
7407
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1286' => 'Qualitative Evaluation Modifier Value', |
|
7408
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1287' => 'Generic Anatomic Location Modifier', |
|
7409
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1288' => 'Beam Limiting Device Type', |
|
7410
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1289' => 'Compensator Device Type', |
|
7411
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1290' => 'Radiotherapy Treatment Machine Mode', |
|
7412
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1291' => 'Radiotherapy Distance Reference Location', |
|
7413
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1292' => 'Fixed Beam Limiting Device Type', |
|
7414
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1293' => 'Radiotherapy Wedge Type', |
|
7415
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1294' => 'RT Beam Limiting Device Orientation Label', |
|
7416
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1295' => 'General Accessory Device Type', |
|
7417
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1296' => 'Radiation Generation Mode Type', |
|
7418
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1297' => 'C-Arm Photon-Electron Delivery Rate Unit', |
|
7419
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1298' => 'Treatment Delivery Device Type', |
|
7420
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1299' => 'C-Arm Photon-Electron Dosimeter Unit', |
|
7421
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1300' => 'Treatment Point', |
|
7422
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1301' => 'Equipment Reference Point', |
|
7423
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1302' => 'Radiotherapy Treatment Planning Person Role', |
|
7424
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1303' => 'Real Time Video Rendition Title', |
|
7425
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1304' => 'Geometry Graphical Representation', |
|
7426
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1305' => 'Visual Explanation', |
|
7427
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1306' => 'Prostate Sector Anatomy from PI-RADS v2.1', |
|
7428
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1307' => 'Radiotherapy Robotic Node Set', |
|
7429
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1308' => 'Tomotherapeutic Dosimeter Unit', |
|
7430
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1309' => 'Tomotherapeutic Dose Rate Unit', |
|
7431
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1310' => 'Robotic Delivery Device Dosimeter Unit', |
|
7432
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1311' => 'Robotic Delivery Device Dose Rate Unit', |
|
7433
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1312' => 'Anatomic Structure', |
|
7434
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1313' => 'Mediastinum Finding or Feature', |
|
7435
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1314' => 'Mediastinum Anatomy', |
|
7436
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1315' => 'Vascular Ultrasound Report Document Title', |
|
7437
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1316' => 'Organ Part (Non-Lateralized)', |
|
7438
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1317' => 'Organ Part (Lateralized)', |
|
7439
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1318' => 'Treatment Termination Reason', |
|
7440
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1319' => 'Radiotherapy Treatment Delivery Person Role', |
|
7441
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1320' => 'Radiotherapy Interlock Resolution', |
|
7442
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1321' => 'Treatment Session Confirmation Assertion', |
|
7443
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1322' => 'Treatment Tolerance Violation Cause', |
|
7444
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1323' => 'Clinical Tolerance Violation Type', |
|
7445
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1324' => 'Machine Tolerance Violation Type', |
|
7446
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1325' => 'Radiotherapy Treatment Interlock', |
|
7447
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1326' => 'Isocentric Patient Support Position Parameter', |
|
7448
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1327' => 'RT Overridden Treatment Parameter', |
|
7449
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1328' => 'EEG Lead', |
|
7450
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1329' => 'Lead Location Near or in Muscle', |
|
7451
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1330' => 'Lead Location Near Peripheral Nerve', |
|
7452
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1331' => 'EOG Lead', |
|
7453
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1332' => 'Body Position Channel', |
|
7454
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1333' => 'EEG Annotation - Neurophysiologic Enumeration', |
|
7455
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1334' => 'EMG Annotation - Neurophysiological Enumeration', |
|
7456
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1335' => 'EOG Annotation - Neurophysiological Enumeration', |
|
7457
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1336' => 'Pattern Event', |
|
7458
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1337' => 'Device-related and Environment-related Event', |
|
7459
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1338' => 'EEG Annotation - Neurological Monitoring Measurement', |
|
7460
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1339' => 'OB-GYN Ultrasound Report Document Title', |
|
7461
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1340' => 'Automation of Measurement', |
|
7462
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1341' => 'OB-GYN Ultrasound Beam Path', |
|
7463
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1342' => 'Angle Measurement', |
|
7464
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1343' => 'Generic Purpose of Reference to Images and Coordinates in Measurement', |
|
7465
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1344' => 'Generic Purpose of Reference to Images in Measurement', |
|
7466
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1345' => 'Generic Purpose of Reference to Coordinates in Measurement', |
|
7467
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1346' => 'Fitzpatrick Skin Type', |
|
7468
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1347' => 'History of Malignant Melanoma', |
|
7469
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1348' => 'History of Melanoma in Situ', |
|
7470
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1349' => 'History of Non-Melanoma Skin Cancer', |
|
7471
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1350' => 'Skin Disorder', |
|
7472
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1351' => 'Patient Reported Lesion Characteristic', |
|
7473
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1352' => 'Lesion Palpation Finding', |
|
7474
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1353' => 'Lesion Visual Finding', |
|
7475
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1354' => 'Skin Procedure', |
|
7476
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1355' => 'Abdominopelvic Vessel', |
|
7477
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1356' => 'Numeric Value Failure Qualifier', |
|
7478
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1357' => 'Numeric Value Unknown Qualifier', |
|
7479
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1358' => 'Couinaud Liver Segment', |
|
7480
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1359' => 'Liver Segmentation Type', |
|
7481
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1360' => 'Contraindications For XA Imaging', |
|
7482
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1361' => 'Neurophysiologic Stimulation Mode', |
|
7483
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1362' => 'Reported Value Type', |
|
7484
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1363' => 'Value Timing', |
|
7485
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1364' => 'RDSR Frame of Reference Origin', |
|
7486
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1365' => 'Microscopy Annotation Property Type', |
|
7487
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1366' => 'Microscopy Measurement Type', |
|
7488
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1367' => 'Prostate Reporting System', |
|
7489
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1368' => 'MR Signal Intensity', |
|
7490
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1369' => 'Cross-sectional Scan Plane Orientation', |
|
7491
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1370' => 'History of Prostate Disease', |
|
7492
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1371' => 'Prostate MRI Study Quality Finding', |
|
7493
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1372' => 'Prostate MRI Series Quality Finding', |
|
7494
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1373' => 'MR Imaging Artifact', |
|
7495
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1374' => 'Prostate DCE MRI Quality Finding', |
|
7496
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1375' => 'Prostate DWI MRI Quality Finding', |
|
7497
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1376' => 'Abdominal Intervention Type', |
|
7498
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1377' => 'Abdominopelvic Intervention', |
|
7499
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1378' => 'Prostate Cancer Diagnostic Procedure', |
|
7500
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1379' => 'Prostate Cancer Family History', |
|
7501
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1380' => 'Prostate Cancer Therapy', |
|
7502
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1381' => 'Prostate MRI Assessment', |
|
7503
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1382' => 'Overall Assessment from PI-RADS', |
|
7504
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1383' => 'Image Quality Control Standard', |
|
7505
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1384' => 'Prostate Imaging Indication', |
|
7506
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1385' => 'PI-RADS v2 Lesion Assessment Category', |
|
7507
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1386' => 'PI-RADS v2 T2WI PZ Lesion Assessment Category', |
|
7508
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1387' => 'PI-RADS v2 T2WI TZ Lesion Assessment Category', |
|
7509
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1388' => 'PI-RADS v2 DWI Lesion Assessment Category', |
|
7510
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1389' => 'PI-RADS v2 DCE Lesion Assessment Category', |
|
7511
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1390' => 'mpMRI Assessment Type', |
|
7512
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1391' => 'mpMRI Assessment Type from PI-RADS', |
|
7513
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1392' => 'mpMRI Assessment Value', |
|
7514
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1393' => 'MRI Abnormality', |
|
7515
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1394' => 'mpMRI Prostate Abnormality from PI-RADS', |
|
7516
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1395' => 'mpMRI Benign Prostate Abnormality from PI-RADS', |
|
7517
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1396' => 'MRI Shape Characteristic', |
|
7518
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1397' => 'Prostate MRI Shape Characteristic from PI-RADS', |
|
7519
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1398' => 'MRI Margin Characteristic', |
|
7520
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1399' => 'Prostate MRI Margin Characteristic from PI-RADS', |
|
7521
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1400' => 'MRI Signal Characteristic', |
|
7522
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1401' => 'Prostate MRI Signal Characteristic from PI-RADS', |
|
7523
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1402' => 'MRI Enhancement Pattern', |
|
7524
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1403' => 'Prostate MRI Enhancement Pattern from PI-RADS', |
|
7525
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1404' => 'Prostate MRI Extra-prostatic Finding', |
|
7526
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1405' => 'Prostate MRI Assessment of Extra-prostatic Anatomic Site', |
|
7527
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1406' => 'MR Coil Type', |
|
7528
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1407' => 'Endorectal Coil Fill Substance', |
|
7529
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1408' => 'Prostate Relational Measurement', |
|
7530
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1409' => 'Prostate Cancer Diagnostic Blood Lab Measurement', |
|
7531
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1410' => 'Prostate Imaging Types of Quality Control Standard', |
|
7532
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1411' => 'Ultrasound Shear Wave Measurement', |
|
7533
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1412' => 'CID 3780', |
|
7534
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1413' => 'Left Ventricle Myocardial Wall 18 Segment Model', |
|
7535
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1414' => 'Left Ventricle Basal Wall 6 Segments', |
|
7536
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1415' => 'Left Ventricle Midlevel Wall 6 Segments', |
|
7537
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1416' => 'Left Ventricle Apical Wall 4 Segments', |
|
7538
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1417' => 'Left Ventricle Apical Wall 6 Segments', |
|
7539
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1418' => 'Patient Treatment Preparation Method', |
|
7540
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1419' => 'Patient Shielding Device', |
|
7541
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1420' => 'Patient Treatment Preparation Device', |
|
7542
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1421' => 'Patient Position Displacement Reference Point', |
|
7543
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1422' => 'Patient Alignment Device', |
|
7544
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1423' => 'Reasons for RT Radiation Treatment Omission', |
|
7545
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1424' => 'Patient Treatment Preparation Procedure', |
|
7546
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1425' => 'Motion Management Setup Device', |
|
7547
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1426' => 'Core Echo Strain Measurement', |
|
7548
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1427' => 'Myocardial Strain Method', |
|
7549
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1428' => 'Echo Measured Strain Property', |
|
7550
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1429' => 'Assessment from CAD-RADS', |
|
7551
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1430' => 'CAD-RADS Stenosis Assessment Modifier', |
|
7552
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1431' => 'CAD-RADS Assessment Modifier', |
|
7553
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1432' => 'RT Segment Material', |
|
7554
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1433' => 'Vertebral Anatomic Structure', |
|
7555
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1434' => 'Vertebra', |
|
7556
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1435' => 'Intervertebral Disc', |
|
7557
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1436' => 'Imaging Procedure', |
|
7558
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1437' => 'NICIP Short Code Imaging Procedure', |
|
7559
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1438' => 'NICIP SNOMED Imaging Procedure', |
|
7560
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1439' => 'ICD-10-PCS Imaging Procedure', |
|
7561
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1440' => 'ICD-10-PCS Nuclear Medicine Procedure', |
|
7562
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1441' => 'ICD-10-PCS Radiation Therapy Procedure', |
|
7563
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1442' => 'RT Segmentation Property Category', |
|
7564
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1443' => 'Radiotherapy Registration Mark', |
|
7565
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1444' => 'Radiotherapy Dose Region', |
|
7566
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1445' => 'Anatomically Localized Lesion Segmentation Type', |
|
7567
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1446' => 'Reason for Removal from Operational Use', |
|
7568
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1447' => 'General Ultrasound Report Document Title', |
|
7569
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1448' => 'Elastography Site', |
|
7570
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1449' => 'Elastography Measurement Site', |
|
7571
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1450' => 'Ultrasound Relevant Patient Condition', |
|
7572
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1451' => 'Shear Wave Detection Method', |
|
7573
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1452' => 'Liver Ultrasound Study Indication', |
|
7574
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1453' => 'Analog Waveform Filter', |
|
7575
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1454' => 'Digital Waveform Filter', |
|
7576
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1455' => 'Waveform Filter Lookup Table Input Frequency Unit', |
|
7577
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1456' => 'Waveform Filter Lookup Table Output Magnitude Unit', |
|
7578
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1457' => 'Specific Observation Subject Class', |
|
7579
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1458' => 'Movable Beam Limiting Device Type', |
|
7580
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1459' => 'Radiotherapy Acquisition WorkItem Subtasks', |
|
7581
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1460' => 'Patient Position Acquisition Radiation Source Locations', |
|
7582
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1461' => 'Energy Derivation Types', |
|
7583
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1462' => 'KV Imaging Acquisition Techniques', |
|
7584
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1463' => 'MV Imaging Acquisition Techniques', |
|
7585
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1464' => 'Patient Position Acquisition - Projection Techniques', |
|
7586
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1465' => 'Patient Position Acquisition - CT Techniques', |
|
7587
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1466' => 'Patient Positioning Related Object Purposes', |
|
7588
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1467' => 'Patient Position Acquisition Devices', |
|
7589
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1468' => 'RT Radiation Meterset Units', |
|
7590
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1469' => 'Acquisition Initiation Types', |
|
7591
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1470' => 'RT Image Patient Position Acquisition Devices', |
|
7592
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1471' => 'Photoacoustic Illumination Method', |
|
7593
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1472' => 'Acoustic Coupling Medium', |
|
7594
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1473' => 'Ultrasound Transducer Technology', |
|
7595
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1474' => 'Speed of Sound Correction Mechanisms', |
|
7596
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1475' => 'Photoacoustic Reconstruction Algorithm Family', |
|
7597
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1476' => 'Photoacoustic Imaged Property', |
|
7598
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1477' => 'X-Ray Radiation Dose Procedure Type Reported', |
|
7599
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1478' => 'Topical Treatment', |
|
7600
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1479' => 'Lesion Color', |
|
7601
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1480' => 'Specimen Stain for Confocal Microscopy', |
|
7602
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1481' => 'RT ROI Image Acquisition Context', |
|
7603
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1482' => 'Lobe of Lung', |
|
7604
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1483' => 'Zone of Lung', |
|
7605
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1484' => 'Sleep Stage', |
|
7606
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1485' => 'Patient Position Acquisition - MR Techniques', |
|
7607
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1486' => 'RT Plan Radiotherapy Procedure Technique', |
|
7608
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1487' => 'Waveform Annotation Classification', |
|
7609
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1488' => 'Waveform Annotations Document Title', |
|
7610
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1489' => 'EEG Procedure', |
|
7611
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1490' => 'Patient Consciousness', |
|
7612
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1491' => 'Follicle Type', |
|
7613
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1492' => 'Breast Tissue Segmentation Type', |
|
7614
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1493' => 'Implanted Device', |
|
7615
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1494' => 'Similarity Measure', |
|
7616
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1495' => 'Waveform Acquisition Modality', |
|
7617
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1496' => 'En Face Processing Algorithm Family', |
|
7618
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1497' => 'Anterior Eye Segmentation Surface', |
|
7619
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1498' => 'Fetal Echocardiography Image View', |
|
7620
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1499' => 'Cardiac Ultrasound Fetal Arrhythmia Measurements', |
|
7621
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1500' => 'Common Fetal Echocardiography Measurements', |
|
7622
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1501' => 'Head and Neck Primary Anatomic Structure', |
|
7623
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1502' => 'VL View', |
|
7624
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1503' => 'VL Dental View', |
|
7625
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1504' => 'VL View Modifier', |
|
7626
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1505' => 'VL Dental View Modifier', |
|
7627
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1506' => 'Orthognathic Functional Condition', |
|
7628
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1507' => 'Orthodontic Finding by Inspection', |
|
7629
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1508' => 'Orthodontic Observable Entity', |
|
7630
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1509' => 'Dental Occlusion', |
|
7631
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1510' => 'Orthodontic Treatment Progress', |
|
7632
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1511' => 'General Photography Device', |
|
7633
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1512' => 'Devices for the Purpose of Dental Photography', |
|
7634
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1513' => 'CTDI Phantom Device', |
|
7635
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1514' => 'Diagnostic Imaging Procedure without IV Contrast', |
|
7636
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1515' => 'Diagnostic Imaging Procedure with IV Contrast', |
|
7637
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1516' => 'Structural Heart Procedure', |
|
7638
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1517' => 'Structural Heart Device', |
|
7639
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1518' => 'Structural Heart Measurement', |
|
7640
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1519' => 'Aortic Valve Structural Measurement', |
|
7641
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1520' => 'Mitral Valve Structural Measurement', |
|
7642
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1521' => 'Tricuspid Valve Structural Measurement', |
|
7643
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1522' => 'Structural Heart Echo Measurement', |
|
7644
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1523' => 'Left Atrial Appendage Closure Measurement', |
|
7645
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1524' => 'Structural Heart Procedure Anatomic Site', |
|
7646
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1525' => 'Indication for Structural Heart Procedure', |
|
7647
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1526' => 'Bradycardiac Agent', |
|
7648
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1527' => 'Transesophageal Echocardiography Scan Plane', |
|
7649
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1528' => 'Structural Heart Measurement Report Document Title', |
|
7650
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1529' => 'Person Gender Identity', |
|
7651
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1530' => 'Category of Sex Parameters for Clinical Use', |
|
7652
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1531' => 'Third Person Pronoun Set', |
|
7653
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1532' => 'Cardiac Structure Calcification Qualitative Evaluation', |
|
7654
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1533' => 'Visual Field Measurements', |
|
7655
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1534' => 'Optic Disc Key Measurements', |
|
7656
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1535' => 'Retinal Sector Methods', |
|
7657
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1536' => 'RNFL Sector Measurements', |
|
7658
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1537' => 'RNFL Clockface Measurements', |
|
7659
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1538' => 'Macular Thickness Key Measurements', |
|
7660
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1539' => 'Ganglion Cell Measurement Extent', |
|
7661
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1540' => 'Ganglion Cell Key Measurements', |
|
7662
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1541' => 'Ganglion Cell Sector Measurements', |
|
7663
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1542' => 'Ganglion Cell Sector Methods', |
|
7664
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1543' => 'Endothelial Cell Count Measurements', |
|
7665
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1544' => 'Ophthalmic Image ROI Measurements', |
|
7666
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1545' => 'RT Plan Approval Assertion', |
|
7667
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1546' => 'Estimated Delivery Date Method', |
|
7668
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1547' => 'RT Dose Calculation Algorithm Family', |
|
7669
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1548' => 'Dose Index for Dose Calibration', |
|
7670
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1549' => 'Ultrasound Attenuation Imaging Site', |
|
7671
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1550' => 'Fetal Anatomy Survey Assessment', |
|
7672
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1551' => 'Fetal Anatomy Survey Assessment - Head', |
|
7673
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1552' => 'Fetal Anatomy Survey Assessment - Face and Neck', |
|
7674
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1553' => 'Fetal Anatomy Survey Assessment - Chest', |
|
7675
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1554' => 'Fetal Anatomy Survey Assessment - Heart', |
|
7676
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1555' => 'Fetal Anatomy Survey Assessment - Abdomen and Pelvis', |
|
7677
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1556' => 'Fetal Anatomy Survey Assessment - Spine', |
|
7678
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1557' => 'Fetal Anatomy Survey Assessment - Extremities', |
|
7679
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1558' => 'Fetal Anatomy Survey Assessment - Maternal', |
|
7680
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1559' => 'Fetal Anatomy Survey Practice Guideline', |
|
7681
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1560' => 'Sensitive Content Category', |
|
7682
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1561' => 'Sensitive Content Detail', |
|
7683
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1562' => 'Application Type Code', |
|
7684
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1563' => 'X-Ray Modulation Type', |
|
7685
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1564' => 'Radiotherapy Dose Real World Units', |
|
7686
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1565' => 'Radiotherapy Dose Interpreted Type Codes', |
|
7687
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1566' => 'Radiotherapy Dose Interpreted Type Modifier Codes', |
|
7688
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1567' => 'Radiotherapy Dose Intent Codes', |
|
7689
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1568' => 'Quality Segmentation Property Type', |
|
7690
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1569' => 'Ultrasound Z-Score Population Index', |
|
7691
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1570' => 'Fetal Ultrasound Z-Score Reference Authority', |
|
7692
|
|
|
|
|
|
|
'1.2.840.10008.6.1.1571' => 'Metal Artifact Reduction Algorithm Family', |
|
7693
|
|
|
|
|
|
|
'1.2.840.10008.7.1.1' => 'Native DICOM Model', |
|
7694
|
|
|
|
|
|
|
'1.2.840.10008.7.1.2' => 'Abstract Multi-Dimensional Image Model', |
|
7695
|
|
|
|
|
|
|
'1.2.840.10008.8.1.1' => 'DICOM Content Mapping Resource', |
|
7696
|
|
|
|
|
|
|
'1.2.840.10008.9.1' => 'Imaging Report', |
|
7697
|
|
|
|
|
|
|
'1.2.840.10008.9.2' => 'Clinical Information', |
|
7698
|
|
|
|
|
|
|
'1.2.840.10008.9.3' => 'Imaging Procedure Description', |
|
7699
|
|
|
|
|
|
|
'1.2.840.10008.9.4' => 'Comparison Study', |
|
7700
|
|
|
|
|
|
|
'1.2.840.10008.9.5' => 'Impression', |
|
7701
|
|
|
|
|
|
|
'1.2.840.10008.9.6' => 'Addendum', |
|
7702
|
|
|
|
|
|
|
'1.2.840.10008.9.7' => 'Request', |
|
7703
|
|
|
|
|
|
|
'1.2.840.10008.9.8' => 'Radiation Exposure and Protection Information', |
|
7704
|
|
|
|
|
|
|
'1.2.840.10008.9.9' => 'Fetus Findings', |
|
7705
|
|
|
|
|
|
|
'1.2.840.10008.9.10' => 'Labeled Subsection', |
|
7706
|
|
|
|
|
|
|
'1.2.840.10008.9.11' => 'Communication of Actionable Findings', |
|
7707
|
|
|
|
|
|
|
'1.2.840.10008.9.12' => 'Recommendation', |
|
7708
|
|
|
|
|
|
|
'1.2.840.10008.9.13' => 'Procedural Medication', |
|
7709
|
|
|
|
|
|
|
'1.2.840.10008.9.14' => 'Procedure Technique', |
|
7710
|
|
|
|
|
|
|
'1.2.840.10008.9.15' => 'Image Quality', |
|
7711
|
|
|
|
|
|
|
'1.2.840.10008.9.16' => 'Study Act', |
|
7712
|
|
|
|
|
|
|
'1.2.840.10008.9.17' => 'Series Act', |
|
7713
|
|
|
|
|
|
|
'1.2.840.10008.9.18' => 'SOP Instance Observation', |
|
7714
|
|
|
|
|
|
|
'1.2.840.10008.9.19' => 'Section Text', |
|
7715
|
|
|
|
|
|
|
'1.2.840.10008.9.20' => 'General Header', |
|
7716
|
|
|
|
|
|
|
'1.2.840.10008.9.21' => 'Imaging Header', |
|
7717
|
|
|
|
|
|
|
'1.2.840.10008.9.22' => 'Parent Document', |
|
7718
|
|
|
|
|
|
|
'1.2.840.10008.9.23' => 'General Section Entries', |
|
7719
|
|
|
|
|
|
|
'1.2.840.10008.9.24' => 'Imaging Addendum Report', |
|
7720
|
|
|
|
|
|
|
'1.2.840.10008.10.1' => 'Video Endoscopic Image Real-Time Communication', |
|
7721
|
|
|
|
|
|
|
'1.2.840.10008.10.2' => 'Video Photographic Image Real-Time Communication', |
|
7722
|
|
|
|
|
|
|
'1.2.840.10008.10.3' => 'Audio Waveform Real-Time Communication', |
|
7723
|
|
|
|
|
|
|
'1.2.840.10008.10.4' => 'Rendition Selection Document Real-Time Communication', |
|
7724
|
|
|
|
|
|
|
'1.2.840.10008.15.0.3.1' => 'dicomDeviceName', |
|
7725
|
|
|
|
|
|
|
'1.2.840.10008.15.0.3.2' => 'dicomDescription', |
|
7726
|
|
|
|
|
|
|
'1.2.840.10008.15.0.3.3' => 'dicomManufacturer', |
|
7727
|
|
|
|
|
|
|
'1.2.840.10008.15.0.3.4' => 'dicomManufacturerModelName', |
|
7728
|
|
|
|
|
|
|
'1.2.840.10008.15.0.3.5' => 'dicomSoftwareVersion', |
|
7729
|
|
|
|
|
|
|
'1.2.840.10008.15.0.3.6' => 'dicomVendorData', |
|
7730
|
|
|
|
|
|
|
'1.2.840.10008.15.0.3.7' => 'dicomAETitle', |
|
7731
|
|
|
|
|
|
|
'1.2.840.10008.15.0.3.8' => 'dicomNetworkConnectionReference', |
|
7732
|
|
|
|
|
|
|
'1.2.840.10008.15.0.3.9' => 'dicomApplicationCluster', |
|
7733
|
|
|
|
|
|
|
'1.2.840.10008.15.0.3.10' => 'dicomAssociationInitiator', |
|
7734
|
|
|
|
|
|
|
'1.2.840.10008.15.0.3.11' => 'dicomAssociationAcceptor', |
|
7735
|
|
|
|
|
|
|
'1.2.840.10008.15.0.3.12' => 'dicomHostname', |
|
7736
|
|
|
|
|
|
|
'1.2.840.10008.15.0.3.13' => 'dicomPort', |
|
7737
|
|
|
|
|
|
|
'1.2.840.10008.15.0.3.14' => 'dicomSOPClass', |
|
7738
|
|
|
|
|
|
|
'1.2.840.10008.15.0.3.15' => 'dicomTransferRole', |
|
7739
|
|
|
|
|
|
|
'1.2.840.10008.15.0.3.16' => 'dicomTransferSyntax', |
|
7740
|
|
|
|
|
|
|
'1.2.840.10008.15.0.3.17' => 'dicomPrimaryDeviceType', |
|
7741
|
|
|
|
|
|
|
'1.2.840.10008.15.0.3.18' => 'dicomRelatedDeviceReference', |
|
7742
|
|
|
|
|
|
|
'1.2.840.10008.15.0.3.19' => 'dicomPreferredCalledAETitle', |
|
7743
|
|
|
|
|
|
|
'1.2.840.10008.15.0.3.20' => 'dicomTLSCyphersuite', |
|
7744
|
|
|
|
|
|
|
'1.2.840.10008.15.0.3.21' => 'dicomAuthorizedNodeCertificateReference', |
|
7745
|
|
|
|
|
|
|
'1.2.840.10008.15.0.3.22' => 'dicomThisNodeCertificateReference', |
|
7746
|
|
|
|
|
|
|
'1.2.840.10008.15.0.3.23' => 'dicomInstalled', |
|
7747
|
|
|
|
|
|
|
'1.2.840.10008.15.0.3.24' => 'dicomStationName', |
|
7748
|
|
|
|
|
|
|
'1.2.840.10008.15.0.3.25' => 'dicomDeviceSerialNumber', |
|
7749
|
|
|
|
|
|
|
'1.2.840.10008.15.0.3.26' => 'dicomInstitutionName', |
|
7750
|
|
|
|
|
|
|
'1.2.840.10008.15.0.3.27' => 'dicomInstitutionAddress', |
|
7751
|
|
|
|
|
|
|
'1.2.840.10008.15.0.3.28' => 'dicomInstitutionDepartmentName', |
|
7752
|
|
|
|
|
|
|
'1.2.840.10008.15.0.3.29' => 'dicomIssuerOfPatientID', |
|
7753
|
|
|
|
|
|
|
'1.2.840.10008.15.0.3.30' => 'dicomPreferredCallingAETitle', |
|
7754
|
|
|
|
|
|
|
'1.2.840.10008.15.0.3.31' => 'dicomSupportedCharacterSet', |
|
7755
|
|
|
|
|
|
|
'1.2.840.10008.15.0.4.1' => 'dicomConfigurationRoot', |
|
7756
|
|
|
|
|
|
|
'1.2.840.10008.15.0.4.2' => 'dicomDevicesRoot', |
|
7757
|
|
|
|
|
|
|
'1.2.840.10008.15.0.4.3' => 'dicomUniqueAETitlesRegistryRoot', |
|
7758
|
|
|
|
|
|
|
'1.2.840.10008.15.0.4.4' => 'dicomDevice', |
|
7759
|
|
|
|
|
|
|
'1.2.840.10008.15.0.4.5' => 'dicomNetworkAE', |
|
7760
|
|
|
|
|
|
|
'1.2.840.10008.15.0.4.6' => 'dicomNetworkConnection', |
|
7761
|
|
|
|
|
|
|
'1.2.840.10008.15.0.4.7' => 'dicomUniqueAETitle', |
|
7762
|
|
|
|
|
|
|
'1.2.840.10008.15.0.4.8' => 'dicomTransferCapability', |
|
7763
|
|
|
|
|
|
|
); |
|
7764
|
|
|
|
|
|
|
|
|
7765
|
|
|
|
|
|
|
#------------------------------------------------------------------------------ |
|
7766
|
|
|
|
|
|
|
# Extract information from a DICOM (DCM) image |
|
7767
|
|
|
|
|
|
|
# Inputs: 0) ExifTool object reference, 1) DirInfo reference |
|
7768
|
|
|
|
|
|
|
# Returns: 1 on success, 0 if this wasn't a valid DICOM file |
|
7769
|
|
|
|
|
|
|
sub ProcessDICOM($$) |
|
7770
|
|
|
|
|
|
|
{ |
|
7771
|
1
|
|
|
1
|
0
|
3
|
my ($et, $dirInfo) = @_; |
|
7772
|
1
|
|
|
|
|
2
|
my $raf = $$dirInfo{RAF}; |
|
7773
|
1
|
|
|
|
|
3
|
my $unknown = $et->Options('Unknown'); |
|
7774
|
1
|
|
|
|
|
3
|
my $verbose = $et->Options('Verbose'); |
|
7775
|
1
|
|
|
|
|
1
|
my ($hdr, $buff, $implicit, $vr, $len); |
|
7776
|
|
|
|
|
|
|
# |
|
7777
|
|
|
|
|
|
|
# identify the DICOM or ACR-NEMA file |
|
7778
|
|
|
|
|
|
|
# |
|
7779
|
1
|
50
|
|
|
|
3
|
$raf->Read($hdr, 12) == 12 or return 0; # save for ACR identification later |
|
7780
|
1
|
50
|
|
|
|
3
|
$raf->Seek(128, 0) or return 0; # skip to end of DICM header |
|
7781
|
1
|
50
|
|
|
|
3
|
$raf->Read($buff, 4) == 4 or return 0; # read signature |
|
7782
|
1
|
50
|
|
|
|
5
|
if ($buff eq 'DICM') { |
|
7783
|
|
|
|
|
|
|
# file meta information transfer syntax is explicit little endian |
|
7784
|
1
|
|
|
|
|
4
|
SetByteOrder('II'); |
|
7785
|
1
|
|
|
|
|
4
|
$et->SetFileType('DICOM'); |
|
7786
|
|
|
|
|
|
|
} else { |
|
7787
|
|
|
|
|
|
|
# test for a RAW DCM image (ACR-NEMA format, ie. no header) |
|
7788
|
0
|
|
|
|
|
0
|
foreach ('II','MM','') { |
|
7789
|
0
|
0
|
|
|
|
0
|
return 0 unless $_; # no luck identifying the syntax |
|
7790
|
0
|
|
|
|
|
0
|
SetByteOrder($_); |
|
7791
|
0
|
|
|
|
|
0
|
my $g = Get16u(\$hdr, 0); |
|
7792
|
|
|
|
|
|
|
# expect group number to be small and even |
|
7793
|
0
|
0
|
0
|
|
|
0
|
next if $g < 2 or $g > 8 or $g & 0x01; |
|
|
|
|
0
|
|
|
|
|
|
7794
|
0
|
|
|
|
|
0
|
my $e = Get16u(\$hdr, 2); |
|
7795
|
0
|
0
|
|
|
|
0
|
next if $e > 0x20; # expect a low element number at start |
|
7796
|
0
|
|
|
|
|
0
|
$vr = substr($hdr, 4, 2); # look for explicit VR |
|
7797
|
0
|
0
|
|
|
|
0
|
if ($vr =~ /^[A-Z]{2}$/) { |
|
7798
|
0
|
|
|
|
|
0
|
$implicit = 0; |
|
7799
|
0
|
0
|
|
|
|
0
|
if ($vr32{$vr}) { |
|
7800
|
0
|
0
|
|
|
|
0
|
next unless Get16u(\$hdr, 6) == 0; # must be 2 zero bytes |
|
7801
|
0
|
|
|
|
|
0
|
$len = Get32u(\$hdr, 8); |
|
7802
|
|
|
|
|
|
|
} else { |
|
7803
|
0
|
0
|
0
|
|
|
0
|
next if $e == 0 and $vr ne 'UL'; # group length must be UL |
|
7804
|
0
|
|
|
|
|
0
|
$len = Get16u(\$hdr, 6); |
|
7805
|
|
|
|
|
|
|
} |
|
7806
|
|
|
|
|
|
|
} else { |
|
7807
|
0
|
|
|
|
|
0
|
$implicit = 1; |
|
7808
|
0
|
|
|
|
|
0
|
$len = Get32u(\$hdr, 4); |
|
7809
|
|
|
|
|
|
|
} |
|
7810
|
0
|
0
|
0
|
|
|
0
|
next if $e == 0 and $len != 4; # group length value must be 4 bytes |
|
7811
|
0
|
0
|
|
|
|
0
|
next if $len > 64; # first element shouldn't be too long |
|
7812
|
0
|
|
|
|
|
0
|
last; # success! |
|
7813
|
|
|
|
|
|
|
} |
|
7814
|
0
|
0
|
|
|
|
0
|
$raf->Seek(0, 0) or return 0; # rewind to start of file |
|
7815
|
0
|
|
|
|
|
0
|
$et->SetFileType('ACR'); |
|
7816
|
|
|
|
|
|
|
} |
|
7817
|
|
|
|
|
|
|
# |
|
7818
|
|
|
|
|
|
|
# process the meta information |
|
7819
|
|
|
|
|
|
|
# |
|
7820
|
1
|
|
|
|
|
5
|
my $tagTablePtr = GetTagTable('Image::ExifTool::DICOM::Main'); |
|
7821
|
1
|
|
|
|
|
9
|
my $pos = $raf->Tell(); |
|
7822
|
1
|
|
|
|
|
2
|
my $err = 1; |
|
7823
|
1
|
|
|
|
|
2
|
my ($transferSyntax, $group2end); |
|
7824
|
1
|
|
|
|
|
2
|
for (;;) { |
|
7825
|
99
|
100
|
|
|
|
182
|
$raf->Read($buff, 8) == 8 or $err = 0, last; |
|
7826
|
98
|
|
|
|
|
108
|
$pos += 8; |
|
7827
|
98
|
|
|
|
|
161
|
my $group = Get16u(\$buff, 0); |
|
7828
|
|
|
|
|
|
|
# implement the transfer syntax at the end of the group 2 data |
|
7829
|
98
|
100
|
66
|
|
|
150
|
if ($transferSyntax and ($group != 0x0002 or |
|
|
|
|
66
|
|
|
|
|
|
7830
|
|
|
|
|
|
|
($group2end and $pos > $group2end))) |
|
7831
|
|
|
|
|
|
|
{ |
|
7832
|
|
|
|
|
|
|
# 1.2.840.10008.1.2 = implicit VR little endian |
|
7833
|
|
|
|
|
|
|
# 1.2.840.10008.1.2.2 = explicit VR big endian |
|
7834
|
|
|
|
|
|
|
# 1.2.840.10008.1.2.x = explicit VR little endian |
|
7835
|
|
|
|
|
|
|
# 1.2.840.10008.1.2.1.99 = deflated |
|
7836
|
1
|
50
|
|
|
|
8
|
unless ($transferSyntax =~ /^1\.2\.840\.10008\.1\.2(\.\d+)?(\.\d+)?/) { |
|
7837
|
0
|
|
|
|
|
0
|
$et->Warn("Unrecognized transfer syntax $transferSyntax"); |
|
7838
|
0
|
|
|
|
|
0
|
last; |
|
7839
|
|
|
|
|
|
|
} |
|
7840
|
1
|
50
|
33
|
|
|
13
|
if (not $1) { |
|
|
|
50
|
33
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
7841
|
0
|
|
|
|
|
0
|
$implicit = 1; |
|
7842
|
|
|
|
|
|
|
} elsif ($1 eq '.2') { |
|
7843
|
0
|
|
|
|
|
0
|
SetByteOrder('MM'); |
|
7844
|
0
|
|
|
|
|
0
|
$group = Get16u(\$buff, 0); # must get group again |
|
7845
|
|
|
|
|
|
|
} elsif ($1 eq '.1' and $2 and $2 eq '.99') { |
|
7846
|
|
|
|
|
|
|
# inflate compressed data stream |
|
7847
|
0
|
0
|
|
|
|
0
|
if (eval { require Compress::Zlib }) { |
|
|
0
|
|
|
|
|
0
|
|
|
7848
|
|
|
|
|
|
|
# must use undocumented zlib feature to disable zlib header information |
|
7849
|
|
|
|
|
|
|
# because DICOM deflated data doesn't have the zlib header (ref 3) |
|
7850
|
0
|
|
|
|
|
0
|
my $wbits = -Compress::Zlib::MAX_WBITS(); |
|
7851
|
0
|
|
|
|
|
0
|
my $inflate = Compress::Zlib::inflateInit(-WindowBits => $wbits); |
|
7852
|
0
|
0
|
|
|
|
0
|
if ($inflate) { |
|
7853
|
0
|
0
|
|
|
|
0
|
$raf->Seek(-8, 1) or last; |
|
7854
|
0
|
|
|
|
|
0
|
my $data = ''; |
|
7855
|
0
|
|
|
|
|
0
|
while ($raf->Read($buff, 65536)) { |
|
7856
|
0
|
|
|
|
|
0
|
my ($buf, $stat) = $inflate->inflate($buff); |
|
7857
|
0
|
0
|
0
|
|
|
0
|
if ($stat == Compress::Zlib::Z_OK() or |
|
7858
|
|
|
|
|
|
|
$stat == Compress::Zlib::Z_STREAM_END()) |
|
7859
|
|
|
|
|
|
|
{ |
|
7860
|
0
|
|
|
|
|
0
|
$data .= $buf; |
|
7861
|
0
|
0
|
|
|
|
0
|
last if $stat == Compress::Zlib::Z_STREAM_END(); |
|
7862
|
|
|
|
|
|
|
} else { |
|
7863
|
0
|
|
|
|
|
0
|
$et->Warn('Error inflating compressed data stream'); |
|
7864
|
0
|
|
|
|
|
0
|
return 1; |
|
7865
|
|
|
|
|
|
|
} |
|
7866
|
|
|
|
|
|
|
} |
|
7867
|
0
|
0
|
|
|
|
0
|
last if length $data < 8; |
|
7868
|
|
|
|
|
|
|
# create new RAF object from inflated data stream |
|
7869
|
0
|
|
|
|
|
0
|
$raf = File::RandomAccess->new(\$data); |
|
7870
|
|
|
|
|
|
|
# re-read start of stream (now decompressed) |
|
7871
|
0
|
0
|
|
|
|
0
|
$raf->Read($buff, 8) == 8 or last; |
|
7872
|
0
|
|
|
|
|
0
|
$group = Get16u(\$buff, 0); |
|
7873
|
|
|
|
|
|
|
} else { |
|
7874
|
0
|
|
|
|
|
0
|
$et->Warn('Error initializing inflation'); |
|
7875
|
0
|
|
|
|
|
0
|
return 1; |
|
7876
|
|
|
|
|
|
|
} |
|
7877
|
|
|
|
|
|
|
} else { |
|
7878
|
0
|
|
|
|
|
0
|
$et->Warn('Install Compress::Zlib to decode compressed data stream'); |
|
7879
|
0
|
|
|
|
|
0
|
return 1; |
|
7880
|
|
|
|
|
|
|
} |
|
7881
|
|
|
|
|
|
|
} |
|
7882
|
1
|
|
|
|
|
2
|
undef $transferSyntax; |
|
7883
|
|
|
|
|
|
|
} |
|
7884
|
98
|
|
|
|
|
140
|
my $element = Get16u(\$buff,2); |
|
7885
|
98
|
|
|
|
|
173
|
my $tag = sprintf('%.4X,%.4X', $group, $element); |
|
7886
|
|
|
|
|
|
|
|
|
7887
|
98
|
50
|
33
|
|
|
238
|
if ($implicit or $implicitVR{$tag}) { |
|
7888
|
|
|
|
|
|
|
# treat everything as string if implicit VR because it |
|
7889
|
|
|
|
|
|
|
# isn't worth it to generate the necessary VR lookup tables |
|
7890
|
|
|
|
|
|
|
# for the thousands of defined data elements |
|
7891
|
0
|
|
|
|
|
0
|
$vr = ''; # no VR (treat everything as string) |
|
7892
|
0
|
|
|
|
|
0
|
$len = Get32u(\$buff, 4); |
|
7893
|
|
|
|
|
|
|
} else { |
|
7894
|
98
|
|
|
|
|
129
|
$vr = substr($buff,4,2); |
|
7895
|
98
|
50
|
|
|
|
208
|
last unless $vr =~ /^[A-Z]{2}$/; |
|
7896
|
98
|
100
|
|
|
|
145
|
if ($vr32{$vr}) { |
|
7897
|
2
|
50
|
|
|
|
5
|
$raf->Read($buff, 4) == 4 or last; |
|
7898
|
2
|
|
|
|
|
9
|
$pos += 4; |
|
7899
|
2
|
|
|
|
|
5
|
$len = Get32u(\$buff, 0); |
|
7900
|
2
|
50
|
|
|
|
6
|
$len = 0 if $vr eq 'SQ'; # just recurse into sequences |
|
7901
|
|
|
|
|
|
|
} else { |
|
7902
|
96
|
|
|
|
|
123
|
$len = Get16u(\$buff, 6); |
|
7903
|
|
|
|
|
|
|
} |
|
7904
|
|
|
|
|
|
|
} |
|
7905
|
98
|
50
|
|
|
|
149
|
if ($len == 0xffffffff) { |
|
7906
|
0
|
|
|
|
|
0
|
$len = 0; # don't read value if undefined length |
|
7907
|
0
|
0
|
|
|
|
0
|
if ($verbose) { |
|
7908
|
|
|
|
|
|
|
# start list of items in verbose output |
|
7909
|
0
|
|
|
|
|
0
|
$et->VPrint(0, "$$et{INDENT}+ [List of items]\n"); |
|
7910
|
0
|
|
|
|
|
0
|
$$et{INDENT} .= '| '; |
|
7911
|
|
|
|
|
|
|
} |
|
7912
|
|
|
|
|
|
|
} |
|
7913
|
|
|
|
|
|
|
# read the element value |
|
7914
|
98
|
100
|
|
|
|
117
|
if ($len) { |
|
7915
|
95
|
50
|
|
|
|
128
|
$raf->Read($buff, $len) == $len or last; |
|
7916
|
95
|
|
|
|
|
97
|
$pos += $len; |
|
7917
|
|
|
|
|
|
|
} else { |
|
7918
|
3
|
|
|
|
|
17
|
$buff = ''; |
|
7919
|
|
|
|
|
|
|
} |
|
7920
|
|
|
|
|
|
|
|
|
7921
|
|
|
|
|
|
|
# handle tags not found in the table |
|
7922
|
98
|
|
|
|
|
208
|
my $tagInfo = $$tagTablePtr{$tag}; |
|
7923
|
98
|
100
|
|
|
|
128
|
unless ($tagInfo) { |
|
7924
|
|
|
|
|
|
|
# accept tag ID's with "x" for a wildcard in the following patterns: |
|
7925
|
|
|
|
|
|
|
# '60xx,1203', '0020,31xx', '0028,04x2', '1000,xxx0', '1010,xxxx' |
|
7926
|
1
|
|
|
|
|
2
|
my $xx; |
|
7927
|
1
|
50
|
33
|
|
|
13
|
if ((($xx = $tag) =~ s/^(..)../$1xx/ and $$tagTablePtr{$xx}) or |
|
|
|
0
|
0
|
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
|
|
0
|
|
|
|
|
|
|
|
|
0
|
|
|
|
|
|
|
|
|
0
|
|
|
|
|
|
|
|
|
0
|
|
|
|
|
|
|
|
|
0
|
|
|
|
|
|
|
|
|
0
|
|
|
|
|
|
7928
|
|
|
|
|
|
|
(($xx = $tag) =~ s/..$/xx/ and $$tagTablePtr{$xx}) or |
|
7929
|
|
|
|
|
|
|
(($xx = $tag) =~ s/.(.)$/x$1/ and $$tagTablePtr{$xx}) or |
|
7930
|
|
|
|
|
|
|
(($xx = $tag) =~ s/...(.)$/xxx$1/ and $$tagTablePtr{$xx}) or |
|
7931
|
|
|
|
|
|
|
(($xx = $tag) =~ s/....$/xxxx/ and $$tagTablePtr{$xx})) |
|
7932
|
|
|
|
|
|
|
{ |
|
7933
|
1
|
|
|
|
|
2
|
$tag = $xx; |
|
7934
|
1
|
|
|
|
|
3
|
$tagInfo = $$tagTablePtr{$xx}; |
|
7935
|
|
|
|
|
|
|
} elsif ($unknown) { |
|
7936
|
|
|
|
|
|
|
# create tag info hash for unknown elements |
|
7937
|
0
|
0
|
|
|
|
0
|
if ($element == 0) { # element zero is group length |
|
7938
|
0
|
|
|
|
|
0
|
$tagInfo = { |
|
7939
|
|
|
|
|
|
|
Name => sprintf("Group%.4X_Length", $group), |
|
7940
|
|
|
|
|
|
|
Description => sprintf("Group %.4X Length", $group), |
|
7941
|
|
|
|
|
|
|
}; |
|
7942
|
|
|
|
|
|
|
} else { |
|
7943
|
0
|
|
|
|
|
0
|
$tagInfo = { |
|
7944
|
|
|
|
|
|
|
Name => sprintf("DICOM_%.4X_%.4X", $group, $element), |
|
7945
|
|
|
|
|
|
|
Description => sprintf("DICOM %.4X,%.4X", $group, $element), |
|
7946
|
|
|
|
|
|
|
}; |
|
7947
|
|
|
|
|
|
|
} |
|
7948
|
0
|
|
|
|
|
0
|
$$tagInfo{Unknown} = 1; |
|
7949
|
0
|
|
|
|
|
0
|
AddTagToTable($tagTablePtr, $tag, $tagInfo); |
|
7950
|
|
|
|
|
|
|
} |
|
7951
|
|
|
|
|
|
|
} |
|
7952
|
|
|
|
|
|
|
# get VR from our tag information if implicit |
|
7953
|
98
|
50
|
0
|
|
|
215
|
$vr = $$tagInfo{VR} || ' ' if $tagInfo and not $vr; |
|
|
|
|
33
|
|
|
|
|
|
7954
|
|
|
|
|
|
|
|
|
7955
|
98
|
100
|
|
|
|
130
|
if ($element == 0) { |
|
7956
|
1
|
|
|
|
|
2
|
$vr = 'UL'; # group length element is always unsigned long |
|
7957
|
|
|
|
|
|
|
} |
|
7958
|
98
|
|
|
|
|
89
|
my $val; |
|
7959
|
98
|
|
|
|
|
111
|
my $format = $dicomFormat{$vr}; |
|
7960
|
|
|
|
|
|
|
# remove trailing space used to pad to an even number of characters |
|
7961
|
98
|
100
|
66
|
|
|
333
|
$buff =~ s/ $// unless $format or length($buff) & 0x01; |
|
7962
|
98
|
50
|
|
|
|
168
|
if ($len > 1024) { |
|
|
|
100
|
|
|
|
|
|
|
7963
|
|
|
|
|
|
|
# treat large data elements as binary data |
|
7964
|
0
|
|
|
|
|
0
|
my $binData; |
|
7965
|
0
|
0
|
|
|
|
0
|
my $lcTag = $tagInfo ? lc($$tagInfo{Name}) : 'unknown'; |
|
7966
|
0
|
0
|
0
|
|
|
0
|
if ($$et{REQ_TAG_LOOKUP}{$lcTag} or |
|
|
|
|
0
|
|
|
|
|
|
7967
|
|
|
|
|
|
|
($$et{OPTIONS}{Binary} and not $$et{EXCL_TAG_LOOKUP}{$lcTag})) |
|
7968
|
|
|
|
|
|
|
{ |
|
7969
|
0
|
|
|
|
|
0
|
$binData = $buff; # must make a copy |
|
7970
|
|
|
|
|
|
|
} else { |
|
7971
|
0
|
|
|
|
|
0
|
$binData = "Binary data $len bytes"; |
|
7972
|
|
|
|
|
|
|
} |
|
7973
|
0
|
|
|
|
|
0
|
$val = \$binData; |
|
7974
|
|
|
|
|
|
|
} elsif ($format) { |
|
7975
|
14
|
|
|
|
|
29
|
$val = ReadValue(\$buff, 0, $format, undef, $len); |
|
7976
|
|
|
|
|
|
|
} else { |
|
7977
|
84
|
|
|
|
|
93
|
$val = $buff; |
|
7978
|
84
|
|
|
|
|
80
|
$format = 'string'; |
|
7979
|
84
|
100
|
33
|
|
|
282
|
if ($vr eq 'DA') { |
|
|
|
100
|
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
|
|
100
|
|
|
|
|
|
|
|
|
100
|
|
|
|
|
|
|
|
|
100
|
|
|
|
|
|
|
7980
|
|
|
|
|
|
|
# format date values |
|
7981
|
5
|
|
|
|
|
24
|
$val =~ s/^ *(\d{4})(\d{2})(\d{2})/$1:$2:$3/; |
|
7982
|
|
|
|
|
|
|
} elsif ($vr eq 'TM') { |
|
7983
|
|
|
|
|
|
|
# format time values |
|
7984
|
4
|
|
|
|
|
19
|
$val =~ s/^ *(\d{2})(\d{2})(\d{2}[^ ]*)/$1:$2:$3/; |
|
7985
|
|
|
|
|
|
|
} elsif ($vr eq 'DT') { |
|
7986
|
|
|
|
|
|
|
# format date/time values |
|
7987
|
0
|
|
|
|
|
0
|
$val =~ s/^ *(\d{4})(\d{2})(\d{2})(\d{2})(\d{2})(\d{2}[^ ]*)/$1:$2:$3 $4:$5:$6/; |
|
7988
|
|
|
|
|
|
|
} elsif ($vr eq 'AT' and $len == 4) { |
|
7989
|
|
|
|
|
|
|
# convert attribute tag ID to hex format |
|
7990
|
0
|
|
|
|
|
0
|
my ($g, $e) = (Get16u(\$buff,0), Get16u(\$buff,2)); |
|
7991
|
0
|
|
|
|
|
0
|
$val = sprintf('%.4X,%.4X', $g, $e); |
|
7992
|
|
|
|
|
|
|
} elsif ($vr eq 'UI') { |
|
7993
|
|
|
|
|
|
|
# add PrintConv to translate registered UID's |
|
7994
|
9
|
|
|
|
|
25
|
$val =~ s/\0.*//s; # truncate at null |
|
7995
|
9
|
50
|
|
|
|
15
|
if ($tagInfo) { |
|
7996
|
9
|
100
|
|
|
|
24
|
$$tagInfo{PrintConv} = \%uid if $uid{$val}; |
|
7997
|
9
|
50
|
|
|
|
19
|
$$tagInfo{Hidden} = '' unless defined $$tagInfo{Hidden}; # (don't add PrintConv to -listx output) |
|
7998
|
|
|
|
|
|
|
} |
|
7999
|
|
|
|
|
|
|
} elsif ($vr =~ /^(AE|CS|DS|IS|LO|PN|SH)$/) { |
|
8000
|
64
|
|
|
|
|
89
|
$val =~ s/ +$//; # leading/trailing spaces not significant |
|
8001
|
64
|
|
|
|
|
69
|
$val =~ s/^ +//; |
|
8002
|
|
|
|
|
|
|
} elsif ($vr =~ /^(LT|ST|UT)$/) { |
|
8003
|
1
|
|
|
|
|
2
|
$val =~ s/ +$//; # trailing spaces not significant |
|
8004
|
|
|
|
|
|
|
} |
|
8005
|
|
|
|
|
|
|
} |
|
8006
|
|
|
|
|
|
|
# save the group 2 end position and transfer syntax |
|
8007
|
98
|
100
|
|
|
|
138
|
if ($group == 0x0002) { |
|
8008
|
8
|
100
|
|
|
|
10
|
$element == 0x0000 and $group2end = $pos + $val; |
|
8009
|
8
|
100
|
|
|
|
13
|
$element == 0x0010 and $transferSyntax = $val; |
|
8010
|
|
|
|
|
|
|
} |
|
8011
|
|
|
|
|
|
|
|
|
8012
|
|
|
|
|
|
|
# handle the new tag information |
|
8013
|
98
|
|
|
|
|
259
|
$et->HandleTag($tagTablePtr, $tag, $val, |
|
8014
|
|
|
|
|
|
|
DataPt => \$buff, |
|
8015
|
|
|
|
|
|
|
DataPos => $pos - $len, |
|
8016
|
|
|
|
|
|
|
Format => $format, |
|
8017
|
|
|
|
|
|
|
Start => 0, |
|
8018
|
|
|
|
|
|
|
Size => $len, |
|
8019
|
|
|
|
|
|
|
Extra => " ($vr)", |
|
8020
|
|
|
|
|
|
|
); |
|
8021
|
|
|
|
|
|
|
|
|
8022
|
|
|
|
|
|
|
# stop indenting for list if we reached EndOfItems tag |
|
8023
|
98
|
50
|
33
|
|
|
177
|
$$et{INDENT} =~ s/..$// if $verbose and $tag eq 'FFFE,E00D'; |
|
8024
|
|
|
|
|
|
|
} |
|
8025
|
1
|
50
|
|
|
|
3
|
$err and $et->Warn('Error reading DICOM file (corrupted?)'); |
|
8026
|
1
|
|
|
|
|
4
|
return 1; |
|
8027
|
|
|
|
|
|
|
} |
|
8028
|
|
|
|
|
|
|
|
|
8029
|
|
|
|
|
|
|
1; # end |
|
8030
|
|
|
|
|
|
|
|
|
8031
|
|
|
|
|
|
|
__END__ |