Documentation ¶
Overview ¶
Package dicom provides functions and data structures for manipulating the DICOM file format. The package provides a high level and low level API for parsing and writing the DICOM format. The high level API consists of functions such as Parse and Construct which by default operate on DICOM Data Elements buffered into memory as a DataSet. The low level API consists of streaming interfaces like the DataElementIterator and the DataElementWriter which do not require buffering and can operate on DataElements one at a time.
The Parse function and the DataElementIterator represent the ValueField of DataElements differently. The Parse function by default buffers VRs of potentially enormous size (SQ, OX, UN, UT, UR, UC) into memory. In contrast, the DataElementIterator does not buffer these VRs and instead represents them as streaming interfaces. This is particularly useful for heavy image processing.
Index ¶
- Constants
- Variables
- func CollectFragments(iter BulkDataIterator) ([][]byte, error)
- func Construct(w io.Writer, dataSet *DataSet, opts ...ConstructOption) error
- func DefaultBulkDataDefinition(elem *DataElement) bool
- func GetName(t DataElementTag) string
- type BulkDataBuffer
- type BulkDataIterator
- type BulkDataReader
- type BulkDataReference
- type ByteRegion
- type ConstructOption
- type DataElement
- type DataElementIterator
- type DataElementTag
- func (t DataElementTag) DictionaryVR() *VR
- func (t DataElementTag) ElementNumber() uint16
- func (t DataElementTag) GroupNumber() uint16
- func (t DataElementTag) IsMetaElement() bool
- func (t DataElementTag) IsPrivate() bool
- func (t DataElementTag) IsPrivateCreator() bool
- func (t DataElementTag) String() string
- type DataElementValue
- type DataElementWriter
- type DataSet
- type ParseOption
- type Sequence
- type SequenceIterator
- type VR
Examples ¶
Constants ¶
const ( // FileMetaInformationGroupLengthTag is the data element tag of FileMetaInformationGroupLength FileMetaInformationGroupLengthTag = DataElementTag(0x00020000) // FileMetaInformationVersionTag is the data element tag of FileMetaInformationVersion FileMetaInformationVersionTag = DataElementTag(0x00020001) // MediaStorageSOPClassUIDTag is the data element tag of MediaStorageSOPClassUID MediaStorageSOPClassUIDTag = DataElementTag(0x00020002) // MediaStorageSOPInstanceUIDTag is the data element tag of MediaStorageSOPInstanceUID MediaStorageSOPInstanceUIDTag = DataElementTag(0x00020003) // TransferSyntaxUIDTag is the data element tag of TransferSyntaxUID TransferSyntaxUIDTag = DataElementTag(0x00020010) // ImplementationClassUIDTag is the data element tag of ImplementationClassUID ImplementationClassUIDTag = DataElementTag(0x00020012) // ImplementationVersionNameTag is the data element tag of ImplementationVersionName ImplementationVersionNameTag = DataElementTag(0x00020013) // SourceApplicationEntityTitleTag is the data element tag of SourceApplicationEntityTitle SourceApplicationEntityTitleTag = DataElementTag(0x00020016) // SendingApplicationEntityTitleTag is the data element tag of SendingApplicationEntityTitle SendingApplicationEntityTitleTag = DataElementTag(0x00020017) // ReceivingApplicationEntityTitleTag is the data element tag of ReceivingApplicationEntityTitle ReceivingApplicationEntityTitleTag = DataElementTag(0x00020018) // PrivateInformationCreatorUIDTag is the data element tag of PrivateInformationCreatorUID PrivateInformationCreatorUIDTag = DataElementTag(0x00020100) // PrivateInformationTag is the data element tag of PrivateInformation PrivateInformationTag = DataElementTag(0x00020102) // FileSetIDTag is the data element tag of FileSetID FileSetIDTag = DataElementTag(0x00041130) // FileSetDescriptorFileIDTag is the data element tag of FileSetDescriptorFileID FileSetDescriptorFileIDTag = DataElementTag(0x00041141) // SpecificCharacterSetOfFileSetDescriptorFileTag is the data element tag of SpecificCharacterSetOfFileSetDescriptorFile SpecificCharacterSetOfFileSetDescriptorFileTag = DataElementTag(0x00041142) // OffsetOfTheFirstDirectoryRecordOfTheRootDirectoryEntityTag is the data element tag of OffsetOfTheFirstDirectoryRecordOfTheRootDirectoryEntity OffsetOfTheFirstDirectoryRecordOfTheRootDirectoryEntityTag = DataElementTag(0x00041200) // OffsetOfTheLastDirectoryRecordOfTheRootDirectoryEntityTag is the data element tag of OffsetOfTheLastDirectoryRecordOfTheRootDirectoryEntity OffsetOfTheLastDirectoryRecordOfTheRootDirectoryEntityTag = DataElementTag(0x00041202) // FileSetConsistencyFlagTag is the data element tag of FileSetConsistencyFlag FileSetConsistencyFlagTag = DataElementTag(0x00041212) // DirectoryRecordSequenceTag is the data element tag of DirectoryRecordSequence DirectoryRecordSequenceTag = DataElementTag(0x00041220) // OffsetOfTheNextDirectoryRecordTag is the data element tag of OffsetOfTheNextDirectoryRecord OffsetOfTheNextDirectoryRecordTag = DataElementTag(0x00041400) // RecordInUseFlagTag is the data element tag of RecordInUseFlag RecordInUseFlagTag = DataElementTag(0x00041410) // OffsetOfReferencedLowerLevelDirectoryEntityTag is the data element tag of OffsetOfReferencedLowerLevelDirectoryEntity OffsetOfReferencedLowerLevelDirectoryEntityTag = DataElementTag(0x00041420) // DirectoryRecordTypeTag is the data element tag of DirectoryRecordType DirectoryRecordTypeTag = DataElementTag(0x00041430) // PrivateRecordUIDTag is the data element tag of PrivateRecordUID PrivateRecordUIDTag = DataElementTag(0x00041432) // ReferencedFileIDTag is the data element tag of ReferencedFileID ReferencedFileIDTag = DataElementTag(0x00041500) // MRDRDirectoryRecordOffsetTag is the data element tag of MRDRDirectoryRecordOffset MRDRDirectoryRecordOffsetTag = DataElementTag(0x00041504) // ReferencedSOPClassUIDInFileTag is the data element tag of ReferencedSOPClassUIDInFile ReferencedSOPClassUIDInFileTag = DataElementTag(0x00041510) // ReferencedSOPInstanceUIDInFileTag is the data element tag of ReferencedSOPInstanceUIDInFile ReferencedSOPInstanceUIDInFileTag = DataElementTag(0x00041511) // ReferencedTransferSyntaxUIDInFileTag is the data element tag of ReferencedTransferSyntaxUIDInFile ReferencedTransferSyntaxUIDInFileTag = DataElementTag(0x00041512) // ReferencedRelatedGeneralSOPClassUIDInFileTag is the data element tag of ReferencedRelatedGeneralSOPClassUIDInFile ReferencedRelatedGeneralSOPClassUIDInFileTag = DataElementTag(0x0004151A) // NumberOfReferencesTag is the data element tag of NumberOfReferences NumberOfReferencesTag = DataElementTag(0x00041600) // LengthToEndTag is the data element tag of LengthToEnd LengthToEndTag = DataElementTag(0x00080001) // SpecificCharacterSetTag is the data element tag of SpecificCharacterSet SpecificCharacterSetTag = DataElementTag(0x00080005) // LanguageCodeSequenceTag is the data element tag of LanguageCodeSequence LanguageCodeSequenceTag = DataElementTag(0x00080006) // ImageTypeTag is the data element tag of ImageType ImageTypeTag = DataElementTag(0x00080008) // RecognitionCodeTag is the data element tag of RecognitionCode RecognitionCodeTag = DataElementTag(0x00080010) // InstanceCreationDateTag is the data element tag of InstanceCreationDate InstanceCreationDateTag = DataElementTag(0x00080012) // InstanceCreationTimeTag is the data element tag of InstanceCreationTime InstanceCreationTimeTag = DataElementTag(0x00080013) // InstanceCreatorUIDTag is the data element tag of InstanceCreatorUID InstanceCreatorUIDTag = DataElementTag(0x00080014) // InstanceCoercionDateTimeTag is the data element tag of InstanceCoercionDateTime InstanceCoercionDateTimeTag = DataElementTag(0x00080015) // SOPClassUIDTag is the data element tag of SOPClassUID SOPClassUIDTag = DataElementTag(0x00080016) // SOPInstanceUIDTag is the data element tag of SOPInstanceUID SOPInstanceUIDTag = DataElementTag(0x00080018) // RelatedGeneralSOPClassUIDTag is the data element tag of RelatedGeneralSOPClassUID RelatedGeneralSOPClassUIDTag = DataElementTag(0x0008001A) // OriginalSpecializedSOPClassUIDTag is the data element tag of OriginalSpecializedSOPClassUID OriginalSpecializedSOPClassUIDTag = DataElementTag(0x0008001B) // StudyDateTag is the data element tag of StudyDate StudyDateTag = DataElementTag(0x00080020) // SeriesDateTag is the data element tag of SeriesDate SeriesDateTag = DataElementTag(0x00080021) // AcquisitionDateTag is the data element tag of AcquisitionDate AcquisitionDateTag = DataElementTag(0x00080022) // ContentDateTag is the data element tag of ContentDate ContentDateTag = DataElementTag(0x00080023) // OverlayDateTag is the data element tag of OverlayDate OverlayDateTag = DataElementTag(0x00080024) // CurveDateTag is the data element tag of CurveDate CurveDateTag = DataElementTag(0x00080025) // AcquisitionDateTimeTag is the data element tag of AcquisitionDateTime AcquisitionDateTimeTag = DataElementTag(0x0008002A) // StudyTimeTag is the data element tag of StudyTime StudyTimeTag = DataElementTag(0x00080030) // SeriesTimeTag is the data element tag of SeriesTime SeriesTimeTag = DataElementTag(0x00080031) // AcquisitionTimeTag is the data element tag of AcquisitionTime AcquisitionTimeTag = DataElementTag(0x00080032) // ContentTimeTag is the data element tag of ContentTime ContentTimeTag = DataElementTag(0x00080033) // OverlayTimeTag is the data element tag of OverlayTime OverlayTimeTag = DataElementTag(0x00080034) // CurveTimeTag is the data element tag of CurveTime CurveTimeTag = DataElementTag(0x00080035) // DataSetTypeTag is the data element tag of DataSetType DataSetTypeTag = DataElementTag(0x00080040) // DataSetSubtypeTag is the data element tag of DataSetSubtype DataSetSubtypeTag = DataElementTag(0x00080041) // NuclearMedicineSeriesTypeTag is the data element tag of NuclearMedicineSeriesType NuclearMedicineSeriesTypeTag = DataElementTag(0x00080042) // AccessionNumberTag is the data element tag of AccessionNumber AccessionNumberTag = DataElementTag(0x00080050) // IssuerOfAccessionNumberSequenceTag is the data element tag of IssuerOfAccessionNumberSequence IssuerOfAccessionNumberSequenceTag = DataElementTag(0x00080051) // QueryRetrieveLevelTag is the data element tag of QueryRetrieveLevel QueryRetrieveLevelTag = DataElementTag(0x00080052) // QueryRetrieveViewTag is the data element tag of QueryRetrieveView QueryRetrieveViewTag = DataElementTag(0x00080053) // RetrieveAETitleTag is the data element tag of RetrieveAETitle RetrieveAETitleTag = DataElementTag(0x00080054) // StationAETitleTag is the data element tag of StationAETitle StationAETitleTag = DataElementTag(0x00080055) // InstanceAvailabilityTag is the data element tag of InstanceAvailability InstanceAvailabilityTag = DataElementTag(0x00080056) // FailedSOPInstanceUIDListTag is the data element tag of FailedSOPInstanceUIDList FailedSOPInstanceUIDListTag = DataElementTag(0x00080058) // ModalityTag is the data element tag of Modality ModalityTag = DataElementTag(0x00080060) // ModalitiesInStudyTag is the data element tag of ModalitiesInStudy ModalitiesInStudyTag = DataElementTag(0x00080061) // SOPClassesInStudyTag is the data element tag of SOPClassesInStudy SOPClassesInStudyTag = DataElementTag(0x00080062) // AnatomicRegionsInStudyCodeSequenceTag is the data element tag of AnatomicRegionsInStudyCodeSequence AnatomicRegionsInStudyCodeSequenceTag = DataElementTag(0x00080063) // ConversionTypeTag is the data element tag of ConversionType ConversionTypeTag = DataElementTag(0x00080064) // PresentationIntentTypeTag is the data element tag of PresentationIntentType PresentationIntentTypeTag = DataElementTag(0x00080068) // ManufacturerTag is the data element tag of Manufacturer ManufacturerTag = DataElementTag(0x00080070) // InstitutionNameTag is the data element tag of InstitutionName InstitutionNameTag = DataElementTag(0x00080080) // InstitutionAddressTag is the data element tag of InstitutionAddress InstitutionAddressTag = DataElementTag(0x00080081) // InstitutionCodeSequenceTag is the data element tag of InstitutionCodeSequence InstitutionCodeSequenceTag = DataElementTag(0x00080082) // ReferringPhysicianNameTag is the data element tag of ReferringPhysicianName ReferringPhysicianNameTag = DataElementTag(0x00080090) // ReferringPhysicianAddressTag is the data element tag of ReferringPhysicianAddress ReferringPhysicianAddressTag = DataElementTag(0x00080092) // ReferringPhysicianTelephoneNumbersTag is the data element tag of ReferringPhysicianTelephoneNumbers ReferringPhysicianTelephoneNumbersTag = DataElementTag(0x00080094) // ReferringPhysicianIdentificationSequenceTag is the data element tag of ReferringPhysicianIdentificationSequence ReferringPhysicianIdentificationSequenceTag = DataElementTag(0x00080096) // ConsultingPhysicianNameTag is the data element tag of ConsultingPhysicianName ConsultingPhysicianNameTag = DataElementTag(0x0008009C) // ConsultingPhysicianIdentificationSequenceTag is the data element tag of ConsultingPhysicianIdentificationSequence ConsultingPhysicianIdentificationSequenceTag = DataElementTag(0x0008009D) // CodeValueTag is the data element tag of CodeValue CodeValueTag = DataElementTag(0x00080100) // ExtendedCodeValueTag is the data element tag of ExtendedCodeValue ExtendedCodeValueTag = DataElementTag(0x00080101) // CodingSchemeDesignatorTag is the data element tag of CodingSchemeDesignator CodingSchemeDesignatorTag = DataElementTag(0x00080102) // CodingSchemeVersionTag is the data element tag of CodingSchemeVersion CodingSchemeVersionTag = DataElementTag(0x00080103) // CodeMeaningTag is the data element tag of CodeMeaning CodeMeaningTag = DataElementTag(0x00080104) // MappingResourceTag is the data element tag of MappingResource MappingResourceTag = DataElementTag(0x00080105) // ContextGroupVersionTag is the data element tag of ContextGroupVersion ContextGroupVersionTag = DataElementTag(0x00080106) // ContextGroupLocalVersionTag is the data element tag of ContextGroupLocalVersion ContextGroupLocalVersionTag = DataElementTag(0x00080107) // ExtendedCodeMeaningTag is the data element tag of ExtendedCodeMeaning ExtendedCodeMeaningTag = DataElementTag(0x00080108) // CodingSchemeResourcesSequenceTag is the data element tag of CodingSchemeResourcesSequence CodingSchemeResourcesSequenceTag = DataElementTag(0x00080109) // CodingSchemeURLTypeTag is the data element tag of CodingSchemeURLType CodingSchemeURLTypeTag = DataElementTag(0x0008010A) // ContextGroupExtensionFlagTag is the data element tag of ContextGroupExtensionFlag ContextGroupExtensionFlagTag = DataElementTag(0x0008010B) // CodingSchemeUIDTag is the data element tag of CodingSchemeUID CodingSchemeUIDTag = DataElementTag(0x0008010C) // ContextGroupExtensionCreatorUIDTag is the data element tag of ContextGroupExtensionCreatorUID ContextGroupExtensionCreatorUIDTag = DataElementTag(0x0008010D) // CodingSchemeURLTag is the data element tag of CodingSchemeURL CodingSchemeURLTag = DataElementTag(0x0008010E) // ContextIdentifierTag is the data element tag of ContextIdentifier ContextIdentifierTag = DataElementTag(0x0008010F) // CodingSchemeIdentificationSequenceTag is the data element tag of CodingSchemeIdentificationSequence CodingSchemeIdentificationSequenceTag = DataElementTag(0x00080110) // CodingSchemeRegistryTag is the data element tag of CodingSchemeRegistry CodingSchemeRegistryTag = DataElementTag(0x00080112) // CodingSchemeExternalIDTag is the data element tag of CodingSchemeExternalID CodingSchemeExternalIDTag = DataElementTag(0x00080114) // CodingSchemeNameTag is the data element tag of CodingSchemeName CodingSchemeNameTag = DataElementTag(0x00080115) // CodingSchemeResponsibleOrganizationTag is the data element tag of CodingSchemeResponsibleOrganization CodingSchemeResponsibleOrganizationTag = DataElementTag(0x00080116) // ContextUIDTag is the data element tag of ContextUID ContextUIDTag = DataElementTag(0x00080117) // MappingResourceUIDTag is the data element tag of MappingResourceUID MappingResourceUIDTag = DataElementTag(0x00080118) // LongCodeValueTag is the data element tag of LongCodeValue LongCodeValueTag = DataElementTag(0x00080119) // URNCodeValueTag is the data element tag of URNCodeValue URNCodeValueTag = DataElementTag(0x00080120) // EquivalentCodeSequenceTag is the data element tag of EquivalentCodeSequence EquivalentCodeSequenceTag = DataElementTag(0x00080121) // MappingResourceNameTag is the data element tag of MappingResourceName MappingResourceNameTag = DataElementTag(0x00080122) // ContextGroupIdentificationSequenceTag is the data element tag of ContextGroupIdentificationSequence ContextGroupIdentificationSequenceTag = DataElementTag(0x00080123) // MappingResourceIdentificationSequenceTag is the data element tag of MappingResourceIdentificationSequence MappingResourceIdentificationSequenceTag = DataElementTag(0x00080124) // TimezoneOffsetFromUTCTag is the data element tag of TimezoneOffsetFromUTC TimezoneOffsetFromUTCTag = DataElementTag(0x00080201) // ResponsibleGroupCodeSequenceTag is the data element tag of ResponsibleGroupCodeSequence ResponsibleGroupCodeSequenceTag = DataElementTag(0x00080220) // EquipmentModalityTag is the data element tag of EquipmentModality EquipmentModalityTag = DataElementTag(0x00080221) // ManufacturerRelatedModelGroupTag is the data element tag of ManufacturerRelatedModelGroup ManufacturerRelatedModelGroupTag = DataElementTag(0x00080222) // PrivateDataElementCharacteristicsSequenceTag is the data element tag of PrivateDataElementCharacteristicsSequence PrivateDataElementCharacteristicsSequenceTag = DataElementTag(0x00080300) // PrivateGroupReferenceTag is the data element tag of PrivateGroupReference PrivateGroupReferenceTag = DataElementTag(0x00080301) // PrivateCreatorReferenceTag is the data element tag of PrivateCreatorReference PrivateCreatorReferenceTag = DataElementTag(0x00080302) // BlockIdentifyingInformationStatusTag is the data element tag of BlockIdentifyingInformationStatus BlockIdentifyingInformationStatusTag = DataElementTag(0x00080303) // NonidentifyingPrivateElementsTag is the data element tag of NonidentifyingPrivateElements NonidentifyingPrivateElementsTag = DataElementTag(0x00080304) // DeidentificationActionSequenceTag is the data element tag of DeidentificationActionSequence DeidentificationActionSequenceTag = DataElementTag(0x00080305) // IdentifyingPrivateElementsTag is the data element tag of IdentifyingPrivateElements IdentifyingPrivateElementsTag = DataElementTag(0x00080306) // DeidentificationActionTag is the data element tag of DeidentificationAction DeidentificationActionTag = DataElementTag(0x00080307) // PrivateDataElementTag is the data element tag of PrivateDataElement PrivateDataElementTag = DataElementTag(0x00080308) // PrivateDataElementValueMultiplicityTag is the data element tag of PrivateDataElementValueMultiplicity PrivateDataElementValueMultiplicityTag = DataElementTag(0x00080309) // PrivateDataElementValueRepresentationTag is the data element tag of PrivateDataElementValueRepresentation PrivateDataElementValueRepresentationTag = DataElementTag(0x0008030A) // PrivateDataElementNumberOfItemsTag is the data element tag of PrivateDataElementNumberOfItems PrivateDataElementNumberOfItemsTag = DataElementTag(0x0008030B) // PrivateDataElementNameTag is the data element tag of PrivateDataElementName PrivateDataElementNameTag = DataElementTag(0x0008030C) // PrivateDataElementKeywordTag is the data element tag of PrivateDataElementKeyword PrivateDataElementKeywordTag = DataElementTag(0x0008030D) // PrivateDataElementDescriptionTag is the data element tag of PrivateDataElementDescription PrivateDataElementDescriptionTag = DataElementTag(0x0008030E) // PrivateDataElementEncodingTag is the data element tag of PrivateDataElementEncoding PrivateDataElementEncodingTag = DataElementTag(0x0008030F) // PrivateDataElementDefinitionSequenceTag is the data element tag of PrivateDataElementDefinitionSequence PrivateDataElementDefinitionSequenceTag = DataElementTag(0x00080310) // NetworkIDTag is the data element tag of NetworkID NetworkIDTag = DataElementTag(0x00081000) // StationNameTag is the data element tag of StationName StationNameTag = DataElementTag(0x00081010) // StudyDescriptionTag is the data element tag of StudyDescription StudyDescriptionTag = DataElementTag(0x00081030) // ProcedureCodeSequenceTag is the data element tag of ProcedureCodeSequence ProcedureCodeSequenceTag = DataElementTag(0x00081032) // SeriesDescriptionTag is the data element tag of SeriesDescription SeriesDescriptionTag = DataElementTag(0x0008103E) // SeriesDescriptionCodeSequenceTag is the data element tag of SeriesDescriptionCodeSequence SeriesDescriptionCodeSequenceTag = DataElementTag(0x0008103F) // InstitutionalDepartmentNameTag is the data element tag of InstitutionalDepartmentName InstitutionalDepartmentNameTag = DataElementTag(0x00081040) // InstitutionalDepartmentTypeCodeSequenceTag is the data element tag of InstitutionalDepartmentTypeCodeSequence InstitutionalDepartmentTypeCodeSequenceTag = DataElementTag(0x00081041) // PhysiciansOfRecordTag is the data element tag of PhysiciansOfRecord PhysiciansOfRecordTag = DataElementTag(0x00081048) // PhysiciansOfRecordIdentificationSequenceTag is the data element tag of PhysiciansOfRecordIdentificationSequence PhysiciansOfRecordIdentificationSequenceTag = DataElementTag(0x00081049) // PerformingPhysicianNameTag is the data element tag of PerformingPhysicianName PerformingPhysicianNameTag = DataElementTag(0x00081050) // PerformingPhysicianIdentificationSequenceTag is the data element tag of PerformingPhysicianIdentificationSequence PerformingPhysicianIdentificationSequenceTag = DataElementTag(0x00081052) // NameOfPhysiciansReadingStudyTag is the data element tag of NameOfPhysiciansReadingStudy NameOfPhysiciansReadingStudyTag = DataElementTag(0x00081060) // PhysiciansReadingStudyIdentificationSequenceTag is the data element tag of PhysiciansReadingStudyIdentificationSequence PhysiciansReadingStudyIdentificationSequenceTag = DataElementTag(0x00081062) // OperatorsNameTag is the data element tag of OperatorsName OperatorsNameTag = DataElementTag(0x00081070) // OperatorIdentificationSequenceTag is the data element tag of OperatorIdentificationSequence OperatorIdentificationSequenceTag = DataElementTag(0x00081072) // AdmittingDiagnosesDescriptionTag is the data element tag of AdmittingDiagnosesDescription AdmittingDiagnosesDescriptionTag = DataElementTag(0x00081080) // AdmittingDiagnosesCodeSequenceTag is the data element tag of AdmittingDiagnosesCodeSequence AdmittingDiagnosesCodeSequenceTag = DataElementTag(0x00081084) // ManufacturerModelNameTag is the data element tag of ManufacturerModelName ManufacturerModelNameTag = DataElementTag(0x00081090) // ReferencedResultsSequenceTag is the data element tag of ReferencedResultsSequence ReferencedResultsSequenceTag = DataElementTag(0x00081100) // ReferencedStudySequenceTag is the data element tag of ReferencedStudySequence ReferencedStudySequenceTag = DataElementTag(0x00081110) // ReferencedPerformedProcedureStepSequenceTag is the data element tag of ReferencedPerformedProcedureStepSequence ReferencedPerformedProcedureStepSequenceTag = DataElementTag(0x00081111) // ReferencedSeriesSequenceTag is the data element tag of ReferencedSeriesSequence ReferencedSeriesSequenceTag = DataElementTag(0x00081115) // ReferencedPatientSequenceTag is the data element tag of ReferencedPatientSequence ReferencedPatientSequenceTag = DataElementTag(0x00081120) // ReferencedVisitSequenceTag is the data element tag of ReferencedVisitSequence ReferencedVisitSequenceTag = DataElementTag(0x00081125) // ReferencedOverlaySequenceTag is the data element tag of ReferencedOverlaySequence ReferencedOverlaySequenceTag = DataElementTag(0x00081130) // ReferencedStereometricInstanceSequenceTag is the data element tag of ReferencedStereometricInstanceSequence ReferencedStereometricInstanceSequenceTag = DataElementTag(0x00081134) // ReferencedWaveformSequenceTag is the data element tag of ReferencedWaveformSequence ReferencedWaveformSequenceTag = DataElementTag(0x0008113A) // ReferencedImageSequenceTag is the data element tag of ReferencedImageSequence ReferencedImageSequenceTag = DataElementTag(0x00081140) // ReferencedCurveSequenceTag is the data element tag of ReferencedCurveSequence ReferencedCurveSequenceTag = DataElementTag(0x00081145) // ReferencedInstanceSequenceTag is the data element tag of ReferencedInstanceSequence ReferencedInstanceSequenceTag = DataElementTag(0x0008114A) // ReferencedRealWorldValueMappingInstanceSequenceTag is the data element tag of ReferencedRealWorldValueMappingInstanceSequence ReferencedRealWorldValueMappingInstanceSequenceTag = DataElementTag(0x0008114B) // ReferencedSOPClassUIDTag is the data element tag of ReferencedSOPClassUID ReferencedSOPClassUIDTag = DataElementTag(0x00081150) // ReferencedSOPInstanceUIDTag is the data element tag of ReferencedSOPInstanceUID ReferencedSOPInstanceUIDTag = DataElementTag(0x00081155) // DefinitionSourceSequenceTag is the data element tag of DefinitionSourceSequence DefinitionSourceSequenceTag = DataElementTag(0x00081156) // SOPClassesSupportedTag is the data element tag of SOPClassesSupported SOPClassesSupportedTag = DataElementTag(0x0008115A) // ReferencedFrameNumberTag is the data element tag of ReferencedFrameNumber ReferencedFrameNumberTag = DataElementTag(0x00081160) // SimpleFrameListTag is the data element tag of SimpleFrameList SimpleFrameListTag = DataElementTag(0x00081161) // CalculatedFrameListTag is the data element tag of CalculatedFrameList CalculatedFrameListTag = DataElementTag(0x00081162) // TimeRangeTag is the data element tag of TimeRange TimeRangeTag = DataElementTag(0x00081163) // FrameExtractionSequenceTag is the data element tag of FrameExtractionSequence FrameExtractionSequenceTag = DataElementTag(0x00081164) // MultiFrameSourceSOPInstanceUIDTag is the data element tag of MultiFrameSourceSOPInstanceUID MultiFrameSourceSOPInstanceUIDTag = DataElementTag(0x00081167) // RetrieveURLTag is the data element tag of RetrieveURL RetrieveURLTag = DataElementTag(0x00081190) // TransactionUIDTag is the data element tag of TransactionUID TransactionUIDTag = DataElementTag(0x00081195) // WarningReasonTag is the data element tag of WarningReason WarningReasonTag = DataElementTag(0x00081196) // FailureReasonTag is the data element tag of FailureReason FailureReasonTag = DataElementTag(0x00081197) // FailedSOPSequenceTag is the data element tag of FailedSOPSequence FailedSOPSequenceTag = DataElementTag(0x00081198) // ReferencedSOPSequenceTag is the data element tag of ReferencedSOPSequence ReferencedSOPSequenceTag = DataElementTag(0x00081199) // OtherFailuresSequenceTag is the data element tag of OtherFailuresSequence OtherFailuresSequenceTag = DataElementTag(0x0008119A) // StudiesContainingOtherReferencedInstancesSequenceTag is the data element tag of StudiesContainingOtherReferencedInstancesSequence StudiesContainingOtherReferencedInstancesSequenceTag = DataElementTag(0x00081200) // RelatedSeriesSequenceTag is the data element tag of RelatedSeriesSequence RelatedSeriesSequenceTag = DataElementTag(0x00081250) // LossyImageCompressionRetiredTag is the data element tag of LossyImageCompressionRetired LossyImageCompressionRetiredTag = DataElementTag(0x00082110) // DerivationDescriptionTag is the data element tag of DerivationDescription DerivationDescriptionTag = DataElementTag(0x00082111) // SourceImageSequenceTag is the data element tag of SourceImageSequence SourceImageSequenceTag = DataElementTag(0x00082112) // StageNameTag is the data element tag of StageName StageNameTag = DataElementTag(0x00082120) // StageNumberTag is the data element tag of StageNumber StageNumberTag = DataElementTag(0x00082122) // NumberOfStagesTag is the data element tag of NumberOfStages NumberOfStagesTag = DataElementTag(0x00082124) // ViewNameTag is the data element tag of ViewName ViewNameTag = DataElementTag(0x00082127) // ViewNumberTag is the data element tag of ViewNumber ViewNumberTag = DataElementTag(0x00082128) // NumberOfEventTimersTag is the data element tag of NumberOfEventTimers NumberOfEventTimersTag = DataElementTag(0x00082129) // NumberOfViewsInStageTag is the data element tag of NumberOfViewsInStage NumberOfViewsInStageTag = DataElementTag(0x0008212A) // EventElapsedTimesTag is the data element tag of EventElapsedTimes EventElapsedTimesTag = DataElementTag(0x00082130) // EventTimerNamesTag is the data element tag of EventTimerNames EventTimerNamesTag = DataElementTag(0x00082132) // EventTimerSequenceTag is the data element tag of EventTimerSequence EventTimerSequenceTag = DataElementTag(0x00082133) // EventTimeOffsetTag is the data element tag of EventTimeOffset EventTimeOffsetTag = DataElementTag(0x00082134) // EventCodeSequenceTag is the data element tag of EventCodeSequence EventCodeSequenceTag = DataElementTag(0x00082135) // StartTrimTag is the data element tag of StartTrim StartTrimTag = DataElementTag(0x00082142) // StopTrimTag is the data element tag of StopTrim StopTrimTag = DataElementTag(0x00082143) // RecommendedDisplayFrameRateTag is the data element tag of RecommendedDisplayFrameRate RecommendedDisplayFrameRateTag = DataElementTag(0x00082144) // TransducerPositionTag is the data element tag of TransducerPosition TransducerPositionTag = DataElementTag(0x00082200) // TransducerOrientationTag is the data element tag of TransducerOrientation TransducerOrientationTag = DataElementTag(0x00082204) // AnatomicStructureTag is the data element tag of AnatomicStructure AnatomicStructureTag = DataElementTag(0x00082208) // AnatomicRegionSequenceTag is the data element tag of AnatomicRegionSequence AnatomicRegionSequenceTag = DataElementTag(0x00082218) // AnatomicRegionModifierSequenceTag is the data element tag of AnatomicRegionModifierSequence AnatomicRegionModifierSequenceTag = DataElementTag(0x00082220) // PrimaryAnatomicStructureSequenceTag is the data element tag of PrimaryAnatomicStructureSequence PrimaryAnatomicStructureSequenceTag = DataElementTag(0x00082228) // AnatomicStructureSpaceOrRegionSequenceTag is the data element tag of AnatomicStructureSpaceOrRegionSequence AnatomicStructureSpaceOrRegionSequenceTag = DataElementTag(0x00082229) // PrimaryAnatomicStructureModifierSequenceTag is the data element tag of PrimaryAnatomicStructureModifierSequence PrimaryAnatomicStructureModifierSequenceTag = DataElementTag(0x00082230) // TransducerPositionSequenceTag is the data element tag of TransducerPositionSequence TransducerPositionSequenceTag = DataElementTag(0x00082240) // TransducerPositionModifierSequenceTag is the data element tag of TransducerPositionModifierSequence TransducerPositionModifierSequenceTag = DataElementTag(0x00082242) // TransducerOrientationSequenceTag is the data element tag of TransducerOrientationSequence TransducerOrientationSequenceTag = DataElementTag(0x00082244) // TransducerOrientationModifierSequenceTag is the data element tag of TransducerOrientationModifierSequence TransducerOrientationModifierSequenceTag = DataElementTag(0x00082246) // AnatomicStructureSpaceOrRegionCodeSequenceTrialTag is the data element tag of AnatomicStructureSpaceOrRegionCodeSequenceTrial AnatomicStructureSpaceOrRegionCodeSequenceTrialTag = DataElementTag(0x00082251) // AnatomicPortalOfEntranceCodeSequenceTrialTag is the data element tag of AnatomicPortalOfEntranceCodeSequenceTrial AnatomicPortalOfEntranceCodeSequenceTrialTag = DataElementTag(0x00082253) // AnatomicApproachDirectionCodeSequenceTrialTag is the data element tag of AnatomicApproachDirectionCodeSequenceTrial AnatomicApproachDirectionCodeSequenceTrialTag = DataElementTag(0x00082255) // AnatomicPerspectiveDescriptionTrialTag is the data element tag of AnatomicPerspectiveDescriptionTrial AnatomicPerspectiveDescriptionTrialTag = DataElementTag(0x00082256) // AnatomicPerspectiveCodeSequenceTrialTag is the data element tag of AnatomicPerspectiveCodeSequenceTrial AnatomicPerspectiveCodeSequenceTrialTag = DataElementTag(0x00082257) // AnatomicLocationOfExaminingInstrumentDescriptionTrialTag is the data element tag of AnatomicLocationOfExaminingInstrumentDescriptionTrial AnatomicLocationOfExaminingInstrumentDescriptionTrialTag = DataElementTag(0x00082258) // AnatomicLocationOfExaminingInstrumentCodeSequenceTrialTag is the data element tag of AnatomicLocationOfExaminingInstrumentCodeSequenceTrial AnatomicLocationOfExaminingInstrumentCodeSequenceTrialTag = DataElementTag(0x00082259) // AnatomicStructureSpaceOrRegionModifierCodeSequenceTrialTag is the data element tag of AnatomicStructureSpaceOrRegionModifierCodeSequenceTrial AnatomicStructureSpaceOrRegionModifierCodeSequenceTrialTag = DataElementTag(0x0008225A) // OnAxisBackgroundAnatomicStructureCodeSequenceTrialTag is the data element tag of OnAxisBackgroundAnatomicStructureCodeSequenceTrial OnAxisBackgroundAnatomicStructureCodeSequenceTrialTag = DataElementTag(0x0008225C) // AlternateRepresentationSequenceTag is the data element tag of AlternateRepresentationSequence AlternateRepresentationSequenceTag = DataElementTag(0x00083001) // IrradiationEventUIDTag is the data element tag of IrradiationEventUID IrradiationEventUIDTag = DataElementTag(0x00083010) // SourceIrradiationEventSequenceTag is the data element tag of SourceIrradiationEventSequence SourceIrradiationEventSequenceTag = DataElementTag(0x00083011) // RadiopharmaceuticalAdministrationEventUIDTag is the data element tag of RadiopharmaceuticalAdministrationEventUID RadiopharmaceuticalAdministrationEventUIDTag = DataElementTag(0x00083012) // IdentifyingCommentsTag is the data element tag of IdentifyingComments IdentifyingCommentsTag = DataElementTag(0x00084000) // FrameTypeTag is the data element tag of FrameType FrameTypeTag = DataElementTag(0x00089007) // ReferencedImageEvidenceSequenceTag is the data element tag of ReferencedImageEvidenceSequence ReferencedImageEvidenceSequenceTag = DataElementTag(0x00089092) // ReferencedRawDataSequenceTag is the data element tag of ReferencedRawDataSequence ReferencedRawDataSequenceTag = DataElementTag(0x00089121) // CreatorVersionUIDTag is the data element tag of CreatorVersionUID CreatorVersionUIDTag = DataElementTag(0x00089123) // DerivationImageSequenceTag is the data element tag of DerivationImageSequence DerivationImageSequenceTag = DataElementTag(0x00089124) // SourceImageEvidenceSequenceTag is the data element tag of SourceImageEvidenceSequence SourceImageEvidenceSequenceTag = DataElementTag(0x00089154) // PixelPresentationTag is the data element tag of PixelPresentation PixelPresentationTag = DataElementTag(0x00089205) // VolumetricPropertiesTag is the data element tag of VolumetricProperties VolumetricPropertiesTag = DataElementTag(0x00089206) // VolumeBasedCalculationTechniqueTag is the data element tag of VolumeBasedCalculationTechnique VolumeBasedCalculationTechniqueTag = DataElementTag(0x00089207) // ComplexImageComponentTag is the data element tag of ComplexImageComponent ComplexImageComponentTag = DataElementTag(0x00089208) // AcquisitionContrastTag is the data element tag of AcquisitionContrast AcquisitionContrastTag = DataElementTag(0x00089209) // DerivationCodeSequenceTag is the data element tag of DerivationCodeSequence DerivationCodeSequenceTag = DataElementTag(0x00089215) // ReferencedPresentationStateSequenceTag is the data element tag of ReferencedPresentationStateSequence ReferencedPresentationStateSequenceTag = DataElementTag(0x00089237) // ReferencedOtherPlaneSequenceTag is the data element tag of ReferencedOtherPlaneSequence ReferencedOtherPlaneSequenceTag = DataElementTag(0x00089410) // FrameDisplaySequenceTag is the data element tag of FrameDisplaySequence FrameDisplaySequenceTag = DataElementTag(0x00089458) // RecommendedDisplayFrameRateInFloatTag is the data element tag of RecommendedDisplayFrameRateInFloat RecommendedDisplayFrameRateInFloatTag = DataElementTag(0x00089459) // SkipFrameRangeFlagTag is the data element tag of SkipFrameRangeFlag SkipFrameRangeFlagTag = DataElementTag(0x00089460) // PatientNameTag is the data element tag of PatientName PatientNameTag = DataElementTag(0x00100010) // PatientIDTag is the data element tag of PatientID PatientIDTag = DataElementTag(0x00100020) // IssuerOfPatientIDTag is the data element tag of IssuerOfPatientID IssuerOfPatientIDTag = DataElementTag(0x00100021) // TypeOfPatientIDTag is the data element tag of TypeOfPatientID TypeOfPatientIDTag = DataElementTag(0x00100022) // IssuerOfPatientIDQualifiersSequenceTag is the data element tag of IssuerOfPatientIDQualifiersSequence IssuerOfPatientIDQualifiersSequenceTag = DataElementTag(0x00100024) // SourcePatientGroupIdentificationSequenceTag is the data element tag of SourcePatientGroupIdentificationSequence SourcePatientGroupIdentificationSequenceTag = DataElementTag(0x00100026) // GroupOfPatientsIdentificationSequenceTag is the data element tag of GroupOfPatientsIdentificationSequence GroupOfPatientsIdentificationSequenceTag = DataElementTag(0x00100027) // SubjectRelativePositionInImageTag is the data element tag of SubjectRelativePositionInImage SubjectRelativePositionInImageTag = DataElementTag(0x00100028) // PatientBirthDateTag is the data element tag of PatientBirthDate PatientBirthDateTag = DataElementTag(0x00100030) // PatientBirthTimeTag is the data element tag of PatientBirthTime PatientBirthTimeTag = DataElementTag(0x00100032) // PatientBirthDateInAlternativeCalendarTag is the data element tag of PatientBirthDateInAlternativeCalendar PatientBirthDateInAlternativeCalendarTag = DataElementTag(0x00100033) // PatientDeathDateInAlternativeCalendarTag is the data element tag of PatientDeathDateInAlternativeCalendar PatientDeathDateInAlternativeCalendarTag = DataElementTag(0x00100034) // PatientAlternativeCalendarTag is the data element tag of PatientAlternativeCalendar PatientAlternativeCalendarTag = DataElementTag(0x00100035) // PatientSexTag is the data element tag of PatientSex PatientSexTag = DataElementTag(0x00100040) // PatientInsurancePlanCodeSequenceTag is the data element tag of PatientInsurancePlanCodeSequence PatientInsurancePlanCodeSequenceTag = DataElementTag(0x00100050) // PatientPrimaryLanguageCodeSequenceTag is the data element tag of PatientPrimaryLanguageCodeSequence PatientPrimaryLanguageCodeSequenceTag = DataElementTag(0x00100101) // PatientPrimaryLanguageModifierCodeSequenceTag is the data element tag of PatientPrimaryLanguageModifierCodeSequence PatientPrimaryLanguageModifierCodeSequenceTag = DataElementTag(0x00100102) // QualityControlSubjectTag is the data element tag of QualityControlSubject QualityControlSubjectTag = DataElementTag(0x00100200) // QualityControlSubjectTypeCodeSequenceTag is the data element tag of QualityControlSubjectTypeCodeSequence QualityControlSubjectTypeCodeSequenceTag = DataElementTag(0x00100201) // StrainDescriptionTag is the data element tag of StrainDescription StrainDescriptionTag = DataElementTag(0x00100212) // StrainNomenclatureTag is the data element tag of StrainNomenclature StrainNomenclatureTag = DataElementTag(0x00100213) // StrainStockNumberTag is the data element tag of StrainStockNumber StrainStockNumberTag = DataElementTag(0x00100214) // StrainSourceRegistryCodeSequenceTag is the data element tag of StrainSourceRegistryCodeSequence StrainSourceRegistryCodeSequenceTag = DataElementTag(0x00100215) // StrainStockSequenceTag is the data element tag of StrainStockSequence StrainStockSequenceTag = DataElementTag(0x00100216) // StrainSourceTag is the data element tag of StrainSource StrainSourceTag = DataElementTag(0x00100217) // StrainAdditionalInformationTag is the data element tag of StrainAdditionalInformation StrainAdditionalInformationTag = DataElementTag(0x00100218) // StrainCodeSequenceTag is the data element tag of StrainCodeSequence StrainCodeSequenceTag = DataElementTag(0x00100219) // GeneticModificationsSequenceTag is the data element tag of GeneticModificationsSequence GeneticModificationsSequenceTag = DataElementTag(0x00100221) // GeneticModificationsDescriptionTag is the data element tag of GeneticModificationsDescription GeneticModificationsDescriptionTag = DataElementTag(0x00100222) // GeneticModificationsNomenclatureTag is the data element tag of GeneticModificationsNomenclature GeneticModificationsNomenclatureTag = DataElementTag(0x00100223) // GeneticModificationsCodeSequenceTag is the data element tag of GeneticModificationsCodeSequence GeneticModificationsCodeSequenceTag = DataElementTag(0x00100229) // OtherPatientIDsTag is the data element tag of OtherPatientIDs OtherPatientIDsTag = DataElementTag(0x00101000) // OtherPatientNamesTag is the data element tag of OtherPatientNames OtherPatientNamesTag = DataElementTag(0x00101001) // OtherPatientIDsSequenceTag is the data element tag of OtherPatientIDsSequence OtherPatientIDsSequenceTag = DataElementTag(0x00101002) // PatientBirthNameTag is the data element tag of PatientBirthName PatientBirthNameTag = DataElementTag(0x00101005) // PatientAgeTag is the data element tag of PatientAge PatientAgeTag = DataElementTag(0x00101010) // PatientSizeTag is the data element tag of PatientSize PatientSizeTag = DataElementTag(0x00101020) // PatientSizeCodeSequenceTag is the data element tag of PatientSizeCodeSequence PatientSizeCodeSequenceTag = DataElementTag(0x00101021) // PatientBodyMassIndexTag is the data element tag of PatientBodyMassIndex PatientBodyMassIndexTag = DataElementTag(0x00101022) // MeasuredAPDimensionTag is the data element tag of MeasuredAPDimension MeasuredAPDimensionTag = DataElementTag(0x00101023) // MeasuredLateralDimensionTag is the data element tag of MeasuredLateralDimension MeasuredLateralDimensionTag = DataElementTag(0x00101024) // PatientWeightTag is the data element tag of PatientWeight PatientWeightTag = DataElementTag(0x00101030) // PatientAddressTag is the data element tag of PatientAddress PatientAddressTag = DataElementTag(0x00101040) // InsurancePlanIdentificationTag is the data element tag of InsurancePlanIdentification InsurancePlanIdentificationTag = DataElementTag(0x00101050) // PatientMotherBirthNameTag is the data element tag of PatientMotherBirthName PatientMotherBirthNameTag = DataElementTag(0x00101060) // MilitaryRankTag is the data element tag of MilitaryRank MilitaryRankTag = DataElementTag(0x00101080) // BranchOfServiceTag is the data element tag of BranchOfService BranchOfServiceTag = DataElementTag(0x00101081) // MedicalRecordLocatorTag is the data element tag of MedicalRecordLocator MedicalRecordLocatorTag = DataElementTag(0x00101090) // ReferencedPatientPhotoSequenceTag is the data element tag of ReferencedPatientPhotoSequence ReferencedPatientPhotoSequenceTag = DataElementTag(0x00101100) // MedicalAlertsTag is the data element tag of MedicalAlerts MedicalAlertsTag = DataElementTag(0x00102000) // AllergiesTag is the data element tag of Allergies AllergiesTag = DataElementTag(0x00102110) // CountryOfResidenceTag is the data element tag of CountryOfResidence CountryOfResidenceTag = DataElementTag(0x00102150) // RegionOfResidenceTag is the data element tag of RegionOfResidence RegionOfResidenceTag = DataElementTag(0x00102152) // PatientTelephoneNumbersTag is the data element tag of PatientTelephoneNumbers PatientTelephoneNumbersTag = DataElementTag(0x00102154) // PatientTelecomInformationTag is the data element tag of PatientTelecomInformation PatientTelecomInformationTag = DataElementTag(0x00102155) // EthnicGroupTag is the data element tag of EthnicGroup EthnicGroupTag = DataElementTag(0x00102160) // OccupationTag is the data element tag of Occupation OccupationTag = DataElementTag(0x00102180) // SmokingStatusTag is the data element tag of SmokingStatus SmokingStatusTag = DataElementTag(0x001021A0) // AdditionalPatientHistoryTag is the data element tag of AdditionalPatientHistory AdditionalPatientHistoryTag = DataElementTag(0x001021B0) // PregnancyStatusTag is the data element tag of PregnancyStatus PregnancyStatusTag = DataElementTag(0x001021C0) // LastMenstrualDateTag is the data element tag of LastMenstrualDate LastMenstrualDateTag = DataElementTag(0x001021D0) // PatientReligiousPreferenceTag is the data element tag of PatientReligiousPreference PatientReligiousPreferenceTag = DataElementTag(0x001021F0) // PatientSpeciesDescriptionTag is the data element tag of PatientSpeciesDescription PatientSpeciesDescriptionTag = DataElementTag(0x00102201) // PatientSpeciesCodeSequenceTag is the data element tag of PatientSpeciesCodeSequence PatientSpeciesCodeSequenceTag = DataElementTag(0x00102202) // PatientSexNeuteredTag is the data element tag of PatientSexNeutered PatientSexNeuteredTag = DataElementTag(0x00102203) // AnatomicalOrientationTypeTag is the data element tag of AnatomicalOrientationType AnatomicalOrientationTypeTag = DataElementTag(0x00102210) // PatientBreedDescriptionTag is the data element tag of PatientBreedDescription PatientBreedDescriptionTag = DataElementTag(0x00102292) // PatientBreedCodeSequenceTag is the data element tag of PatientBreedCodeSequence PatientBreedCodeSequenceTag = DataElementTag(0x00102293) // BreedRegistrationSequenceTag is the data element tag of BreedRegistrationSequence BreedRegistrationSequenceTag = DataElementTag(0x00102294) // BreedRegistrationNumberTag is the data element tag of BreedRegistrationNumber BreedRegistrationNumberTag = DataElementTag(0x00102295) // BreedRegistryCodeSequenceTag is the data element tag of BreedRegistryCodeSequence BreedRegistryCodeSequenceTag = DataElementTag(0x00102296) // ResponsiblePersonTag is the data element tag of ResponsiblePerson ResponsiblePersonTag = DataElementTag(0x00102297) // ResponsiblePersonRoleTag is the data element tag of ResponsiblePersonRole ResponsiblePersonRoleTag = DataElementTag(0x00102298) // ResponsibleOrganizationTag is the data element tag of ResponsibleOrganization ResponsibleOrganizationTag = DataElementTag(0x00102299) // PatientCommentsTag is the data element tag of PatientComments PatientCommentsTag = DataElementTag(0x00104000) // ExaminedBodyThicknessTag is the data element tag of ExaminedBodyThickness ExaminedBodyThicknessTag = DataElementTag(0x00109431) // ClinicalTrialSponsorNameTag is the data element tag of ClinicalTrialSponsorName ClinicalTrialSponsorNameTag = DataElementTag(0x00120010) // ClinicalTrialProtocolIDTag is the data element tag of ClinicalTrialProtocolID ClinicalTrialProtocolIDTag = DataElementTag(0x00120020) // ClinicalTrialProtocolNameTag is the data element tag of ClinicalTrialProtocolName ClinicalTrialProtocolNameTag = DataElementTag(0x00120021) // ClinicalTrialSiteIDTag is the data element tag of ClinicalTrialSiteID ClinicalTrialSiteIDTag = DataElementTag(0x00120030) // ClinicalTrialSiteNameTag is the data element tag of ClinicalTrialSiteName ClinicalTrialSiteNameTag = DataElementTag(0x00120031) // ClinicalTrialSubjectIDTag is the data element tag of ClinicalTrialSubjectID ClinicalTrialSubjectIDTag = DataElementTag(0x00120040) // ClinicalTrialSubjectReadingIDTag is the data element tag of ClinicalTrialSubjectReadingID ClinicalTrialSubjectReadingIDTag = DataElementTag(0x00120042) // ClinicalTrialTimePointIDTag is the data element tag of ClinicalTrialTimePointID ClinicalTrialTimePointIDTag = DataElementTag(0x00120050) // ClinicalTrialTimePointDescriptionTag is the data element tag of ClinicalTrialTimePointDescription ClinicalTrialTimePointDescriptionTag = DataElementTag(0x00120051) // LongitudinalTemporalOffsetFromEventTag is the data element tag of LongitudinalTemporalOffsetFromEvent LongitudinalTemporalOffsetFromEventTag = DataElementTag(0x00120052) // LongitudinalTemporalEventTypeTag is the data element tag of LongitudinalTemporalEventType LongitudinalTemporalEventTypeTag = DataElementTag(0x00120053) // ClinicalTrialCoordinatingCenterNameTag is the data element tag of ClinicalTrialCoordinatingCenterName ClinicalTrialCoordinatingCenterNameTag = DataElementTag(0x00120060) // PatientIdentityRemovedTag is the data element tag of PatientIdentityRemoved PatientIdentityRemovedTag = DataElementTag(0x00120062) // DeidentificationMethodTag is the data element tag of DeidentificationMethod DeidentificationMethodTag = DataElementTag(0x00120063) // DeidentificationMethodCodeSequenceTag is the data element tag of DeidentificationMethodCodeSequence DeidentificationMethodCodeSequenceTag = DataElementTag(0x00120064) // ClinicalTrialSeriesIDTag is the data element tag of ClinicalTrialSeriesID ClinicalTrialSeriesIDTag = DataElementTag(0x00120071) // ClinicalTrialSeriesDescriptionTag is the data element tag of ClinicalTrialSeriesDescription ClinicalTrialSeriesDescriptionTag = DataElementTag(0x00120072) // ClinicalTrialProtocolEthicsCommitteeNameTag is the data element tag of ClinicalTrialProtocolEthicsCommitteeName ClinicalTrialProtocolEthicsCommitteeNameTag = DataElementTag(0x00120081) // ClinicalTrialProtocolEthicsCommitteeApprovalNumberTag is the data element tag of ClinicalTrialProtocolEthicsCommitteeApprovalNumber ClinicalTrialProtocolEthicsCommitteeApprovalNumberTag = DataElementTag(0x00120082) // ConsentForClinicalTrialUseSequenceTag is the data element tag of ConsentForClinicalTrialUseSequence ConsentForClinicalTrialUseSequenceTag = DataElementTag(0x00120083) // DistributionTypeTag is the data element tag of DistributionType DistributionTypeTag = DataElementTag(0x00120084) // ConsentForDistributionFlagTag is the data element tag of ConsentForDistributionFlag ConsentForDistributionFlagTag = DataElementTag(0x00120085) // EthicsCommitteeApprovalEffectivenessStartDateTag is the data element tag of EthicsCommitteeApprovalEffectivenessStartDate EthicsCommitteeApprovalEffectivenessStartDateTag = DataElementTag(0x00120086) // EthicsCommitteeApprovalEffectivenessEndDateTag is the data element tag of EthicsCommitteeApprovalEffectivenessEndDate EthicsCommitteeApprovalEffectivenessEndDateTag = DataElementTag(0x00120087) // CADFileFormatTag is the data element tag of CADFileFormat CADFileFormatTag = DataElementTag(0x00140023) // ComponentReferenceSystemTag is the data element tag of ComponentReferenceSystem ComponentReferenceSystemTag = DataElementTag(0x00140024) // ComponentManufacturingProcedureTag is the data element tag of ComponentManufacturingProcedure ComponentManufacturingProcedureTag = DataElementTag(0x00140025) // ComponentManufacturerTag is the data element tag of ComponentManufacturer ComponentManufacturerTag = DataElementTag(0x00140028) // MaterialThicknessTag is the data element tag of MaterialThickness MaterialThicknessTag = DataElementTag(0x00140030) // MaterialPipeDiameterTag is the data element tag of MaterialPipeDiameter MaterialPipeDiameterTag = DataElementTag(0x00140032) // MaterialIsolationDiameterTag is the data element tag of MaterialIsolationDiameter MaterialIsolationDiameterTag = DataElementTag(0x00140034) // MaterialGradeTag is the data element tag of MaterialGrade MaterialGradeTag = DataElementTag(0x00140042) // MaterialPropertiesDescriptionTag is the data element tag of MaterialPropertiesDescription MaterialPropertiesDescriptionTag = DataElementTag(0x00140044) // MaterialPropertiesFileFormatRetiredTag is the data element tag of MaterialPropertiesFileFormatRetired MaterialPropertiesFileFormatRetiredTag = DataElementTag(0x00140045) // MaterialNotesTag is the data element tag of MaterialNotes MaterialNotesTag = DataElementTag(0x00140046) // ComponentShapeTag is the data element tag of ComponentShape ComponentShapeTag = DataElementTag(0x00140050) // CurvatureTypeTag is the data element tag of CurvatureType CurvatureTypeTag = DataElementTag(0x00140052) // OuterDiameterTag is the data element tag of OuterDiameter OuterDiameterTag = DataElementTag(0x00140054) // InnerDiameterTag is the data element tag of InnerDiameter InnerDiameterTag = DataElementTag(0x00140056) // ComponentWelderIDsTag is the data element tag of ComponentWelderIDs ComponentWelderIDsTag = DataElementTag(0x00140100) // SecondaryApprovalStatusTag is the data element tag of SecondaryApprovalStatus SecondaryApprovalStatusTag = DataElementTag(0x00140101) // SecondaryReviewDateTag is the data element tag of SecondaryReviewDate SecondaryReviewDateTag = DataElementTag(0x00140102) // SecondaryReviewTimeTag is the data element tag of SecondaryReviewTime SecondaryReviewTimeTag = DataElementTag(0x00140103) // SecondaryReviewerNameTag is the data element tag of SecondaryReviewerName SecondaryReviewerNameTag = DataElementTag(0x00140104) // RepairIDTag is the data element tag of RepairID RepairIDTag = DataElementTag(0x00140105) // MultipleComponentApprovalSequenceTag is the data element tag of MultipleComponentApprovalSequence MultipleComponentApprovalSequenceTag = DataElementTag(0x00140106) // OtherApprovalStatusTag is the data element tag of OtherApprovalStatus OtherApprovalStatusTag = DataElementTag(0x00140107) // OtherSecondaryApprovalStatusTag is the data element tag of OtherSecondaryApprovalStatus OtherSecondaryApprovalStatusTag = DataElementTag(0x00140108) // ActualEnvironmentalConditionsTag is the data element tag of ActualEnvironmentalConditions ActualEnvironmentalConditionsTag = DataElementTag(0x00141010) // ExpiryDateTag is the data element tag of ExpiryDate ExpiryDateTag = DataElementTag(0x00141020) // EnvironmentalConditionsTag is the data element tag of EnvironmentalConditions EnvironmentalConditionsTag = DataElementTag(0x00141040) // EvaluatorSequenceTag is the data element tag of EvaluatorSequence EvaluatorSequenceTag = DataElementTag(0x00142002) // EvaluatorNumberTag is the data element tag of EvaluatorNumber EvaluatorNumberTag = DataElementTag(0x00142004) // EvaluatorNameTag is the data element tag of EvaluatorName EvaluatorNameTag = DataElementTag(0x00142006) // EvaluationAttemptTag is the data element tag of EvaluationAttempt EvaluationAttemptTag = DataElementTag(0x00142008) // IndicationSequenceTag is the data element tag of IndicationSequence IndicationSequenceTag = DataElementTag(0x00142012) // IndicationNumberTag is the data element tag of IndicationNumber IndicationNumberTag = DataElementTag(0x00142014) // IndicationLabelTag is the data element tag of IndicationLabel IndicationLabelTag = DataElementTag(0x00142016) // IndicationDescriptionTag is the data element tag of IndicationDescription IndicationDescriptionTag = DataElementTag(0x00142018) // IndicationTypeTag is the data element tag of IndicationType IndicationTypeTag = DataElementTag(0x0014201A) // IndicationDispositionTag is the data element tag of IndicationDisposition IndicationDispositionTag = DataElementTag(0x0014201C) // IndicationROISequenceTag is the data element tag of IndicationROISequence IndicationROISequenceTag = DataElementTag(0x0014201E) // IndicationPhysicalPropertySequenceTag is the data element tag of IndicationPhysicalPropertySequence IndicationPhysicalPropertySequenceTag = DataElementTag(0x00142030) // PropertyLabelTag is the data element tag of PropertyLabel PropertyLabelTag = DataElementTag(0x00142032) // CoordinateSystemNumberOfAxesTag is the data element tag of CoordinateSystemNumberOfAxes CoordinateSystemNumberOfAxesTag = DataElementTag(0x00142202) // CoordinateSystemAxesSequenceTag is the data element tag of CoordinateSystemAxesSequence CoordinateSystemAxesSequenceTag = DataElementTag(0x00142204) // CoordinateSystemAxisDescriptionTag is the data element tag of CoordinateSystemAxisDescription CoordinateSystemAxisDescriptionTag = DataElementTag(0x00142206) // CoordinateSystemDataSetMappingTag is the data element tag of CoordinateSystemDataSetMapping CoordinateSystemDataSetMappingTag = DataElementTag(0x00142208) // CoordinateSystemAxisNumberTag is the data element tag of CoordinateSystemAxisNumber CoordinateSystemAxisNumberTag = DataElementTag(0x0014220A) // CoordinateSystemAxisTypeTag is the data element tag of CoordinateSystemAxisType CoordinateSystemAxisTypeTag = DataElementTag(0x0014220C) // CoordinateSystemAxisUnitsTag is the data element tag of CoordinateSystemAxisUnits CoordinateSystemAxisUnitsTag = DataElementTag(0x0014220E) // CoordinateSystemAxisValuesTag is the data element tag of CoordinateSystemAxisValues CoordinateSystemAxisValuesTag = DataElementTag(0x00142210) // CoordinateSystemTransformSequenceTag is the data element tag of CoordinateSystemTransformSequence CoordinateSystemTransformSequenceTag = DataElementTag(0x00142220) // TransformDescriptionTag is the data element tag of TransformDescription TransformDescriptionTag = DataElementTag(0x00142222) // TransformNumberOfAxesTag is the data element tag of TransformNumberOfAxes TransformNumberOfAxesTag = DataElementTag(0x00142224) // TransformOrderOfAxesTag is the data element tag of TransformOrderOfAxes TransformOrderOfAxesTag = DataElementTag(0x00142226) // TransformedAxisUnitsTag is the data element tag of TransformedAxisUnits TransformedAxisUnitsTag = DataElementTag(0x00142228) // CoordinateSystemTransformRotationAndScaleMatrixTag is the data element tag of CoordinateSystemTransformRotationAndScaleMatrix CoordinateSystemTransformRotationAndScaleMatrixTag = DataElementTag(0x0014222A) // CoordinateSystemTransformTranslationMatrixTag is the data element tag of CoordinateSystemTransformTranslationMatrix CoordinateSystemTransformTranslationMatrixTag = DataElementTag(0x0014222C) // InternalDetectorFrameTimeTag is the data element tag of InternalDetectorFrameTime InternalDetectorFrameTimeTag = DataElementTag(0x00143011) // NumberOfFramesIntegratedTag is the data element tag of NumberOfFramesIntegrated NumberOfFramesIntegratedTag = DataElementTag(0x00143012) // DetectorTemperatureSequenceTag is the data element tag of DetectorTemperatureSequence DetectorTemperatureSequenceTag = DataElementTag(0x00143020) // SensorNameTag is the data element tag of SensorName SensorNameTag = DataElementTag(0x00143022) // HorizontalOffsetOfSensorTag is the data element tag of HorizontalOffsetOfSensor HorizontalOffsetOfSensorTag = DataElementTag(0x00143024) // VerticalOffsetOfSensorTag is the data element tag of VerticalOffsetOfSensor VerticalOffsetOfSensorTag = DataElementTag(0x00143026) // SensorTemperatureTag is the data element tag of SensorTemperature SensorTemperatureTag = DataElementTag(0x00143028) // DarkCurrentSequenceTag is the data element tag of DarkCurrentSequence DarkCurrentSequenceTag = DataElementTag(0x00143040) // DarkCurrentCountsTag is the data element tag of DarkCurrentCounts DarkCurrentCountsTag = DataElementTag(0x00143050) // GainCorrectionReferenceSequenceTag is the data element tag of GainCorrectionReferenceSequence GainCorrectionReferenceSequenceTag = DataElementTag(0x00143060) // AirCountsTag is the data element tag of AirCounts AirCountsTag = DataElementTag(0x00143070) // KVUsedInGainCalibrationTag is the data element tag of KVUsedInGainCalibration KVUsedInGainCalibrationTag = DataElementTag(0x00143071) // MAUsedInGainCalibrationTag is the data element tag of MAUsedInGainCalibration MAUsedInGainCalibrationTag = DataElementTag(0x00143072) // NumberOfFramesUsedForIntegrationTag is the data element tag of NumberOfFramesUsedForIntegration NumberOfFramesUsedForIntegrationTag = DataElementTag(0x00143073) // FilterMaterialUsedInGainCalibrationTag is the data element tag of FilterMaterialUsedInGainCalibration FilterMaterialUsedInGainCalibrationTag = DataElementTag(0x00143074) // FilterThicknessUsedInGainCalibrationTag is the data element tag of FilterThicknessUsedInGainCalibration FilterThicknessUsedInGainCalibrationTag = DataElementTag(0x00143075) // DateOfGainCalibrationTag is the data element tag of DateOfGainCalibration DateOfGainCalibrationTag = DataElementTag(0x00143076) // TimeOfGainCalibrationTag is the data element tag of TimeOfGainCalibration TimeOfGainCalibrationTag = DataElementTag(0x00143077) // BadPixelImageTag is the data element tag of BadPixelImage BadPixelImageTag = DataElementTag(0x00143080) // CalibrationNotesTag is the data element tag of CalibrationNotes CalibrationNotesTag = DataElementTag(0x00143099) // PulserEquipmentSequenceTag is the data element tag of PulserEquipmentSequence PulserEquipmentSequenceTag = DataElementTag(0x00144002) // PulserTypeTag is the data element tag of PulserType PulserTypeTag = DataElementTag(0x00144004) // PulserNotesTag is the data element tag of PulserNotes PulserNotesTag = DataElementTag(0x00144006) // ReceiverEquipmentSequenceTag is the data element tag of ReceiverEquipmentSequence ReceiverEquipmentSequenceTag = DataElementTag(0x00144008) // AmplifierTypeTag is the data element tag of AmplifierType AmplifierTypeTag = DataElementTag(0x0014400A) // ReceiverNotesTag is the data element tag of ReceiverNotes ReceiverNotesTag = DataElementTag(0x0014400C) // PreAmplifierEquipmentSequenceTag is the data element tag of PreAmplifierEquipmentSequence PreAmplifierEquipmentSequenceTag = DataElementTag(0x0014400E) // PreAmplifierNotesTag is the data element tag of PreAmplifierNotes PreAmplifierNotesTag = DataElementTag(0x0014400F) // TransmitTransducerSequenceTag is the data element tag of TransmitTransducerSequence TransmitTransducerSequenceTag = DataElementTag(0x00144010) // ReceiveTransducerSequenceTag is the data element tag of ReceiveTransducerSequence ReceiveTransducerSequenceTag = DataElementTag(0x00144011) // NumberOfElementsTag is the data element tag of NumberOfElements NumberOfElementsTag = DataElementTag(0x00144012) // ElementShapeTag is the data element tag of ElementShape ElementShapeTag = DataElementTag(0x00144013) // ElementDimensionATag is the data element tag of ElementDimensionA ElementDimensionATag = DataElementTag(0x00144014) // ElementDimensionBTag is the data element tag of ElementDimensionB ElementDimensionBTag = DataElementTag(0x00144015) // ElementPitchATag is the data element tag of ElementPitchA ElementPitchATag = DataElementTag(0x00144016) // MeasuredBeamDimensionATag is the data element tag of MeasuredBeamDimensionA MeasuredBeamDimensionATag = DataElementTag(0x00144017) // MeasuredBeamDimensionBTag is the data element tag of MeasuredBeamDimensionB MeasuredBeamDimensionBTag = DataElementTag(0x00144018) // LocationOfMeasuredBeamDiameterTag is the data element tag of LocationOfMeasuredBeamDiameter LocationOfMeasuredBeamDiameterTag = DataElementTag(0x00144019) // NominalFrequencyTag is the data element tag of NominalFrequency NominalFrequencyTag = DataElementTag(0x0014401A) // MeasuredCenterFrequencyTag is the data element tag of MeasuredCenterFrequency MeasuredCenterFrequencyTag = DataElementTag(0x0014401B) // MeasuredBandwidthTag is the data element tag of MeasuredBandwidth MeasuredBandwidthTag = DataElementTag(0x0014401C) // ElementPitchBTag is the data element tag of ElementPitchB ElementPitchBTag = DataElementTag(0x0014401D) // PulserSettingsSequenceTag is the data element tag of PulserSettingsSequence PulserSettingsSequenceTag = DataElementTag(0x00144020) // PulseWidthTag is the data element tag of PulseWidth PulseWidthTag = DataElementTag(0x00144022) // ExcitationFrequencyTag is the data element tag of ExcitationFrequency ExcitationFrequencyTag = DataElementTag(0x00144024) // ModulationTypeTag is the data element tag of ModulationType ModulationTypeTag = DataElementTag(0x00144026) // DampingTag is the data element tag of Damping DampingTag = DataElementTag(0x00144028) // ReceiverSettingsSequenceTag is the data element tag of ReceiverSettingsSequence ReceiverSettingsSequenceTag = DataElementTag(0x00144030) // AcquiredSoundpathLengthTag is the data element tag of AcquiredSoundpathLength AcquiredSoundpathLengthTag = DataElementTag(0x00144031) // AcquisitionCompressionTypeTag is the data element tag of AcquisitionCompressionType AcquisitionCompressionTypeTag = DataElementTag(0x00144032) // AcquisitionSampleSizeTag is the data element tag of AcquisitionSampleSize AcquisitionSampleSizeTag = DataElementTag(0x00144033) // RectifierSmoothingTag is the data element tag of RectifierSmoothing RectifierSmoothingTag = DataElementTag(0x00144034) // DACSequenceTag is the data element tag of DACSequence DACSequenceTag = DataElementTag(0x00144035) // DACTypeTag is the data element tag of DACType DACTypeTag = DataElementTag(0x00144036) // DACGainPointsTag is the data element tag of DACGainPoints DACGainPointsTag = DataElementTag(0x00144038) // DACTimePointsTag is the data element tag of DACTimePoints DACTimePointsTag = DataElementTag(0x0014403A) // DACAmplitudeTag is the data element tag of DACAmplitude DACAmplitudeTag = DataElementTag(0x0014403C) // PreAmplifierSettingsSequenceTag is the data element tag of PreAmplifierSettingsSequence PreAmplifierSettingsSequenceTag = DataElementTag(0x00144040) // TransmitTransducerSettingsSequenceTag is the data element tag of TransmitTransducerSettingsSequence TransmitTransducerSettingsSequenceTag = DataElementTag(0x00144050) // ReceiveTransducerSettingsSequenceTag is the data element tag of ReceiveTransducerSettingsSequence ReceiveTransducerSettingsSequenceTag = DataElementTag(0x00144051) // IncidentAngleTag is the data element tag of IncidentAngle IncidentAngleTag = DataElementTag(0x00144052) // CouplingTechniqueTag is the data element tag of CouplingTechnique CouplingTechniqueTag = DataElementTag(0x00144054) // CouplingMediumTag is the data element tag of CouplingMedium CouplingMediumTag = DataElementTag(0x00144056) // CouplingVelocityTag is the data element tag of CouplingVelocity CouplingVelocityTag = DataElementTag(0x00144057) // ProbeCenterLocationXTag is the data element tag of ProbeCenterLocationX ProbeCenterLocationXTag = DataElementTag(0x00144058) // ProbeCenterLocationZTag is the data element tag of ProbeCenterLocationZ ProbeCenterLocationZTag = DataElementTag(0x00144059) // SoundPathLengthTag is the data element tag of SoundPathLength SoundPathLengthTag = DataElementTag(0x0014405A) // DelayLawIdentifierTag is the data element tag of DelayLawIdentifier DelayLawIdentifierTag = DataElementTag(0x0014405C) // GateSettingsSequenceTag is the data element tag of GateSettingsSequence GateSettingsSequenceTag = DataElementTag(0x00144060) // GateThresholdTag is the data element tag of GateThreshold GateThresholdTag = DataElementTag(0x00144062) // VelocityOfSoundTag is the data element tag of VelocityOfSound VelocityOfSoundTag = DataElementTag(0x00144064) // CalibrationSettingsSequenceTag is the data element tag of CalibrationSettingsSequence CalibrationSettingsSequenceTag = DataElementTag(0x00144070) // CalibrationProcedureTag is the data element tag of CalibrationProcedure CalibrationProcedureTag = DataElementTag(0x00144072) // ProcedureVersionTag is the data element tag of ProcedureVersion ProcedureVersionTag = DataElementTag(0x00144074) // ProcedureCreationDateTag is the data element tag of ProcedureCreationDate ProcedureCreationDateTag = DataElementTag(0x00144076) // ProcedureExpirationDateTag is the data element tag of ProcedureExpirationDate ProcedureExpirationDateTag = DataElementTag(0x00144078) // ProcedureLastModifiedDateTag is the data element tag of ProcedureLastModifiedDate ProcedureLastModifiedDateTag = DataElementTag(0x0014407A) // CalibrationTimeTag is the data element tag of CalibrationTime CalibrationTimeTag = DataElementTag(0x0014407C) // CalibrationDateTag is the data element tag of CalibrationDate CalibrationDateTag = DataElementTag(0x0014407E) // ProbeDriveEquipmentSequenceTag is the data element tag of ProbeDriveEquipmentSequence ProbeDriveEquipmentSequenceTag = DataElementTag(0x00144080) // DriveTypeTag is the data element tag of DriveType DriveTypeTag = DataElementTag(0x00144081) // ProbeDriveNotesTag is the data element tag of ProbeDriveNotes ProbeDriveNotesTag = DataElementTag(0x00144082) // DriveProbeSequenceTag is the data element tag of DriveProbeSequence DriveProbeSequenceTag = DataElementTag(0x00144083) // ProbeInductanceTag is the data element tag of ProbeInductance ProbeInductanceTag = DataElementTag(0x00144084) // ProbeResistanceTag is the data element tag of ProbeResistance ProbeResistanceTag = DataElementTag(0x00144085) // ReceiveProbeSequenceTag is the data element tag of ReceiveProbeSequence ReceiveProbeSequenceTag = DataElementTag(0x00144086) // ProbeDriveSettingsSequenceTag is the data element tag of ProbeDriveSettingsSequence ProbeDriveSettingsSequenceTag = DataElementTag(0x00144087) // BridgeResistorsTag is the data element tag of BridgeResistors BridgeResistorsTag = DataElementTag(0x00144088) // ProbeOrientationAngleTag is the data element tag of ProbeOrientationAngle ProbeOrientationAngleTag = DataElementTag(0x00144089) // UserSelectedGainYTag is the data element tag of UserSelectedGainY UserSelectedGainYTag = DataElementTag(0x0014408B) // UserSelectedPhaseTag is the data element tag of UserSelectedPhase UserSelectedPhaseTag = DataElementTag(0x0014408C) // UserSelectedOffsetXTag is the data element tag of UserSelectedOffsetX UserSelectedOffsetXTag = DataElementTag(0x0014408D) // UserSelectedOffsetYTag is the data element tag of UserSelectedOffsetY UserSelectedOffsetYTag = DataElementTag(0x0014408E) // ChannelSettingsSequenceTag is the data element tag of ChannelSettingsSequence ChannelSettingsSequenceTag = DataElementTag(0x00144091) // ChannelThresholdTag is the data element tag of ChannelThreshold ChannelThresholdTag = DataElementTag(0x00144092) // ScannerSettingsSequenceTag is the data element tag of ScannerSettingsSequence ScannerSettingsSequenceTag = DataElementTag(0x0014409A) // ScanProcedureTag is the data element tag of ScanProcedure ScanProcedureTag = DataElementTag(0x0014409B) // TranslationRateXTag is the data element tag of TranslationRateX TranslationRateXTag = DataElementTag(0x0014409C) // TranslationRateYTag is the data element tag of TranslationRateY TranslationRateYTag = DataElementTag(0x0014409D) // ChannelOverlapTag is the data element tag of ChannelOverlap ChannelOverlapTag = DataElementTag(0x0014409F) // ImageQualityIndicatorTypeTag is the data element tag of ImageQualityIndicatorType ImageQualityIndicatorTypeTag = DataElementTag(0x001440A0) // ImageQualityIndicatorMaterialTag is the data element tag of ImageQualityIndicatorMaterial ImageQualityIndicatorMaterialTag = DataElementTag(0x001440A1) // ImageQualityIndicatorSizeTag is the data element tag of ImageQualityIndicatorSize ImageQualityIndicatorSizeTag = DataElementTag(0x001440A2) // LINACEnergyTag is the data element tag of LINACEnergy LINACEnergyTag = DataElementTag(0x00145002) // LINACOutputTag is the data element tag of LINACOutput LINACOutputTag = DataElementTag(0x00145004) // ActiveApertureTag is the data element tag of ActiveAperture ActiveApertureTag = DataElementTag(0x00145100) // TotalApertureTag is the data element tag of TotalAperture TotalApertureTag = DataElementTag(0x00145101) // ApertureElevationTag is the data element tag of ApertureElevation ApertureElevationTag = DataElementTag(0x00145102) // MainLobeAngleTag is the data element tag of MainLobeAngle MainLobeAngleTag = DataElementTag(0x00145103) // MainRoofAngleTag is the data element tag of MainRoofAngle MainRoofAngleTag = DataElementTag(0x00145104) // ConnectorTypeTag is the data element tag of ConnectorType ConnectorTypeTag = DataElementTag(0x00145105) // WedgeModelNumberTag is the data element tag of WedgeModelNumber WedgeModelNumberTag = DataElementTag(0x00145106) // WedgeAngleFloatTag is the data element tag of WedgeAngleFloat WedgeAngleFloatTag = DataElementTag(0x00145107) // WedgeRoofAngleTag is the data element tag of WedgeRoofAngle WedgeRoofAngleTag = DataElementTag(0x00145108) // WedgeElement1PositionTag is the data element tag of WedgeElement1Position WedgeElement1PositionTag = DataElementTag(0x00145109) // WedgeMaterialVelocityTag is the data element tag of WedgeMaterialVelocity WedgeMaterialVelocityTag = DataElementTag(0x0014510A) // WedgeMaterialTag is the data element tag of WedgeMaterial WedgeMaterialTag = DataElementTag(0x0014510B) // WedgeOffsetZTag is the data element tag of WedgeOffsetZ WedgeOffsetZTag = DataElementTag(0x0014510C) // WedgeOriginOffsetXTag is the data element tag of WedgeOriginOffsetX WedgeOriginOffsetXTag = DataElementTag(0x0014510D) // WedgeTimeDelayTag is the data element tag of WedgeTimeDelay WedgeTimeDelayTag = DataElementTag(0x0014510E) // WedgeNameTag is the data element tag of WedgeName WedgeNameTag = DataElementTag(0x0014510F) // WedgeManufacturerNameTag is the data element tag of WedgeManufacturerName WedgeManufacturerNameTag = DataElementTag(0x00145110) // WedgeDescriptionTag is the data element tag of WedgeDescription WedgeDescriptionTag = DataElementTag(0x00145111) // NominalBeamAngleTag is the data element tag of NominalBeamAngle NominalBeamAngleTag = DataElementTag(0x00145112) // WedgeOffsetXTag is the data element tag of WedgeOffsetX WedgeOffsetXTag = DataElementTag(0x00145113) // WedgeOffsetYTag is the data element tag of WedgeOffsetY WedgeOffsetYTag = DataElementTag(0x00145114) // WedgeTotalLengthTag is the data element tag of WedgeTotalLength WedgeTotalLengthTag = DataElementTag(0x00145115) // WedgeInContactLengthTag is the data element tag of WedgeInContactLength WedgeInContactLengthTag = DataElementTag(0x00145116) // WedgeFrontGapTag is the data element tag of WedgeFrontGap WedgeFrontGapTag = DataElementTag(0x00145117) // WedgeTotalHeightTag is the data element tag of WedgeTotalHeight WedgeTotalHeightTag = DataElementTag(0x00145118) // WedgeFrontHeightTag is the data element tag of WedgeFrontHeight WedgeFrontHeightTag = DataElementTag(0x00145119) // WedgeRearHeightTag is the data element tag of WedgeRearHeight WedgeRearHeightTag = DataElementTag(0x0014511A) // WedgeTotalWidthTag is the data element tag of WedgeTotalWidth WedgeTotalWidthTag = DataElementTag(0x0014511B) // WedgeInContactWidthTag is the data element tag of WedgeInContactWidth WedgeInContactWidthTag = DataElementTag(0x0014511C) // WedgeChamferHeightTag is the data element tag of WedgeChamferHeight WedgeChamferHeightTag = DataElementTag(0x0014511D) // WedgeCurveTag is the data element tag of WedgeCurve WedgeCurveTag = DataElementTag(0x0014511E) // RadiusAlongWedgeTag is the data element tag of RadiusAlongWedge RadiusAlongWedgeTag = DataElementTag(0x0014511F) // WhitePointTag is the data element tag of WhitePoint WhitePointTag = DataElementTag(0x00160001) // PrimaryChromaticitiesTag is the data element tag of PrimaryChromaticities PrimaryChromaticitiesTag = DataElementTag(0x00160002) // BatteryLevelTag is the data element tag of BatteryLevel BatteryLevelTag = DataElementTag(0x00160003) // ExposureTimeInSecondsTag is the data element tag of ExposureTimeInSeconds ExposureTimeInSecondsTag = DataElementTag(0x00160004) // FNumberTag is the data element tag of FNumber FNumberTag = DataElementTag(0x00160005) // OECFRowsTag is the data element tag of OECFRows OECFRowsTag = DataElementTag(0x00160006) // OECFColumnsTag is the data element tag of OECFColumns OECFColumnsTag = DataElementTag(0x00160007) // OECFColumnNamesTag is the data element tag of OECFColumnNames OECFColumnNamesTag = DataElementTag(0x00160008) // OECFValuesTag is the data element tag of OECFValues OECFValuesTag = DataElementTag(0x00160009) // SpatialFrequencyResponseRowsTag is the data element tag of SpatialFrequencyResponseRows SpatialFrequencyResponseRowsTag = DataElementTag(0x0016000A) // SpatialFrequencyResponseColumnsTag is the data element tag of SpatialFrequencyResponseColumns SpatialFrequencyResponseColumnsTag = DataElementTag(0x0016000B) // SpatialFrequencyResponseColumnNamesTag is the data element tag of SpatialFrequencyResponseColumnNames SpatialFrequencyResponseColumnNamesTag = DataElementTag(0x0016000C) // SpatialFrequencyResponseValuesTag is the data element tag of SpatialFrequencyResponseValues SpatialFrequencyResponseValuesTag = DataElementTag(0x0016000D) // ColorFilterArrayPatternRowsTag is the data element tag of ColorFilterArrayPatternRows ColorFilterArrayPatternRowsTag = DataElementTag(0x0016000E) // ColorFilterArrayPatternColumnsTag is the data element tag of ColorFilterArrayPatternColumns ColorFilterArrayPatternColumnsTag = DataElementTag(0x0016000F) // ColorFilterArrayPatternValuesTag is the data element tag of ColorFilterArrayPatternValues ColorFilterArrayPatternValuesTag = DataElementTag(0x00160010) // FlashFiringStatusTag is the data element tag of FlashFiringStatus FlashFiringStatusTag = DataElementTag(0x00160011) // FlashReturnStatusTag is the data element tag of FlashReturnStatus FlashReturnStatusTag = DataElementTag(0x00160012) // FlashModeTag is the data element tag of FlashMode FlashModeTag = DataElementTag(0x00160013) // FlashFunctionPresentTag is the data element tag of FlashFunctionPresent FlashFunctionPresentTag = DataElementTag(0x00160014) // FlashRedEyeModeTag is the data element tag of FlashRedEyeMode FlashRedEyeModeTag = DataElementTag(0x00160015) // ExposureProgramTag is the data element tag of ExposureProgram ExposureProgramTag = DataElementTag(0x00160016) // SpectralSensitivityTag is the data element tag of SpectralSensitivity SpectralSensitivityTag = DataElementTag(0x00160017) // PhotographicSensitivityTag is the data element tag of PhotographicSensitivity PhotographicSensitivityTag = DataElementTag(0x00160018) // SelfTimerModeTag is the data element tag of SelfTimerMode SelfTimerModeTag = DataElementTag(0x00160019) // SensitivityTypeTag is the data element tag of SensitivityType SensitivityTypeTag = DataElementTag(0x0016001A) // StandardOutputSensitivityTag is the data element tag of StandardOutputSensitivity StandardOutputSensitivityTag = DataElementTag(0x0016001B) // RecommendedExposureIndexTag is the data element tag of RecommendedExposureIndex RecommendedExposureIndexTag = DataElementTag(0x0016001C) // ISOSpeedTag is the data element tag of ISOSpeed ISOSpeedTag = DataElementTag(0x0016001D) // ISOSpeedLatitudeyyyTag is the data element tag of ISOSpeedLatitudeyyy ISOSpeedLatitudeyyyTag = DataElementTag(0x0016001E) // ISOSpeedLatitudezzzTag is the data element tag of ISOSpeedLatitudezzz ISOSpeedLatitudezzzTag = DataElementTag(0x0016001F) // EXIFVersionTag is the data element tag of EXIFVersion EXIFVersionTag = DataElementTag(0x00160020) // ShutterSpeedValueTag is the data element tag of ShutterSpeedValue ShutterSpeedValueTag = DataElementTag(0x00160021) // ApertureValueTag is the data element tag of ApertureValue ApertureValueTag = DataElementTag(0x00160022) // BrightnessValueTag is the data element tag of BrightnessValue BrightnessValueTag = DataElementTag(0x00160023) // ExposureBiasValueTag is the data element tag of ExposureBiasValue ExposureBiasValueTag = DataElementTag(0x00160024) // MaxApertureValueTag is the data element tag of MaxApertureValue MaxApertureValueTag = DataElementTag(0x00160025) // SubjectDistanceTag is the data element tag of SubjectDistance SubjectDistanceTag = DataElementTag(0x00160026) // MeteringModeTag is the data element tag of MeteringMode MeteringModeTag = DataElementTag(0x00160027) // LightSourceTag is the data element tag of LightSource LightSourceTag = DataElementTag(0x00160028) // FocalLengthTag is the data element tag of FocalLength FocalLengthTag = DataElementTag(0x00160029) // SubjectAreaTag is the data element tag of SubjectArea SubjectAreaTag = DataElementTag(0x0016002A) // MakerNoteTag is the data element tag of MakerNote MakerNoteTag = DataElementTag(0x0016002B) // TemperatureTag is the data element tag of Temperature TemperatureTag = DataElementTag(0x00160030) // HumidityTag is the data element tag of Humidity HumidityTag = DataElementTag(0x00160031) // PressureTag is the data element tag of Pressure PressureTag = DataElementTag(0x00160032) // WaterDepthTag is the data element tag of WaterDepth WaterDepthTag = DataElementTag(0x00160033) // AccelerationTag is the data element tag of Acceleration AccelerationTag = DataElementTag(0x00160034) // CameraElevationAngleTag is the data element tag of CameraElevationAngle CameraElevationAngleTag = DataElementTag(0x00160035) // FlashEnergyTag is the data element tag of FlashEnergy FlashEnergyTag = DataElementTag(0x00160036) // SubjectLocationTag is the data element tag of SubjectLocation SubjectLocationTag = DataElementTag(0x00160037) // PhotographicExposureIndexTag is the data element tag of PhotographicExposureIndex PhotographicExposureIndexTag = DataElementTag(0x00160038) // SensingMethodTag is the data element tag of SensingMethod SensingMethodTag = DataElementTag(0x00160039) // FileSourceTag is the data element tag of FileSource FileSourceTag = DataElementTag(0x0016003A) // SceneTypeTag is the data element tag of SceneType SceneTypeTag = DataElementTag(0x0016003B) // CustomRenderedTag is the data element tag of CustomRendered CustomRenderedTag = DataElementTag(0x00160041) // ExposureModeTag is the data element tag of ExposureMode ExposureModeTag = DataElementTag(0x00160042) // WhiteBalanceTag is the data element tag of WhiteBalance WhiteBalanceTag = DataElementTag(0x00160043) // DigitalZoomRatioTag is the data element tag of DigitalZoomRatio DigitalZoomRatioTag = DataElementTag(0x00160044) // FocalLengthIn35mmFilmTag is the data element tag of FocalLengthIn35mmFilm FocalLengthIn35mmFilmTag = DataElementTag(0x00160045) // SceneCaptureTypeTag is the data element tag of SceneCaptureType SceneCaptureTypeTag = DataElementTag(0x00160046) // GainControlTag is the data element tag of GainControl GainControlTag = DataElementTag(0x00160047) // ContrastTag is the data element tag of Contrast ContrastTag = DataElementTag(0x00160048) // SaturationTag is the data element tag of Saturation SaturationTag = DataElementTag(0x00160049) // SharpnessTag is the data element tag of Sharpness SharpnessTag = DataElementTag(0x0016004A) // DeviceSettingDescriptionTag is the data element tag of DeviceSettingDescription DeviceSettingDescriptionTag = DataElementTag(0x0016004B) // SubjectDistanceRangeTag is the data element tag of SubjectDistanceRange SubjectDistanceRangeTag = DataElementTag(0x0016004C) // CameraOwnerNameTag is the data element tag of CameraOwnerName CameraOwnerNameTag = DataElementTag(0x0016004D) // LensSpecificationTag is the data element tag of LensSpecification LensSpecificationTag = DataElementTag(0x0016004E) // LensMakeTag is the data element tag of LensMake LensMakeTag = DataElementTag(0x0016004F) // LensModelTag is the data element tag of LensModel LensModelTag = DataElementTag(0x00160050) // LensSerialNumberTag is the data element tag of LensSerialNumber LensSerialNumberTag = DataElementTag(0x00160051) // InteroperabilityIndexTag is the data element tag of InteroperabilityIndex InteroperabilityIndexTag = DataElementTag(0x00160061) // InteroperabilityVersionTag is the data element tag of InteroperabilityVersion InteroperabilityVersionTag = DataElementTag(0x00160062) // GPSVersionIDTag is the data element tag of GPSVersionID GPSVersionIDTag = DataElementTag(0x00160070) // GPSLatitudeRefTag is the data element tag of GPSLatitudeRef GPSLatitudeRefTag = DataElementTag(0x00160071) // GPSLatitudeTag is the data element tag of GPSLatitude GPSLatitudeTag = DataElementTag(0x00160072) // GPSLongitudeRefTag is the data element tag of GPSLongitudeRef GPSLongitudeRefTag = DataElementTag(0x00160073) // GPSLongitudeTag is the data element tag of GPSLongitude GPSLongitudeTag = DataElementTag(0x00160074) // GPSAltitudeRefTag is the data element tag of GPSAltitudeRef GPSAltitudeRefTag = DataElementTag(0x00160075) // GPSAltitudeTag is the data element tag of GPSAltitude GPSAltitudeTag = DataElementTag(0x00160076) // GPSTimeStampTag is the data element tag of GPSTimeStamp GPSTimeStampTag = DataElementTag(0x00160077) // GPSSatellitesTag is the data element tag of GPSSatellites GPSSatellitesTag = DataElementTag(0x00160078) // GPSStatusTag is the data element tag of GPSStatus GPSStatusTag = DataElementTag(0x00160079) // GPSMeasureModeTag is the data element tag of GPSMeasureMode GPSMeasureModeTag = DataElementTag(0x0016007A) // GPSDOPTag is the data element tag of GPSDOP GPSDOPTag = DataElementTag(0x0016007B) // GPSSpeedRefTag is the data element tag of GPSSpeedRef GPSSpeedRefTag = DataElementTag(0x0016007C) // GPSSpeedTag is the data element tag of GPSSpeed GPSSpeedTag = DataElementTag(0x0016007D) // GPSTrackRefTag is the data element tag of GPSTrackRef GPSTrackRefTag = DataElementTag(0x0016007E) // GPSTrackTag is the data element tag of GPSTrack GPSTrackTag = DataElementTag(0x0016007F) // GPSImgDirectionRefTag is the data element tag of GPSImgDirectionRef GPSImgDirectionRefTag = DataElementTag(0x00160080) // GPSImgDirectionTag is the data element tag of GPSImgDirection GPSImgDirectionTag = DataElementTag(0x00160081) // GPSMapDatumTag is the data element tag of GPSMapDatum GPSMapDatumTag = DataElementTag(0x00160082) // GPSDestLatitudeRefTag is the data element tag of GPSDestLatitudeRef GPSDestLatitudeRefTag = DataElementTag(0x00160083) // GPSDestLatitudeTag is the data element tag of GPSDestLatitude GPSDestLatitudeTag = DataElementTag(0x00160084) // GPSDestLongitudeRefTag is the data element tag of GPSDestLongitudeRef GPSDestLongitudeRefTag = DataElementTag(0x00160085) // GPSDestLongitudeTag is the data element tag of GPSDestLongitude GPSDestLongitudeTag = DataElementTag(0x00160086) // GPSDestBearingRefTag is the data element tag of GPSDestBearingRef GPSDestBearingRefTag = DataElementTag(0x00160087) // GPSDestBearingTag is the data element tag of GPSDestBearing GPSDestBearingTag = DataElementTag(0x00160088) // GPSDestDistanceRefTag is the data element tag of GPSDestDistanceRef GPSDestDistanceRefTag = DataElementTag(0x00160089) // GPSDestDistanceTag is the data element tag of GPSDestDistance GPSDestDistanceTag = DataElementTag(0x0016008A) // GPSProcessingMethodTag is the data element tag of GPSProcessingMethod GPSProcessingMethodTag = DataElementTag(0x0016008B) // GPSAreaInformationTag is the data element tag of GPSAreaInformation GPSAreaInformationTag = DataElementTag(0x0016008C) // GPSDateStampTag is the data element tag of GPSDateStamp GPSDateStampTag = DataElementTag(0x0016008D) // GPSDifferentialTag is the data element tag of GPSDifferential GPSDifferentialTag = DataElementTag(0x0016008E) // ContrastBolusAgentTag is the data element tag of ContrastBolusAgent ContrastBolusAgentTag = DataElementTag(0x00180010) // ContrastBolusAgentSequenceTag is the data element tag of ContrastBolusAgentSequence ContrastBolusAgentSequenceTag = DataElementTag(0x00180012) // ContrastBolusT1RelaxivityTag is the data element tag of ContrastBolusT1Relaxivity ContrastBolusT1RelaxivityTag = DataElementTag(0x00180013) // ContrastBolusAdministrationRouteSequenceTag is the data element tag of ContrastBolusAdministrationRouteSequence ContrastBolusAdministrationRouteSequenceTag = DataElementTag(0x00180014) // BodyPartExaminedTag is the data element tag of BodyPartExamined BodyPartExaminedTag = DataElementTag(0x00180015) // ScanningSequenceTag is the data element tag of ScanningSequence ScanningSequenceTag = DataElementTag(0x00180020) // SequenceVariantTag is the data element tag of SequenceVariant SequenceVariantTag = DataElementTag(0x00180021) // ScanOptionsTag is the data element tag of ScanOptions ScanOptionsTag = DataElementTag(0x00180022) // MRAcquisitionTypeTag is the data element tag of MRAcquisitionType MRAcquisitionTypeTag = DataElementTag(0x00180023) // SequenceNameTag is the data element tag of SequenceName SequenceNameTag = DataElementTag(0x00180024) // AngioFlagTag is the data element tag of AngioFlag AngioFlagTag = DataElementTag(0x00180025) // InterventionDrugInformationSequenceTag is the data element tag of InterventionDrugInformationSequence InterventionDrugInformationSequenceTag = DataElementTag(0x00180026) // InterventionDrugStopTimeTag is the data element tag of InterventionDrugStopTime InterventionDrugStopTimeTag = DataElementTag(0x00180027) // InterventionDrugDoseTag is the data element tag of InterventionDrugDose InterventionDrugDoseTag = DataElementTag(0x00180028) // InterventionDrugCodeSequenceTag is the data element tag of InterventionDrugCodeSequence InterventionDrugCodeSequenceTag = DataElementTag(0x00180029) // AdditionalDrugSequenceTag is the data element tag of AdditionalDrugSequence AdditionalDrugSequenceTag = DataElementTag(0x0018002A) // RadionuclideTag is the data element tag of Radionuclide RadionuclideTag = DataElementTag(0x00180030) // RadiopharmaceuticalTag is the data element tag of Radiopharmaceutical RadiopharmaceuticalTag = DataElementTag(0x00180031) // EnergyWindowCenterlineTag is the data element tag of EnergyWindowCenterline EnergyWindowCenterlineTag = DataElementTag(0x00180032) // EnergyWindowTotalWidthTag is the data element tag of EnergyWindowTotalWidth EnergyWindowTotalWidthTag = DataElementTag(0x00180033) // InterventionDrugNameTag is the data element tag of InterventionDrugName InterventionDrugNameTag = DataElementTag(0x00180034) // InterventionDrugStartTimeTag is the data element tag of InterventionDrugStartTime InterventionDrugStartTimeTag = DataElementTag(0x00180035) // InterventionSequenceTag is the data element tag of InterventionSequence InterventionSequenceTag = DataElementTag(0x00180036) // TherapyTypeTag is the data element tag of TherapyType TherapyTypeTag = DataElementTag(0x00180037) // InterventionStatusTag is the data element tag of InterventionStatus InterventionStatusTag = DataElementTag(0x00180038) // TherapyDescriptionTag is the data element tag of TherapyDescription TherapyDescriptionTag = DataElementTag(0x00180039) // InterventionDescriptionTag is the data element tag of InterventionDescription InterventionDescriptionTag = DataElementTag(0x0018003A) // CineRateTag is the data element tag of CineRate CineRateTag = DataElementTag(0x00180040) // InitialCineRunStateTag is the data element tag of InitialCineRunState InitialCineRunStateTag = DataElementTag(0x00180042) // SliceThicknessTag is the data element tag of SliceThickness SliceThicknessTag = DataElementTag(0x00180050) // KVPTag is the data element tag of KVP KVPTag = DataElementTag(0x00180060) // CountsAccumulatedTag is the data element tag of CountsAccumulated CountsAccumulatedTag = DataElementTag(0x00180070) // AcquisitionTerminationConditionTag is the data element tag of AcquisitionTerminationCondition AcquisitionTerminationConditionTag = DataElementTag(0x00180071) // EffectiveDurationTag is the data element tag of EffectiveDuration EffectiveDurationTag = DataElementTag(0x00180072) // AcquisitionStartConditionTag is the data element tag of AcquisitionStartCondition AcquisitionStartConditionTag = DataElementTag(0x00180073) // AcquisitionStartConditionDataTag is the data element tag of AcquisitionStartConditionData AcquisitionStartConditionDataTag = DataElementTag(0x00180074) // AcquisitionTerminationConditionDataTag is the data element tag of AcquisitionTerminationConditionData AcquisitionTerminationConditionDataTag = DataElementTag(0x00180075) // RepetitionTimeTag is the data element tag of RepetitionTime RepetitionTimeTag = DataElementTag(0x00180080) // EchoTimeTag is the data element tag of EchoTime EchoTimeTag = DataElementTag(0x00180081) // InversionTimeTag is the data element tag of InversionTime InversionTimeTag = DataElementTag(0x00180082) // NumberOfAveragesTag is the data element tag of NumberOfAverages NumberOfAveragesTag = DataElementTag(0x00180083) // ImagingFrequencyTag is the data element tag of ImagingFrequency ImagingFrequencyTag = DataElementTag(0x00180084) // ImagedNucleusTag is the data element tag of ImagedNucleus ImagedNucleusTag = DataElementTag(0x00180085) // EchoNumbersTag is the data element tag of EchoNumbers EchoNumbersTag = DataElementTag(0x00180086) // MagneticFieldStrengthTag is the data element tag of MagneticFieldStrength MagneticFieldStrengthTag = DataElementTag(0x00180087) // SpacingBetweenSlicesTag is the data element tag of SpacingBetweenSlices SpacingBetweenSlicesTag = DataElementTag(0x00180088) // NumberOfPhaseEncodingStepsTag is the data element tag of NumberOfPhaseEncodingSteps NumberOfPhaseEncodingStepsTag = DataElementTag(0x00180089) // DataCollectionDiameterTag is the data element tag of DataCollectionDiameter DataCollectionDiameterTag = DataElementTag(0x00180090) // EchoTrainLengthTag is the data element tag of EchoTrainLength EchoTrainLengthTag = DataElementTag(0x00180091) // PercentSamplingTag is the data element tag of PercentSampling PercentSamplingTag = DataElementTag(0x00180093) // PercentPhaseFieldOfViewTag is the data element tag of PercentPhaseFieldOfView PercentPhaseFieldOfViewTag = DataElementTag(0x00180094) // PixelBandwidthTag is the data element tag of PixelBandwidth PixelBandwidthTag = DataElementTag(0x00180095) // DeviceSerialNumberTag is the data element tag of DeviceSerialNumber DeviceSerialNumberTag = DataElementTag(0x00181000) // DeviceUIDTag is the data element tag of DeviceUID DeviceUIDTag = DataElementTag(0x00181002) // DeviceIDTag is the data element tag of DeviceID DeviceIDTag = DataElementTag(0x00181003) // PlateIDTag is the data element tag of PlateID PlateIDTag = DataElementTag(0x00181004) // GeneratorIDTag is the data element tag of GeneratorID GeneratorIDTag = DataElementTag(0x00181005) // GridIDTag is the data element tag of GridID GridIDTag = DataElementTag(0x00181006) // CassetteIDTag is the data element tag of CassetteID CassetteIDTag = DataElementTag(0x00181007) // GantryIDTag is the data element tag of GantryID GantryIDTag = DataElementTag(0x00181008) // UniqueDeviceIdentifierTag is the data element tag of UniqueDeviceIdentifier UniqueDeviceIdentifierTag = DataElementTag(0x00181009) // UDISequenceTag is the data element tag of UDISequence UDISequenceTag = DataElementTag(0x0018100A) // SecondaryCaptureDeviceIDTag is the data element tag of SecondaryCaptureDeviceID SecondaryCaptureDeviceIDTag = DataElementTag(0x00181010) // HardcopyCreationDeviceIDTag is the data element tag of HardcopyCreationDeviceID HardcopyCreationDeviceIDTag = DataElementTag(0x00181011) // DateOfSecondaryCaptureTag is the data element tag of DateOfSecondaryCapture DateOfSecondaryCaptureTag = DataElementTag(0x00181012) // TimeOfSecondaryCaptureTag is the data element tag of TimeOfSecondaryCapture TimeOfSecondaryCaptureTag = DataElementTag(0x00181014) // SecondaryCaptureDeviceManufacturerTag is the data element tag of SecondaryCaptureDeviceManufacturer SecondaryCaptureDeviceManufacturerTag = DataElementTag(0x00181016) // HardcopyDeviceManufacturerTag is the data element tag of HardcopyDeviceManufacturer HardcopyDeviceManufacturerTag = DataElementTag(0x00181017) // SecondaryCaptureDeviceManufacturerModelNameTag is the data element tag of SecondaryCaptureDeviceManufacturerModelName SecondaryCaptureDeviceManufacturerModelNameTag = DataElementTag(0x00181018) // SecondaryCaptureDeviceSoftwareVersionsTag is the data element tag of SecondaryCaptureDeviceSoftwareVersions SecondaryCaptureDeviceSoftwareVersionsTag = DataElementTag(0x00181019) // HardcopyDeviceSoftwareVersionTag is the data element tag of HardcopyDeviceSoftwareVersion HardcopyDeviceSoftwareVersionTag = DataElementTag(0x0018101A) // HardcopyDeviceManufacturerModelNameTag is the data element tag of HardcopyDeviceManufacturerModelName HardcopyDeviceManufacturerModelNameTag = DataElementTag(0x0018101B) // SoftwareVersionsTag is the data element tag of SoftwareVersions SoftwareVersionsTag = DataElementTag(0x00181020) // VideoImageFormatAcquiredTag is the data element tag of VideoImageFormatAcquired VideoImageFormatAcquiredTag = DataElementTag(0x00181022) // DigitalImageFormatAcquiredTag is the data element tag of DigitalImageFormatAcquired DigitalImageFormatAcquiredTag = DataElementTag(0x00181023) // ProtocolNameTag is the data element tag of ProtocolName ProtocolNameTag = DataElementTag(0x00181030) // ContrastBolusRouteTag is the data element tag of ContrastBolusRoute ContrastBolusRouteTag = DataElementTag(0x00181040) // ContrastBolusVolumeTag is the data element tag of ContrastBolusVolume ContrastBolusVolumeTag = DataElementTag(0x00181041) // ContrastBolusStartTimeTag is the data element tag of ContrastBolusStartTime ContrastBolusStartTimeTag = DataElementTag(0x00181042) // ContrastBolusStopTimeTag is the data element tag of ContrastBolusStopTime ContrastBolusStopTimeTag = DataElementTag(0x00181043) // ContrastBolusTotalDoseTag is the data element tag of ContrastBolusTotalDose ContrastBolusTotalDoseTag = DataElementTag(0x00181044) // SyringeCountsTag is the data element tag of SyringeCounts SyringeCountsTag = DataElementTag(0x00181045) // ContrastFlowRateTag is the data element tag of ContrastFlowRate ContrastFlowRateTag = DataElementTag(0x00181046) // ContrastFlowDurationTag is the data element tag of ContrastFlowDuration ContrastFlowDurationTag = DataElementTag(0x00181047) // ContrastBolusIngredientTag is the data element tag of ContrastBolusIngredient ContrastBolusIngredientTag = DataElementTag(0x00181048) // ContrastBolusIngredientConcentrationTag is the data element tag of ContrastBolusIngredientConcentration ContrastBolusIngredientConcentrationTag = DataElementTag(0x00181049) // SpatialResolutionTag is the data element tag of SpatialResolution SpatialResolutionTag = DataElementTag(0x00181050) // TriggerTimeTag is the data element tag of TriggerTime TriggerTimeTag = DataElementTag(0x00181060) // TriggerSourceOrTypeTag is the data element tag of TriggerSourceOrType TriggerSourceOrTypeTag = DataElementTag(0x00181061) // NominalIntervalTag is the data element tag of NominalInterval NominalIntervalTag = DataElementTag(0x00181062) // FrameTimeTag is the data element tag of FrameTime FrameTimeTag = DataElementTag(0x00181063) // CardiacFramingTypeTag is the data element tag of CardiacFramingType CardiacFramingTypeTag = DataElementTag(0x00181064) // FrameTimeVectorTag is the data element tag of FrameTimeVector FrameTimeVectorTag = DataElementTag(0x00181065) // FrameDelayTag is the data element tag of FrameDelay FrameDelayTag = DataElementTag(0x00181066) // ImageTriggerDelayTag is the data element tag of ImageTriggerDelay ImageTriggerDelayTag = DataElementTag(0x00181067) // MultiplexGroupTimeOffsetTag is the data element tag of MultiplexGroupTimeOffset MultiplexGroupTimeOffsetTag = DataElementTag(0x00181068) // TriggerTimeOffsetTag is the data element tag of TriggerTimeOffset TriggerTimeOffsetTag = DataElementTag(0x00181069) // SynchronizationTriggerTag is the data element tag of SynchronizationTrigger SynchronizationTriggerTag = DataElementTag(0x0018106A) // SynchronizationChannelTag is the data element tag of SynchronizationChannel SynchronizationChannelTag = DataElementTag(0x0018106C) // TriggerSamplePositionTag is the data element tag of TriggerSamplePosition TriggerSamplePositionTag = DataElementTag(0x0018106E) // RadiopharmaceuticalRouteTag is the data element tag of RadiopharmaceuticalRoute RadiopharmaceuticalRouteTag = DataElementTag(0x00181070) // RadiopharmaceuticalVolumeTag is the data element tag of RadiopharmaceuticalVolume RadiopharmaceuticalVolumeTag = DataElementTag(0x00181071) // RadiopharmaceuticalStartTimeTag is the data element tag of RadiopharmaceuticalStartTime RadiopharmaceuticalStartTimeTag = DataElementTag(0x00181072) // RadiopharmaceuticalStopTimeTag is the data element tag of RadiopharmaceuticalStopTime RadiopharmaceuticalStopTimeTag = DataElementTag(0x00181073) // RadionuclideTotalDoseTag is the data element tag of RadionuclideTotalDose RadionuclideTotalDoseTag = DataElementTag(0x00181074) // RadionuclideHalfLifeTag is the data element tag of RadionuclideHalfLife RadionuclideHalfLifeTag = DataElementTag(0x00181075) // RadionuclidePositronFractionTag is the data element tag of RadionuclidePositronFraction RadionuclidePositronFractionTag = DataElementTag(0x00181076) // RadiopharmaceuticalSpecificActivityTag is the data element tag of RadiopharmaceuticalSpecificActivity RadiopharmaceuticalSpecificActivityTag = DataElementTag(0x00181077) // RadiopharmaceuticalStartDateTimeTag is the data element tag of RadiopharmaceuticalStartDateTime RadiopharmaceuticalStartDateTimeTag = DataElementTag(0x00181078) // RadiopharmaceuticalStopDateTimeTag is the data element tag of RadiopharmaceuticalStopDateTime RadiopharmaceuticalStopDateTimeTag = DataElementTag(0x00181079) // BeatRejectionFlagTag is the data element tag of BeatRejectionFlag BeatRejectionFlagTag = DataElementTag(0x00181080) // LowRRValueTag is the data element tag of LowRRValue LowRRValueTag = DataElementTag(0x00181081) // HighRRValueTag is the data element tag of HighRRValue HighRRValueTag = DataElementTag(0x00181082) // IntervalsAcquiredTag is the data element tag of IntervalsAcquired IntervalsAcquiredTag = DataElementTag(0x00181083) // IntervalsRejectedTag is the data element tag of IntervalsRejected IntervalsRejectedTag = DataElementTag(0x00181084) // PVCRejectionTag is the data element tag of PVCRejection PVCRejectionTag = DataElementTag(0x00181085) // SkipBeatsTag is the data element tag of SkipBeats SkipBeatsTag = DataElementTag(0x00181086) // HeartRateTag is the data element tag of HeartRate HeartRateTag = DataElementTag(0x00181088) // CardiacNumberOfImagesTag is the data element tag of CardiacNumberOfImages CardiacNumberOfImagesTag = DataElementTag(0x00181090) // TriggerWindowTag is the data element tag of TriggerWindow TriggerWindowTag = DataElementTag(0x00181094) // ReconstructionDiameterTag is the data element tag of ReconstructionDiameter ReconstructionDiameterTag = DataElementTag(0x00181100) // DistanceSourceToDetectorTag is the data element tag of DistanceSourceToDetector DistanceSourceToDetectorTag = DataElementTag(0x00181110) // DistanceSourceToPatientTag is the data element tag of DistanceSourceToPatient DistanceSourceToPatientTag = DataElementTag(0x00181111) // EstimatedRadiographicMagnificationFactorTag is the data element tag of EstimatedRadiographicMagnificationFactor EstimatedRadiographicMagnificationFactorTag = DataElementTag(0x00181114) // GantryDetectorTiltTag is the data element tag of GantryDetectorTilt GantryDetectorTiltTag = DataElementTag(0x00181120) // GantryDetectorSlewTag is the data element tag of GantryDetectorSlew GantryDetectorSlewTag = DataElementTag(0x00181121) // TableHeightTag is the data element tag of TableHeight TableHeightTag = DataElementTag(0x00181130) // TableTraverseTag is the data element tag of TableTraverse TableTraverseTag = DataElementTag(0x00181131) // TableMotionTag is the data element tag of TableMotion TableMotionTag = DataElementTag(0x00181134) // TableVerticalIncrementTag is the data element tag of TableVerticalIncrement TableVerticalIncrementTag = DataElementTag(0x00181135) // TableLateralIncrementTag is the data element tag of TableLateralIncrement TableLateralIncrementTag = DataElementTag(0x00181136) // TableLongitudinalIncrementTag is the data element tag of TableLongitudinalIncrement TableLongitudinalIncrementTag = DataElementTag(0x00181137) // TableAngleTag is the data element tag of TableAngle TableAngleTag = DataElementTag(0x00181138) // TableTypeTag is the data element tag of TableType TableTypeTag = DataElementTag(0x0018113A) // RotationDirectionTag is the data element tag of RotationDirection RotationDirectionTag = DataElementTag(0x00181140) // AngularPositionTag is the data element tag of AngularPosition AngularPositionTag = DataElementTag(0x00181141) // RadialPositionTag is the data element tag of RadialPosition RadialPositionTag = DataElementTag(0x00181142) // ScanArcTag is the data element tag of ScanArc ScanArcTag = DataElementTag(0x00181143) // AngularStepTag is the data element tag of AngularStep AngularStepTag = DataElementTag(0x00181144) // CenterOfRotationOffsetTag is the data element tag of CenterOfRotationOffset CenterOfRotationOffsetTag = DataElementTag(0x00181145) // RotationOffsetTag is the data element tag of RotationOffset RotationOffsetTag = DataElementTag(0x00181146) // FieldOfViewShapeTag is the data element tag of FieldOfViewShape FieldOfViewShapeTag = DataElementTag(0x00181147) // FieldOfViewDimensionsTag is the data element tag of FieldOfViewDimensions FieldOfViewDimensionsTag = DataElementTag(0x00181149) // ExposureTimeTag is the data element tag of ExposureTime ExposureTimeTag = DataElementTag(0x00181150) // XRayTubeCurrentTag is the data element tag of XRayTubeCurrent XRayTubeCurrentTag = DataElementTag(0x00181151) // ExposureTag is the data element tag of Exposure ExposureTag = DataElementTag(0x00181152) // ExposureInuAsTag is the data element tag of ExposureInuAs ExposureInuAsTag = DataElementTag(0x00181153) // AveragePulseWidthTag is the data element tag of AveragePulseWidth AveragePulseWidthTag = DataElementTag(0x00181154) // RadiationSettingTag is the data element tag of RadiationSetting RadiationSettingTag = DataElementTag(0x00181155) // RectificationTypeTag is the data element tag of RectificationType RectificationTypeTag = DataElementTag(0x00181156) // RadiationModeTag is the data element tag of RadiationMode RadiationModeTag = DataElementTag(0x0018115A) // ImageAndFluoroscopyAreaDoseProductTag is the data element tag of ImageAndFluoroscopyAreaDoseProduct ImageAndFluoroscopyAreaDoseProductTag = DataElementTag(0x0018115E) // FilterTypeTag is the data element tag of FilterType FilterTypeTag = DataElementTag(0x00181160) // TypeOfFiltersTag is the data element tag of TypeOfFilters TypeOfFiltersTag = DataElementTag(0x00181161) // IntensifierSizeTag is the data element tag of IntensifierSize IntensifierSizeTag = DataElementTag(0x00181162) // ImagerPixelSpacingTag is the data element tag of ImagerPixelSpacing ImagerPixelSpacingTag = DataElementTag(0x00181164) // GridTag is the data element tag of Grid GridTag = DataElementTag(0x00181166) // GeneratorPowerTag is the data element tag of GeneratorPower GeneratorPowerTag = DataElementTag(0x00181170) // CollimatorGridNameTag is the data element tag of CollimatorGridName CollimatorGridNameTag = DataElementTag(0x00181180) // CollimatorTypeTag is the data element tag of CollimatorType CollimatorTypeTag = DataElementTag(0x00181181) // FocalDistanceTag is the data element tag of FocalDistance FocalDistanceTag = DataElementTag(0x00181182) // XFocusCenterTag is the data element tag of XFocusCenter XFocusCenterTag = DataElementTag(0x00181183) // YFocusCenterTag is the data element tag of YFocusCenter YFocusCenterTag = DataElementTag(0x00181184) // FocalSpotsTag is the data element tag of FocalSpots FocalSpotsTag = DataElementTag(0x00181190) // AnodeTargetMaterialTag is the data element tag of AnodeTargetMaterial AnodeTargetMaterialTag = DataElementTag(0x00181191) // BodyPartThicknessTag is the data element tag of BodyPartThickness BodyPartThicknessTag = DataElementTag(0x001811A0) // CompressionForceTag is the data element tag of CompressionForce CompressionForceTag = DataElementTag(0x001811A2) // CompressionPressureTag is the data element tag of CompressionPressure CompressionPressureTag = DataElementTag(0x001811A3) // PaddleDescriptionTag is the data element tag of PaddleDescription PaddleDescriptionTag = DataElementTag(0x001811A4) // CompressionContactAreaTag is the data element tag of CompressionContactArea CompressionContactAreaTag = DataElementTag(0x001811A5) // DateOfLastCalibrationTag is the data element tag of DateOfLastCalibration DateOfLastCalibrationTag = DataElementTag(0x00181200) // TimeOfLastCalibrationTag is the data element tag of TimeOfLastCalibration TimeOfLastCalibrationTag = DataElementTag(0x00181201) // DateTimeOfLastCalibrationTag is the data element tag of DateTimeOfLastCalibration DateTimeOfLastCalibrationTag = DataElementTag(0x00181202) // ConvolutionKernelTag is the data element tag of ConvolutionKernel ConvolutionKernelTag = DataElementTag(0x00181210) // UpperLowerPixelValuesTag is the data element tag of UpperLowerPixelValues UpperLowerPixelValuesTag = DataElementTag(0x00181240) // ActualFrameDurationTag is the data element tag of ActualFrameDuration ActualFrameDurationTag = DataElementTag(0x00181242) // CountRateTag is the data element tag of CountRate CountRateTag = DataElementTag(0x00181243) // PreferredPlaybackSequencingTag is the data element tag of PreferredPlaybackSequencing PreferredPlaybackSequencingTag = DataElementTag(0x00181244) // ReceiveCoilNameTag is the data element tag of ReceiveCoilName ReceiveCoilNameTag = DataElementTag(0x00181250) // TransmitCoilNameTag is the data element tag of TransmitCoilName TransmitCoilNameTag = DataElementTag(0x00181251) // PlateTypeTag is the data element tag of PlateType PlateTypeTag = DataElementTag(0x00181260) // PhosphorTypeTag is the data element tag of PhosphorType PhosphorTypeTag = DataElementTag(0x00181261) // WaterEquivalentDiameterTag is the data element tag of WaterEquivalentDiameter WaterEquivalentDiameterTag = DataElementTag(0x00181271) // WaterEquivalentDiameterCalculationMethodCodeSequenceTag is the data element tag of WaterEquivalentDiameterCalculationMethodCodeSequence WaterEquivalentDiameterCalculationMethodCodeSequenceTag = DataElementTag(0x00181272) // ScanVelocityTag is the data element tag of ScanVelocity ScanVelocityTag = DataElementTag(0x00181300) // WholeBodyTechniqueTag is the data element tag of WholeBodyTechnique WholeBodyTechniqueTag = DataElementTag(0x00181301) // ScanLengthTag is the data element tag of ScanLength ScanLengthTag = DataElementTag(0x00181302) // AcquisitionMatrixTag is the data element tag of AcquisitionMatrix AcquisitionMatrixTag = DataElementTag(0x00181310) // InPlanePhaseEncodingDirectionTag is the data element tag of InPlanePhaseEncodingDirection InPlanePhaseEncodingDirectionTag = DataElementTag(0x00181312) // FlipAngleTag is the data element tag of FlipAngle FlipAngleTag = DataElementTag(0x00181314) // VariableFlipAngleFlagTag is the data element tag of VariableFlipAngleFlag VariableFlipAngleFlagTag = DataElementTag(0x00181315) // SARTag is the data element tag of SAR SARTag = DataElementTag(0x00181316) // B1rmsTag is the data element tag of B1rms B1rmsTag = DataElementTag(0x00181320) // AcquisitionDeviceProcessingDescriptionTag is the data element tag of AcquisitionDeviceProcessingDescription AcquisitionDeviceProcessingDescriptionTag = DataElementTag(0x00181400) // AcquisitionDeviceProcessingCodeTag is the data element tag of AcquisitionDeviceProcessingCode AcquisitionDeviceProcessingCodeTag = DataElementTag(0x00181401) // CassetteOrientationTag is the data element tag of CassetteOrientation CassetteOrientationTag = DataElementTag(0x00181402) // CassetteSizeTag is the data element tag of CassetteSize CassetteSizeTag = DataElementTag(0x00181403) // ExposuresOnPlateTag is the data element tag of ExposuresOnPlate ExposuresOnPlateTag = DataElementTag(0x00181404) // RelativeXRayExposureTag is the data element tag of RelativeXRayExposure RelativeXRayExposureTag = DataElementTag(0x00181405) // ExposureIndexTag is the data element tag of ExposureIndex ExposureIndexTag = DataElementTag(0x00181411) // TargetExposureIndexTag is the data element tag of TargetExposureIndex TargetExposureIndexTag = DataElementTag(0x00181412) // DeviationIndexTag is the data element tag of DeviationIndex DeviationIndexTag = DataElementTag(0x00181413) // ColumnAngulationTag is the data element tag of ColumnAngulation ColumnAngulationTag = DataElementTag(0x00181450) // TomoLayerHeightTag is the data element tag of TomoLayerHeight TomoLayerHeightTag = DataElementTag(0x00181460) // TomoAngleTag is the data element tag of TomoAngle TomoAngleTag = DataElementTag(0x00181470) // TomoTimeTag is the data element tag of TomoTime TomoTimeTag = DataElementTag(0x00181480) // TomoTypeTag is the data element tag of TomoType TomoTypeTag = DataElementTag(0x00181490) // TomoClassTag is the data element tag of TomoClass TomoClassTag = DataElementTag(0x00181491) // NumberOfTomosynthesisSourceImagesTag is the data element tag of NumberOfTomosynthesisSourceImages NumberOfTomosynthesisSourceImagesTag = DataElementTag(0x00181495) // PositionerMotionTag is the data element tag of PositionerMotion PositionerMotionTag = DataElementTag(0x00181500) // PositionerTypeTag is the data element tag of PositionerType PositionerTypeTag = DataElementTag(0x00181508) // PositionerPrimaryAngleTag is the data element tag of PositionerPrimaryAngle PositionerPrimaryAngleTag = DataElementTag(0x00181510) // PositionerSecondaryAngleTag is the data element tag of PositionerSecondaryAngle PositionerSecondaryAngleTag = DataElementTag(0x00181511) // PositionerPrimaryAngleIncrementTag is the data element tag of PositionerPrimaryAngleIncrement PositionerPrimaryAngleIncrementTag = DataElementTag(0x00181520) // PositionerSecondaryAngleIncrementTag is the data element tag of PositionerSecondaryAngleIncrement PositionerSecondaryAngleIncrementTag = DataElementTag(0x00181521) // DetectorPrimaryAngleTag is the data element tag of DetectorPrimaryAngle DetectorPrimaryAngleTag = DataElementTag(0x00181530) // DetectorSecondaryAngleTag is the data element tag of DetectorSecondaryAngle DetectorSecondaryAngleTag = DataElementTag(0x00181531) // ShutterShapeTag is the data element tag of ShutterShape ShutterShapeTag = DataElementTag(0x00181600) // ShutterLeftVerticalEdgeTag is the data element tag of ShutterLeftVerticalEdge ShutterLeftVerticalEdgeTag = DataElementTag(0x00181602) // ShutterRightVerticalEdgeTag is the data element tag of ShutterRightVerticalEdge ShutterRightVerticalEdgeTag = DataElementTag(0x00181604) // ShutterUpperHorizontalEdgeTag is the data element tag of ShutterUpperHorizontalEdge ShutterUpperHorizontalEdgeTag = DataElementTag(0x00181606) // ShutterLowerHorizontalEdgeTag is the data element tag of ShutterLowerHorizontalEdge ShutterLowerHorizontalEdgeTag = DataElementTag(0x00181608) // CenterOfCircularShutterTag is the data element tag of CenterOfCircularShutter CenterOfCircularShutterTag = DataElementTag(0x00181610) // RadiusOfCircularShutterTag is the data element tag of RadiusOfCircularShutter RadiusOfCircularShutterTag = DataElementTag(0x00181612) // VerticesOfThePolygonalShutterTag is the data element tag of VerticesOfThePolygonalShutter VerticesOfThePolygonalShutterTag = DataElementTag(0x00181620) // ShutterPresentationValueTag is the data element tag of ShutterPresentationValue ShutterPresentationValueTag = DataElementTag(0x00181622) // ShutterOverlayGroupTag is the data element tag of ShutterOverlayGroup ShutterOverlayGroupTag = DataElementTag(0x00181623) // ShutterPresentationColorCIELabValueTag is the data element tag of ShutterPresentationColorCIELabValue ShutterPresentationColorCIELabValueTag = DataElementTag(0x00181624) // CollimatorShapeTag is the data element tag of CollimatorShape CollimatorShapeTag = DataElementTag(0x00181700) // CollimatorLeftVerticalEdgeTag is the data element tag of CollimatorLeftVerticalEdge CollimatorLeftVerticalEdgeTag = DataElementTag(0x00181702) // CollimatorRightVerticalEdgeTag is the data element tag of CollimatorRightVerticalEdge CollimatorRightVerticalEdgeTag = DataElementTag(0x00181704) // CollimatorUpperHorizontalEdgeTag is the data element tag of CollimatorUpperHorizontalEdge CollimatorUpperHorizontalEdgeTag = DataElementTag(0x00181706) // CollimatorLowerHorizontalEdgeTag is the data element tag of CollimatorLowerHorizontalEdge CollimatorLowerHorizontalEdgeTag = DataElementTag(0x00181708) // CenterOfCircularCollimatorTag is the data element tag of CenterOfCircularCollimator CenterOfCircularCollimatorTag = DataElementTag(0x00181710) // RadiusOfCircularCollimatorTag is the data element tag of RadiusOfCircularCollimator RadiusOfCircularCollimatorTag = DataElementTag(0x00181712) // VerticesOfThePolygonalCollimatorTag is the data element tag of VerticesOfThePolygonalCollimator VerticesOfThePolygonalCollimatorTag = DataElementTag(0x00181720) // AcquisitionTimeSynchronizedTag is the data element tag of AcquisitionTimeSynchronized AcquisitionTimeSynchronizedTag = DataElementTag(0x00181800) // TimeSourceTag is the data element tag of TimeSource TimeSourceTag = DataElementTag(0x00181801) // TimeDistributionProtocolTag is the data element tag of TimeDistributionProtocol TimeDistributionProtocolTag = DataElementTag(0x00181802) // NTPSourceAddressTag is the data element tag of NTPSourceAddress NTPSourceAddressTag = DataElementTag(0x00181803) // PageNumberVectorTag is the data element tag of PageNumberVector PageNumberVectorTag = DataElementTag(0x00182001) // FrameLabelVectorTag is the data element tag of FrameLabelVector FrameLabelVectorTag = DataElementTag(0x00182002) // FramePrimaryAngleVectorTag is the data element tag of FramePrimaryAngleVector FramePrimaryAngleVectorTag = DataElementTag(0x00182003) // FrameSecondaryAngleVectorTag is the data element tag of FrameSecondaryAngleVector FrameSecondaryAngleVectorTag = DataElementTag(0x00182004) // SliceLocationVectorTag is the data element tag of SliceLocationVector SliceLocationVectorTag = DataElementTag(0x00182005) // DisplayWindowLabelVectorTag is the data element tag of DisplayWindowLabelVector DisplayWindowLabelVectorTag = DataElementTag(0x00182006) // NominalScannedPixelSpacingTag is the data element tag of NominalScannedPixelSpacing NominalScannedPixelSpacingTag = DataElementTag(0x00182010) // DigitizingDeviceTransportDirectionTag is the data element tag of DigitizingDeviceTransportDirection DigitizingDeviceTransportDirectionTag = DataElementTag(0x00182020) // RotationOfScannedFilmTag is the data element tag of RotationOfScannedFilm RotationOfScannedFilmTag = DataElementTag(0x00182030) // BiopsyTargetSequenceTag is the data element tag of BiopsyTargetSequence BiopsyTargetSequenceTag = DataElementTag(0x00182041) // TargetUIDTag is the data element tag of TargetUID TargetUIDTag = DataElementTag(0x00182042) // LocalizingCursorPositionTag is the data element tag of LocalizingCursorPosition LocalizingCursorPositionTag = DataElementTag(0x00182043) // CalculatedTargetPositionTag is the data element tag of CalculatedTargetPosition CalculatedTargetPositionTag = DataElementTag(0x00182044) // TargetLabelTag is the data element tag of TargetLabel TargetLabelTag = DataElementTag(0x00182045) // DisplayedZValueTag is the data element tag of DisplayedZValue DisplayedZValueTag = DataElementTag(0x00182046) // IVUSAcquisitionTag is the data element tag of IVUSAcquisition IVUSAcquisitionTag = DataElementTag(0x00183100) // IVUSPullbackRateTag is the data element tag of IVUSPullbackRate IVUSPullbackRateTag = DataElementTag(0x00183101) // IVUSGatedRateTag is the data element tag of IVUSGatedRate IVUSGatedRateTag = DataElementTag(0x00183102) // IVUSPullbackStartFrameNumberTag is the data element tag of IVUSPullbackStartFrameNumber IVUSPullbackStartFrameNumberTag = DataElementTag(0x00183103) // IVUSPullbackStopFrameNumberTag is the data element tag of IVUSPullbackStopFrameNumber IVUSPullbackStopFrameNumberTag = DataElementTag(0x00183104) // LesionNumberTag is the data element tag of LesionNumber LesionNumberTag = DataElementTag(0x00183105) // AcquisitionCommentsTag is the data element tag of AcquisitionComments AcquisitionCommentsTag = DataElementTag(0x00184000) // OutputPowerTag is the data element tag of OutputPower OutputPowerTag = DataElementTag(0x00185000) // TransducerDataTag is the data element tag of TransducerData TransducerDataTag = DataElementTag(0x00185010) // FocusDepthTag is the data element tag of FocusDepth FocusDepthTag = DataElementTag(0x00185012) // ProcessingFunctionTag is the data element tag of ProcessingFunction ProcessingFunctionTag = DataElementTag(0x00185020) // PostprocessingFunctionTag is the data element tag of PostprocessingFunction PostprocessingFunctionTag = DataElementTag(0x00185021) // MechanicalIndexTag is the data element tag of MechanicalIndex MechanicalIndexTag = DataElementTag(0x00185022) // BoneThermalIndexTag is the data element tag of BoneThermalIndex BoneThermalIndexTag = DataElementTag(0x00185024) // CranialThermalIndexTag is the data element tag of CranialThermalIndex CranialThermalIndexTag = DataElementTag(0x00185026) // SoftTissueThermalIndexTag is the data element tag of SoftTissueThermalIndex SoftTissueThermalIndexTag = DataElementTag(0x00185027) // SoftTissueFocusThermalIndexTag is the data element tag of SoftTissueFocusThermalIndex SoftTissueFocusThermalIndexTag = DataElementTag(0x00185028) // SoftTissueSurfaceThermalIndexTag is the data element tag of SoftTissueSurfaceThermalIndex SoftTissueSurfaceThermalIndexTag = DataElementTag(0x00185029) // DynamicRangeTag is the data element tag of DynamicRange DynamicRangeTag = DataElementTag(0x00185030) // TotalGainTag is the data element tag of TotalGain TotalGainTag = DataElementTag(0x00185040) // DepthOfScanFieldTag is the data element tag of DepthOfScanField DepthOfScanFieldTag = DataElementTag(0x00185050) // PatientPositionTag is the data element tag of PatientPosition PatientPositionTag = DataElementTag(0x00185100) // ViewPositionTag is the data element tag of ViewPosition ViewPositionTag = DataElementTag(0x00185101) // ProjectionEponymousNameCodeSequenceTag is the data element tag of ProjectionEponymousNameCodeSequence ProjectionEponymousNameCodeSequenceTag = DataElementTag(0x00185104) // ImageTransformationMatrixTag is the data element tag of ImageTransformationMatrix ImageTransformationMatrixTag = DataElementTag(0x00185210) // ImageTranslationVectorTag is the data element tag of ImageTranslationVector ImageTranslationVectorTag = DataElementTag(0x00185212) // SensitivityTag is the data element tag of Sensitivity SensitivityTag = DataElementTag(0x00186000) // SequenceOfUltrasoundRegionsTag is the data element tag of SequenceOfUltrasoundRegions SequenceOfUltrasoundRegionsTag = DataElementTag(0x00186011) // RegionSpatialFormatTag is the data element tag of RegionSpatialFormat RegionSpatialFormatTag = DataElementTag(0x00186012) // RegionDataTypeTag is the data element tag of RegionDataType RegionDataTypeTag = DataElementTag(0x00186014) // RegionFlagsTag is the data element tag of RegionFlags RegionFlagsTag = DataElementTag(0x00186016) // RegionLocationMinX0Tag is the data element tag of RegionLocationMinX0 RegionLocationMinX0Tag = DataElementTag(0x00186018) // RegionLocationMinY0Tag is the data element tag of RegionLocationMinY0 RegionLocationMinY0Tag = DataElementTag(0x0018601A) // RegionLocationMaxX1Tag is the data element tag of RegionLocationMaxX1 RegionLocationMaxX1Tag = DataElementTag(0x0018601C) // RegionLocationMaxY1Tag is the data element tag of RegionLocationMaxY1 RegionLocationMaxY1Tag = DataElementTag(0x0018601E) // ReferencePixelX0Tag is the data element tag of ReferencePixelX0 ReferencePixelX0Tag = DataElementTag(0x00186020) // ReferencePixelY0Tag is the data element tag of ReferencePixelY0 ReferencePixelY0Tag = DataElementTag(0x00186022) // PhysicalUnitsXDirectionTag is the data element tag of PhysicalUnitsXDirection PhysicalUnitsXDirectionTag = DataElementTag(0x00186024) // PhysicalUnitsYDirectionTag is the data element tag of PhysicalUnitsYDirection PhysicalUnitsYDirectionTag = DataElementTag(0x00186026) // ReferencePixelPhysicalValueXTag is the data element tag of ReferencePixelPhysicalValueX ReferencePixelPhysicalValueXTag = DataElementTag(0x00186028) // ReferencePixelPhysicalValueYTag is the data element tag of ReferencePixelPhysicalValueY ReferencePixelPhysicalValueYTag = DataElementTag(0x0018602A) // PhysicalDeltaXTag is the data element tag of PhysicalDeltaX PhysicalDeltaXTag = DataElementTag(0x0018602C) // PhysicalDeltaYTag is the data element tag of PhysicalDeltaY PhysicalDeltaYTag = DataElementTag(0x0018602E) // TransducerFrequencyTag is the data element tag of TransducerFrequency TransducerFrequencyTag = DataElementTag(0x00186030) // TransducerTypeTag is the data element tag of TransducerType TransducerTypeTag = DataElementTag(0x00186031) // PulseRepetitionFrequencyTag is the data element tag of PulseRepetitionFrequency PulseRepetitionFrequencyTag = DataElementTag(0x00186032) // DopplerCorrectionAngleTag is the data element tag of DopplerCorrectionAngle DopplerCorrectionAngleTag = DataElementTag(0x00186034) // SteeringAngleTag is the data element tag of SteeringAngle SteeringAngleTag = DataElementTag(0x00186036) // DopplerSampleVolumeXPositionRetiredTag is the data element tag of DopplerSampleVolumeXPositionRetired DopplerSampleVolumeXPositionRetiredTag = DataElementTag(0x00186038) // DopplerSampleVolumeXPositionTag is the data element tag of DopplerSampleVolumeXPosition DopplerSampleVolumeXPositionTag = DataElementTag(0x00186039) // DopplerSampleVolumeYPositionRetiredTag is the data element tag of DopplerSampleVolumeYPositionRetired DopplerSampleVolumeYPositionRetiredTag = DataElementTag(0x0018603A) // DopplerSampleVolumeYPositionTag is the data element tag of DopplerSampleVolumeYPosition DopplerSampleVolumeYPositionTag = DataElementTag(0x0018603B) // TMLinePositionX0RetiredTag is the data element tag of TMLinePositionX0Retired TMLinePositionX0RetiredTag = DataElementTag(0x0018603C) // TMLinePositionX0Tag is the data element tag of TMLinePositionX0 TMLinePositionX0Tag = DataElementTag(0x0018603D) // TMLinePositionY0RetiredTag is the data element tag of TMLinePositionY0Retired TMLinePositionY0RetiredTag = DataElementTag(0x0018603E) // TMLinePositionY0Tag is the data element tag of TMLinePositionY0 TMLinePositionY0Tag = DataElementTag(0x0018603F) // TMLinePositionX1RetiredTag is the data element tag of TMLinePositionX1Retired TMLinePositionX1RetiredTag = DataElementTag(0x00186040) // TMLinePositionX1Tag is the data element tag of TMLinePositionX1 TMLinePositionX1Tag = DataElementTag(0x00186041) // TMLinePositionY1RetiredTag is the data element tag of TMLinePositionY1Retired TMLinePositionY1RetiredTag = DataElementTag(0x00186042) // TMLinePositionY1Tag is the data element tag of TMLinePositionY1 TMLinePositionY1Tag = DataElementTag(0x00186043) // PixelComponentOrganizationTag is the data element tag of PixelComponentOrganization PixelComponentOrganizationTag = DataElementTag(0x00186044) // PixelComponentMaskTag is the data element tag of PixelComponentMask PixelComponentMaskTag = DataElementTag(0x00186046) // PixelComponentRangeStartTag is the data element tag of PixelComponentRangeStart PixelComponentRangeStartTag = DataElementTag(0x00186048) // PixelComponentRangeStopTag is the data element tag of PixelComponentRangeStop PixelComponentRangeStopTag = DataElementTag(0x0018604A) // PixelComponentPhysicalUnitsTag is the data element tag of PixelComponentPhysicalUnits PixelComponentPhysicalUnitsTag = DataElementTag(0x0018604C) // PixelComponentDataTypeTag is the data element tag of PixelComponentDataType PixelComponentDataTypeTag = DataElementTag(0x0018604E) // NumberOfTableBreakPointsTag is the data element tag of NumberOfTableBreakPoints NumberOfTableBreakPointsTag = DataElementTag(0x00186050) // TableOfXBreakPointsTag is the data element tag of TableOfXBreakPoints TableOfXBreakPointsTag = DataElementTag(0x00186052) // TableOfYBreakPointsTag is the data element tag of TableOfYBreakPoints TableOfYBreakPointsTag = DataElementTag(0x00186054) // NumberOfTableEntriesTag is the data element tag of NumberOfTableEntries NumberOfTableEntriesTag = DataElementTag(0x00186056) // TableOfPixelValuesTag is the data element tag of TableOfPixelValues TableOfPixelValuesTag = DataElementTag(0x00186058) // TableOfParameterValuesTag is the data element tag of TableOfParameterValues TableOfParameterValuesTag = DataElementTag(0x0018605A) // RWaveTimeVectorTag is the data element tag of RWaveTimeVector RWaveTimeVectorTag = DataElementTag(0x00186060) // DetectorConditionsNominalFlagTag is the data element tag of DetectorConditionsNominalFlag DetectorConditionsNominalFlagTag = DataElementTag(0x00187000) // DetectorTemperatureTag is the data element tag of DetectorTemperature DetectorTemperatureTag = DataElementTag(0x00187001) // DetectorTypeTag is the data element tag of DetectorType DetectorTypeTag = DataElementTag(0x00187004) // DetectorConfigurationTag is the data element tag of DetectorConfiguration DetectorConfigurationTag = DataElementTag(0x00187005) // DetectorDescriptionTag is the data element tag of DetectorDescription DetectorDescriptionTag = DataElementTag(0x00187006) // DetectorModeTag is the data element tag of DetectorMode DetectorModeTag = DataElementTag(0x00187008) // DetectorIDTag is the data element tag of DetectorID DetectorIDTag = DataElementTag(0x0018700A) // DateOfLastDetectorCalibrationTag is the data element tag of DateOfLastDetectorCalibration DateOfLastDetectorCalibrationTag = DataElementTag(0x0018700C) // TimeOfLastDetectorCalibrationTag is the data element tag of TimeOfLastDetectorCalibration TimeOfLastDetectorCalibrationTag = DataElementTag(0x0018700E) // ExposuresOnDetectorSinceLastCalibrationTag is the data element tag of ExposuresOnDetectorSinceLastCalibration ExposuresOnDetectorSinceLastCalibrationTag = DataElementTag(0x00187010) // ExposuresOnDetectorSinceManufacturedTag is the data element tag of ExposuresOnDetectorSinceManufactured ExposuresOnDetectorSinceManufacturedTag = DataElementTag(0x00187011) // DetectorTimeSinceLastExposureTag is the data element tag of DetectorTimeSinceLastExposure DetectorTimeSinceLastExposureTag = DataElementTag(0x00187012) // DetectorActiveTimeTag is the data element tag of DetectorActiveTime DetectorActiveTimeTag = DataElementTag(0x00187014) // DetectorActivationOffsetFromExposureTag is the data element tag of DetectorActivationOffsetFromExposure DetectorActivationOffsetFromExposureTag = DataElementTag(0x00187016) // DetectorBinningTag is the data element tag of DetectorBinning DetectorBinningTag = DataElementTag(0x0018701A) // DetectorElementPhysicalSizeTag is the data element tag of DetectorElementPhysicalSize DetectorElementPhysicalSizeTag = DataElementTag(0x00187020) // DetectorElementSpacingTag is the data element tag of DetectorElementSpacing DetectorElementSpacingTag = DataElementTag(0x00187022) // DetectorActiveShapeTag is the data element tag of DetectorActiveShape DetectorActiveShapeTag = DataElementTag(0x00187024) // DetectorActiveDimensionsTag is the data element tag of DetectorActiveDimensions DetectorActiveDimensionsTag = DataElementTag(0x00187026) // DetectorActiveOriginTag is the data element tag of DetectorActiveOrigin DetectorActiveOriginTag = DataElementTag(0x00187028) // DetectorManufacturerNameTag is the data element tag of DetectorManufacturerName DetectorManufacturerNameTag = DataElementTag(0x0018702A) // DetectorManufacturerModelNameTag is the data element tag of DetectorManufacturerModelName DetectorManufacturerModelNameTag = DataElementTag(0x0018702B) // FieldOfViewOriginTag is the data element tag of FieldOfViewOrigin FieldOfViewOriginTag = DataElementTag(0x00187030) // FieldOfViewRotationTag is the data element tag of FieldOfViewRotation FieldOfViewRotationTag = DataElementTag(0x00187032) // FieldOfViewHorizontalFlipTag is the data element tag of FieldOfViewHorizontalFlip FieldOfViewHorizontalFlipTag = DataElementTag(0x00187034) // PixelDataAreaOriginRelativeToFOVTag is the data element tag of PixelDataAreaOriginRelativeToFOV PixelDataAreaOriginRelativeToFOVTag = DataElementTag(0x00187036) // PixelDataAreaRotationAngleRelativeToFOVTag is the data element tag of PixelDataAreaRotationAngleRelativeToFOV PixelDataAreaRotationAngleRelativeToFOVTag = DataElementTag(0x00187038) // GridAbsorbingMaterialTag is the data element tag of GridAbsorbingMaterial GridAbsorbingMaterialTag = DataElementTag(0x00187040) // GridSpacingMaterialTag is the data element tag of GridSpacingMaterial GridSpacingMaterialTag = DataElementTag(0x00187041) // GridThicknessTag is the data element tag of GridThickness GridThicknessTag = DataElementTag(0x00187042) // GridPitchTag is the data element tag of GridPitch GridPitchTag = DataElementTag(0x00187044) // GridAspectRatioTag is the data element tag of GridAspectRatio GridAspectRatioTag = DataElementTag(0x00187046) // GridPeriodTag is the data element tag of GridPeriod GridPeriodTag = DataElementTag(0x00187048) // GridFocalDistanceTag is the data element tag of GridFocalDistance GridFocalDistanceTag = DataElementTag(0x0018704C) // FilterMaterialTag is the data element tag of FilterMaterial FilterMaterialTag = DataElementTag(0x00187050) // FilterThicknessMinimumTag is the data element tag of FilterThicknessMinimum FilterThicknessMinimumTag = DataElementTag(0x00187052) // FilterThicknessMaximumTag is the data element tag of FilterThicknessMaximum FilterThicknessMaximumTag = DataElementTag(0x00187054) // FilterBeamPathLengthMinimumTag is the data element tag of FilterBeamPathLengthMinimum FilterBeamPathLengthMinimumTag = DataElementTag(0x00187056) // FilterBeamPathLengthMaximumTag is the data element tag of FilterBeamPathLengthMaximum FilterBeamPathLengthMaximumTag = DataElementTag(0x00187058) // ExposureControlModeTag is the data element tag of ExposureControlMode ExposureControlModeTag = DataElementTag(0x00187060) // ExposureControlModeDescriptionTag is the data element tag of ExposureControlModeDescription ExposureControlModeDescriptionTag = DataElementTag(0x00187062) // ExposureStatusTag is the data element tag of ExposureStatus ExposureStatusTag = DataElementTag(0x00187064) // PhototimerSettingTag is the data element tag of PhototimerSetting PhototimerSettingTag = DataElementTag(0x00187065) // ExposureTimeInuSTag is the data element tag of ExposureTimeInuS ExposureTimeInuSTag = DataElementTag(0x00188150) // XRayTubeCurrentInuATag is the data element tag of XRayTubeCurrentInuA XRayTubeCurrentInuATag = DataElementTag(0x00188151) // ContentQualificationTag is the data element tag of ContentQualification ContentQualificationTag = DataElementTag(0x00189004) // PulseSequenceNameTag is the data element tag of PulseSequenceName PulseSequenceNameTag = DataElementTag(0x00189005) // MRImagingModifierSequenceTag is the data element tag of MRImagingModifierSequence MRImagingModifierSequenceTag = DataElementTag(0x00189006) // EchoPulseSequenceTag is the data element tag of EchoPulseSequence EchoPulseSequenceTag = DataElementTag(0x00189008) // InversionRecoveryTag is the data element tag of InversionRecovery InversionRecoveryTag = DataElementTag(0x00189009) // FlowCompensationTag is the data element tag of FlowCompensation FlowCompensationTag = DataElementTag(0x00189010) // MultipleSpinEchoTag is the data element tag of MultipleSpinEcho MultipleSpinEchoTag = DataElementTag(0x00189011) // MultiPlanarExcitationTag is the data element tag of MultiPlanarExcitation MultiPlanarExcitationTag = DataElementTag(0x00189012) // PhaseContrastTag is the data element tag of PhaseContrast PhaseContrastTag = DataElementTag(0x00189014) // TimeOfFlightContrastTag is the data element tag of TimeOfFlightContrast TimeOfFlightContrastTag = DataElementTag(0x00189015) // SpoilingTag is the data element tag of Spoiling SpoilingTag = DataElementTag(0x00189016) // SteadyStatePulseSequenceTag is the data element tag of SteadyStatePulseSequence SteadyStatePulseSequenceTag = DataElementTag(0x00189017) // EchoPlanarPulseSequenceTag is the data element tag of EchoPlanarPulseSequence EchoPlanarPulseSequenceTag = DataElementTag(0x00189018) // TagAngleFirstAxisTag is the data element tag of TagAngleFirstAxis TagAngleFirstAxisTag = DataElementTag(0x00189019) // MagnetizationTransferTag is the data element tag of MagnetizationTransfer MagnetizationTransferTag = DataElementTag(0x00189020) // T2PreparationTag is the data element tag of T2Preparation T2PreparationTag = DataElementTag(0x00189021) // BloodSignalNullingTag is the data element tag of BloodSignalNulling BloodSignalNullingTag = DataElementTag(0x00189022) // SaturationRecoveryTag is the data element tag of SaturationRecovery SaturationRecoveryTag = DataElementTag(0x00189024) // SpectrallySelectedSuppressionTag is the data element tag of SpectrallySelectedSuppression SpectrallySelectedSuppressionTag = DataElementTag(0x00189025) // SpectrallySelectedExcitationTag is the data element tag of SpectrallySelectedExcitation SpectrallySelectedExcitationTag = DataElementTag(0x00189026) // SpatialPresaturationTag is the data element tag of SpatialPresaturation SpatialPresaturationTag = DataElementTag(0x00189027) // TaggingTag is the data element tag of Tagging TaggingTag = DataElementTag(0x00189028) // OversamplingPhaseTag is the data element tag of OversamplingPhase OversamplingPhaseTag = DataElementTag(0x00189029) // TagSpacingFirstDimensionTag is the data element tag of TagSpacingFirstDimension TagSpacingFirstDimensionTag = DataElementTag(0x00189030) // GeometryOfKSpaceTraversalTag is the data element tag of GeometryOfKSpaceTraversal GeometryOfKSpaceTraversalTag = DataElementTag(0x00189032) // SegmentedKSpaceTraversalTag is the data element tag of SegmentedKSpaceTraversal SegmentedKSpaceTraversalTag = DataElementTag(0x00189033) // RectilinearPhaseEncodeReorderingTag is the data element tag of RectilinearPhaseEncodeReordering RectilinearPhaseEncodeReorderingTag = DataElementTag(0x00189034) // TagThicknessTag is the data element tag of TagThickness TagThicknessTag = DataElementTag(0x00189035) // PartialFourierDirectionTag is the data element tag of PartialFourierDirection PartialFourierDirectionTag = DataElementTag(0x00189036) // CardiacSynchronizationTechniqueTag is the data element tag of CardiacSynchronizationTechnique CardiacSynchronizationTechniqueTag = DataElementTag(0x00189037) // ReceiveCoilManufacturerNameTag is the data element tag of ReceiveCoilManufacturerName ReceiveCoilManufacturerNameTag = DataElementTag(0x00189041) // MRReceiveCoilSequenceTag is the data element tag of MRReceiveCoilSequence MRReceiveCoilSequenceTag = DataElementTag(0x00189042) // ReceiveCoilTypeTag is the data element tag of ReceiveCoilType ReceiveCoilTypeTag = DataElementTag(0x00189043) // QuadratureReceiveCoilTag is the data element tag of QuadratureReceiveCoil QuadratureReceiveCoilTag = DataElementTag(0x00189044) // MultiCoilDefinitionSequenceTag is the data element tag of MultiCoilDefinitionSequence MultiCoilDefinitionSequenceTag = DataElementTag(0x00189045) // MultiCoilConfigurationTag is the data element tag of MultiCoilConfiguration MultiCoilConfigurationTag = DataElementTag(0x00189046) // MultiCoilElementNameTag is the data element tag of MultiCoilElementName MultiCoilElementNameTag = DataElementTag(0x00189047) // MultiCoilElementUsedTag is the data element tag of MultiCoilElementUsed MultiCoilElementUsedTag = DataElementTag(0x00189048) // MRTransmitCoilSequenceTag is the data element tag of MRTransmitCoilSequence MRTransmitCoilSequenceTag = DataElementTag(0x00189049) // TransmitCoilManufacturerNameTag is the data element tag of TransmitCoilManufacturerName TransmitCoilManufacturerNameTag = DataElementTag(0x00189050) // TransmitCoilTypeTag is the data element tag of TransmitCoilType TransmitCoilTypeTag = DataElementTag(0x00189051) // SpectralWidthTag is the data element tag of SpectralWidth SpectralWidthTag = DataElementTag(0x00189052) // ChemicalShiftReferenceTag is the data element tag of ChemicalShiftReference ChemicalShiftReferenceTag = DataElementTag(0x00189053) // VolumeLocalizationTechniqueTag is the data element tag of VolumeLocalizationTechnique VolumeLocalizationTechniqueTag = DataElementTag(0x00189054) // MRAcquisitionFrequencyEncodingStepsTag is the data element tag of MRAcquisitionFrequencyEncodingSteps MRAcquisitionFrequencyEncodingStepsTag = DataElementTag(0x00189058) // DecouplingTag is the data element tag of Decoupling DecouplingTag = DataElementTag(0x00189059) // DecoupledNucleusTag is the data element tag of DecoupledNucleus DecoupledNucleusTag = DataElementTag(0x00189060) // DecouplingFrequencyTag is the data element tag of DecouplingFrequency DecouplingFrequencyTag = DataElementTag(0x00189061) // DecouplingMethodTag is the data element tag of DecouplingMethod DecouplingMethodTag = DataElementTag(0x00189062) // DecouplingChemicalShiftReferenceTag is the data element tag of DecouplingChemicalShiftReference DecouplingChemicalShiftReferenceTag = DataElementTag(0x00189063) // KSpaceFilteringTag is the data element tag of KSpaceFiltering KSpaceFilteringTag = DataElementTag(0x00189064) // TimeDomainFilteringTag is the data element tag of TimeDomainFiltering TimeDomainFilteringTag = DataElementTag(0x00189065) // NumberOfZeroFillsTag is the data element tag of NumberOfZeroFills NumberOfZeroFillsTag = DataElementTag(0x00189066) // BaselineCorrectionTag is the data element tag of BaselineCorrection BaselineCorrectionTag = DataElementTag(0x00189067) // ParallelReductionFactorInPlaneTag is the data element tag of ParallelReductionFactorInPlane ParallelReductionFactorInPlaneTag = DataElementTag(0x00189069) // CardiacRRIntervalSpecifiedTag is the data element tag of CardiacRRIntervalSpecified CardiacRRIntervalSpecifiedTag = DataElementTag(0x00189070) // AcquisitionDurationTag is the data element tag of AcquisitionDuration AcquisitionDurationTag = DataElementTag(0x00189073) // FrameAcquisitionDateTimeTag is the data element tag of FrameAcquisitionDateTime FrameAcquisitionDateTimeTag = DataElementTag(0x00189074) // DiffusionDirectionalityTag is the data element tag of DiffusionDirectionality DiffusionDirectionalityTag = DataElementTag(0x00189075) // DiffusionGradientDirectionSequenceTag is the data element tag of DiffusionGradientDirectionSequence DiffusionGradientDirectionSequenceTag = DataElementTag(0x00189076) // ParallelAcquisitionTag is the data element tag of ParallelAcquisition ParallelAcquisitionTag = DataElementTag(0x00189077) // ParallelAcquisitionTechniqueTag is the data element tag of ParallelAcquisitionTechnique ParallelAcquisitionTechniqueTag = DataElementTag(0x00189078) // InversionTimesTag is the data element tag of InversionTimes InversionTimesTag = DataElementTag(0x00189079) // MetaboliteMapDescriptionTag is the data element tag of MetaboliteMapDescription MetaboliteMapDescriptionTag = DataElementTag(0x00189080) // PartialFourierTag is the data element tag of PartialFourier PartialFourierTag = DataElementTag(0x00189081) // EffectiveEchoTimeTag is the data element tag of EffectiveEchoTime EffectiveEchoTimeTag = DataElementTag(0x00189082) // MetaboliteMapCodeSequenceTag is the data element tag of MetaboliteMapCodeSequence MetaboliteMapCodeSequenceTag = DataElementTag(0x00189083) // ChemicalShiftSequenceTag is the data element tag of ChemicalShiftSequence ChemicalShiftSequenceTag = DataElementTag(0x00189084) // CardiacSignalSourceTag is the data element tag of CardiacSignalSource CardiacSignalSourceTag = DataElementTag(0x00189085) // DiffusionBValueTag is the data element tag of DiffusionBValue DiffusionBValueTag = DataElementTag(0x00189087) // DiffusionGradientOrientationTag is the data element tag of DiffusionGradientOrientation DiffusionGradientOrientationTag = DataElementTag(0x00189089) // VelocityEncodingDirectionTag is the data element tag of VelocityEncodingDirection VelocityEncodingDirectionTag = DataElementTag(0x00189090) // VelocityEncodingMinimumValueTag is the data element tag of VelocityEncodingMinimumValue VelocityEncodingMinimumValueTag = DataElementTag(0x00189091) // VelocityEncodingAcquisitionSequenceTag is the data element tag of VelocityEncodingAcquisitionSequence VelocityEncodingAcquisitionSequenceTag = DataElementTag(0x00189092) // NumberOfKSpaceTrajectoriesTag is the data element tag of NumberOfKSpaceTrajectories NumberOfKSpaceTrajectoriesTag = DataElementTag(0x00189093) // CoverageOfKSpaceTag is the data element tag of CoverageOfKSpace CoverageOfKSpaceTag = DataElementTag(0x00189094) // SpectroscopyAcquisitionPhaseRowsTag is the data element tag of SpectroscopyAcquisitionPhaseRows SpectroscopyAcquisitionPhaseRowsTag = DataElementTag(0x00189095) // ParallelReductionFactorInPlaneRetiredTag is the data element tag of ParallelReductionFactorInPlaneRetired ParallelReductionFactorInPlaneRetiredTag = DataElementTag(0x00189096) // TransmitterFrequencyTag is the data element tag of TransmitterFrequency TransmitterFrequencyTag = DataElementTag(0x00189098) // ResonantNucleusTag is the data element tag of ResonantNucleus ResonantNucleusTag = DataElementTag(0x00189100) // FrequencyCorrectionTag is the data element tag of FrequencyCorrection FrequencyCorrectionTag = DataElementTag(0x00189101) // MRSpectroscopyFOVGeometrySequenceTag is the data element tag of MRSpectroscopyFOVGeometrySequence MRSpectroscopyFOVGeometrySequenceTag = DataElementTag(0x00189103) // SlabThicknessTag is the data element tag of SlabThickness SlabThicknessTag = DataElementTag(0x00189104) // SlabOrientationTag is the data element tag of SlabOrientation SlabOrientationTag = DataElementTag(0x00189105) // MidSlabPositionTag is the data element tag of MidSlabPosition MidSlabPositionTag = DataElementTag(0x00189106) // MRSpatialSaturationSequenceTag is the data element tag of MRSpatialSaturationSequence MRSpatialSaturationSequenceTag = DataElementTag(0x00189107) // MRTimingAndRelatedParametersSequenceTag is the data element tag of MRTimingAndRelatedParametersSequence MRTimingAndRelatedParametersSequenceTag = DataElementTag(0x00189112) // MREchoSequenceTag is the data element tag of MREchoSequence MREchoSequenceTag = DataElementTag(0x00189114) // MRModifierSequenceTag is the data element tag of MRModifierSequence MRModifierSequenceTag = DataElementTag(0x00189115) // MRDiffusionSequenceTag is the data element tag of MRDiffusionSequence MRDiffusionSequenceTag = DataElementTag(0x00189117) // CardiacSynchronizationSequenceTag is the data element tag of CardiacSynchronizationSequence CardiacSynchronizationSequenceTag = DataElementTag(0x00189118) // MRAveragesSequenceTag is the data element tag of MRAveragesSequence MRAveragesSequenceTag = DataElementTag(0x00189119) // MRFOVGeometrySequenceTag is the data element tag of MRFOVGeometrySequence MRFOVGeometrySequenceTag = DataElementTag(0x00189125) // VolumeLocalizationSequenceTag is the data element tag of VolumeLocalizationSequence VolumeLocalizationSequenceTag = DataElementTag(0x00189126) // SpectroscopyAcquisitionDataColumnsTag is the data element tag of SpectroscopyAcquisitionDataColumns SpectroscopyAcquisitionDataColumnsTag = DataElementTag(0x00189127) // DiffusionAnisotropyTypeTag is the data element tag of DiffusionAnisotropyType DiffusionAnisotropyTypeTag = DataElementTag(0x00189147) // FrameReferenceDateTimeTag is the data element tag of FrameReferenceDateTime FrameReferenceDateTimeTag = DataElementTag(0x00189151) // MRMetaboliteMapSequenceTag is the data element tag of MRMetaboliteMapSequence MRMetaboliteMapSequenceTag = DataElementTag(0x00189152) // ParallelReductionFactorOutOfPlaneTag is the data element tag of ParallelReductionFactorOutOfPlane ParallelReductionFactorOutOfPlaneTag = DataElementTag(0x00189155) // SpectroscopyAcquisitionOutOfPlanePhaseStepsTag is the data element tag of SpectroscopyAcquisitionOutOfPlanePhaseSteps SpectroscopyAcquisitionOutOfPlanePhaseStepsTag = DataElementTag(0x00189159) // BulkMotionStatusTag is the data element tag of BulkMotionStatus BulkMotionStatusTag = DataElementTag(0x00189166) // ParallelReductionFactorSecondInPlaneTag is the data element tag of ParallelReductionFactorSecondInPlane ParallelReductionFactorSecondInPlaneTag = DataElementTag(0x00189168) // CardiacBeatRejectionTechniqueTag is the data element tag of CardiacBeatRejectionTechnique CardiacBeatRejectionTechniqueTag = DataElementTag(0x00189169) // RespiratoryMotionCompensationTechniqueTag is the data element tag of RespiratoryMotionCompensationTechnique RespiratoryMotionCompensationTechniqueTag = DataElementTag(0x00189170) // RespiratorySignalSourceTag is the data element tag of RespiratorySignalSource RespiratorySignalSourceTag = DataElementTag(0x00189171) // BulkMotionCompensationTechniqueTag is the data element tag of BulkMotionCompensationTechnique BulkMotionCompensationTechniqueTag = DataElementTag(0x00189172) // BulkMotionSignalSourceTag is the data element tag of BulkMotionSignalSource BulkMotionSignalSourceTag = DataElementTag(0x00189173) // ApplicableSafetyStandardAgencyTag is the data element tag of ApplicableSafetyStandardAgency ApplicableSafetyStandardAgencyTag = DataElementTag(0x00189174) // ApplicableSafetyStandardDescriptionTag is the data element tag of ApplicableSafetyStandardDescription ApplicableSafetyStandardDescriptionTag = DataElementTag(0x00189175) // OperatingModeSequenceTag is the data element tag of OperatingModeSequence OperatingModeSequenceTag = DataElementTag(0x00189176) // OperatingModeTypeTag is the data element tag of OperatingModeType OperatingModeTypeTag = DataElementTag(0x00189177) // OperatingModeTag is the data element tag of OperatingMode OperatingModeTag = DataElementTag(0x00189178) // SpecificAbsorptionRateDefinitionTag is the data element tag of SpecificAbsorptionRateDefinition SpecificAbsorptionRateDefinitionTag = DataElementTag(0x00189179) // GradientOutputTypeTag is the data element tag of GradientOutputType GradientOutputTypeTag = DataElementTag(0x00189180) // SpecificAbsorptionRateValueTag is the data element tag of SpecificAbsorptionRateValue SpecificAbsorptionRateValueTag = DataElementTag(0x00189181) // GradientOutputTag is the data element tag of GradientOutput GradientOutputTag = DataElementTag(0x00189182) // FlowCompensationDirectionTag is the data element tag of FlowCompensationDirection FlowCompensationDirectionTag = DataElementTag(0x00189183) // TaggingDelayTag is the data element tag of TaggingDelay TaggingDelayTag = DataElementTag(0x00189184) // RespiratoryMotionCompensationTechniqueDescriptionTag is the data element tag of RespiratoryMotionCompensationTechniqueDescription RespiratoryMotionCompensationTechniqueDescriptionTag = DataElementTag(0x00189185) // RespiratorySignalSourceIDTag is the data element tag of RespiratorySignalSourceID RespiratorySignalSourceIDTag = DataElementTag(0x00189186) // ChemicalShiftMinimumIntegrationLimitInHzTag is the data element tag of ChemicalShiftMinimumIntegrationLimitInHz ChemicalShiftMinimumIntegrationLimitInHzTag = DataElementTag(0x00189195) // ChemicalShiftMaximumIntegrationLimitInHzTag is the data element tag of ChemicalShiftMaximumIntegrationLimitInHz ChemicalShiftMaximumIntegrationLimitInHzTag = DataElementTag(0x00189196) // MRVelocityEncodingSequenceTag is the data element tag of MRVelocityEncodingSequence MRVelocityEncodingSequenceTag = DataElementTag(0x00189197) // FirstOrderPhaseCorrectionTag is the data element tag of FirstOrderPhaseCorrection FirstOrderPhaseCorrectionTag = DataElementTag(0x00189198) // WaterReferencedPhaseCorrectionTag is the data element tag of WaterReferencedPhaseCorrection WaterReferencedPhaseCorrectionTag = DataElementTag(0x00189199) // MRSpectroscopyAcquisitionTypeTag is the data element tag of MRSpectroscopyAcquisitionType MRSpectroscopyAcquisitionTypeTag = DataElementTag(0x00189200) // RespiratoryCyclePositionTag is the data element tag of RespiratoryCyclePosition RespiratoryCyclePositionTag = DataElementTag(0x00189214) // VelocityEncodingMaximumValueTag is the data element tag of VelocityEncodingMaximumValue VelocityEncodingMaximumValueTag = DataElementTag(0x00189217) // TagSpacingSecondDimensionTag is the data element tag of TagSpacingSecondDimension TagSpacingSecondDimensionTag = DataElementTag(0x00189218) // TagAngleSecondAxisTag is the data element tag of TagAngleSecondAxis TagAngleSecondAxisTag = DataElementTag(0x00189219) // FrameAcquisitionDurationTag is the data element tag of FrameAcquisitionDuration FrameAcquisitionDurationTag = DataElementTag(0x00189220) // MRImageFrameTypeSequenceTag is the data element tag of MRImageFrameTypeSequence MRImageFrameTypeSequenceTag = DataElementTag(0x00189226) // MRSpectroscopyFrameTypeSequenceTag is the data element tag of MRSpectroscopyFrameTypeSequence MRSpectroscopyFrameTypeSequenceTag = DataElementTag(0x00189227) // MRAcquisitionPhaseEncodingStepsInPlaneTag is the data element tag of MRAcquisitionPhaseEncodingStepsInPlane MRAcquisitionPhaseEncodingStepsInPlaneTag = DataElementTag(0x00189231) // MRAcquisitionPhaseEncodingStepsOutOfPlaneTag is the data element tag of MRAcquisitionPhaseEncodingStepsOutOfPlane MRAcquisitionPhaseEncodingStepsOutOfPlaneTag = DataElementTag(0x00189232) // SpectroscopyAcquisitionPhaseColumnsTag is the data element tag of SpectroscopyAcquisitionPhaseColumns SpectroscopyAcquisitionPhaseColumnsTag = DataElementTag(0x00189234) // CardiacCyclePositionTag is the data element tag of CardiacCyclePosition CardiacCyclePositionTag = DataElementTag(0x00189236) // SpecificAbsorptionRateSequenceTag is the data element tag of SpecificAbsorptionRateSequence SpecificAbsorptionRateSequenceTag = DataElementTag(0x00189239) // RFEchoTrainLengthTag is the data element tag of RFEchoTrainLength RFEchoTrainLengthTag = DataElementTag(0x00189240) // GradientEchoTrainLengthTag is the data element tag of GradientEchoTrainLength GradientEchoTrainLengthTag = DataElementTag(0x00189241) // ArterialSpinLabelingContrastTag is the data element tag of ArterialSpinLabelingContrast ArterialSpinLabelingContrastTag = DataElementTag(0x00189250) // MRArterialSpinLabelingSequenceTag is the data element tag of MRArterialSpinLabelingSequence MRArterialSpinLabelingSequenceTag = DataElementTag(0x00189251) // ASLTechniqueDescriptionTag is the data element tag of ASLTechniqueDescription ASLTechniqueDescriptionTag = DataElementTag(0x00189252) // ASLSlabNumberTag is the data element tag of ASLSlabNumber ASLSlabNumberTag = DataElementTag(0x00189253) // ASLSlabThicknessTag is the data element tag of ASLSlabThickness ASLSlabThicknessTag = DataElementTag(0x00189254) // ASLSlabOrientationTag is the data element tag of ASLSlabOrientation ASLSlabOrientationTag = DataElementTag(0x00189255) // ASLMidSlabPositionTag is the data element tag of ASLMidSlabPosition ASLMidSlabPositionTag = DataElementTag(0x00189256) // ASLContextTag is the data element tag of ASLContext ASLContextTag = DataElementTag(0x00189257) // ASLPulseTrainDurationTag is the data element tag of ASLPulseTrainDuration ASLPulseTrainDurationTag = DataElementTag(0x00189258) // ASLCrusherFlagTag is the data element tag of ASLCrusherFlag ASLCrusherFlagTag = DataElementTag(0x00189259) // ASLCrusherFlowLimitTag is the data element tag of ASLCrusherFlowLimit ASLCrusherFlowLimitTag = DataElementTag(0x0018925A) // ASLCrusherDescriptionTag is the data element tag of ASLCrusherDescription ASLCrusherDescriptionTag = DataElementTag(0x0018925B) // ASLBolusCutoffFlagTag is the data element tag of ASLBolusCutoffFlag ASLBolusCutoffFlagTag = DataElementTag(0x0018925C) // ASLBolusCutoffTimingSequenceTag is the data element tag of ASLBolusCutoffTimingSequence ASLBolusCutoffTimingSequenceTag = DataElementTag(0x0018925D) // ASLBolusCutoffTechniqueTag is the data element tag of ASLBolusCutoffTechnique ASLBolusCutoffTechniqueTag = DataElementTag(0x0018925E) // ASLBolusCutoffDelayTimeTag is the data element tag of ASLBolusCutoffDelayTime ASLBolusCutoffDelayTimeTag = DataElementTag(0x0018925F) // ASLSlabSequenceTag is the data element tag of ASLSlabSequence ASLSlabSequenceTag = DataElementTag(0x00189260) // ChemicalShiftMinimumIntegrationLimitInppmTag is the data element tag of ChemicalShiftMinimumIntegrationLimitInppm ChemicalShiftMinimumIntegrationLimitInppmTag = DataElementTag(0x00189295) // ChemicalShiftMaximumIntegrationLimitInppmTag is the data element tag of ChemicalShiftMaximumIntegrationLimitInppm ChemicalShiftMaximumIntegrationLimitInppmTag = DataElementTag(0x00189296) // WaterReferenceAcquisitionTag is the data element tag of WaterReferenceAcquisition WaterReferenceAcquisitionTag = DataElementTag(0x00189297) // EchoPeakPositionTag is the data element tag of EchoPeakPosition EchoPeakPositionTag = DataElementTag(0x00189298) // CTAcquisitionTypeSequenceTag is the data element tag of CTAcquisitionTypeSequence CTAcquisitionTypeSequenceTag = DataElementTag(0x00189301) // AcquisitionTypeTag is the data element tag of AcquisitionType AcquisitionTypeTag = DataElementTag(0x00189302) // TubeAngleTag is the data element tag of TubeAngle TubeAngleTag = DataElementTag(0x00189303) // CTAcquisitionDetailsSequenceTag is the data element tag of CTAcquisitionDetailsSequence CTAcquisitionDetailsSequenceTag = DataElementTag(0x00189304) // RevolutionTimeTag is the data element tag of RevolutionTime RevolutionTimeTag = DataElementTag(0x00189305) // SingleCollimationWidthTag is the data element tag of SingleCollimationWidth SingleCollimationWidthTag = DataElementTag(0x00189306) // TotalCollimationWidthTag is the data element tag of TotalCollimationWidth TotalCollimationWidthTag = DataElementTag(0x00189307) // CTTableDynamicsSequenceTag is the data element tag of CTTableDynamicsSequence CTTableDynamicsSequenceTag = DataElementTag(0x00189308) // TableSpeedTag is the data element tag of TableSpeed TableSpeedTag = DataElementTag(0x00189309) // TableFeedPerRotationTag is the data element tag of TableFeedPerRotation TableFeedPerRotationTag = DataElementTag(0x00189310) // SpiralPitchFactorTag is the data element tag of SpiralPitchFactor SpiralPitchFactorTag = DataElementTag(0x00189311) // CTGeometrySequenceTag is the data element tag of CTGeometrySequence CTGeometrySequenceTag = DataElementTag(0x00189312) // DataCollectionCenterPatientTag is the data element tag of DataCollectionCenterPatient DataCollectionCenterPatientTag = DataElementTag(0x00189313) // CTReconstructionSequenceTag is the data element tag of CTReconstructionSequence CTReconstructionSequenceTag = DataElementTag(0x00189314) // ReconstructionAlgorithmTag is the data element tag of ReconstructionAlgorithm ReconstructionAlgorithmTag = DataElementTag(0x00189315) // ConvolutionKernelGroupTag is the data element tag of ConvolutionKernelGroup ConvolutionKernelGroupTag = DataElementTag(0x00189316) // ReconstructionFieldOfViewTag is the data element tag of ReconstructionFieldOfView ReconstructionFieldOfViewTag = DataElementTag(0x00189317) // ReconstructionTargetCenterPatientTag is the data element tag of ReconstructionTargetCenterPatient ReconstructionTargetCenterPatientTag = DataElementTag(0x00189318) // ReconstructionAngleTag is the data element tag of ReconstructionAngle ReconstructionAngleTag = DataElementTag(0x00189319) // ImageFilterTag is the data element tag of ImageFilter ImageFilterTag = DataElementTag(0x00189320) // CTExposureSequenceTag is the data element tag of CTExposureSequence CTExposureSequenceTag = DataElementTag(0x00189321) // ReconstructionPixelSpacingTag is the data element tag of ReconstructionPixelSpacing ReconstructionPixelSpacingTag = DataElementTag(0x00189322) // ExposureModulationTypeTag is the data element tag of ExposureModulationType ExposureModulationTypeTag = DataElementTag(0x00189323) // EstimatedDoseSavingTag is the data element tag of EstimatedDoseSaving EstimatedDoseSavingTag = DataElementTag(0x00189324) // CTXRayDetailsSequenceTag is the data element tag of CTXRayDetailsSequence CTXRayDetailsSequenceTag = DataElementTag(0x00189325) // CTPositionSequenceTag is the data element tag of CTPositionSequence CTPositionSequenceTag = DataElementTag(0x00189326) // TablePositionTag is the data element tag of TablePosition TablePositionTag = DataElementTag(0x00189327) // ExposureTimeInmsTag is the data element tag of ExposureTimeInms ExposureTimeInmsTag = DataElementTag(0x00189328) // CTImageFrameTypeSequenceTag is the data element tag of CTImageFrameTypeSequence CTImageFrameTypeSequenceTag = DataElementTag(0x00189329) // XRayTubeCurrentInmATag is the data element tag of XRayTubeCurrentInmA XRayTubeCurrentInmATag = DataElementTag(0x00189330) // ExposureInmAsTag is the data element tag of ExposureInmAs ExposureInmAsTag = DataElementTag(0x00189332) // ConstantVolumeFlagTag is the data element tag of ConstantVolumeFlag ConstantVolumeFlagTag = DataElementTag(0x00189333) // FluoroscopyFlagTag is the data element tag of FluoroscopyFlag FluoroscopyFlagTag = DataElementTag(0x00189334) // DistanceSourceToDataCollectionCenterTag is the data element tag of DistanceSourceToDataCollectionCenter DistanceSourceToDataCollectionCenterTag = DataElementTag(0x00189335) // ContrastBolusAgentNumberTag is the data element tag of ContrastBolusAgentNumber ContrastBolusAgentNumberTag = DataElementTag(0x00189337) // ContrastBolusIngredientCodeSequenceTag is the data element tag of ContrastBolusIngredientCodeSequence ContrastBolusIngredientCodeSequenceTag = DataElementTag(0x00189338) // ContrastAdministrationProfileSequenceTag is the data element tag of ContrastAdministrationProfileSequence ContrastAdministrationProfileSequenceTag = DataElementTag(0x00189340) // ContrastBolusUsageSequenceTag is the data element tag of ContrastBolusUsageSequence ContrastBolusUsageSequenceTag = DataElementTag(0x00189341) // ContrastBolusAgentAdministeredTag is the data element tag of ContrastBolusAgentAdministered ContrastBolusAgentAdministeredTag = DataElementTag(0x00189342) // ContrastBolusAgentDetectedTag is the data element tag of ContrastBolusAgentDetected ContrastBolusAgentDetectedTag = DataElementTag(0x00189343) // ContrastBolusAgentPhaseTag is the data element tag of ContrastBolusAgentPhase ContrastBolusAgentPhaseTag = DataElementTag(0x00189344) // CTDIvolTag is the data element tag of CTDIvol CTDIvolTag = DataElementTag(0x00189345) // CTDIPhantomTypeCodeSequenceTag is the data element tag of CTDIPhantomTypeCodeSequence CTDIPhantomTypeCodeSequenceTag = DataElementTag(0x00189346) // CalciumScoringMassFactorPatientTag is the data element tag of CalciumScoringMassFactorPatient CalciumScoringMassFactorPatientTag = DataElementTag(0x00189351) // CalciumScoringMassFactorDeviceTag is the data element tag of CalciumScoringMassFactorDevice CalciumScoringMassFactorDeviceTag = DataElementTag(0x00189352) // EnergyWeightingFactorTag is the data element tag of EnergyWeightingFactor EnergyWeightingFactorTag = DataElementTag(0x00189353) // CTAdditionalXRaySourceSequenceTag is the data element tag of CTAdditionalXRaySourceSequence CTAdditionalXRaySourceSequenceTag = DataElementTag(0x00189360) // MultienergyCTAcquisitionTag is the data element tag of MultienergyCTAcquisition MultienergyCTAcquisitionTag = DataElementTag(0x00189361) // MultienergyCTAcquisitionSequenceTag is the data element tag of MultienergyCTAcquisitionSequence MultienergyCTAcquisitionSequenceTag = DataElementTag(0x00189362) // MultienergyCTProcessingSequenceTag is the data element tag of MultienergyCTProcessingSequence MultienergyCTProcessingSequenceTag = DataElementTag(0x00189363) // MultienergyCTCharacteristicsSequenceTag is the data element tag of MultienergyCTCharacteristicsSequence MultienergyCTCharacteristicsSequenceTag = DataElementTag(0x00189364) // MultienergyCTXRaySourceSequenceTag is the data element tag of MultienergyCTXRaySourceSequence MultienergyCTXRaySourceSequenceTag = DataElementTag(0x00189365) // XRaySourceIndexTag is the data element tag of XRaySourceIndex XRaySourceIndexTag = DataElementTag(0x00189366) // XRaySourceIDTag is the data element tag of XRaySourceID XRaySourceIDTag = DataElementTag(0x00189367) // MultienergySourceTechniqueTag is the data element tag of MultienergySourceTechnique MultienergySourceTechniqueTag = DataElementTag(0x00189368) // SourceStartDateTimeTag is the data element tag of SourceStartDateTime SourceStartDateTimeTag = DataElementTag(0x00189369) // SourceEndDateTimeTag is the data element tag of SourceEndDateTime SourceEndDateTimeTag = DataElementTag(0x0018936A) // SwitchingPhaseNumberTag is the data element tag of SwitchingPhaseNumber SwitchingPhaseNumberTag = DataElementTag(0x0018936B) // SwitchingPhaseNominalDurationTag is the data element tag of SwitchingPhaseNominalDuration SwitchingPhaseNominalDurationTag = DataElementTag(0x0018936C) // SwitchingPhaseTransitionDurationTag is the data element tag of SwitchingPhaseTransitionDuration SwitchingPhaseTransitionDurationTag = DataElementTag(0x0018936D) // EffectiveBinEnergyTag is the data element tag of EffectiveBinEnergy EffectiveBinEnergyTag = DataElementTag(0x0018936E) // MultienergyCTXRayDetectorSequenceTag is the data element tag of MultienergyCTXRayDetectorSequence MultienergyCTXRayDetectorSequenceTag = DataElementTag(0x0018936F) // XRayDetectorIndexTag is the data element tag of XRayDetectorIndex XRayDetectorIndexTag = DataElementTag(0x00189370) // XRayDetectorIDTag is the data element tag of XRayDetectorID XRayDetectorIDTag = DataElementTag(0x00189371) // MultienergyDetectorTypeTag is the data element tag of MultienergyDetectorType MultienergyDetectorTypeTag = DataElementTag(0x00189372) // XRayDetectorLabelTag is the data element tag of XRayDetectorLabel XRayDetectorLabelTag = DataElementTag(0x00189373) // NominalMaxEnergyTag is the data element tag of NominalMaxEnergy NominalMaxEnergyTag = DataElementTag(0x00189374) // NominalMinEnergyTag is the data element tag of NominalMinEnergy NominalMinEnergyTag = DataElementTag(0x00189375) // ReferencedXRayDetectorIndexTag is the data element tag of ReferencedXRayDetectorIndex ReferencedXRayDetectorIndexTag = DataElementTag(0x00189376) // ReferencedXRaySourceIndexTag is the data element tag of ReferencedXRaySourceIndex ReferencedXRaySourceIndexTag = DataElementTag(0x00189377) // ReferencedPathIndexTag is the data element tag of ReferencedPathIndex ReferencedPathIndexTag = DataElementTag(0x00189378) // MultienergyCTPathSequenceTag is the data element tag of MultienergyCTPathSequence MultienergyCTPathSequenceTag = DataElementTag(0x00189379) // MultienergyCTPathIndexTag is the data element tag of MultienergyCTPathIndex MultienergyCTPathIndexTag = DataElementTag(0x0018937A) // MultienergyAcquisitionDescriptionTag is the data element tag of MultienergyAcquisitionDescription MultienergyAcquisitionDescriptionTag = DataElementTag(0x0018937B) // MonoenergeticEnergyEquivalentTag is the data element tag of MonoenergeticEnergyEquivalent MonoenergeticEnergyEquivalentTag = DataElementTag(0x0018937C) // MaterialCodeSequenceTag is the data element tag of MaterialCodeSequence MaterialCodeSequenceTag = DataElementTag(0x0018937D) // DecompositionMethodTag is the data element tag of DecompositionMethod DecompositionMethodTag = DataElementTag(0x0018937E) // DecompositionDescriptionTag is the data element tag of DecompositionDescription DecompositionDescriptionTag = DataElementTag(0x0018937F) // DecompositionAlgorithmIdentificationSequenceTag is the data element tag of DecompositionAlgorithmIdentificationSequence DecompositionAlgorithmIdentificationSequenceTag = DataElementTag(0x00189380) // DecompositionMaterialSequenceTag is the data element tag of DecompositionMaterialSequence DecompositionMaterialSequenceTag = DataElementTag(0x00189381) // MaterialAttenuationSequenceTag is the data element tag of MaterialAttenuationSequence MaterialAttenuationSequenceTag = DataElementTag(0x00189382) // PhotonEnergyTag is the data element tag of PhotonEnergy PhotonEnergyTag = DataElementTag(0x00189383) // XRayMassAttenuationCoefficientTag is the data element tag of XRayMassAttenuationCoefficient XRayMassAttenuationCoefficientTag = DataElementTag(0x00189384) // ProjectionPixelCalibrationSequenceTag is the data element tag of ProjectionPixelCalibrationSequence ProjectionPixelCalibrationSequenceTag = DataElementTag(0x00189401) // DistanceSourceToIsocenterTag is the data element tag of DistanceSourceToIsocenter DistanceSourceToIsocenterTag = DataElementTag(0x00189402) // DistanceObjectToTableTopTag is the data element tag of DistanceObjectToTableTop DistanceObjectToTableTopTag = DataElementTag(0x00189403) // ObjectPixelSpacingInCenterOfBeamTag is the data element tag of ObjectPixelSpacingInCenterOfBeam ObjectPixelSpacingInCenterOfBeamTag = DataElementTag(0x00189404) // PositionerPositionSequenceTag is the data element tag of PositionerPositionSequence PositionerPositionSequenceTag = DataElementTag(0x00189405) // TablePositionSequenceTag is the data element tag of TablePositionSequence TablePositionSequenceTag = DataElementTag(0x00189406) // CollimatorShapeSequenceTag is the data element tag of CollimatorShapeSequence CollimatorShapeSequenceTag = DataElementTag(0x00189407) // PlanesInAcquisitionTag is the data element tag of PlanesInAcquisition PlanesInAcquisitionTag = DataElementTag(0x00189410) // XAXRFFrameCharacteristicsSequenceTag is the data element tag of XAXRFFrameCharacteristicsSequence XAXRFFrameCharacteristicsSequenceTag = DataElementTag(0x00189412) // FrameAcquisitionSequenceTag is the data element tag of FrameAcquisitionSequence FrameAcquisitionSequenceTag = DataElementTag(0x00189417) // XRayReceptorTypeTag is the data element tag of XRayReceptorType XRayReceptorTypeTag = DataElementTag(0x00189420) // AcquisitionProtocolNameTag is the data element tag of AcquisitionProtocolName AcquisitionProtocolNameTag = DataElementTag(0x00189423) // AcquisitionProtocolDescriptionTag is the data element tag of AcquisitionProtocolDescription AcquisitionProtocolDescriptionTag = DataElementTag(0x00189424) // ContrastBolusIngredientOpaqueTag is the data element tag of ContrastBolusIngredientOpaque ContrastBolusIngredientOpaqueTag = DataElementTag(0x00189425) // DistanceReceptorPlaneToDetectorHousingTag is the data element tag of DistanceReceptorPlaneToDetectorHousing DistanceReceptorPlaneToDetectorHousingTag = DataElementTag(0x00189426) // IntensifierActiveShapeTag is the data element tag of IntensifierActiveShape IntensifierActiveShapeTag = DataElementTag(0x00189427) // IntensifierActiveDimensionsTag is the data element tag of IntensifierActiveDimensions IntensifierActiveDimensionsTag = DataElementTag(0x00189428) // PhysicalDetectorSizeTag is the data element tag of PhysicalDetectorSize PhysicalDetectorSizeTag = DataElementTag(0x00189429) // PositionOfIsocenterProjectionTag is the data element tag of PositionOfIsocenterProjection PositionOfIsocenterProjectionTag = DataElementTag(0x00189430) // FieldOfViewSequenceTag is the data element tag of FieldOfViewSequence FieldOfViewSequenceTag = DataElementTag(0x00189432) // FieldOfViewDescriptionTag is the data element tag of FieldOfViewDescription FieldOfViewDescriptionTag = DataElementTag(0x00189433) // ExposureControlSensingRegionsSequenceTag is the data element tag of ExposureControlSensingRegionsSequence ExposureControlSensingRegionsSequenceTag = DataElementTag(0x00189434) // ExposureControlSensingRegionShapeTag is the data element tag of ExposureControlSensingRegionShape ExposureControlSensingRegionShapeTag = DataElementTag(0x00189435) // ExposureControlSensingRegionLeftVerticalEdgeTag is the data element tag of ExposureControlSensingRegionLeftVerticalEdge ExposureControlSensingRegionLeftVerticalEdgeTag = DataElementTag(0x00189436) // ExposureControlSensingRegionRightVerticalEdgeTag is the data element tag of ExposureControlSensingRegionRightVerticalEdge ExposureControlSensingRegionRightVerticalEdgeTag = DataElementTag(0x00189437) // ExposureControlSensingRegionUpperHorizontalEdgeTag is the data element tag of ExposureControlSensingRegionUpperHorizontalEdge ExposureControlSensingRegionUpperHorizontalEdgeTag = DataElementTag(0x00189438) // ExposureControlSensingRegionLowerHorizontalEdgeTag is the data element tag of ExposureControlSensingRegionLowerHorizontalEdge ExposureControlSensingRegionLowerHorizontalEdgeTag = DataElementTag(0x00189439) // CenterOfCircularExposureControlSensingRegionTag is the data element tag of CenterOfCircularExposureControlSensingRegion CenterOfCircularExposureControlSensingRegionTag = DataElementTag(0x00189440) // RadiusOfCircularExposureControlSensingRegionTag is the data element tag of RadiusOfCircularExposureControlSensingRegion RadiusOfCircularExposureControlSensingRegionTag = DataElementTag(0x00189441) // VerticesOfThePolygonalExposureControlSensingRegionTag is the data element tag of VerticesOfThePolygonalExposureControlSensingRegion VerticesOfThePolygonalExposureControlSensingRegionTag = DataElementTag(0x00189442) // ColumnAngulationPatientTag is the data element tag of ColumnAngulationPatient ColumnAngulationPatientTag = DataElementTag(0x00189447) // BeamAngleTag is the data element tag of BeamAngle BeamAngleTag = DataElementTag(0x00189449) // FrameDetectorParametersSequenceTag is the data element tag of FrameDetectorParametersSequence FrameDetectorParametersSequenceTag = DataElementTag(0x00189451) // CalculatedAnatomyThicknessTag is the data element tag of CalculatedAnatomyThickness CalculatedAnatomyThicknessTag = DataElementTag(0x00189452) // CalibrationSequenceTag is the data element tag of CalibrationSequence CalibrationSequenceTag = DataElementTag(0x00189455) // ObjectThicknessSequenceTag is the data element tag of ObjectThicknessSequence ObjectThicknessSequenceTag = DataElementTag(0x00189456) // PlaneIdentificationTag is the data element tag of PlaneIdentification PlaneIdentificationTag = DataElementTag(0x00189457) // FieldOfViewDimensionsInFloatTag is the data element tag of FieldOfViewDimensionsInFloat FieldOfViewDimensionsInFloatTag = DataElementTag(0x00189461) // IsocenterReferenceSystemSequenceTag is the data element tag of IsocenterReferenceSystemSequence IsocenterReferenceSystemSequenceTag = DataElementTag(0x00189462) // PositionerIsocenterPrimaryAngleTag is the data element tag of PositionerIsocenterPrimaryAngle PositionerIsocenterPrimaryAngleTag = DataElementTag(0x00189463) // PositionerIsocenterSecondaryAngleTag is the data element tag of PositionerIsocenterSecondaryAngle PositionerIsocenterSecondaryAngleTag = DataElementTag(0x00189464) // PositionerIsocenterDetectorRotationAngleTag is the data element tag of PositionerIsocenterDetectorRotationAngle PositionerIsocenterDetectorRotationAngleTag = DataElementTag(0x00189465) // TableXPositionToIsocenterTag is the data element tag of TableXPositionToIsocenter TableXPositionToIsocenterTag = DataElementTag(0x00189466) // TableYPositionToIsocenterTag is the data element tag of TableYPositionToIsocenter TableYPositionToIsocenterTag = DataElementTag(0x00189467) // TableZPositionToIsocenterTag is the data element tag of TableZPositionToIsocenter TableZPositionToIsocenterTag = DataElementTag(0x00189468) // TableHorizontalRotationAngleTag is the data element tag of TableHorizontalRotationAngle TableHorizontalRotationAngleTag = DataElementTag(0x00189469) // TableHeadTiltAngleTag is the data element tag of TableHeadTiltAngle TableHeadTiltAngleTag = DataElementTag(0x00189470) // TableCradleTiltAngleTag is the data element tag of TableCradleTiltAngle TableCradleTiltAngleTag = DataElementTag(0x00189471) // FrameDisplayShutterSequenceTag is the data element tag of FrameDisplayShutterSequence FrameDisplayShutterSequenceTag = DataElementTag(0x00189472) // AcquiredImageAreaDoseProductTag is the data element tag of AcquiredImageAreaDoseProduct AcquiredImageAreaDoseProductTag = DataElementTag(0x00189473) // CArmPositionerTabletopRelationshipTag is the data element tag of CArmPositionerTabletopRelationship CArmPositionerTabletopRelationshipTag = DataElementTag(0x00189474) // XRayGeometrySequenceTag is the data element tag of XRayGeometrySequence XRayGeometrySequenceTag = DataElementTag(0x00189476) // IrradiationEventIdentificationSequenceTag is the data element tag of IrradiationEventIdentificationSequence IrradiationEventIdentificationSequenceTag = DataElementTag(0x00189477) // XRay3DFrameTypeSequenceTag is the data element tag of XRay3DFrameTypeSequence XRay3DFrameTypeSequenceTag = DataElementTag(0x00189504) // ContributingSourcesSequenceTag is the data element tag of ContributingSourcesSequence ContributingSourcesSequenceTag = DataElementTag(0x00189506) // XRay3DAcquisitionSequenceTag is the data element tag of XRay3DAcquisitionSequence XRay3DAcquisitionSequenceTag = DataElementTag(0x00189507) // PrimaryPositionerScanArcTag is the data element tag of PrimaryPositionerScanArc PrimaryPositionerScanArcTag = DataElementTag(0x00189508) // SecondaryPositionerScanArcTag is the data element tag of SecondaryPositionerScanArc SecondaryPositionerScanArcTag = DataElementTag(0x00189509) // PrimaryPositionerScanStartAngleTag is the data element tag of PrimaryPositionerScanStartAngle PrimaryPositionerScanStartAngleTag = DataElementTag(0x00189510) // SecondaryPositionerScanStartAngleTag is the data element tag of SecondaryPositionerScanStartAngle SecondaryPositionerScanStartAngleTag = DataElementTag(0x00189511) // PrimaryPositionerIncrementTag is the data element tag of PrimaryPositionerIncrement PrimaryPositionerIncrementTag = DataElementTag(0x00189514) // SecondaryPositionerIncrementTag is the data element tag of SecondaryPositionerIncrement SecondaryPositionerIncrementTag = DataElementTag(0x00189515) // StartAcquisitionDateTimeTag is the data element tag of StartAcquisitionDateTime StartAcquisitionDateTimeTag = DataElementTag(0x00189516) // EndAcquisitionDateTimeTag is the data element tag of EndAcquisitionDateTime EndAcquisitionDateTimeTag = DataElementTag(0x00189517) // PrimaryPositionerIncrementSignTag is the data element tag of PrimaryPositionerIncrementSign PrimaryPositionerIncrementSignTag = DataElementTag(0x00189518) // SecondaryPositionerIncrementSignTag is the data element tag of SecondaryPositionerIncrementSign SecondaryPositionerIncrementSignTag = DataElementTag(0x00189519) // ApplicationNameTag is the data element tag of ApplicationName ApplicationNameTag = DataElementTag(0x00189524) // ApplicationVersionTag is the data element tag of ApplicationVersion ApplicationVersionTag = DataElementTag(0x00189525) // ApplicationManufacturerTag is the data element tag of ApplicationManufacturer ApplicationManufacturerTag = DataElementTag(0x00189526) // AlgorithmTypeTag is the data element tag of AlgorithmType AlgorithmTypeTag = DataElementTag(0x00189527) // AlgorithmDescriptionTag is the data element tag of AlgorithmDescription AlgorithmDescriptionTag = DataElementTag(0x00189528) // XRay3DReconstructionSequenceTag is the data element tag of XRay3DReconstructionSequence XRay3DReconstructionSequenceTag = DataElementTag(0x00189530) // ReconstructionDescriptionTag is the data element tag of ReconstructionDescription ReconstructionDescriptionTag = DataElementTag(0x00189531) // PerProjectionAcquisitionSequenceTag is the data element tag of PerProjectionAcquisitionSequence PerProjectionAcquisitionSequenceTag = DataElementTag(0x00189538) // DetectorPositionSequenceTag is the data element tag of DetectorPositionSequence DetectorPositionSequenceTag = DataElementTag(0x00189541) // XRayAcquisitionDoseSequenceTag is the data element tag of XRayAcquisitionDoseSequence XRayAcquisitionDoseSequenceTag = DataElementTag(0x00189542) // XRaySourceIsocenterPrimaryAngleTag is the data element tag of XRaySourceIsocenterPrimaryAngle XRaySourceIsocenterPrimaryAngleTag = DataElementTag(0x00189543) // XRaySourceIsocenterSecondaryAngleTag is the data element tag of XRaySourceIsocenterSecondaryAngle XRaySourceIsocenterSecondaryAngleTag = DataElementTag(0x00189544) // BreastSupportIsocenterPrimaryAngleTag is the data element tag of BreastSupportIsocenterPrimaryAngle BreastSupportIsocenterPrimaryAngleTag = DataElementTag(0x00189545) // BreastSupportIsocenterSecondaryAngleTag is the data element tag of BreastSupportIsocenterSecondaryAngle BreastSupportIsocenterSecondaryAngleTag = DataElementTag(0x00189546) // BreastSupportXPositionToIsocenterTag is the data element tag of BreastSupportXPositionToIsocenter BreastSupportXPositionToIsocenterTag = DataElementTag(0x00189547) // BreastSupportYPositionToIsocenterTag is the data element tag of BreastSupportYPositionToIsocenter BreastSupportYPositionToIsocenterTag = DataElementTag(0x00189548) // BreastSupportZPositionToIsocenterTag is the data element tag of BreastSupportZPositionToIsocenter BreastSupportZPositionToIsocenterTag = DataElementTag(0x00189549) // DetectorIsocenterPrimaryAngleTag is the data element tag of DetectorIsocenterPrimaryAngle DetectorIsocenterPrimaryAngleTag = DataElementTag(0x00189550) // DetectorIsocenterSecondaryAngleTag is the data element tag of DetectorIsocenterSecondaryAngle DetectorIsocenterSecondaryAngleTag = DataElementTag(0x00189551) // DetectorXPositionToIsocenterTag is the data element tag of DetectorXPositionToIsocenter DetectorXPositionToIsocenterTag = DataElementTag(0x00189552) // DetectorYPositionToIsocenterTag is the data element tag of DetectorYPositionToIsocenter DetectorYPositionToIsocenterTag = DataElementTag(0x00189553) // DetectorZPositionToIsocenterTag is the data element tag of DetectorZPositionToIsocenter DetectorZPositionToIsocenterTag = DataElementTag(0x00189554) // XRayGridSequenceTag is the data element tag of XRayGridSequence XRayGridSequenceTag = DataElementTag(0x00189555) // XRayFilterSequenceTag is the data element tag of XRayFilterSequence XRayFilterSequenceTag = DataElementTag(0x00189556) // DetectorActiveAreaTLHCPositionTag is the data element tag of DetectorActiveAreaTLHCPosition DetectorActiveAreaTLHCPositionTag = DataElementTag(0x00189557) // DetectorActiveAreaOrientationTag is the data element tag of DetectorActiveAreaOrientation DetectorActiveAreaOrientationTag = DataElementTag(0x00189558) // PositionerPrimaryAngleDirectionTag is the data element tag of PositionerPrimaryAngleDirection PositionerPrimaryAngleDirectionTag = DataElementTag(0x00189559) // DiffusionBMatrixSequenceTag is the data element tag of DiffusionBMatrixSequence DiffusionBMatrixSequenceTag = DataElementTag(0x00189601) // DiffusionBValueXXTag is the data element tag of DiffusionBValueXX DiffusionBValueXXTag = DataElementTag(0x00189602) // DiffusionBValueXYTag is the data element tag of DiffusionBValueXY DiffusionBValueXYTag = DataElementTag(0x00189603) // DiffusionBValueXZTag is the data element tag of DiffusionBValueXZ DiffusionBValueXZTag = DataElementTag(0x00189604) // DiffusionBValueYYTag is the data element tag of DiffusionBValueYY DiffusionBValueYYTag = DataElementTag(0x00189605) // DiffusionBValueYZTag is the data element tag of DiffusionBValueYZ DiffusionBValueYZTag = DataElementTag(0x00189606) // DiffusionBValueZZTag is the data element tag of DiffusionBValueZZ DiffusionBValueZZTag = DataElementTag(0x00189607) // FunctionalMRSequenceTag is the data element tag of FunctionalMRSequence FunctionalMRSequenceTag = DataElementTag(0x00189621) // FunctionalSettlingPhaseFramesPresentTag is the data element tag of FunctionalSettlingPhaseFramesPresent FunctionalSettlingPhaseFramesPresentTag = DataElementTag(0x00189622) // FunctionalSyncPulseTag is the data element tag of FunctionalSyncPulse FunctionalSyncPulseTag = DataElementTag(0x00189623) // SettlingPhaseFrameTag is the data element tag of SettlingPhaseFrame SettlingPhaseFrameTag = DataElementTag(0x00189624) // DecayCorrectionDateTimeTag is the data element tag of DecayCorrectionDateTime DecayCorrectionDateTimeTag = DataElementTag(0x00189701) // StartDensityThresholdTag is the data element tag of StartDensityThreshold StartDensityThresholdTag = DataElementTag(0x00189715) // StartRelativeDensityDifferenceThresholdTag is the data element tag of StartRelativeDensityDifferenceThreshold StartRelativeDensityDifferenceThresholdTag = DataElementTag(0x00189716) // StartCardiacTriggerCountThresholdTag is the data element tag of StartCardiacTriggerCountThreshold StartCardiacTriggerCountThresholdTag = DataElementTag(0x00189717) // StartRespiratoryTriggerCountThresholdTag is the data element tag of StartRespiratoryTriggerCountThreshold StartRespiratoryTriggerCountThresholdTag = DataElementTag(0x00189718) // TerminationCountsThresholdTag is the data element tag of TerminationCountsThreshold TerminationCountsThresholdTag = DataElementTag(0x00189719) // TerminationDensityThresholdTag is the data element tag of TerminationDensityThreshold TerminationDensityThresholdTag = DataElementTag(0x00189720) // TerminationRelativeDensityThresholdTag is the data element tag of TerminationRelativeDensityThreshold TerminationRelativeDensityThresholdTag = DataElementTag(0x00189721) // TerminationTimeThresholdTag is the data element tag of TerminationTimeThreshold TerminationTimeThresholdTag = DataElementTag(0x00189722) // TerminationCardiacTriggerCountThresholdTag is the data element tag of TerminationCardiacTriggerCountThreshold TerminationCardiacTriggerCountThresholdTag = DataElementTag(0x00189723) // TerminationRespiratoryTriggerCountThresholdTag is the data element tag of TerminationRespiratoryTriggerCountThreshold TerminationRespiratoryTriggerCountThresholdTag = DataElementTag(0x00189724) // DetectorGeometryTag is the data element tag of DetectorGeometry DetectorGeometryTag = DataElementTag(0x00189725) // TransverseDetectorSeparationTag is the data element tag of TransverseDetectorSeparation TransverseDetectorSeparationTag = DataElementTag(0x00189726) // AxialDetectorDimensionTag is the data element tag of AxialDetectorDimension AxialDetectorDimensionTag = DataElementTag(0x00189727) // RadiopharmaceuticalAgentNumberTag is the data element tag of RadiopharmaceuticalAgentNumber RadiopharmaceuticalAgentNumberTag = DataElementTag(0x00189729) // PETFrameAcquisitionSequenceTag is the data element tag of PETFrameAcquisitionSequence PETFrameAcquisitionSequenceTag = DataElementTag(0x00189732) // PETDetectorMotionDetailsSequenceTag is the data element tag of PETDetectorMotionDetailsSequence PETDetectorMotionDetailsSequenceTag = DataElementTag(0x00189733) // PETTableDynamicsSequenceTag is the data element tag of PETTableDynamicsSequence PETTableDynamicsSequenceTag = DataElementTag(0x00189734) // PETPositionSequenceTag is the data element tag of PETPositionSequence PETPositionSequenceTag = DataElementTag(0x00189735) // PETFrameCorrectionFactorsSequenceTag is the data element tag of PETFrameCorrectionFactorsSequence PETFrameCorrectionFactorsSequenceTag = DataElementTag(0x00189736) // RadiopharmaceuticalUsageSequenceTag is the data element tag of RadiopharmaceuticalUsageSequence RadiopharmaceuticalUsageSequenceTag = DataElementTag(0x00189737) // AttenuationCorrectionSourceTag is the data element tag of AttenuationCorrectionSource AttenuationCorrectionSourceTag = DataElementTag(0x00189738) // NumberOfIterationsTag is the data element tag of NumberOfIterations NumberOfIterationsTag = DataElementTag(0x00189739) // NumberOfSubsetsTag is the data element tag of NumberOfSubsets NumberOfSubsetsTag = DataElementTag(0x00189740) // PETReconstructionSequenceTag is the data element tag of PETReconstructionSequence PETReconstructionSequenceTag = DataElementTag(0x00189749) // PETFrameTypeSequenceTag is the data element tag of PETFrameTypeSequence PETFrameTypeSequenceTag = DataElementTag(0x00189751) // TimeOfFlightInformationUsedTag is the data element tag of TimeOfFlightInformationUsed TimeOfFlightInformationUsedTag = DataElementTag(0x00189755) // ReconstructionTypeTag is the data element tag of ReconstructionType ReconstructionTypeTag = DataElementTag(0x00189756) // DecayCorrectedTag is the data element tag of DecayCorrected DecayCorrectedTag = DataElementTag(0x00189758) // AttenuationCorrectedTag is the data element tag of AttenuationCorrected AttenuationCorrectedTag = DataElementTag(0x00189759) // ScatterCorrectedTag is the data element tag of ScatterCorrected ScatterCorrectedTag = DataElementTag(0x00189760) // DeadTimeCorrectedTag is the data element tag of DeadTimeCorrected DeadTimeCorrectedTag = DataElementTag(0x00189761) // GantryMotionCorrectedTag is the data element tag of GantryMotionCorrected GantryMotionCorrectedTag = DataElementTag(0x00189762) // PatientMotionCorrectedTag is the data element tag of PatientMotionCorrected PatientMotionCorrectedTag = DataElementTag(0x00189763) // CountLossNormalizationCorrectedTag is the data element tag of CountLossNormalizationCorrected CountLossNormalizationCorrectedTag = DataElementTag(0x00189764) // RandomsCorrectedTag is the data element tag of RandomsCorrected RandomsCorrectedTag = DataElementTag(0x00189765) // NonUniformRadialSamplingCorrectedTag is the data element tag of NonUniformRadialSamplingCorrected NonUniformRadialSamplingCorrectedTag = DataElementTag(0x00189766) // SensitivityCalibratedTag is the data element tag of SensitivityCalibrated SensitivityCalibratedTag = DataElementTag(0x00189767) // DetectorNormalizationCorrectionTag is the data element tag of DetectorNormalizationCorrection DetectorNormalizationCorrectionTag = DataElementTag(0x00189768) // IterativeReconstructionMethodTag is the data element tag of IterativeReconstructionMethod IterativeReconstructionMethodTag = DataElementTag(0x00189769) // AttenuationCorrectionTemporalRelationshipTag is the data element tag of AttenuationCorrectionTemporalRelationship AttenuationCorrectionTemporalRelationshipTag = DataElementTag(0x00189770) // PatientPhysiologicalStateSequenceTag is the data element tag of PatientPhysiologicalStateSequence PatientPhysiologicalStateSequenceTag = DataElementTag(0x00189771) // PatientPhysiologicalStateCodeSequenceTag is the data element tag of PatientPhysiologicalStateCodeSequence PatientPhysiologicalStateCodeSequenceTag = DataElementTag(0x00189772) // DepthsOfFocusTag is the data element tag of DepthsOfFocus DepthsOfFocusTag = DataElementTag(0x00189801) // ExcludedIntervalsSequenceTag is the data element tag of ExcludedIntervalsSequence ExcludedIntervalsSequenceTag = DataElementTag(0x00189803) // ExclusionStartDateTimeTag is the data element tag of ExclusionStartDateTime ExclusionStartDateTimeTag = DataElementTag(0x00189804) // ExclusionDurationTag is the data element tag of ExclusionDuration ExclusionDurationTag = DataElementTag(0x00189805) // USImageDescriptionSequenceTag is the data element tag of USImageDescriptionSequence USImageDescriptionSequenceTag = DataElementTag(0x00189806) // ImageDataTypeSequenceTag is the data element tag of ImageDataTypeSequence ImageDataTypeSequenceTag = DataElementTag(0x00189807) // DataTypeTag is the data element tag of DataType DataTypeTag = DataElementTag(0x00189808) // TransducerScanPatternCodeSequenceTag is the data element tag of TransducerScanPatternCodeSequence TransducerScanPatternCodeSequenceTag = DataElementTag(0x00189809) // AliasedDataTypeTag is the data element tag of AliasedDataType AliasedDataTypeTag = DataElementTag(0x0018980B) // PositionMeasuringDeviceUsedTag is the data element tag of PositionMeasuringDeviceUsed PositionMeasuringDeviceUsedTag = DataElementTag(0x0018980C) // TransducerGeometryCodeSequenceTag is the data element tag of TransducerGeometryCodeSequence TransducerGeometryCodeSequenceTag = DataElementTag(0x0018980D) // TransducerBeamSteeringCodeSequenceTag is the data element tag of TransducerBeamSteeringCodeSequence TransducerBeamSteeringCodeSequenceTag = DataElementTag(0x0018980E) // TransducerApplicationCodeSequenceTag is the data element tag of TransducerApplicationCodeSequence TransducerApplicationCodeSequenceTag = DataElementTag(0x0018980F) // ZeroVelocityPixelValueTag is the data element tag of ZeroVelocityPixelValue ZeroVelocityPixelValueTag = DataElementTag(0x00189810) // ReferenceLocationLabelTag is the data element tag of ReferenceLocationLabel ReferenceLocationLabelTag = DataElementTag(0x00189900) // ReferenceLocationDescriptionTag is the data element tag of ReferenceLocationDescription ReferenceLocationDescriptionTag = DataElementTag(0x00189901) // ReferenceBasisCodeSequenceTag is the data element tag of ReferenceBasisCodeSequence ReferenceBasisCodeSequenceTag = DataElementTag(0x00189902) // ReferenceGeometryCodeSequenceTag is the data element tag of ReferenceGeometryCodeSequence ReferenceGeometryCodeSequenceTag = DataElementTag(0x00189903) // OffsetDistanceTag is the data element tag of OffsetDistance OffsetDistanceTag = DataElementTag(0x00189904) // OffsetDirectionTag is the data element tag of OffsetDirection OffsetDirectionTag = DataElementTag(0x00189905) // PotentialScheduledProtocolCodeSequenceTag is the data element tag of PotentialScheduledProtocolCodeSequence PotentialScheduledProtocolCodeSequenceTag = DataElementTag(0x00189906) // PotentialRequestedProcedureCodeSequenceTag is the data element tag of PotentialRequestedProcedureCodeSequence PotentialRequestedProcedureCodeSequenceTag = DataElementTag(0x00189907) // PotentialReasonsForProcedureTag is the data element tag of PotentialReasonsForProcedure PotentialReasonsForProcedureTag = DataElementTag(0x00189908) // PotentialReasonsForProcedureCodeSequenceTag is the data element tag of PotentialReasonsForProcedureCodeSequence PotentialReasonsForProcedureCodeSequenceTag = DataElementTag(0x00189909) // PotentialDiagnosticTasksTag is the data element tag of PotentialDiagnosticTasks PotentialDiagnosticTasksTag = DataElementTag(0x0018990A) // ContraindicationsCodeSequenceTag is the data element tag of ContraindicationsCodeSequence ContraindicationsCodeSequenceTag = DataElementTag(0x0018990B) // ReferencedDefinedProtocolSequenceTag is the data element tag of ReferencedDefinedProtocolSequence ReferencedDefinedProtocolSequenceTag = DataElementTag(0x0018990C) // ReferencedPerformedProtocolSequenceTag is the data element tag of ReferencedPerformedProtocolSequence ReferencedPerformedProtocolSequenceTag = DataElementTag(0x0018990D) // PredecessorProtocolSequenceTag is the data element tag of PredecessorProtocolSequence PredecessorProtocolSequenceTag = DataElementTag(0x0018990E) // ProtocolPlanningInformationTag is the data element tag of ProtocolPlanningInformation ProtocolPlanningInformationTag = DataElementTag(0x0018990F) // ProtocolDesignRationaleTag is the data element tag of ProtocolDesignRationale ProtocolDesignRationaleTag = DataElementTag(0x00189910) // PatientSpecificationSequenceTag is the data element tag of PatientSpecificationSequence PatientSpecificationSequenceTag = DataElementTag(0x00189911) // ModelSpecificationSequenceTag is the data element tag of ModelSpecificationSequence ModelSpecificationSequenceTag = DataElementTag(0x00189912) // ParametersSpecificationSequenceTag is the data element tag of ParametersSpecificationSequence ParametersSpecificationSequenceTag = DataElementTag(0x00189913) // InstructionSequenceTag is the data element tag of InstructionSequence InstructionSequenceTag = DataElementTag(0x00189914) // InstructionIndexTag is the data element tag of InstructionIndex InstructionIndexTag = DataElementTag(0x00189915) // InstructionTextTag is the data element tag of InstructionText InstructionTextTag = DataElementTag(0x00189916) // InstructionDescriptionTag is the data element tag of InstructionDescription InstructionDescriptionTag = DataElementTag(0x00189917) // InstructionPerformedFlagTag is the data element tag of InstructionPerformedFlag InstructionPerformedFlagTag = DataElementTag(0x00189918) // InstructionPerformedDateTimeTag is the data element tag of InstructionPerformedDateTime InstructionPerformedDateTimeTag = DataElementTag(0x00189919) // InstructionPerformanceCommentTag is the data element tag of InstructionPerformanceComment InstructionPerformanceCommentTag = DataElementTag(0x0018991A) // PatientPositioningInstructionSequenceTag is the data element tag of PatientPositioningInstructionSequence PatientPositioningInstructionSequenceTag = DataElementTag(0x0018991B) // PositioningMethodCodeSequenceTag is the data element tag of PositioningMethodCodeSequence PositioningMethodCodeSequenceTag = DataElementTag(0x0018991C) // PositioningLandmarkSequenceTag is the data element tag of PositioningLandmarkSequence PositioningLandmarkSequenceTag = DataElementTag(0x0018991D) // TargetFrameOfReferenceUIDTag is the data element tag of TargetFrameOfReferenceUID TargetFrameOfReferenceUIDTag = DataElementTag(0x0018991E) // AcquisitionProtocolElementSpecificationSequenceTag is the data element tag of AcquisitionProtocolElementSpecificationSequence AcquisitionProtocolElementSpecificationSequenceTag = DataElementTag(0x0018991F) // AcquisitionProtocolElementSequenceTag is the data element tag of AcquisitionProtocolElementSequence AcquisitionProtocolElementSequenceTag = DataElementTag(0x00189920) // ProtocolElementNumberTag is the data element tag of ProtocolElementNumber ProtocolElementNumberTag = DataElementTag(0x00189921) // ProtocolElementNameTag is the data element tag of ProtocolElementName ProtocolElementNameTag = DataElementTag(0x00189922) // ProtocolElementCharacteristicsSummaryTag is the data element tag of ProtocolElementCharacteristicsSummary ProtocolElementCharacteristicsSummaryTag = DataElementTag(0x00189923) // ProtocolElementPurposeTag is the data element tag of ProtocolElementPurpose ProtocolElementPurposeTag = DataElementTag(0x00189924) // AcquisitionMotionTag is the data element tag of AcquisitionMotion AcquisitionMotionTag = DataElementTag(0x00189930) // AcquisitionStartLocationSequenceTag is the data element tag of AcquisitionStartLocationSequence AcquisitionStartLocationSequenceTag = DataElementTag(0x00189931) // AcquisitionEndLocationSequenceTag is the data element tag of AcquisitionEndLocationSequence AcquisitionEndLocationSequenceTag = DataElementTag(0x00189932) // ReconstructionProtocolElementSpecificationSequenceTag is the data element tag of ReconstructionProtocolElementSpecificationSequence ReconstructionProtocolElementSpecificationSequenceTag = DataElementTag(0x00189933) // ReconstructionProtocolElementSequenceTag is the data element tag of ReconstructionProtocolElementSequence ReconstructionProtocolElementSequenceTag = DataElementTag(0x00189934) // StorageProtocolElementSpecificationSequenceTag is the data element tag of StorageProtocolElementSpecificationSequence StorageProtocolElementSpecificationSequenceTag = DataElementTag(0x00189935) // StorageProtocolElementSequenceTag is the data element tag of StorageProtocolElementSequence StorageProtocolElementSequenceTag = DataElementTag(0x00189936) // RequestedSeriesDescriptionTag is the data element tag of RequestedSeriesDescription RequestedSeriesDescriptionTag = DataElementTag(0x00189937) // SourceAcquisitionProtocolElementNumberTag is the data element tag of SourceAcquisitionProtocolElementNumber SourceAcquisitionProtocolElementNumberTag = DataElementTag(0x00189938) // SourceAcquisitionBeamNumberTag is the data element tag of SourceAcquisitionBeamNumber SourceAcquisitionBeamNumberTag = DataElementTag(0x00189939) // SourceReconstructionProtocolElementNumberTag is the data element tag of SourceReconstructionProtocolElementNumber SourceReconstructionProtocolElementNumberTag = DataElementTag(0x0018993A) // ReconstructionStartLocationSequenceTag is the data element tag of ReconstructionStartLocationSequence ReconstructionStartLocationSequenceTag = DataElementTag(0x0018993B) // ReconstructionEndLocationSequenceTag is the data element tag of ReconstructionEndLocationSequence ReconstructionEndLocationSequenceTag = DataElementTag(0x0018993C) // ReconstructionAlgorithmSequenceTag is the data element tag of ReconstructionAlgorithmSequence ReconstructionAlgorithmSequenceTag = DataElementTag(0x0018993D) // ReconstructionTargetCenterLocationSequenceTag is the data element tag of ReconstructionTargetCenterLocationSequence ReconstructionTargetCenterLocationSequenceTag = DataElementTag(0x0018993E) // ImageFilterDescriptionTag is the data element tag of ImageFilterDescription ImageFilterDescriptionTag = DataElementTag(0x00189941) // CTDIvolNotificationTriggerTag is the data element tag of CTDIvolNotificationTrigger CTDIvolNotificationTriggerTag = DataElementTag(0x00189942) // DLPNotificationTriggerTag is the data element tag of DLPNotificationTrigger DLPNotificationTriggerTag = DataElementTag(0x00189943) // AutoKVPSelectionTypeTag is the data element tag of AutoKVPSelectionType AutoKVPSelectionTypeTag = DataElementTag(0x00189944) // AutoKVPUpperBoundTag is the data element tag of AutoKVPUpperBound AutoKVPUpperBoundTag = DataElementTag(0x00189945) // AutoKVPLowerBoundTag is the data element tag of AutoKVPLowerBound AutoKVPLowerBoundTag = DataElementTag(0x00189946) // ProtocolDefinedPatientPositionTag is the data element tag of ProtocolDefinedPatientPosition ProtocolDefinedPatientPositionTag = DataElementTag(0x00189947) // ContributingEquipmentSequenceTag is the data element tag of ContributingEquipmentSequence ContributingEquipmentSequenceTag = DataElementTag(0x0018A001) // ContributionDateTimeTag is the data element tag of ContributionDateTime ContributionDateTimeTag = DataElementTag(0x0018A002) // ContributionDescriptionTag is the data element tag of ContributionDescription ContributionDescriptionTag = DataElementTag(0x0018A003) // StudyInstanceUIDTag is the data element tag of StudyInstanceUID StudyInstanceUIDTag = DataElementTag(0x0020000D) // SeriesInstanceUIDTag is the data element tag of SeriesInstanceUID SeriesInstanceUIDTag = DataElementTag(0x0020000E) // StudyIDTag is the data element tag of StudyID StudyIDTag = DataElementTag(0x00200010) // SeriesNumberTag is the data element tag of SeriesNumber SeriesNumberTag = DataElementTag(0x00200011) // AcquisitionNumberTag is the data element tag of AcquisitionNumber AcquisitionNumberTag = DataElementTag(0x00200012) // InstanceNumberTag is the data element tag of InstanceNumber InstanceNumberTag = DataElementTag(0x00200013) // IsotopeNumberTag is the data element tag of IsotopeNumber IsotopeNumberTag = DataElementTag(0x00200014) // PhaseNumberTag is the data element tag of PhaseNumber PhaseNumberTag = DataElementTag(0x00200015) // IntervalNumberTag is the data element tag of IntervalNumber IntervalNumberTag = DataElementTag(0x00200016) // TimeSlotNumberTag is the data element tag of TimeSlotNumber TimeSlotNumberTag = DataElementTag(0x00200017) // AngleNumberTag is the data element tag of AngleNumber AngleNumberTag = DataElementTag(0x00200018) // ItemNumberTag is the data element tag of ItemNumber ItemNumberTag = DataElementTag(0x00200019) // PatientOrientationTag is the data element tag of PatientOrientation PatientOrientationTag = DataElementTag(0x00200020) // OverlayNumberTag is the data element tag of OverlayNumber OverlayNumberTag = DataElementTag(0x00200022) // CurveNumberTag is the data element tag of CurveNumber CurveNumberTag = DataElementTag(0x00200024) // LUTNumberTag is the data element tag of LUTNumber LUTNumberTag = DataElementTag(0x00200026) // ImagePositionTag is the data element tag of ImagePosition ImagePositionTag = DataElementTag(0x00200030) // ImagePositionPatientTag is the data element tag of ImagePositionPatient ImagePositionPatientTag = DataElementTag(0x00200032) // ImageOrientationTag is the data element tag of ImageOrientation ImageOrientationTag = DataElementTag(0x00200035) // ImageOrientationPatientTag is the data element tag of ImageOrientationPatient ImageOrientationPatientTag = DataElementTag(0x00200037) // LocationTag is the data element tag of Location LocationTag = DataElementTag(0x00200050) // FrameOfReferenceUIDTag is the data element tag of FrameOfReferenceUID FrameOfReferenceUIDTag = DataElementTag(0x00200052) // LateralityTag is the data element tag of Laterality LateralityTag = DataElementTag(0x00200060) // ImageLateralityTag is the data element tag of ImageLaterality ImageLateralityTag = DataElementTag(0x00200062) // ImageGeometryTypeTag is the data element tag of ImageGeometryType ImageGeometryTypeTag = DataElementTag(0x00200070) // MaskingImageTag is the data element tag of MaskingImage MaskingImageTag = DataElementTag(0x00200080) // ReportNumberTag is the data element tag of ReportNumber ReportNumberTag = DataElementTag(0x002000AA) // TemporalPositionIdentifierTag is the data element tag of TemporalPositionIdentifier TemporalPositionIdentifierTag = DataElementTag(0x00200100) // NumberOfTemporalPositionsTag is the data element tag of NumberOfTemporalPositions NumberOfTemporalPositionsTag = DataElementTag(0x00200105) // TemporalResolutionTag is the data element tag of TemporalResolution TemporalResolutionTag = DataElementTag(0x00200110) // SynchronizationFrameOfReferenceUIDTag is the data element tag of SynchronizationFrameOfReferenceUID SynchronizationFrameOfReferenceUIDTag = DataElementTag(0x00200200) // SOPInstanceUIDOfConcatenationSourceTag is the data element tag of SOPInstanceUIDOfConcatenationSource SOPInstanceUIDOfConcatenationSourceTag = DataElementTag(0x00200242) // SeriesInStudyTag is the data element tag of SeriesInStudy SeriesInStudyTag = DataElementTag(0x00201000) // AcquisitionsInSeriesTag is the data element tag of AcquisitionsInSeries AcquisitionsInSeriesTag = DataElementTag(0x00201001) // ImagesInAcquisitionTag is the data element tag of ImagesInAcquisition ImagesInAcquisitionTag = DataElementTag(0x00201002) // ImagesInSeriesTag is the data element tag of ImagesInSeries ImagesInSeriesTag = DataElementTag(0x00201003) // AcquisitionsInStudyTag is the data element tag of AcquisitionsInStudy AcquisitionsInStudyTag = DataElementTag(0x00201004) // ImagesInStudyTag is the data element tag of ImagesInStudy ImagesInStudyTag = DataElementTag(0x00201005) // ReferenceTag is the data element tag of Reference ReferenceTag = DataElementTag(0x00201020) // TargetPositionReferenceIndicatorTag is the data element tag of TargetPositionReferenceIndicator TargetPositionReferenceIndicatorTag = DataElementTag(0x0020103F) // PositionReferenceIndicatorTag is the data element tag of PositionReferenceIndicator PositionReferenceIndicatorTag = DataElementTag(0x00201040) // SliceLocationTag is the data element tag of SliceLocation SliceLocationTag = DataElementTag(0x00201041) // OtherStudyNumbersTag is the data element tag of OtherStudyNumbers OtherStudyNumbersTag = DataElementTag(0x00201070) // NumberOfPatientRelatedStudiesTag is the data element tag of NumberOfPatientRelatedStudies NumberOfPatientRelatedStudiesTag = DataElementTag(0x00201200) // NumberOfPatientRelatedSeriesTag is the data element tag of NumberOfPatientRelatedSeries NumberOfPatientRelatedSeriesTag = DataElementTag(0x00201202) // NumberOfPatientRelatedInstancesTag is the data element tag of NumberOfPatientRelatedInstances NumberOfPatientRelatedInstancesTag = DataElementTag(0x00201204) // NumberOfStudyRelatedSeriesTag is the data element tag of NumberOfStudyRelatedSeries NumberOfStudyRelatedSeriesTag = DataElementTag(0x00201206) // NumberOfStudyRelatedInstancesTag is the data element tag of NumberOfStudyRelatedInstances NumberOfStudyRelatedInstancesTag = DataElementTag(0x00201208) // NumberOfSeriesRelatedInstancesTag is the data element tag of NumberOfSeriesRelatedInstances NumberOfSeriesRelatedInstancesTag = DataElementTag(0x00201209) // SourceImageIDsTag is the data element tag of SourceImageIDs SourceImageIDsTag = DataElementTag(0x00203100) // ModifyingDeviceIDTag is the data element tag of ModifyingDeviceID ModifyingDeviceIDTag = DataElementTag(0x00203401) // ModifiedImageIDTag is the data element tag of ModifiedImageID ModifiedImageIDTag = DataElementTag(0x00203402) // ModifiedImageDateTag is the data element tag of ModifiedImageDate ModifiedImageDateTag = DataElementTag(0x00203403) // ModifyingDeviceManufacturerTag is the data element tag of ModifyingDeviceManufacturer ModifyingDeviceManufacturerTag = DataElementTag(0x00203404) // ModifiedImageTimeTag is the data element tag of ModifiedImageTime ModifiedImageTimeTag = DataElementTag(0x00203405) // ModifiedImageDescriptionTag is the data element tag of ModifiedImageDescription ModifiedImageDescriptionTag = DataElementTag(0x00203406) // ImageCommentsTag is the data element tag of ImageComments ImageCommentsTag = DataElementTag(0x00204000) // OriginalImageIdentificationTag is the data element tag of OriginalImageIdentification OriginalImageIdentificationTag = DataElementTag(0x00205000) // OriginalImageIdentificationNomenclatureTag is the data element tag of OriginalImageIdentificationNomenclature OriginalImageIdentificationNomenclatureTag = DataElementTag(0x00205002) // StackIDTag is the data element tag of StackID StackIDTag = DataElementTag(0x00209056) // InStackPositionNumberTag is the data element tag of InStackPositionNumber InStackPositionNumberTag = DataElementTag(0x00209057) // FrameAnatomySequenceTag is the data element tag of FrameAnatomySequence FrameAnatomySequenceTag = DataElementTag(0x00209071) // FrameLateralityTag is the data element tag of FrameLaterality FrameLateralityTag = DataElementTag(0x00209072) // FrameContentSequenceTag is the data element tag of FrameContentSequence FrameContentSequenceTag = DataElementTag(0x00209111) // PlanePositionSequenceTag is the data element tag of PlanePositionSequence PlanePositionSequenceTag = DataElementTag(0x00209113) // PlaneOrientationSequenceTag is the data element tag of PlaneOrientationSequence PlaneOrientationSequenceTag = DataElementTag(0x00209116) // TemporalPositionIndexTag is the data element tag of TemporalPositionIndex TemporalPositionIndexTag = DataElementTag(0x00209128) // NominalCardiacTriggerDelayTimeTag is the data element tag of NominalCardiacTriggerDelayTime NominalCardiacTriggerDelayTimeTag = DataElementTag(0x00209153) // NominalCardiacTriggerTimePriorToRPeakTag is the data element tag of NominalCardiacTriggerTimePriorToRPeak NominalCardiacTriggerTimePriorToRPeakTag = DataElementTag(0x00209154) // ActualCardiacTriggerTimePriorToRPeakTag is the data element tag of ActualCardiacTriggerTimePriorToRPeak ActualCardiacTriggerTimePriorToRPeakTag = DataElementTag(0x00209155) // FrameAcquisitionNumberTag is the data element tag of FrameAcquisitionNumber FrameAcquisitionNumberTag = DataElementTag(0x00209156) // DimensionIndexValuesTag is the data element tag of DimensionIndexValues DimensionIndexValuesTag = DataElementTag(0x00209157) // FrameCommentsTag is the data element tag of FrameComments FrameCommentsTag = DataElementTag(0x00209158) // ConcatenationUIDTag is the data element tag of ConcatenationUID ConcatenationUIDTag = DataElementTag(0x00209161) // InConcatenationNumberTag is the data element tag of InConcatenationNumber InConcatenationNumberTag = DataElementTag(0x00209162) // InConcatenationTotalNumberTag is the data element tag of InConcatenationTotalNumber InConcatenationTotalNumberTag = DataElementTag(0x00209163) // DimensionOrganizationUIDTag is the data element tag of DimensionOrganizationUID DimensionOrganizationUIDTag = DataElementTag(0x00209164) // DimensionIndexPointerTag is the data element tag of DimensionIndexPointer DimensionIndexPointerTag = DataElementTag(0x00209165) // FunctionalGroupPointerTag is the data element tag of FunctionalGroupPointer FunctionalGroupPointerTag = DataElementTag(0x00209167) UnassignedSharedConvertedAttributesSequenceTag = DataElementTag(0x00209170) // UnassignedPerFrameConvertedAttributesSequenceTag is the data element tag of UnassignedPerFrameConvertedAttributesSequence UnassignedPerFrameConvertedAttributesSequenceTag = DataElementTag(0x00209171) // ConversionSourceAttributesSequenceTag is the data element tag of ConversionSourceAttributesSequence ConversionSourceAttributesSequenceTag = DataElementTag(0x00209172) // DimensionIndexPrivateCreatorTag is the data element tag of DimensionIndexPrivateCreator DimensionIndexPrivateCreatorTag = DataElementTag(0x00209213) // DimensionOrganizationSequenceTag is the data element tag of DimensionOrganizationSequence DimensionOrganizationSequenceTag = DataElementTag(0x00209221) // DimensionIndexSequenceTag is the data element tag of DimensionIndexSequence DimensionIndexSequenceTag = DataElementTag(0x00209222) // ConcatenationFrameOffsetNumberTag is the data element tag of ConcatenationFrameOffsetNumber ConcatenationFrameOffsetNumberTag = DataElementTag(0x00209228) // FunctionalGroupPrivateCreatorTag is the data element tag of FunctionalGroupPrivateCreator FunctionalGroupPrivateCreatorTag = DataElementTag(0x00209238) // NominalPercentageOfCardiacPhaseTag is the data element tag of NominalPercentageOfCardiacPhase NominalPercentageOfCardiacPhaseTag = DataElementTag(0x00209241) // NominalPercentageOfRespiratoryPhaseTag is the data element tag of NominalPercentageOfRespiratoryPhase NominalPercentageOfRespiratoryPhaseTag = DataElementTag(0x00209245) // StartingRespiratoryAmplitudeTag is the data element tag of StartingRespiratoryAmplitude StartingRespiratoryAmplitudeTag = DataElementTag(0x00209246) // StartingRespiratoryPhaseTag is the data element tag of StartingRespiratoryPhase StartingRespiratoryPhaseTag = DataElementTag(0x00209247) // EndingRespiratoryAmplitudeTag is the data element tag of EndingRespiratoryAmplitude EndingRespiratoryAmplitudeTag = DataElementTag(0x00209248) // EndingRespiratoryPhaseTag is the data element tag of EndingRespiratoryPhase EndingRespiratoryPhaseTag = DataElementTag(0x00209249) // RespiratoryTriggerTypeTag is the data element tag of RespiratoryTriggerType RespiratoryTriggerTypeTag = DataElementTag(0x00209250) // RRIntervalTimeNominalTag is the data element tag of RRIntervalTimeNominal RRIntervalTimeNominalTag = DataElementTag(0x00209251) // ActualCardiacTriggerDelayTimeTag is the data element tag of ActualCardiacTriggerDelayTime ActualCardiacTriggerDelayTimeTag = DataElementTag(0x00209252) // RespiratorySynchronizationSequenceTag is the data element tag of RespiratorySynchronizationSequence RespiratorySynchronizationSequenceTag = DataElementTag(0x00209253) // RespiratoryIntervalTimeTag is the data element tag of RespiratoryIntervalTime RespiratoryIntervalTimeTag = DataElementTag(0x00209254) // NominalRespiratoryTriggerDelayTimeTag is the data element tag of NominalRespiratoryTriggerDelayTime NominalRespiratoryTriggerDelayTimeTag = DataElementTag(0x00209255) // RespiratoryTriggerDelayThresholdTag is the data element tag of RespiratoryTriggerDelayThreshold RespiratoryTriggerDelayThresholdTag = DataElementTag(0x00209256) // ActualRespiratoryTriggerDelayTimeTag is the data element tag of ActualRespiratoryTriggerDelayTime ActualRespiratoryTriggerDelayTimeTag = DataElementTag(0x00209257) // ImagePositionVolumeTag is the data element tag of ImagePositionVolume ImagePositionVolumeTag = DataElementTag(0x00209301) // ImageOrientationVolumeTag is the data element tag of ImageOrientationVolume ImageOrientationVolumeTag = DataElementTag(0x00209302) // UltrasoundAcquisitionGeometryTag is the data element tag of UltrasoundAcquisitionGeometry UltrasoundAcquisitionGeometryTag = DataElementTag(0x00209307) // ApexPositionTag is the data element tag of ApexPosition ApexPositionTag = DataElementTag(0x00209308) // VolumeToTransducerMappingMatrixTag is the data element tag of VolumeToTransducerMappingMatrix VolumeToTransducerMappingMatrixTag = DataElementTag(0x00209309) // VolumeToTableMappingMatrixTag is the data element tag of VolumeToTableMappingMatrix VolumeToTableMappingMatrixTag = DataElementTag(0x0020930A) // VolumeToTransducerRelationshipTag is the data element tag of VolumeToTransducerRelationship VolumeToTransducerRelationshipTag = DataElementTag(0x0020930B) // PatientFrameOfReferenceSourceTag is the data element tag of PatientFrameOfReferenceSource PatientFrameOfReferenceSourceTag = DataElementTag(0x0020930C) // TemporalPositionTimeOffsetTag is the data element tag of TemporalPositionTimeOffset TemporalPositionTimeOffsetTag = DataElementTag(0x0020930D) // PlanePositionVolumeSequenceTag is the data element tag of PlanePositionVolumeSequence PlanePositionVolumeSequenceTag = DataElementTag(0x0020930E) // PlaneOrientationVolumeSequenceTag is the data element tag of PlaneOrientationVolumeSequence PlaneOrientationVolumeSequenceTag = DataElementTag(0x0020930F) // TemporalPositionSequenceTag is the data element tag of TemporalPositionSequence TemporalPositionSequenceTag = DataElementTag(0x00209310) // DimensionOrganizationTypeTag is the data element tag of DimensionOrganizationType DimensionOrganizationTypeTag = DataElementTag(0x00209311) // VolumeFrameOfReferenceUIDTag is the data element tag of VolumeFrameOfReferenceUID VolumeFrameOfReferenceUIDTag = DataElementTag(0x00209312) // TableFrameOfReferenceUIDTag is the data element tag of TableFrameOfReferenceUID TableFrameOfReferenceUIDTag = DataElementTag(0x00209313) // DimensionDescriptionLabelTag is the data element tag of DimensionDescriptionLabel DimensionDescriptionLabelTag = DataElementTag(0x00209421) // PatientOrientationInFrameSequenceTag is the data element tag of PatientOrientationInFrameSequence PatientOrientationInFrameSequenceTag = DataElementTag(0x00209450) // FrameLabelTag is the data element tag of FrameLabel FrameLabelTag = DataElementTag(0x00209453) // AcquisitionIndexTag is the data element tag of AcquisitionIndex AcquisitionIndexTag = DataElementTag(0x00209518) // ContributingSOPInstancesReferenceSequenceTag is the data element tag of ContributingSOPInstancesReferenceSequence ContributingSOPInstancesReferenceSequenceTag = DataElementTag(0x00209529) // ReconstructionIndexTag is the data element tag of ReconstructionIndex ReconstructionIndexTag = DataElementTag(0x00209536) // LightPathFilterPassThroughWavelengthTag is the data element tag of LightPathFilterPassThroughWavelength LightPathFilterPassThroughWavelengthTag = DataElementTag(0x00220001) // LightPathFilterPassBandTag is the data element tag of LightPathFilterPassBand LightPathFilterPassBandTag = DataElementTag(0x00220002) // ImagePathFilterPassThroughWavelengthTag is the data element tag of ImagePathFilterPassThroughWavelength ImagePathFilterPassThroughWavelengthTag = DataElementTag(0x00220003) // ImagePathFilterPassBandTag is the data element tag of ImagePathFilterPassBand ImagePathFilterPassBandTag = DataElementTag(0x00220004) // PatientEyeMovementCommandedTag is the data element tag of PatientEyeMovementCommanded PatientEyeMovementCommandedTag = DataElementTag(0x00220005) // PatientEyeMovementCommandCodeSequenceTag is the data element tag of PatientEyeMovementCommandCodeSequence PatientEyeMovementCommandCodeSequenceTag = DataElementTag(0x00220006) // SphericalLensPowerTag is the data element tag of SphericalLensPower SphericalLensPowerTag = DataElementTag(0x00220007) // CylinderLensPowerTag is the data element tag of CylinderLensPower CylinderLensPowerTag = DataElementTag(0x00220008) // CylinderAxisTag is the data element tag of CylinderAxis CylinderAxisTag = DataElementTag(0x00220009) // EmmetropicMagnificationTag is the data element tag of EmmetropicMagnification EmmetropicMagnificationTag = DataElementTag(0x0022000A) // IntraOcularPressureTag is the data element tag of IntraOcularPressure IntraOcularPressureTag = DataElementTag(0x0022000B) // HorizontalFieldOfViewTag is the data element tag of HorizontalFieldOfView HorizontalFieldOfViewTag = DataElementTag(0x0022000C) // PupilDilatedTag is the data element tag of PupilDilated PupilDilatedTag = DataElementTag(0x0022000D) // DegreeOfDilationTag is the data element tag of DegreeOfDilation DegreeOfDilationTag = DataElementTag(0x0022000E) // StereoBaselineAngleTag is the data element tag of StereoBaselineAngle StereoBaselineAngleTag = DataElementTag(0x00220010) // StereoBaselineDisplacementTag is the data element tag of StereoBaselineDisplacement StereoBaselineDisplacementTag = DataElementTag(0x00220011) // StereoHorizontalPixelOffsetTag is the data element tag of StereoHorizontalPixelOffset StereoHorizontalPixelOffsetTag = DataElementTag(0x00220012) // StereoVerticalPixelOffsetTag is the data element tag of StereoVerticalPixelOffset StereoVerticalPixelOffsetTag = DataElementTag(0x00220013) // StereoRotationTag is the data element tag of StereoRotation StereoRotationTag = DataElementTag(0x00220014) // AcquisitionDeviceTypeCodeSequenceTag is the data element tag of AcquisitionDeviceTypeCodeSequence AcquisitionDeviceTypeCodeSequenceTag = DataElementTag(0x00220015) // IlluminationTypeCodeSequenceTag is the data element tag of IlluminationTypeCodeSequence IlluminationTypeCodeSequenceTag = DataElementTag(0x00220016) // LightPathFilterTypeStackCodeSequenceTag is the data element tag of LightPathFilterTypeStackCodeSequence LightPathFilterTypeStackCodeSequenceTag = DataElementTag(0x00220017) // ImagePathFilterTypeStackCodeSequenceTag is the data element tag of ImagePathFilterTypeStackCodeSequence ImagePathFilterTypeStackCodeSequenceTag = DataElementTag(0x00220018) // LensesCodeSequenceTag is the data element tag of LensesCodeSequence LensesCodeSequenceTag = DataElementTag(0x00220019) // ChannelDescriptionCodeSequenceTag is the data element tag of ChannelDescriptionCodeSequence ChannelDescriptionCodeSequenceTag = DataElementTag(0x0022001A) // RefractiveStateSequenceTag is the data element tag of RefractiveStateSequence RefractiveStateSequenceTag = DataElementTag(0x0022001B) // MydriaticAgentCodeSequenceTag is the data element tag of MydriaticAgentCodeSequence MydriaticAgentCodeSequenceTag = DataElementTag(0x0022001C) // RelativeImagePositionCodeSequenceTag is the data element tag of RelativeImagePositionCodeSequence RelativeImagePositionCodeSequenceTag = DataElementTag(0x0022001D) // CameraAngleOfViewTag is the data element tag of CameraAngleOfView CameraAngleOfViewTag = DataElementTag(0x0022001E) // StereoPairsSequenceTag is the data element tag of StereoPairsSequence StereoPairsSequenceTag = DataElementTag(0x00220020) // LeftImageSequenceTag is the data element tag of LeftImageSequence LeftImageSequenceTag = DataElementTag(0x00220021) // RightImageSequenceTag is the data element tag of RightImageSequence RightImageSequenceTag = DataElementTag(0x00220022) // StereoPairsPresentTag is the data element tag of StereoPairsPresent StereoPairsPresentTag = DataElementTag(0x00220028) // AxialLengthOfTheEyeTag is the data element tag of AxialLengthOfTheEye AxialLengthOfTheEyeTag = DataElementTag(0x00220030) // OphthalmicFrameLocationSequenceTag is the data element tag of OphthalmicFrameLocationSequence OphthalmicFrameLocationSequenceTag = DataElementTag(0x00220031) // ReferenceCoordinatesTag is the data element tag of ReferenceCoordinates ReferenceCoordinatesTag = DataElementTag(0x00220032) // DepthSpatialResolutionTag is the data element tag of DepthSpatialResolution DepthSpatialResolutionTag = DataElementTag(0x00220035) // MaximumDepthDistortionTag is the data element tag of MaximumDepthDistortion MaximumDepthDistortionTag = DataElementTag(0x00220036) // AlongScanSpatialResolutionTag is the data element tag of AlongScanSpatialResolution AlongScanSpatialResolutionTag = DataElementTag(0x00220037) // MaximumAlongScanDistortionTag is the data element tag of MaximumAlongScanDistortion MaximumAlongScanDistortionTag = DataElementTag(0x00220038) // OphthalmicImageOrientationTag is the data element tag of OphthalmicImageOrientation OphthalmicImageOrientationTag = DataElementTag(0x00220039) // DepthOfTransverseImageTag is the data element tag of DepthOfTransverseImage DepthOfTransverseImageTag = DataElementTag(0x00220041) // MydriaticAgentConcentrationUnitsSequenceTag is the data element tag of MydriaticAgentConcentrationUnitsSequence MydriaticAgentConcentrationUnitsSequenceTag = DataElementTag(0x00220042) // AcrossScanSpatialResolutionTag is the data element tag of AcrossScanSpatialResolution AcrossScanSpatialResolutionTag = DataElementTag(0x00220048) // MaximumAcrossScanDistortionTag is the data element tag of MaximumAcrossScanDistortion MaximumAcrossScanDistortionTag = DataElementTag(0x00220049) // MydriaticAgentConcentrationTag is the data element tag of MydriaticAgentConcentration MydriaticAgentConcentrationTag = DataElementTag(0x0022004E) // IlluminationWaveLengthTag is the data element tag of IlluminationWaveLength IlluminationWaveLengthTag = DataElementTag(0x00220055) // IlluminationPowerTag is the data element tag of IlluminationPower IlluminationPowerTag = DataElementTag(0x00220056) // IlluminationBandwidthTag is the data element tag of IlluminationBandwidth IlluminationBandwidthTag = DataElementTag(0x00220057) // MydriaticAgentSequenceTag is the data element tag of MydriaticAgentSequence MydriaticAgentSequenceTag = DataElementTag(0x00220058) // OphthalmicAxialMeasurementsRightEyeSequenceTag is the data element tag of OphthalmicAxialMeasurementsRightEyeSequence OphthalmicAxialMeasurementsRightEyeSequenceTag = DataElementTag(0x00221007) // OphthalmicAxialMeasurementsLeftEyeSequenceTag is the data element tag of OphthalmicAxialMeasurementsLeftEyeSequence OphthalmicAxialMeasurementsLeftEyeSequenceTag = DataElementTag(0x00221008) // OphthalmicAxialMeasurementsDeviceTypeTag is the data element tag of OphthalmicAxialMeasurementsDeviceType OphthalmicAxialMeasurementsDeviceTypeTag = DataElementTag(0x00221009) // OphthalmicAxialLengthMeasurementsTypeTag is the data element tag of OphthalmicAxialLengthMeasurementsType OphthalmicAxialLengthMeasurementsTypeTag = DataElementTag(0x00221010) // OphthalmicAxialLengthSequenceTag is the data element tag of OphthalmicAxialLengthSequence OphthalmicAxialLengthSequenceTag = DataElementTag(0x00221012) // OphthalmicAxialLengthTag is the data element tag of OphthalmicAxialLength OphthalmicAxialLengthTag = DataElementTag(0x00221019) // LensStatusCodeSequenceTag is the data element tag of LensStatusCodeSequence LensStatusCodeSequenceTag = DataElementTag(0x00221024) // VitreousStatusCodeSequenceTag is the data element tag of VitreousStatusCodeSequence VitreousStatusCodeSequenceTag = DataElementTag(0x00221025) // IOLFormulaCodeSequenceTag is the data element tag of IOLFormulaCodeSequence IOLFormulaCodeSequenceTag = DataElementTag(0x00221028) // IOLFormulaDetailTag is the data element tag of IOLFormulaDetail IOLFormulaDetailTag = DataElementTag(0x00221029) // KeratometerIndexTag is the data element tag of KeratometerIndex KeratometerIndexTag = DataElementTag(0x00221033) // SourceOfOphthalmicAxialLengthCodeSequenceTag is the data element tag of SourceOfOphthalmicAxialLengthCodeSequence SourceOfOphthalmicAxialLengthCodeSequenceTag = DataElementTag(0x00221035) // SourceOfCornealSizeDataCodeSequenceTag is the data element tag of SourceOfCornealSizeDataCodeSequence SourceOfCornealSizeDataCodeSequenceTag = DataElementTag(0x00221036) // TargetRefractionTag is the data element tag of TargetRefraction TargetRefractionTag = DataElementTag(0x00221037) // RefractiveProcedureOccurredTag is the data element tag of RefractiveProcedureOccurred RefractiveProcedureOccurredTag = DataElementTag(0x00221039) // RefractiveSurgeryTypeCodeSequenceTag is the data element tag of RefractiveSurgeryTypeCodeSequence RefractiveSurgeryTypeCodeSequenceTag = DataElementTag(0x00221040) // OphthalmicUltrasoundMethodCodeSequenceTag is the data element tag of OphthalmicUltrasoundMethodCodeSequence OphthalmicUltrasoundMethodCodeSequenceTag = DataElementTag(0x00221044) // SurgicallyInducedAstigmatismSequenceTag is the data element tag of SurgicallyInducedAstigmatismSequence SurgicallyInducedAstigmatismSequenceTag = DataElementTag(0x00221045) // TypeOfOpticalCorrectionTag is the data element tag of TypeOfOpticalCorrection TypeOfOpticalCorrectionTag = DataElementTag(0x00221046) // ToricIOLPowerSequenceTag is the data element tag of ToricIOLPowerSequence ToricIOLPowerSequenceTag = DataElementTag(0x00221047) // PredictedToricErrorSequenceTag is the data element tag of PredictedToricErrorSequence PredictedToricErrorSequenceTag = DataElementTag(0x00221048) // PreSelectedForImplantationTag is the data element tag of PreSelectedForImplantation PreSelectedForImplantationTag = DataElementTag(0x00221049) // ToricIOLPowerForExactEmmetropiaSequenceTag is the data element tag of ToricIOLPowerForExactEmmetropiaSequence ToricIOLPowerForExactEmmetropiaSequenceTag = DataElementTag(0x0022104A) // ToricIOLPowerForExactTargetRefractionSequenceTag is the data element tag of ToricIOLPowerForExactTargetRefractionSequence ToricIOLPowerForExactTargetRefractionSequenceTag = DataElementTag(0x0022104B) // OphthalmicAxialLengthMeasurementsSequenceTag is the data element tag of OphthalmicAxialLengthMeasurementsSequence OphthalmicAxialLengthMeasurementsSequenceTag = DataElementTag(0x00221050) // IOLPowerTag is the data element tag of IOLPower IOLPowerTag = DataElementTag(0x00221053) // PredictedRefractiveErrorTag is the data element tag of PredictedRefractiveError PredictedRefractiveErrorTag = DataElementTag(0x00221054) // OphthalmicAxialLengthVelocityTag is the data element tag of OphthalmicAxialLengthVelocity OphthalmicAxialLengthVelocityTag = DataElementTag(0x00221059) // LensStatusDescriptionTag is the data element tag of LensStatusDescription LensStatusDescriptionTag = DataElementTag(0x00221065) // VitreousStatusDescriptionTag is the data element tag of VitreousStatusDescription VitreousStatusDescriptionTag = DataElementTag(0x00221066) // IOLPowerSequenceTag is the data element tag of IOLPowerSequence IOLPowerSequenceTag = DataElementTag(0x00221090) // LensConstantSequenceTag is the data element tag of LensConstantSequence LensConstantSequenceTag = DataElementTag(0x00221092) // IOLManufacturerTag is the data element tag of IOLManufacturer IOLManufacturerTag = DataElementTag(0x00221093) // LensConstantDescriptionTag is the data element tag of LensConstantDescription LensConstantDescriptionTag = DataElementTag(0x00221094) // ImplantNameTag is the data element tag of ImplantName ImplantNameTag = DataElementTag(0x00221095) // KeratometryMeasurementTypeCodeSequenceTag is the data element tag of KeratometryMeasurementTypeCodeSequence KeratometryMeasurementTypeCodeSequenceTag = DataElementTag(0x00221096) // ImplantPartNumberTag is the data element tag of ImplantPartNumber ImplantPartNumberTag = DataElementTag(0x00221097) // ReferencedOphthalmicAxialMeasurementsSequenceTag is the data element tag of ReferencedOphthalmicAxialMeasurementsSequence ReferencedOphthalmicAxialMeasurementsSequenceTag = DataElementTag(0x00221100) // OphthalmicAxialLengthMeasurementsSegmentNameCodeSequenceTag is the data element tag of OphthalmicAxialLengthMeasurementsSegmentNameCodeSequence OphthalmicAxialLengthMeasurementsSegmentNameCodeSequenceTag = DataElementTag(0x00221101) // RefractiveErrorBeforeRefractiveSurgeryCodeSequenceTag is the data element tag of RefractiveErrorBeforeRefractiveSurgeryCodeSequence RefractiveErrorBeforeRefractiveSurgeryCodeSequenceTag = DataElementTag(0x00221103) // IOLPowerForExactEmmetropiaTag is the data element tag of IOLPowerForExactEmmetropia IOLPowerForExactEmmetropiaTag = DataElementTag(0x00221121) // IOLPowerForExactTargetRefractionTag is the data element tag of IOLPowerForExactTargetRefraction IOLPowerForExactTargetRefractionTag = DataElementTag(0x00221122) // AnteriorChamberDepthDefinitionCodeSequenceTag is the data element tag of AnteriorChamberDepthDefinitionCodeSequence AnteriorChamberDepthDefinitionCodeSequenceTag = DataElementTag(0x00221125) // LensThicknessSequenceTag is the data element tag of LensThicknessSequence LensThicknessSequenceTag = DataElementTag(0x00221127) // AnteriorChamberDepthSequenceTag is the data element tag of AnteriorChamberDepthSequence AnteriorChamberDepthSequenceTag = DataElementTag(0x00221128) // CalculationCommentSequenceTag is the data element tag of CalculationCommentSequence CalculationCommentSequenceTag = DataElementTag(0x0022112A) // CalculationCommentTypeTag is the data element tag of CalculationCommentType CalculationCommentTypeTag = DataElementTag(0x0022112B) // CalculationCommentTag is the data element tag of CalculationComment CalculationCommentTag = DataElementTag(0x0022112C) // LensThicknessTag is the data element tag of LensThickness LensThicknessTag = DataElementTag(0x00221130) // AnteriorChamberDepthTag is the data element tag of AnteriorChamberDepth AnteriorChamberDepthTag = DataElementTag(0x00221131) // SourceOfLensThicknessDataCodeSequenceTag is the data element tag of SourceOfLensThicknessDataCodeSequence SourceOfLensThicknessDataCodeSequenceTag = DataElementTag(0x00221132) // SourceOfAnteriorChamberDepthDataCodeSequenceTag is the data element tag of SourceOfAnteriorChamberDepthDataCodeSequence SourceOfAnteriorChamberDepthDataCodeSequenceTag = DataElementTag(0x00221133) // SourceOfRefractiveMeasurementsSequenceTag is the data element tag of SourceOfRefractiveMeasurementsSequence SourceOfRefractiveMeasurementsSequenceTag = DataElementTag(0x00221134) // SourceOfRefractiveMeasurementsCodeSequenceTag is the data element tag of SourceOfRefractiveMeasurementsCodeSequence SourceOfRefractiveMeasurementsCodeSequenceTag = DataElementTag(0x00221135) // OphthalmicAxialLengthMeasurementModifiedTag is the data element tag of OphthalmicAxialLengthMeasurementModified OphthalmicAxialLengthMeasurementModifiedTag = DataElementTag(0x00221140) // OphthalmicAxialLengthDataSourceCodeSequenceTag is the data element tag of OphthalmicAxialLengthDataSourceCodeSequence OphthalmicAxialLengthDataSourceCodeSequenceTag = DataElementTag(0x00221150) // OphthalmicAxialLengthAcquisitionMethodCodeSequenceTag is the data element tag of OphthalmicAxialLengthAcquisitionMethodCodeSequence OphthalmicAxialLengthAcquisitionMethodCodeSequenceTag = DataElementTag(0x00221153) // SignalToNoiseRatioTag is the data element tag of SignalToNoiseRatio SignalToNoiseRatioTag = DataElementTag(0x00221155) // OphthalmicAxialLengthDataSourceDescriptionTag is the data element tag of OphthalmicAxialLengthDataSourceDescription OphthalmicAxialLengthDataSourceDescriptionTag = DataElementTag(0x00221159) // OphthalmicAxialLengthMeasurementsTotalLengthSequenceTag is the data element tag of OphthalmicAxialLengthMeasurementsTotalLengthSequence OphthalmicAxialLengthMeasurementsTotalLengthSequenceTag = DataElementTag(0x00221210) // OphthalmicAxialLengthMeasurementsSegmentalLengthSequenceTag is the data element tag of OphthalmicAxialLengthMeasurementsSegmentalLengthSequence OphthalmicAxialLengthMeasurementsSegmentalLengthSequenceTag = DataElementTag(0x00221211) // OphthalmicAxialLengthMeasurementsLengthSummationSequenceTag is the data element tag of OphthalmicAxialLengthMeasurementsLengthSummationSequence OphthalmicAxialLengthMeasurementsLengthSummationSequenceTag = DataElementTag(0x00221212) // UltrasoundOphthalmicAxialLengthMeasurementsSequenceTag is the data element tag of UltrasoundOphthalmicAxialLengthMeasurementsSequence UltrasoundOphthalmicAxialLengthMeasurementsSequenceTag = DataElementTag(0x00221220) // OpticalOphthalmicAxialLengthMeasurementsSequenceTag is the data element tag of OpticalOphthalmicAxialLengthMeasurementsSequence OpticalOphthalmicAxialLengthMeasurementsSequenceTag = DataElementTag(0x00221225) // UltrasoundSelectedOphthalmicAxialLengthSequenceTag is the data element tag of UltrasoundSelectedOphthalmicAxialLengthSequence UltrasoundSelectedOphthalmicAxialLengthSequenceTag = DataElementTag(0x00221230) // OphthalmicAxialLengthSelectionMethodCodeSequenceTag is the data element tag of OphthalmicAxialLengthSelectionMethodCodeSequence OphthalmicAxialLengthSelectionMethodCodeSequenceTag = DataElementTag(0x00221250) // OpticalSelectedOphthalmicAxialLengthSequenceTag is the data element tag of OpticalSelectedOphthalmicAxialLengthSequence OpticalSelectedOphthalmicAxialLengthSequenceTag = DataElementTag(0x00221255) // SelectedSegmentalOphthalmicAxialLengthSequenceTag is the data element tag of SelectedSegmentalOphthalmicAxialLengthSequence SelectedSegmentalOphthalmicAxialLengthSequenceTag = DataElementTag(0x00221257) // SelectedTotalOphthalmicAxialLengthSequenceTag is the data element tag of SelectedTotalOphthalmicAxialLengthSequence SelectedTotalOphthalmicAxialLengthSequenceTag = DataElementTag(0x00221260) // OphthalmicAxialLengthQualityMetricSequenceTag is the data element tag of OphthalmicAxialLengthQualityMetricSequence OphthalmicAxialLengthQualityMetricSequenceTag = DataElementTag(0x00221262) // OphthalmicAxialLengthQualityMetricTypeCodeSequenceTag is the data element tag of OphthalmicAxialLengthQualityMetricTypeCodeSequence OphthalmicAxialLengthQualityMetricTypeCodeSequenceTag = DataElementTag(0x00221265) // OphthalmicAxialLengthQualityMetricTypeDescriptionTag is the data element tag of OphthalmicAxialLengthQualityMetricTypeDescription OphthalmicAxialLengthQualityMetricTypeDescriptionTag = DataElementTag(0x00221273) // IntraocularLensCalculationsRightEyeSequenceTag is the data element tag of IntraocularLensCalculationsRightEyeSequence IntraocularLensCalculationsRightEyeSequenceTag = DataElementTag(0x00221300) // IntraocularLensCalculationsLeftEyeSequenceTag is the data element tag of IntraocularLensCalculationsLeftEyeSequence IntraocularLensCalculationsLeftEyeSequenceTag = DataElementTag(0x00221310) // ReferencedOphthalmicAxialLengthMeasurementQCImageSequenceTag is the data element tag of ReferencedOphthalmicAxialLengthMeasurementQCImageSequence ReferencedOphthalmicAxialLengthMeasurementQCImageSequenceTag = DataElementTag(0x00221330) // OphthalmicMappingDeviceTypeTag is the data element tag of OphthalmicMappingDeviceType OphthalmicMappingDeviceTypeTag = DataElementTag(0x00221415) // AcquisitionMethodCodeSequenceTag is the data element tag of AcquisitionMethodCodeSequence AcquisitionMethodCodeSequenceTag = DataElementTag(0x00221420) // AcquisitionMethodAlgorithmSequenceTag is the data element tag of AcquisitionMethodAlgorithmSequence AcquisitionMethodAlgorithmSequenceTag = DataElementTag(0x00221423) // OphthalmicThicknessMapTypeCodeSequenceTag is the data element tag of OphthalmicThicknessMapTypeCodeSequence OphthalmicThicknessMapTypeCodeSequenceTag = DataElementTag(0x00221436) // OphthalmicThicknessMappingNormalsSequenceTag is the data element tag of OphthalmicThicknessMappingNormalsSequence OphthalmicThicknessMappingNormalsSequenceTag = DataElementTag(0x00221443) // RetinalThicknessDefinitionCodeSequenceTag is the data element tag of RetinalThicknessDefinitionCodeSequence RetinalThicknessDefinitionCodeSequenceTag = DataElementTag(0x00221445) // PixelValueMappingToCodedConceptSequenceTag is the data element tag of PixelValueMappingToCodedConceptSequence PixelValueMappingToCodedConceptSequenceTag = DataElementTag(0x00221450) // MappedPixelValueTag is the data element tag of MappedPixelValue MappedPixelValueTag = DataElementTag(0x00221452) // PixelValueMappingExplanationTag is the data element tag of PixelValueMappingExplanation PixelValueMappingExplanationTag = DataElementTag(0x00221454) // OphthalmicThicknessMapQualityThresholdSequenceTag is the data element tag of OphthalmicThicknessMapQualityThresholdSequence OphthalmicThicknessMapQualityThresholdSequenceTag = DataElementTag(0x00221458) // OphthalmicThicknessMapThresholdQualityRatingTag is the data element tag of OphthalmicThicknessMapThresholdQualityRating OphthalmicThicknessMapThresholdQualityRatingTag = DataElementTag(0x00221460) // AnatomicStructureReferencePointTag is the data element tag of AnatomicStructureReferencePoint AnatomicStructureReferencePointTag = DataElementTag(0x00221463) // RegistrationToLocalizerSequenceTag is the data element tag of RegistrationToLocalizerSequence RegistrationToLocalizerSequenceTag = DataElementTag(0x00221465) // RegisteredLocalizerUnitsTag is the data element tag of RegisteredLocalizerUnits RegisteredLocalizerUnitsTag = DataElementTag(0x00221466) // RegisteredLocalizerTopLeftHandCornerTag is the data element tag of RegisteredLocalizerTopLeftHandCorner RegisteredLocalizerTopLeftHandCornerTag = DataElementTag(0x00221467) // RegisteredLocalizerBottomRightHandCornerTag is the data element tag of RegisteredLocalizerBottomRightHandCorner RegisteredLocalizerBottomRightHandCornerTag = DataElementTag(0x00221468) // OphthalmicThicknessMapQualityRatingSequenceTag is the data element tag of OphthalmicThicknessMapQualityRatingSequence OphthalmicThicknessMapQualityRatingSequenceTag = DataElementTag(0x00221470) // RelevantOPTAttributesSequenceTag is the data element tag of RelevantOPTAttributesSequence RelevantOPTAttributesSequenceTag = DataElementTag(0x00221472) // TransformationMethodCodeSequenceTag is the data element tag of TransformationMethodCodeSequence TransformationMethodCodeSequenceTag = DataElementTag(0x00221512) // TransformationAlgorithmSequenceTag is the data element tag of TransformationAlgorithmSequence TransformationAlgorithmSequenceTag = DataElementTag(0x00221513) // OphthalmicAxialLengthMethodTag is the data element tag of OphthalmicAxialLengthMethod OphthalmicAxialLengthMethodTag = DataElementTag(0x00221515) // OphthalmicFOVTag is the data element tag of OphthalmicFOV OphthalmicFOVTag = DataElementTag(0x00221517) // TwoDimensionalToThreeDimensionalMapSequenceTag is the data element tag of TwoDimensionalToThreeDimensionalMapSequence TwoDimensionalToThreeDimensionalMapSequenceTag = DataElementTag(0x00221518) // WideFieldOphthalmicPhotographyQualityRatingSequenceTag is the data element tag of WideFieldOphthalmicPhotographyQualityRatingSequence WideFieldOphthalmicPhotographyQualityRatingSequenceTag = DataElementTag(0x00221525) // WideFieldOphthalmicPhotographyQualityThresholdSequenceTag is the data element tag of WideFieldOphthalmicPhotographyQualityThresholdSequence WideFieldOphthalmicPhotographyQualityThresholdSequenceTag = DataElementTag(0x00221526) // WideFieldOphthalmicPhotographyThresholdQualityRatingTag is the data element tag of WideFieldOphthalmicPhotographyThresholdQualityRating WideFieldOphthalmicPhotographyThresholdQualityRatingTag = DataElementTag(0x00221527) // XCoordinatesCenterPixelViewAngleTag is the data element tag of XCoordinatesCenterPixelViewAngle XCoordinatesCenterPixelViewAngleTag = DataElementTag(0x00221528) // YCoordinatesCenterPixelViewAngleTag is the data element tag of YCoordinatesCenterPixelViewAngle YCoordinatesCenterPixelViewAngleTag = DataElementTag(0x00221529) // NumberOfMapPointsTag is the data element tag of NumberOfMapPoints NumberOfMapPointsTag = DataElementTag(0x00221530) // TwoDimensionalToThreeDimensionalMapDataTag is the data element tag of TwoDimensionalToThreeDimensionalMapData TwoDimensionalToThreeDimensionalMapDataTag = DataElementTag(0x00221531) // DerivationAlgorithmSequenceTag is the data element tag of DerivationAlgorithmSequence DerivationAlgorithmSequenceTag = DataElementTag(0x00221612) // OphthalmicImageTypeCodeSequenceTag is the data element tag of OphthalmicImageTypeCodeSequence OphthalmicImageTypeCodeSequenceTag = DataElementTag(0x00221615) // OphthalmicImageTypeDescriptionTag is the data element tag of OphthalmicImageTypeDescription OphthalmicImageTypeDescriptionTag = DataElementTag(0x00221616) // ScanPatternTypeCodeSequenceTag is the data element tag of ScanPatternTypeCodeSequence ScanPatternTypeCodeSequenceTag = DataElementTag(0x00221618) // ReferencedSurfaceMeshIdentificationSequenceTag is the data element tag of ReferencedSurfaceMeshIdentificationSequence ReferencedSurfaceMeshIdentificationSequenceTag = DataElementTag(0x00221620) // OphthalmicVolumetricPropertiesFlagTag is the data element tag of OphthalmicVolumetricPropertiesFlag OphthalmicVolumetricPropertiesFlagTag = DataElementTag(0x00221622) // OphthalmicAnatomicReferencePointXCoordinateTag is the data element tag of OphthalmicAnatomicReferencePointXCoordinate OphthalmicAnatomicReferencePointXCoordinateTag = DataElementTag(0x00221624) // OphthalmicAnatomicReferencePointYCoordinateTag is the data element tag of OphthalmicAnatomicReferencePointYCoordinate OphthalmicAnatomicReferencePointYCoordinateTag = DataElementTag(0x00221626) // OphthalmicEnFaceImageQualityRatingSequenceTag is the data element tag of OphthalmicEnFaceImageQualityRatingSequence OphthalmicEnFaceImageQualityRatingSequenceTag = DataElementTag(0x00221628) // QualityThresholdTag is the data element tag of QualityThreshold QualityThresholdTag = DataElementTag(0x00221630) // OCTBscanAnalysisAcquisitionParametersSequenceTag is the data element tag of OCTBscanAnalysisAcquisitionParametersSequence OCTBscanAnalysisAcquisitionParametersSequenceTag = DataElementTag(0x00221640) // NumberofBscansPerFrameTag is the data element tag of NumberofBscansPerFrame NumberofBscansPerFrameTag = DataElementTag(0x00221642) // BscanSlabThicknessTag is the data element tag of BscanSlabThickness BscanSlabThicknessTag = DataElementTag(0x00221643) // DistanceBetweenBscanSlabsTag is the data element tag of DistanceBetweenBscanSlabs DistanceBetweenBscanSlabsTag = DataElementTag(0x00221644) // BscanCycleTimeTag is the data element tag of BscanCycleTime BscanCycleTimeTag = DataElementTag(0x00221645) // BscanCycleTimeVectorTag is the data element tag of BscanCycleTimeVector BscanCycleTimeVectorTag = DataElementTag(0x00221646) // AscanRateTag is the data element tag of AscanRate AscanRateTag = DataElementTag(0x00221649) // BscanRateTag is the data element tag of BscanRate BscanRateTag = DataElementTag(0x00221650) // SurfaceMeshZPixelOffsetTag is the data element tag of SurfaceMeshZPixelOffset SurfaceMeshZPixelOffsetTag = DataElementTag(0x00221658) // VisualFieldHorizontalExtentTag is the data element tag of VisualFieldHorizontalExtent VisualFieldHorizontalExtentTag = DataElementTag(0x00240010) // VisualFieldVerticalExtentTag is the data element tag of VisualFieldVerticalExtent VisualFieldVerticalExtentTag = DataElementTag(0x00240011) // VisualFieldShapeTag is the data element tag of VisualFieldShape VisualFieldShapeTag = DataElementTag(0x00240012) // ScreeningTestModeCodeSequenceTag is the data element tag of ScreeningTestModeCodeSequence ScreeningTestModeCodeSequenceTag = DataElementTag(0x00240016) // MaximumStimulusLuminanceTag is the data element tag of MaximumStimulusLuminance MaximumStimulusLuminanceTag = DataElementTag(0x00240018) // BackgroundLuminanceTag is the data element tag of BackgroundLuminance BackgroundLuminanceTag = DataElementTag(0x00240020) // StimulusColorCodeSequenceTag is the data element tag of StimulusColorCodeSequence StimulusColorCodeSequenceTag = DataElementTag(0x00240021) // BackgroundIlluminationColorCodeSequenceTag is the data element tag of BackgroundIlluminationColorCodeSequence BackgroundIlluminationColorCodeSequenceTag = DataElementTag(0x00240024) // StimulusAreaTag is the data element tag of StimulusArea StimulusAreaTag = DataElementTag(0x00240025) // StimulusPresentationTimeTag is the data element tag of StimulusPresentationTime StimulusPresentationTimeTag = DataElementTag(0x00240028) // FixationSequenceTag is the data element tag of FixationSequence FixationSequenceTag = DataElementTag(0x00240032) // FixationMonitoringCodeSequenceTag is the data element tag of FixationMonitoringCodeSequence FixationMonitoringCodeSequenceTag = DataElementTag(0x00240033) // VisualFieldCatchTrialSequenceTag is the data element tag of VisualFieldCatchTrialSequence VisualFieldCatchTrialSequenceTag = DataElementTag(0x00240034) // FixationCheckedQuantityTag is the data element tag of FixationCheckedQuantity FixationCheckedQuantityTag = DataElementTag(0x00240035) // PatientNotProperlyFixatedQuantityTag is the data element tag of PatientNotProperlyFixatedQuantity PatientNotProperlyFixatedQuantityTag = DataElementTag(0x00240036) // PresentedVisualStimuliDataFlagTag is the data element tag of PresentedVisualStimuliDataFlag PresentedVisualStimuliDataFlagTag = DataElementTag(0x00240037) // NumberOfVisualStimuliTag is the data element tag of NumberOfVisualStimuli NumberOfVisualStimuliTag = DataElementTag(0x00240038) // ExcessiveFixationLossesDataFlagTag is the data element tag of ExcessiveFixationLossesDataFlag ExcessiveFixationLossesDataFlagTag = DataElementTag(0x00240039) // ExcessiveFixationLossesTag is the data element tag of ExcessiveFixationLosses ExcessiveFixationLossesTag = DataElementTag(0x00240040) // StimuliRetestingQuantityTag is the data element tag of StimuliRetestingQuantity StimuliRetestingQuantityTag = DataElementTag(0x00240042) // CommentsOnPatientPerformanceOfVisualFieldTag is the data element tag of CommentsOnPatientPerformanceOfVisualField CommentsOnPatientPerformanceOfVisualFieldTag = DataElementTag(0x00240044) // FalseNegativesEstimateFlagTag is the data element tag of FalseNegativesEstimateFlag FalseNegativesEstimateFlagTag = DataElementTag(0x00240045) // FalseNegativesEstimateTag is the data element tag of FalseNegativesEstimate FalseNegativesEstimateTag = DataElementTag(0x00240046) // NegativeCatchTrialsQuantityTag is the data element tag of NegativeCatchTrialsQuantity NegativeCatchTrialsQuantityTag = DataElementTag(0x00240048) // FalseNegativesQuantityTag is the data element tag of FalseNegativesQuantity FalseNegativesQuantityTag = DataElementTag(0x00240050) // ExcessiveFalseNegativesDataFlagTag is the data element tag of ExcessiveFalseNegativesDataFlag ExcessiveFalseNegativesDataFlagTag = DataElementTag(0x00240051) // ExcessiveFalseNegativesTag is the data element tag of ExcessiveFalseNegatives ExcessiveFalseNegativesTag = DataElementTag(0x00240052) // FalsePositivesEstimateFlagTag is the data element tag of FalsePositivesEstimateFlag FalsePositivesEstimateFlagTag = DataElementTag(0x00240053) // FalsePositivesEstimateTag is the data element tag of FalsePositivesEstimate FalsePositivesEstimateTag = DataElementTag(0x00240054) // CatchTrialsDataFlagTag is the data element tag of CatchTrialsDataFlag CatchTrialsDataFlagTag = DataElementTag(0x00240055) // PositiveCatchTrialsQuantityTag is the data element tag of PositiveCatchTrialsQuantity PositiveCatchTrialsQuantityTag = DataElementTag(0x00240056) // TestPointNormalsDataFlagTag is the data element tag of TestPointNormalsDataFlag TestPointNormalsDataFlagTag = DataElementTag(0x00240057) // TestPointNormalsSequenceTag is the data element tag of TestPointNormalsSequence TestPointNormalsSequenceTag = DataElementTag(0x00240058) // GlobalDeviationProbabilityNormalsFlagTag is the data element tag of GlobalDeviationProbabilityNormalsFlag GlobalDeviationProbabilityNormalsFlagTag = DataElementTag(0x00240059) // FalsePositivesQuantityTag is the data element tag of FalsePositivesQuantity FalsePositivesQuantityTag = DataElementTag(0x00240060) // ExcessiveFalsePositivesDataFlagTag is the data element tag of ExcessiveFalsePositivesDataFlag ExcessiveFalsePositivesDataFlagTag = DataElementTag(0x00240061) // ExcessiveFalsePositivesTag is the data element tag of ExcessiveFalsePositives ExcessiveFalsePositivesTag = DataElementTag(0x00240062) // VisualFieldTestNormalsFlagTag is the data element tag of VisualFieldTestNormalsFlag VisualFieldTestNormalsFlagTag = DataElementTag(0x00240063) // ResultsNormalsSequenceTag is the data element tag of ResultsNormalsSequence ResultsNormalsSequenceTag = DataElementTag(0x00240064) // AgeCorrectedSensitivityDeviationAlgorithmSequenceTag is the data element tag of AgeCorrectedSensitivityDeviationAlgorithmSequence AgeCorrectedSensitivityDeviationAlgorithmSequenceTag = DataElementTag(0x00240065) // GlobalDeviationFromNormalTag is the data element tag of GlobalDeviationFromNormal GlobalDeviationFromNormalTag = DataElementTag(0x00240066) // GeneralizedDefectSensitivityDeviationAlgorithmSequenceTag is the data element tag of GeneralizedDefectSensitivityDeviationAlgorithmSequence GeneralizedDefectSensitivityDeviationAlgorithmSequenceTag = DataElementTag(0x00240067) // LocalizedDeviationFromNormalTag is the data element tag of LocalizedDeviationFromNormal LocalizedDeviationFromNormalTag = DataElementTag(0x00240068) // PatientReliabilityIndicatorTag is the data element tag of PatientReliabilityIndicator PatientReliabilityIndicatorTag = DataElementTag(0x00240069) // VisualFieldMeanSensitivityTag is the data element tag of VisualFieldMeanSensitivity VisualFieldMeanSensitivityTag = DataElementTag(0x00240070) // GlobalDeviationProbabilityTag is the data element tag of GlobalDeviationProbability GlobalDeviationProbabilityTag = DataElementTag(0x00240071) // LocalDeviationProbabilityNormalsFlagTag is the data element tag of LocalDeviationProbabilityNormalsFlag LocalDeviationProbabilityNormalsFlagTag = DataElementTag(0x00240072) // LocalizedDeviationProbabilityTag is the data element tag of LocalizedDeviationProbability LocalizedDeviationProbabilityTag = DataElementTag(0x00240073) // ShortTermFluctuationCalculatedTag is the data element tag of ShortTermFluctuationCalculated ShortTermFluctuationCalculatedTag = DataElementTag(0x00240074) // ShortTermFluctuationTag is the data element tag of ShortTermFluctuation ShortTermFluctuationTag = DataElementTag(0x00240075) // ShortTermFluctuationProbabilityCalculatedTag is the data element tag of ShortTermFluctuationProbabilityCalculated ShortTermFluctuationProbabilityCalculatedTag = DataElementTag(0x00240076) // ShortTermFluctuationProbabilityTag is the data element tag of ShortTermFluctuationProbability ShortTermFluctuationProbabilityTag = DataElementTag(0x00240077) // CorrectedLocalizedDeviationFromNormalCalculatedTag is the data element tag of CorrectedLocalizedDeviationFromNormalCalculated CorrectedLocalizedDeviationFromNormalCalculatedTag = DataElementTag(0x00240078) // CorrectedLocalizedDeviationFromNormalTag is the data element tag of CorrectedLocalizedDeviationFromNormal CorrectedLocalizedDeviationFromNormalTag = DataElementTag(0x00240079) // CorrectedLocalizedDeviationFromNormalProbabilityCalculatedTag is the data element tag of CorrectedLocalizedDeviationFromNormalProbabilityCalculated CorrectedLocalizedDeviationFromNormalProbabilityCalculatedTag = DataElementTag(0x00240080) // CorrectedLocalizedDeviationFromNormalProbabilityTag is the data element tag of CorrectedLocalizedDeviationFromNormalProbability CorrectedLocalizedDeviationFromNormalProbabilityTag = DataElementTag(0x00240081) // GlobalDeviationProbabilitySequenceTag is the data element tag of GlobalDeviationProbabilitySequence GlobalDeviationProbabilitySequenceTag = DataElementTag(0x00240083) // LocalizedDeviationProbabilitySequenceTag is the data element tag of LocalizedDeviationProbabilitySequence LocalizedDeviationProbabilitySequenceTag = DataElementTag(0x00240085) // FovealSensitivityMeasuredTag is the data element tag of FovealSensitivityMeasured FovealSensitivityMeasuredTag = DataElementTag(0x00240086) // FovealSensitivityTag is the data element tag of FovealSensitivity FovealSensitivityTag = DataElementTag(0x00240087) // VisualFieldTestDurationTag is the data element tag of VisualFieldTestDuration VisualFieldTestDurationTag = DataElementTag(0x00240088) // VisualFieldTestPointSequenceTag is the data element tag of VisualFieldTestPointSequence VisualFieldTestPointSequenceTag = DataElementTag(0x00240089) // VisualFieldTestPointXCoordinateTag is the data element tag of VisualFieldTestPointXCoordinate VisualFieldTestPointXCoordinateTag = DataElementTag(0x00240090) // VisualFieldTestPointYCoordinateTag is the data element tag of VisualFieldTestPointYCoordinate VisualFieldTestPointYCoordinateTag = DataElementTag(0x00240091) // AgeCorrectedSensitivityDeviationValueTag is the data element tag of AgeCorrectedSensitivityDeviationValue AgeCorrectedSensitivityDeviationValueTag = DataElementTag(0x00240092) // StimulusResultsTag is the data element tag of StimulusResults StimulusResultsTag = DataElementTag(0x00240093) // SensitivityValueTag is the data element tag of SensitivityValue SensitivityValueTag = DataElementTag(0x00240094) // RetestStimulusSeenTag is the data element tag of RetestStimulusSeen RetestStimulusSeenTag = DataElementTag(0x00240095) // RetestSensitivityValueTag is the data element tag of RetestSensitivityValue RetestSensitivityValueTag = DataElementTag(0x00240096) // VisualFieldTestPointNormalsSequenceTag is the data element tag of VisualFieldTestPointNormalsSequence VisualFieldTestPointNormalsSequenceTag = DataElementTag(0x00240097) // QuantifiedDefectTag is the data element tag of QuantifiedDefect QuantifiedDefectTag = DataElementTag(0x00240098) // AgeCorrectedSensitivityDeviationProbabilityValueTag is the data element tag of AgeCorrectedSensitivityDeviationProbabilityValue AgeCorrectedSensitivityDeviationProbabilityValueTag = DataElementTag(0x00240100) // GeneralizedDefectCorrectedSensitivityDeviationFlagTag is the data element tag of GeneralizedDefectCorrectedSensitivityDeviationFlag GeneralizedDefectCorrectedSensitivityDeviationFlagTag = DataElementTag(0x00240102) // GeneralizedDefectCorrectedSensitivityDeviationValueTag is the data element tag of GeneralizedDefectCorrectedSensitivityDeviationValue GeneralizedDefectCorrectedSensitivityDeviationValueTag = DataElementTag(0x00240103) // GeneralizedDefectCorrectedSensitivityDeviationProbabilityValueTag is the data element tag of GeneralizedDefectCorrectedSensitivityDeviationProbabilityValue GeneralizedDefectCorrectedSensitivityDeviationProbabilityValueTag = DataElementTag(0x00240104) // MinimumSensitivityValueTag is the data element tag of MinimumSensitivityValue MinimumSensitivityValueTag = DataElementTag(0x00240105) // BlindSpotLocalizedTag is the data element tag of BlindSpotLocalized BlindSpotLocalizedTag = DataElementTag(0x00240106) // BlindSpotXCoordinateTag is the data element tag of BlindSpotXCoordinate BlindSpotXCoordinateTag = DataElementTag(0x00240107) // BlindSpotYCoordinateTag is the data element tag of BlindSpotYCoordinate BlindSpotYCoordinateTag = DataElementTag(0x00240108) // VisualAcuityMeasurementSequenceTag is the data element tag of VisualAcuityMeasurementSequence VisualAcuityMeasurementSequenceTag = DataElementTag(0x00240110) // RefractiveParametersUsedOnPatientSequenceTag is the data element tag of RefractiveParametersUsedOnPatientSequence RefractiveParametersUsedOnPatientSequenceTag = DataElementTag(0x00240112) // MeasurementLateralityTag is the data element tag of MeasurementLaterality MeasurementLateralityTag = DataElementTag(0x00240113) // OphthalmicPatientClinicalInformationLeftEyeSequenceTag is the data element tag of OphthalmicPatientClinicalInformationLeftEyeSequence OphthalmicPatientClinicalInformationLeftEyeSequenceTag = DataElementTag(0x00240114) // OphthalmicPatientClinicalInformationRightEyeSequenceTag is the data element tag of OphthalmicPatientClinicalInformationRightEyeSequence OphthalmicPatientClinicalInformationRightEyeSequenceTag = DataElementTag(0x00240115) // FovealPointNormativeDataFlagTag is the data element tag of FovealPointNormativeDataFlag FovealPointNormativeDataFlagTag = DataElementTag(0x00240117) // FovealPointProbabilityValueTag is the data element tag of FovealPointProbabilityValue FovealPointProbabilityValueTag = DataElementTag(0x00240118) // ScreeningBaselineMeasuredTag is the data element tag of ScreeningBaselineMeasured ScreeningBaselineMeasuredTag = DataElementTag(0x00240120) // ScreeningBaselineMeasuredSequenceTag is the data element tag of ScreeningBaselineMeasuredSequence ScreeningBaselineMeasuredSequenceTag = DataElementTag(0x00240122) // ScreeningBaselineTypeTag is the data element tag of ScreeningBaselineType ScreeningBaselineTypeTag = DataElementTag(0x00240124) // ScreeningBaselineValueTag is the data element tag of ScreeningBaselineValue ScreeningBaselineValueTag = DataElementTag(0x00240126) // AlgorithmSourceTag is the data element tag of AlgorithmSource AlgorithmSourceTag = DataElementTag(0x00240202) // DataSetNameTag is the data element tag of DataSetName DataSetNameTag = DataElementTag(0x00240306) // DataSetVersionTag is the data element tag of DataSetVersion DataSetVersionTag = DataElementTag(0x00240307) // DataSetSourceTag is the data element tag of DataSetSource DataSetSourceTag = DataElementTag(0x00240308) // DataSetDescriptionTag is the data element tag of DataSetDescription DataSetDescriptionTag = DataElementTag(0x00240309) // VisualFieldTestReliabilityGlobalIndexSequenceTag is the data element tag of VisualFieldTestReliabilityGlobalIndexSequence VisualFieldTestReliabilityGlobalIndexSequenceTag = DataElementTag(0x00240317) // VisualFieldGlobalResultsIndexSequenceTag is the data element tag of VisualFieldGlobalResultsIndexSequence VisualFieldGlobalResultsIndexSequenceTag = DataElementTag(0x00240320) // DataObservationSequenceTag is the data element tag of DataObservationSequence DataObservationSequenceTag = DataElementTag(0x00240325) // IndexNormalsFlagTag is the data element tag of IndexNormalsFlag IndexNormalsFlagTag = DataElementTag(0x00240338) // IndexProbabilityTag is the data element tag of IndexProbability IndexProbabilityTag = DataElementTag(0x00240341) // IndexProbabilitySequenceTag is the data element tag of IndexProbabilitySequence IndexProbabilitySequenceTag = DataElementTag(0x00240344) // SamplesPerPixelTag is the data element tag of SamplesPerPixel SamplesPerPixelTag = DataElementTag(0x00280002) // SamplesPerPixelUsedTag is the data element tag of SamplesPerPixelUsed SamplesPerPixelUsedTag = DataElementTag(0x00280003) // PhotometricInterpretationTag is the data element tag of PhotometricInterpretation PhotometricInterpretationTag = DataElementTag(0x00280004) // ImageDimensionsTag is the data element tag of ImageDimensions ImageDimensionsTag = DataElementTag(0x00280005) // PlanarConfigurationTag is the data element tag of PlanarConfiguration PlanarConfigurationTag = DataElementTag(0x00280006) // NumberOfFramesTag is the data element tag of NumberOfFrames NumberOfFramesTag = DataElementTag(0x00280008) // FrameIncrementPointerTag is the data element tag of FrameIncrementPointer FrameIncrementPointerTag = DataElementTag(0x00280009) // FrameDimensionPointerTag is the data element tag of FrameDimensionPointer FrameDimensionPointerTag = DataElementTag(0x0028000A) // RowsTag is the data element tag of Rows RowsTag = DataElementTag(0x00280010) // ColumnsTag is the data element tag of Columns ColumnsTag = DataElementTag(0x00280011) // PlanesTag is the data element tag of Planes PlanesTag = DataElementTag(0x00280012) // UltrasoundColorDataPresentTag is the data element tag of UltrasoundColorDataPresent UltrasoundColorDataPresentTag = DataElementTag(0x00280014) // PixelSpacingTag is the data element tag of PixelSpacing PixelSpacingTag = DataElementTag(0x00280030) // ZoomFactorTag is the data element tag of ZoomFactor ZoomFactorTag = DataElementTag(0x00280031) // ZoomCenterTag is the data element tag of ZoomCenter ZoomCenterTag = DataElementTag(0x00280032) // PixelAspectRatioTag is the data element tag of PixelAspectRatio PixelAspectRatioTag = DataElementTag(0x00280034) // ImageFormatTag is the data element tag of ImageFormat ImageFormatTag = DataElementTag(0x00280040) // ManipulatedImageTag is the data element tag of ManipulatedImage ManipulatedImageTag = DataElementTag(0x00280050) // CorrectedImageTag is the data element tag of CorrectedImage CorrectedImageTag = DataElementTag(0x00280051) // CompressionRecognitionCodeTag is the data element tag of CompressionRecognitionCode CompressionRecognitionCodeTag = DataElementTag(0x0028005F) // CompressionCodeTag is the data element tag of CompressionCode CompressionCodeTag = DataElementTag(0x00280060) // CompressionOriginatorTag is the data element tag of CompressionOriginator CompressionOriginatorTag = DataElementTag(0x00280061) // CompressionLabelTag is the data element tag of CompressionLabel CompressionLabelTag = DataElementTag(0x00280062) // CompressionDescriptionTag is the data element tag of CompressionDescription CompressionDescriptionTag = DataElementTag(0x00280063) // CompressionSequenceTag is the data element tag of CompressionSequence CompressionSequenceTag = DataElementTag(0x00280065) // CompressionStepPointersTag is the data element tag of CompressionStepPointers CompressionStepPointersTag = DataElementTag(0x00280066) // RepeatIntervalTag is the data element tag of RepeatInterval RepeatIntervalTag = DataElementTag(0x00280068) // BitsGroupedTag is the data element tag of BitsGrouped BitsGroupedTag = DataElementTag(0x00280069) // PerimeterTableTag is the data element tag of PerimeterTable PerimeterTableTag = DataElementTag(0x00280070) // PerimeterValueTag is the data element tag of PerimeterValue PerimeterValueTag = DataElementTag(0x00280071) // PredictorRowsTag is the data element tag of PredictorRows PredictorRowsTag = DataElementTag(0x00280080) // PredictorColumnsTag is the data element tag of PredictorColumns PredictorColumnsTag = DataElementTag(0x00280081) // PredictorConstantsTag is the data element tag of PredictorConstants PredictorConstantsTag = DataElementTag(0x00280082) // BlockedPixelsTag is the data element tag of BlockedPixels BlockedPixelsTag = DataElementTag(0x00280090) // BlockRowsTag is the data element tag of BlockRows BlockRowsTag = DataElementTag(0x00280091) // BlockColumnsTag is the data element tag of BlockColumns BlockColumnsTag = DataElementTag(0x00280092) // RowOverlapTag is the data element tag of RowOverlap RowOverlapTag = DataElementTag(0x00280093) // ColumnOverlapTag is the data element tag of ColumnOverlap ColumnOverlapTag = DataElementTag(0x00280094) // BitsAllocatedTag is the data element tag of BitsAllocated BitsAllocatedTag = DataElementTag(0x00280100) // BitsStoredTag is the data element tag of BitsStored BitsStoredTag = DataElementTag(0x00280101) // HighBitTag is the data element tag of HighBit HighBitTag = DataElementTag(0x00280102) // PixelRepresentationTag is the data element tag of PixelRepresentation PixelRepresentationTag = DataElementTag(0x00280103) // SmallestValidPixelValueTag is the data element tag of SmallestValidPixelValue SmallestValidPixelValueTag = DataElementTag(0x00280104) // LargestValidPixelValueTag is the data element tag of LargestValidPixelValue LargestValidPixelValueTag = DataElementTag(0x00280105) // SmallestImagePixelValueTag is the data element tag of SmallestImagePixelValue SmallestImagePixelValueTag = DataElementTag(0x00280106) // LargestImagePixelValueTag is the data element tag of LargestImagePixelValue LargestImagePixelValueTag = DataElementTag(0x00280107) // SmallestPixelValueInSeriesTag is the data element tag of SmallestPixelValueInSeries SmallestPixelValueInSeriesTag = DataElementTag(0x00280108) // LargestPixelValueInSeriesTag is the data element tag of LargestPixelValueInSeries LargestPixelValueInSeriesTag = DataElementTag(0x00280109) // SmallestImagePixelValueInPlaneTag is the data element tag of SmallestImagePixelValueInPlane SmallestImagePixelValueInPlaneTag = DataElementTag(0x00280110) // LargestImagePixelValueInPlaneTag is the data element tag of LargestImagePixelValueInPlane LargestImagePixelValueInPlaneTag = DataElementTag(0x00280111) // PixelPaddingValueTag is the data element tag of PixelPaddingValue PixelPaddingValueTag = DataElementTag(0x00280120) // PixelPaddingRangeLimitTag is the data element tag of PixelPaddingRangeLimit PixelPaddingRangeLimitTag = DataElementTag(0x00280121) // FloatPixelPaddingValueTag is the data element tag of FloatPixelPaddingValue FloatPixelPaddingValueTag = DataElementTag(0x00280122) // DoubleFloatPixelPaddingValueTag is the data element tag of DoubleFloatPixelPaddingValue DoubleFloatPixelPaddingValueTag = DataElementTag(0x00280123) // FloatPixelPaddingRangeLimitTag is the data element tag of FloatPixelPaddingRangeLimit FloatPixelPaddingRangeLimitTag = DataElementTag(0x00280124) // DoubleFloatPixelPaddingRangeLimitTag is the data element tag of DoubleFloatPixelPaddingRangeLimit DoubleFloatPixelPaddingRangeLimitTag = DataElementTag(0x00280125) // ImageLocationTag is the data element tag of ImageLocation ImageLocationTag = DataElementTag(0x00280200) // QualityControlImageTag is the data element tag of QualityControlImage QualityControlImageTag = DataElementTag(0x00280300) // BurnedInAnnotationTag is the data element tag of BurnedInAnnotation BurnedInAnnotationTag = DataElementTag(0x00280301) // RecognizableVisualFeaturesTag is the data element tag of RecognizableVisualFeatures RecognizableVisualFeaturesTag = DataElementTag(0x00280302) // LongitudinalTemporalInformationModifiedTag is the data element tag of LongitudinalTemporalInformationModified LongitudinalTemporalInformationModifiedTag = DataElementTag(0x00280303) // ReferencedColorPaletteInstanceUIDTag is the data element tag of ReferencedColorPaletteInstanceUID ReferencedColorPaletteInstanceUIDTag = DataElementTag(0x00280304) // RowsForNthOrderCoefficientsTag is the data element tag of RowsForNthOrderCoefficients RowsForNthOrderCoefficientsTag = DataElementTag(0x00280400) // TransformLabelTag is the data element tag of TransformLabel TransformLabelTag = DataElementTag(0x00280400) // TransformVersionNumberTag is the data element tag of TransformVersionNumber TransformVersionNumberTag = DataElementTag(0x00280401) // ColumnsForNthOrderCoefficientsTag is the data element tag of ColumnsForNthOrderCoefficients ColumnsForNthOrderCoefficientsTag = DataElementTag(0x00280401) // CoefficientCodingTag is the data element tag of CoefficientCoding CoefficientCodingTag = DataElementTag(0x00280402) // NumberOfTransformStepsTag is the data element tag of NumberOfTransformSteps NumberOfTransformStepsTag = DataElementTag(0x00280402) // SequenceOfCompressedDataTag is the data element tag of SequenceOfCompressedData SequenceOfCompressedDataTag = DataElementTag(0x00280403) // CoefficientCodingPointersTag is the data element tag of CoefficientCodingPointers CoefficientCodingPointersTag = DataElementTag(0x00280403) // DetailsOfCoefficientsTag is the data element tag of DetailsOfCoefficients DetailsOfCoefficientsTag = DataElementTag(0x00280404) // DCTLabelTag is the data element tag of DCTLabel DCTLabelTag = DataElementTag(0x00280700) // DataBlockDescriptionTag is the data element tag of DataBlockDescription DataBlockDescriptionTag = DataElementTag(0x00280701) // DataBlockTag is the data element tag of DataBlock DataBlockTag = DataElementTag(0x00280702) // NormalizationFactorFormatTag is the data element tag of NormalizationFactorFormat NormalizationFactorFormatTag = DataElementTag(0x00280710) // ZonalMapNumberFormatTag is the data element tag of ZonalMapNumberFormat ZonalMapNumberFormatTag = DataElementTag(0x00280720) // ZonalMapLocationTag is the data element tag of ZonalMapLocation ZonalMapLocationTag = DataElementTag(0x00280721) // ZonalMapFormatTag is the data element tag of ZonalMapFormat ZonalMapFormatTag = DataElementTag(0x00280722) // AdaptiveMapFormatTag is the data element tag of AdaptiveMapFormat AdaptiveMapFormatTag = DataElementTag(0x00280730) // CodeNumberFormatTag is the data element tag of CodeNumberFormat CodeNumberFormatTag = DataElementTag(0x00280740) // CodeLabelTag is the data element tag of CodeLabel CodeLabelTag = DataElementTag(0x00280800) // NumberOfTablesTag is the data element tag of NumberOfTables NumberOfTablesTag = DataElementTag(0x00280802) // CodeTableLocationTag is the data element tag of CodeTableLocation CodeTableLocationTag = DataElementTag(0x00280803) // BitsForCodeWordTag is the data element tag of BitsForCodeWord BitsForCodeWordTag = DataElementTag(0x00280804) // ImageDataLocationTag is the data element tag of ImageDataLocation ImageDataLocationTag = DataElementTag(0x00280808) // PixelSpacingCalibrationTypeTag is the data element tag of PixelSpacingCalibrationType PixelSpacingCalibrationTypeTag = DataElementTag(0x00280A02) // PixelSpacingCalibrationDescriptionTag is the data element tag of PixelSpacingCalibrationDescription PixelSpacingCalibrationDescriptionTag = DataElementTag(0x00280A04) // PixelIntensityRelationshipTag is the data element tag of PixelIntensityRelationship PixelIntensityRelationshipTag = DataElementTag(0x00281040) // PixelIntensityRelationshipSignTag is the data element tag of PixelIntensityRelationshipSign PixelIntensityRelationshipSignTag = DataElementTag(0x00281041) // WindowCenterTag is the data element tag of WindowCenter WindowCenterTag = DataElementTag(0x00281050) // WindowWidthTag is the data element tag of WindowWidth WindowWidthTag = DataElementTag(0x00281051) // RescaleInterceptTag is the data element tag of RescaleIntercept RescaleInterceptTag = DataElementTag(0x00281052) // RescaleSlopeTag is the data element tag of RescaleSlope RescaleSlopeTag = DataElementTag(0x00281053) // RescaleTypeTag is the data element tag of RescaleType RescaleTypeTag = DataElementTag(0x00281054) // WindowCenterWidthExplanationTag is the data element tag of WindowCenterWidthExplanation WindowCenterWidthExplanationTag = DataElementTag(0x00281055) // VOILUTFunctionTag is the data element tag of VOILUTFunction VOILUTFunctionTag = DataElementTag(0x00281056) // GrayScaleTag is the data element tag of GrayScale GrayScaleTag = DataElementTag(0x00281080) // RecommendedViewingModeTag is the data element tag of RecommendedViewingMode RecommendedViewingModeTag = DataElementTag(0x00281090) // GrayLookupTableDescriptorTag is the data element tag of GrayLookupTableDescriptor GrayLookupTableDescriptorTag = DataElementTag(0x00281100) // RedPaletteColorLookupTableDescriptorTag is the data element tag of RedPaletteColorLookupTableDescriptor RedPaletteColorLookupTableDescriptorTag = DataElementTag(0x00281101) // GreenPaletteColorLookupTableDescriptorTag is the data element tag of GreenPaletteColorLookupTableDescriptor GreenPaletteColorLookupTableDescriptorTag = DataElementTag(0x00281102) // BluePaletteColorLookupTableDescriptorTag is the data element tag of BluePaletteColorLookupTableDescriptor BluePaletteColorLookupTableDescriptorTag = DataElementTag(0x00281103) // AlphaPaletteColorLookupTableDescriptorTag is the data element tag of AlphaPaletteColorLookupTableDescriptor AlphaPaletteColorLookupTableDescriptorTag = DataElementTag(0x00281104) // LargeRedPaletteColorLookupTableDescriptorTag is the data element tag of LargeRedPaletteColorLookupTableDescriptor LargeRedPaletteColorLookupTableDescriptorTag = DataElementTag(0x00281111) // LargeGreenPaletteColorLookupTableDescriptorTag is the data element tag of LargeGreenPaletteColorLookupTableDescriptor LargeGreenPaletteColorLookupTableDescriptorTag = DataElementTag(0x00281112) // LargeBluePaletteColorLookupTableDescriptorTag is the data element tag of LargeBluePaletteColorLookupTableDescriptor LargeBluePaletteColorLookupTableDescriptorTag = DataElementTag(0x00281113) // PaletteColorLookupTableUIDTag is the data element tag of PaletteColorLookupTableUID PaletteColorLookupTableUIDTag = DataElementTag(0x00281199) // GrayLookupTableDataTag is the data element tag of GrayLookupTableData GrayLookupTableDataTag = DataElementTag(0x00281200) // RedPaletteColorLookupTableDataTag is the data element tag of RedPaletteColorLookupTableData RedPaletteColorLookupTableDataTag = DataElementTag(0x00281201) // GreenPaletteColorLookupTableDataTag is the data element tag of GreenPaletteColorLookupTableData GreenPaletteColorLookupTableDataTag = DataElementTag(0x00281202) // BluePaletteColorLookupTableDataTag is the data element tag of BluePaletteColorLookupTableData BluePaletteColorLookupTableDataTag = DataElementTag(0x00281203) // AlphaPaletteColorLookupTableDataTag is the data element tag of AlphaPaletteColorLookupTableData AlphaPaletteColorLookupTableDataTag = DataElementTag(0x00281204) // LargeRedPaletteColorLookupTableDataTag is the data element tag of LargeRedPaletteColorLookupTableData LargeRedPaletteColorLookupTableDataTag = DataElementTag(0x00281211) // LargeGreenPaletteColorLookupTableDataTag is the data element tag of LargeGreenPaletteColorLookupTableData LargeGreenPaletteColorLookupTableDataTag = DataElementTag(0x00281212) // LargeBluePaletteColorLookupTableDataTag is the data element tag of LargeBluePaletteColorLookupTableData LargeBluePaletteColorLookupTableDataTag = DataElementTag(0x00281213) // LargePaletteColorLookupTableUIDTag is the data element tag of LargePaletteColorLookupTableUID LargePaletteColorLookupTableUIDTag = DataElementTag(0x00281214) // SegmentedRedPaletteColorLookupTableDataTag is the data element tag of SegmentedRedPaletteColorLookupTableData SegmentedRedPaletteColorLookupTableDataTag = DataElementTag(0x00281221) // SegmentedGreenPaletteColorLookupTableDataTag is the data element tag of SegmentedGreenPaletteColorLookupTableData SegmentedGreenPaletteColorLookupTableDataTag = DataElementTag(0x00281222) // SegmentedBluePaletteColorLookupTableDataTag is the data element tag of SegmentedBluePaletteColorLookupTableData SegmentedBluePaletteColorLookupTableDataTag = DataElementTag(0x00281223) // SegmentedAlphaPaletteColorLookupTableDataTag is the data element tag of SegmentedAlphaPaletteColorLookupTableData SegmentedAlphaPaletteColorLookupTableDataTag = DataElementTag(0x00281224) // StoredValueColorRangeSequenceTag is the data element tag of StoredValueColorRangeSequence StoredValueColorRangeSequenceTag = DataElementTag(0x00281230) // MinimumStoredValueMappedTag is the data element tag of MinimumStoredValueMapped MinimumStoredValueMappedTag = DataElementTag(0x00281231) // MaximumStoredValueMappedTag is the data element tag of MaximumStoredValueMapped MaximumStoredValueMappedTag = DataElementTag(0x00281232) // BreastImplantPresentTag is the data element tag of BreastImplantPresent BreastImplantPresentTag = DataElementTag(0x00281300) // PartialViewTag is the data element tag of PartialView PartialViewTag = DataElementTag(0x00281350) // PartialViewDescriptionTag is the data element tag of PartialViewDescription PartialViewDescriptionTag = DataElementTag(0x00281351) // PartialViewCodeSequenceTag is the data element tag of PartialViewCodeSequence PartialViewCodeSequenceTag = DataElementTag(0x00281352) // SpatialLocationsPreservedTag is the data element tag of SpatialLocationsPreserved SpatialLocationsPreservedTag = DataElementTag(0x0028135A) // DataFrameAssignmentSequenceTag is the data element tag of DataFrameAssignmentSequence DataFrameAssignmentSequenceTag = DataElementTag(0x00281401) // DataPathAssignmentTag is the data element tag of DataPathAssignment DataPathAssignmentTag = DataElementTag(0x00281402) // BitsMappedToColorLookupTableTag is the data element tag of BitsMappedToColorLookupTable BitsMappedToColorLookupTableTag = DataElementTag(0x00281403) // BlendingLUT1SequenceTag is the data element tag of BlendingLUT1Sequence BlendingLUT1SequenceTag = DataElementTag(0x00281404) // BlendingLUT1TransferFunctionTag is the data element tag of BlendingLUT1TransferFunction BlendingLUT1TransferFunctionTag = DataElementTag(0x00281405) // BlendingWeightConstantTag is the data element tag of BlendingWeightConstant BlendingWeightConstantTag = DataElementTag(0x00281406) // BlendingLookupTableDescriptorTag is the data element tag of BlendingLookupTableDescriptor BlendingLookupTableDescriptorTag = DataElementTag(0x00281407) // BlendingLookupTableDataTag is the data element tag of BlendingLookupTableData BlendingLookupTableDataTag = DataElementTag(0x00281408) // EnhancedPaletteColorLookupTableSequenceTag is the data element tag of EnhancedPaletteColorLookupTableSequence EnhancedPaletteColorLookupTableSequenceTag = DataElementTag(0x0028140B) // BlendingLUT2SequenceTag is the data element tag of BlendingLUT2Sequence BlendingLUT2SequenceTag = DataElementTag(0x0028140C) // BlendingLUT2TransferFunctionTag is the data element tag of BlendingLUT2TransferFunction BlendingLUT2TransferFunctionTag = DataElementTag(0x0028140D) // DataPathIDTag is the data element tag of DataPathID DataPathIDTag = DataElementTag(0x0028140E) // RGBLUTTransferFunctionTag is the data element tag of RGBLUTTransferFunction RGBLUTTransferFunctionTag = DataElementTag(0x0028140F) // AlphaLUTTransferFunctionTag is the data element tag of AlphaLUTTransferFunction AlphaLUTTransferFunctionTag = DataElementTag(0x00281410) // ICCProfileTag is the data element tag of ICCProfile ICCProfileTag = DataElementTag(0x00282000) // ColorSpaceTag is the data element tag of ColorSpace ColorSpaceTag = DataElementTag(0x00282002) // LossyImageCompressionTag is the data element tag of LossyImageCompression LossyImageCompressionTag = DataElementTag(0x00282110) // LossyImageCompressionRatioTag is the data element tag of LossyImageCompressionRatio LossyImageCompressionRatioTag = DataElementTag(0x00282112) // LossyImageCompressionMethodTag is the data element tag of LossyImageCompressionMethod LossyImageCompressionMethodTag = DataElementTag(0x00282114) // ModalityLUTSequenceTag is the data element tag of ModalityLUTSequence ModalityLUTSequenceTag = DataElementTag(0x00283000) // LUTDescriptorTag is the data element tag of LUTDescriptor LUTDescriptorTag = DataElementTag(0x00283002) // LUTExplanationTag is the data element tag of LUTExplanation LUTExplanationTag = DataElementTag(0x00283003) // ModalityLUTTypeTag is the data element tag of ModalityLUTType ModalityLUTTypeTag = DataElementTag(0x00283004) // LUTDataTag is the data element tag of LUTData LUTDataTag = DataElementTag(0x00283006) // VOILUTSequenceTag is the data element tag of VOILUTSequence VOILUTSequenceTag = DataElementTag(0x00283010) // SoftcopyVOILUTSequenceTag is the data element tag of SoftcopyVOILUTSequence SoftcopyVOILUTSequenceTag = DataElementTag(0x00283110) // ImagePresentationCommentsTag is the data element tag of ImagePresentationComments ImagePresentationCommentsTag = DataElementTag(0x00284000) // BiPlaneAcquisitionSequenceTag is the data element tag of BiPlaneAcquisitionSequence BiPlaneAcquisitionSequenceTag = DataElementTag(0x00285000) // RepresentativeFrameNumberTag is the data element tag of RepresentativeFrameNumber RepresentativeFrameNumberTag = DataElementTag(0x00286010) // FrameNumbersOfInterestTag is the data element tag of FrameNumbersOfInterest FrameNumbersOfInterestTag = DataElementTag(0x00286020) // FrameOfInterestDescriptionTag is the data element tag of FrameOfInterestDescription FrameOfInterestDescriptionTag = DataElementTag(0x00286022) // FrameOfInterestTypeTag is the data element tag of FrameOfInterestType FrameOfInterestTypeTag = DataElementTag(0x00286023) // MaskPointersTag is the data element tag of MaskPointers MaskPointersTag = DataElementTag(0x00286030) // RWavePointerTag is the data element tag of RWavePointer RWavePointerTag = DataElementTag(0x00286040) // MaskSubtractionSequenceTag is the data element tag of MaskSubtractionSequence MaskSubtractionSequenceTag = DataElementTag(0x00286100) // MaskOperationTag is the data element tag of MaskOperation MaskOperationTag = DataElementTag(0x00286101) // ApplicableFrameRangeTag is the data element tag of ApplicableFrameRange ApplicableFrameRangeTag = DataElementTag(0x00286102) // MaskFrameNumbersTag is the data element tag of MaskFrameNumbers MaskFrameNumbersTag = DataElementTag(0x00286110) // ContrastFrameAveragingTag is the data element tag of ContrastFrameAveraging ContrastFrameAveragingTag = DataElementTag(0x00286112) // MaskSubPixelShiftTag is the data element tag of MaskSubPixelShift MaskSubPixelShiftTag = DataElementTag(0x00286114) // TIDOffsetTag is the data element tag of TIDOffset TIDOffsetTag = DataElementTag(0x00286120) // MaskOperationExplanationTag is the data element tag of MaskOperationExplanation MaskOperationExplanationTag = DataElementTag(0x00286190) // EquipmentAdministratorSequenceTag is the data element tag of EquipmentAdministratorSequence EquipmentAdministratorSequenceTag = DataElementTag(0x00287000) // NumberOfDisplaySubsystemsTag is the data element tag of NumberOfDisplaySubsystems NumberOfDisplaySubsystemsTag = DataElementTag(0x00287001) // CurrentConfigurationIDTag is the data element tag of CurrentConfigurationID CurrentConfigurationIDTag = DataElementTag(0x00287002) // DisplaySubsystemIDTag is the data element tag of DisplaySubsystemID DisplaySubsystemIDTag = DataElementTag(0x00287003) // DisplaySubsystemNameTag is the data element tag of DisplaySubsystemName DisplaySubsystemNameTag = DataElementTag(0x00287004) // DisplaySubsystemDescriptionTag is the data element tag of DisplaySubsystemDescription DisplaySubsystemDescriptionTag = DataElementTag(0x00287005) // SystemStatusTag is the data element tag of SystemStatus SystemStatusTag = DataElementTag(0x00287006) // SystemStatusCommentTag is the data element tag of SystemStatusComment SystemStatusCommentTag = DataElementTag(0x00287007) // TargetLuminanceCharacteristicsSequenceTag is the data element tag of TargetLuminanceCharacteristicsSequence TargetLuminanceCharacteristicsSequenceTag = DataElementTag(0x00287008) // LuminanceCharacteristicsIDTag is the data element tag of LuminanceCharacteristicsID LuminanceCharacteristicsIDTag = DataElementTag(0x00287009) // DisplaySubsystemConfigurationSequenceTag is the data element tag of DisplaySubsystemConfigurationSequence DisplaySubsystemConfigurationSequenceTag = DataElementTag(0x0028700A) // ConfigurationIDTag is the data element tag of ConfigurationID ConfigurationIDTag = DataElementTag(0x0028700B) // ConfigurationNameTag is the data element tag of ConfigurationName ConfigurationNameTag = DataElementTag(0x0028700C) // ConfigurationDescriptionTag is the data element tag of ConfigurationDescription ConfigurationDescriptionTag = DataElementTag(0x0028700D) // ReferencedTargetLuminanceCharacteristicsIDTag is the data element tag of ReferencedTargetLuminanceCharacteristicsID ReferencedTargetLuminanceCharacteristicsIDTag = DataElementTag(0x0028700E) // QAResultsSequenceTag is the data element tag of QAResultsSequence QAResultsSequenceTag = DataElementTag(0x0028700F) // DisplaySubsystemQAResultsSequenceTag is the data element tag of DisplaySubsystemQAResultsSequence DisplaySubsystemQAResultsSequenceTag = DataElementTag(0x00287010) // ConfigurationQAResultsSequenceTag is the data element tag of ConfigurationQAResultsSequence ConfigurationQAResultsSequenceTag = DataElementTag(0x00287011) // MeasurementEquipmentSequenceTag is the data element tag of MeasurementEquipmentSequence MeasurementEquipmentSequenceTag = DataElementTag(0x00287012) // MeasurementFunctionsTag is the data element tag of MeasurementFunctions MeasurementFunctionsTag = DataElementTag(0x00287013) // MeasurementEquipmentTypeTag is the data element tag of MeasurementEquipmentType MeasurementEquipmentTypeTag = DataElementTag(0x00287014) // VisualEvaluationResultSequenceTag is the data element tag of VisualEvaluationResultSequence VisualEvaluationResultSequenceTag = DataElementTag(0x00287015) // DisplayCalibrationResultSequenceTag is the data element tag of DisplayCalibrationResultSequence DisplayCalibrationResultSequenceTag = DataElementTag(0x00287016) // DDLValueTag is the data element tag of DDLValue DDLValueTag = DataElementTag(0x00287017) // CIExyWhitePointTag is the data element tag of CIExyWhitePoint CIExyWhitePointTag = DataElementTag(0x00287018) // DisplayFunctionTypeTag is the data element tag of DisplayFunctionType DisplayFunctionTypeTag = DataElementTag(0x00287019) // GammaValueTag is the data element tag of GammaValue GammaValueTag = DataElementTag(0x0028701A) // NumberOfLuminancePointsTag is the data element tag of NumberOfLuminancePoints NumberOfLuminancePointsTag = DataElementTag(0x0028701B) // LuminanceResponseSequenceTag is the data element tag of LuminanceResponseSequence LuminanceResponseSequenceTag = DataElementTag(0x0028701C) // TargetMinimumLuminanceTag is the data element tag of TargetMinimumLuminance TargetMinimumLuminanceTag = DataElementTag(0x0028701D) // TargetMaximumLuminanceTag is the data element tag of TargetMaximumLuminance TargetMaximumLuminanceTag = DataElementTag(0x0028701E) // LuminanceValueTag is the data element tag of LuminanceValue LuminanceValueTag = DataElementTag(0x0028701F) // LuminanceResponseDescriptionTag is the data element tag of LuminanceResponseDescription LuminanceResponseDescriptionTag = DataElementTag(0x00287020) // WhitePointFlagTag is the data element tag of WhitePointFlag WhitePointFlagTag = DataElementTag(0x00287021) // DisplayDeviceTypeCodeSequenceTag is the data element tag of DisplayDeviceTypeCodeSequence DisplayDeviceTypeCodeSequenceTag = DataElementTag(0x00287022) // DisplaySubsystemSequenceTag is the data element tag of DisplaySubsystemSequence DisplaySubsystemSequenceTag = DataElementTag(0x00287023) // LuminanceResultSequenceTag is the data element tag of LuminanceResultSequence LuminanceResultSequenceTag = DataElementTag(0x00287024) // AmbientLightValueSourceTag is the data element tag of AmbientLightValueSource AmbientLightValueSourceTag = DataElementTag(0x00287025) // MeasuredCharacteristicsTag is the data element tag of MeasuredCharacteristics MeasuredCharacteristicsTag = DataElementTag(0x00287026) // LuminanceUniformityResultSequenceTag is the data element tag of LuminanceUniformityResultSequence LuminanceUniformityResultSequenceTag = DataElementTag(0x00287027) // VisualEvaluationTestSequenceTag is the data element tag of VisualEvaluationTestSequence VisualEvaluationTestSequenceTag = DataElementTag(0x00287028) // TestResultTag is the data element tag of TestResult TestResultTag = DataElementTag(0x00287029) // TestResultCommentTag is the data element tag of TestResultComment TestResultCommentTag = DataElementTag(0x0028702A) // TestImageValidationTag is the data element tag of TestImageValidation TestImageValidationTag = DataElementTag(0x0028702B) // TestPatternCodeSequenceTag is the data element tag of TestPatternCodeSequence TestPatternCodeSequenceTag = DataElementTag(0x0028702C) // MeasurementPatternCodeSequenceTag is the data element tag of MeasurementPatternCodeSequence MeasurementPatternCodeSequenceTag = DataElementTag(0x0028702D) // VisualEvaluationMethodCodeSequenceTag is the data element tag of VisualEvaluationMethodCodeSequence VisualEvaluationMethodCodeSequenceTag = DataElementTag(0x0028702E) // PixelDataProviderURLTag is the data element tag of PixelDataProviderURL PixelDataProviderURLTag = DataElementTag(0x00287FE0) // DataPointRowsTag is the data element tag of DataPointRows DataPointRowsTag = DataElementTag(0x00289001) // DataPointColumnsTag is the data element tag of DataPointColumns DataPointColumnsTag = DataElementTag(0x00289002) // SignalDomainColumnsTag is the data element tag of SignalDomainColumns SignalDomainColumnsTag = DataElementTag(0x00289003) // LargestMonochromePixelValueTag is the data element tag of LargestMonochromePixelValue LargestMonochromePixelValueTag = DataElementTag(0x00289099) // DataRepresentationTag is the data element tag of DataRepresentation DataRepresentationTag = DataElementTag(0x00289108) // PixelMeasuresSequenceTag is the data element tag of PixelMeasuresSequence PixelMeasuresSequenceTag = DataElementTag(0x00289110) // FrameVOILUTSequenceTag is the data element tag of FrameVOILUTSequence FrameVOILUTSequenceTag = DataElementTag(0x00289132) // PixelValueTransformationSequenceTag is the data element tag of PixelValueTransformationSequence PixelValueTransformationSequenceTag = DataElementTag(0x00289145) // SignalDomainRowsTag is the data element tag of SignalDomainRows SignalDomainRowsTag = DataElementTag(0x00289235) // DisplayFilterPercentageTag is the data element tag of DisplayFilterPercentage DisplayFilterPercentageTag = DataElementTag(0x00289411) // FramePixelShiftSequenceTag is the data element tag of FramePixelShiftSequence FramePixelShiftSequenceTag = DataElementTag(0x00289415) // SubtractionItemIDTag is the data element tag of SubtractionItemID SubtractionItemIDTag = DataElementTag(0x00289416) // PixelIntensityRelationshipLUTSequenceTag is the data element tag of PixelIntensityRelationshipLUTSequence PixelIntensityRelationshipLUTSequenceTag = DataElementTag(0x00289422) // FramePixelDataPropertiesSequenceTag is the data element tag of FramePixelDataPropertiesSequence FramePixelDataPropertiesSequenceTag = DataElementTag(0x00289443) // GeometricalPropertiesTag is the data element tag of GeometricalProperties GeometricalPropertiesTag = DataElementTag(0x00289444) // GeometricMaximumDistortionTag is the data element tag of GeometricMaximumDistortion GeometricMaximumDistortionTag = DataElementTag(0x00289445) // ImageProcessingAppliedTag is the data element tag of ImageProcessingApplied ImageProcessingAppliedTag = DataElementTag(0x00289446) // MaskSelectionModeTag is the data element tag of MaskSelectionMode MaskSelectionModeTag = DataElementTag(0x00289454) // LUTFunctionTag is the data element tag of LUTFunction LUTFunctionTag = DataElementTag(0x00289474) // MaskVisibilityPercentageTag is the data element tag of MaskVisibilityPercentage MaskVisibilityPercentageTag = DataElementTag(0x00289478) // PixelShiftSequenceTag is the data element tag of PixelShiftSequence PixelShiftSequenceTag = DataElementTag(0x00289501) // RegionPixelShiftSequenceTag is the data element tag of RegionPixelShiftSequence RegionPixelShiftSequenceTag = DataElementTag(0x00289502) // VerticesOfTheRegionTag is the data element tag of VerticesOfTheRegion VerticesOfTheRegionTag = DataElementTag(0x00289503) // MultiFramePresentationSequenceTag is the data element tag of MultiFramePresentationSequence MultiFramePresentationSequenceTag = DataElementTag(0x00289505) // PixelShiftFrameRangeTag is the data element tag of PixelShiftFrameRange PixelShiftFrameRangeTag = DataElementTag(0x00289506) // LUTFrameRangeTag is the data element tag of LUTFrameRange LUTFrameRangeTag = DataElementTag(0x00289507) // ImageToEquipmentMappingMatrixTag is the data element tag of ImageToEquipmentMappingMatrix ImageToEquipmentMappingMatrixTag = DataElementTag(0x00289520) // EquipmentCoordinateSystemIdentificationTag is the data element tag of EquipmentCoordinateSystemIdentification EquipmentCoordinateSystemIdentificationTag = DataElementTag(0x00289537) // StudyStatusIDTag is the data element tag of StudyStatusID StudyStatusIDTag = DataElementTag(0x0032000A) // StudyPriorityIDTag is the data element tag of StudyPriorityID StudyPriorityIDTag = DataElementTag(0x0032000C) // StudyIDIssuerTag is the data element tag of StudyIDIssuer StudyIDIssuerTag = DataElementTag(0x00320012) // StudyVerifiedDateTag is the data element tag of StudyVerifiedDate StudyVerifiedDateTag = DataElementTag(0x00320032) // StudyVerifiedTimeTag is the data element tag of StudyVerifiedTime StudyVerifiedTimeTag = DataElementTag(0x00320033) // StudyReadDateTag is the data element tag of StudyReadDate StudyReadDateTag = DataElementTag(0x00320034) // StudyReadTimeTag is the data element tag of StudyReadTime StudyReadTimeTag = DataElementTag(0x00320035) // ScheduledStudyStartDateTag is the data element tag of ScheduledStudyStartDate ScheduledStudyStartDateTag = DataElementTag(0x00321000) // ScheduledStudyStartTimeTag is the data element tag of ScheduledStudyStartTime ScheduledStudyStartTimeTag = DataElementTag(0x00321001) // ScheduledStudyStopDateTag is the data element tag of ScheduledStudyStopDate ScheduledStudyStopDateTag = DataElementTag(0x00321010) // ScheduledStudyStopTimeTag is the data element tag of ScheduledStudyStopTime ScheduledStudyStopTimeTag = DataElementTag(0x00321011) // ScheduledStudyLocationTag is the data element tag of ScheduledStudyLocation ScheduledStudyLocationTag = DataElementTag(0x00321020) // ScheduledStudyLocationAETitleTag is the data element tag of ScheduledStudyLocationAETitle ScheduledStudyLocationAETitleTag = DataElementTag(0x00321021) // ReasonForStudyTag is the data element tag of ReasonForStudy ReasonForStudyTag = DataElementTag(0x00321030) // RequestingPhysicianIdentificationSequenceTag is the data element tag of RequestingPhysicianIdentificationSequence RequestingPhysicianIdentificationSequenceTag = DataElementTag(0x00321031) // RequestingPhysicianTag is the data element tag of RequestingPhysician RequestingPhysicianTag = DataElementTag(0x00321032) // RequestingServiceTag is the data element tag of RequestingService RequestingServiceTag = DataElementTag(0x00321033) // RequestingServiceCodeSequenceTag is the data element tag of RequestingServiceCodeSequence RequestingServiceCodeSequenceTag = DataElementTag(0x00321034) // StudyArrivalDateTag is the data element tag of StudyArrivalDate StudyArrivalDateTag = DataElementTag(0x00321040) // StudyArrivalTimeTag is the data element tag of StudyArrivalTime StudyArrivalTimeTag = DataElementTag(0x00321041) // StudyCompletionDateTag is the data element tag of StudyCompletionDate StudyCompletionDateTag = DataElementTag(0x00321050) // StudyCompletionTimeTag is the data element tag of StudyCompletionTime StudyCompletionTimeTag = DataElementTag(0x00321051) // StudyComponentStatusIDTag is the data element tag of StudyComponentStatusID StudyComponentStatusIDTag = DataElementTag(0x00321055) // RequestedProcedureDescriptionTag is the data element tag of RequestedProcedureDescription RequestedProcedureDescriptionTag = DataElementTag(0x00321060) // RequestedProcedureCodeSequenceTag is the data element tag of RequestedProcedureCodeSequence RequestedProcedureCodeSequenceTag = DataElementTag(0x00321064) // ReasonForVisitTag is the data element tag of ReasonForVisit ReasonForVisitTag = DataElementTag(0x00321066) // ReasonForVisitCodeSequenceTag is the data element tag of ReasonForVisitCodeSequence ReasonForVisitCodeSequenceTag = DataElementTag(0x00321067) // RequestedContrastAgentTag is the data element tag of RequestedContrastAgent RequestedContrastAgentTag = DataElementTag(0x00321070) // StudyCommentsTag is the data element tag of StudyComments StudyCommentsTag = DataElementTag(0x00324000) // ReferencedPatientAliasSequenceTag is the data element tag of ReferencedPatientAliasSequence ReferencedPatientAliasSequenceTag = DataElementTag(0x00380004) // VisitStatusIDTag is the data element tag of VisitStatusID VisitStatusIDTag = DataElementTag(0x00380008) // AdmissionIDTag is the data element tag of AdmissionID AdmissionIDTag = DataElementTag(0x00380010) // IssuerOfAdmissionIDTag is the data element tag of IssuerOfAdmissionID IssuerOfAdmissionIDTag = DataElementTag(0x00380011) // IssuerOfAdmissionIDSequenceTag is the data element tag of IssuerOfAdmissionIDSequence IssuerOfAdmissionIDSequenceTag = DataElementTag(0x00380014) // RouteOfAdmissionsTag is the data element tag of RouteOfAdmissions RouteOfAdmissionsTag = DataElementTag(0x00380016) // ScheduledAdmissionDateTag is the data element tag of ScheduledAdmissionDate ScheduledAdmissionDateTag = DataElementTag(0x0038001A) // ScheduledAdmissionTimeTag is the data element tag of ScheduledAdmissionTime ScheduledAdmissionTimeTag = DataElementTag(0x0038001B) // ScheduledDischargeDateTag is the data element tag of ScheduledDischargeDate ScheduledDischargeDateTag = DataElementTag(0x0038001C) // ScheduledDischargeTimeTag is the data element tag of ScheduledDischargeTime ScheduledDischargeTimeTag = DataElementTag(0x0038001D) // ScheduledPatientInstitutionResidenceTag is the data element tag of ScheduledPatientInstitutionResidence ScheduledPatientInstitutionResidenceTag = DataElementTag(0x0038001E) // AdmittingDateTag is the data element tag of AdmittingDate AdmittingDateTag = DataElementTag(0x00380020) // AdmittingTimeTag is the data element tag of AdmittingTime AdmittingTimeTag = DataElementTag(0x00380021) // DischargeDateTag is the data element tag of DischargeDate DischargeDateTag = DataElementTag(0x00380030) // DischargeTimeTag is the data element tag of DischargeTime DischargeTimeTag = DataElementTag(0x00380032) // DischargeDiagnosisDescriptionTag is the data element tag of DischargeDiagnosisDescription DischargeDiagnosisDescriptionTag = DataElementTag(0x00380040) // DischargeDiagnosisCodeSequenceTag is the data element tag of DischargeDiagnosisCodeSequence DischargeDiagnosisCodeSequenceTag = DataElementTag(0x00380044) // SpecialNeedsTag is the data element tag of SpecialNeeds SpecialNeedsTag = DataElementTag(0x00380050) // ServiceEpisodeIDTag is the data element tag of ServiceEpisodeID ServiceEpisodeIDTag = DataElementTag(0x00380060) // IssuerOfServiceEpisodeIDTag is the data element tag of IssuerOfServiceEpisodeID IssuerOfServiceEpisodeIDTag = DataElementTag(0x00380061) // ServiceEpisodeDescriptionTag is the data element tag of ServiceEpisodeDescription ServiceEpisodeDescriptionTag = DataElementTag(0x00380062) // IssuerOfServiceEpisodeIDSequenceTag is the data element tag of IssuerOfServiceEpisodeIDSequence IssuerOfServiceEpisodeIDSequenceTag = DataElementTag(0x00380064) // PertinentDocumentsSequenceTag is the data element tag of PertinentDocumentsSequence PertinentDocumentsSequenceTag = DataElementTag(0x00380100) // PertinentResourcesSequenceTag is the data element tag of PertinentResourcesSequence PertinentResourcesSequenceTag = DataElementTag(0x00380101) // ResourceDescriptionTag is the data element tag of ResourceDescription ResourceDescriptionTag = DataElementTag(0x00380102) // CurrentPatientLocationTag is the data element tag of CurrentPatientLocation CurrentPatientLocationTag = DataElementTag(0x00380300) // PatientInstitutionResidenceTag is the data element tag of PatientInstitutionResidence PatientInstitutionResidenceTag = DataElementTag(0x00380400) // PatientStateTag is the data element tag of PatientState PatientStateTag = DataElementTag(0x00380500) // PatientClinicalTrialParticipationSequenceTag is the data element tag of PatientClinicalTrialParticipationSequence PatientClinicalTrialParticipationSequenceTag = DataElementTag(0x00380502) // VisitCommentsTag is the data element tag of VisitComments VisitCommentsTag = DataElementTag(0x00384000) // WaveformOriginalityTag is the data element tag of WaveformOriginality WaveformOriginalityTag = DataElementTag(0x003A0004) // NumberOfWaveformChannelsTag is the data element tag of NumberOfWaveformChannels NumberOfWaveformChannelsTag = DataElementTag(0x003A0005) // NumberOfWaveformSamplesTag is the data element tag of NumberOfWaveformSamples NumberOfWaveformSamplesTag = DataElementTag(0x003A0010) // SamplingFrequencyTag is the data element tag of SamplingFrequency SamplingFrequencyTag = DataElementTag(0x003A001A) // MultiplexGroupLabelTag is the data element tag of MultiplexGroupLabel MultiplexGroupLabelTag = DataElementTag(0x003A0020) // ChannelDefinitionSequenceTag is the data element tag of ChannelDefinitionSequence ChannelDefinitionSequenceTag = DataElementTag(0x003A0200) // WaveformChannelNumberTag is the data element tag of WaveformChannelNumber WaveformChannelNumberTag = DataElementTag(0x003A0202) // ChannelLabelTag is the data element tag of ChannelLabel ChannelLabelTag = DataElementTag(0x003A0203) // ChannelStatusTag is the data element tag of ChannelStatus ChannelStatusTag = DataElementTag(0x003A0205) // ChannelSourceSequenceTag is the data element tag of ChannelSourceSequence ChannelSourceSequenceTag = DataElementTag(0x003A0208) // ChannelSourceModifiersSequenceTag is the data element tag of ChannelSourceModifiersSequence ChannelSourceModifiersSequenceTag = DataElementTag(0x003A0209) // SourceWaveformSequenceTag is the data element tag of SourceWaveformSequence SourceWaveformSequenceTag = DataElementTag(0x003A020A) // ChannelDerivationDescriptionTag is the data element tag of ChannelDerivationDescription ChannelDerivationDescriptionTag = DataElementTag(0x003A020C) // ChannelSensitivityTag is the data element tag of ChannelSensitivity ChannelSensitivityTag = DataElementTag(0x003A0210) // ChannelSensitivityUnitsSequenceTag is the data element tag of ChannelSensitivityUnitsSequence ChannelSensitivityUnitsSequenceTag = DataElementTag(0x003A0211) // ChannelSensitivityCorrectionFactorTag is the data element tag of ChannelSensitivityCorrectionFactor ChannelSensitivityCorrectionFactorTag = DataElementTag(0x003A0212) // ChannelBaselineTag is the data element tag of ChannelBaseline ChannelBaselineTag = DataElementTag(0x003A0213) // ChannelTimeSkewTag is the data element tag of ChannelTimeSkew ChannelTimeSkewTag = DataElementTag(0x003A0214) // ChannelSampleSkewTag is the data element tag of ChannelSampleSkew ChannelSampleSkewTag = DataElementTag(0x003A0215) // ChannelOffsetTag is the data element tag of ChannelOffset ChannelOffsetTag = DataElementTag(0x003A0218) // WaveformBitsStoredTag is the data element tag of WaveformBitsStored WaveformBitsStoredTag = DataElementTag(0x003A021A) // FilterLowFrequencyTag is the data element tag of FilterLowFrequency FilterLowFrequencyTag = DataElementTag(0x003A0220) // FilterHighFrequencyTag is the data element tag of FilterHighFrequency FilterHighFrequencyTag = DataElementTag(0x003A0221) // NotchFilterFrequencyTag is the data element tag of NotchFilterFrequency NotchFilterFrequencyTag = DataElementTag(0x003A0222) // NotchFilterBandwidthTag is the data element tag of NotchFilterBandwidth NotchFilterBandwidthTag = DataElementTag(0x003A0223) // WaveformDataDisplayScaleTag is the data element tag of WaveformDataDisplayScale WaveformDataDisplayScaleTag = DataElementTag(0x003A0230) // WaveformDisplayBackgroundCIELabValueTag is the data element tag of WaveformDisplayBackgroundCIELabValue WaveformDisplayBackgroundCIELabValueTag = DataElementTag(0x003A0231) // WaveformPresentationGroupSequenceTag is the data element tag of WaveformPresentationGroupSequence WaveformPresentationGroupSequenceTag = DataElementTag(0x003A0240) // PresentationGroupNumberTag is the data element tag of PresentationGroupNumber PresentationGroupNumberTag = DataElementTag(0x003A0241) // ChannelDisplaySequenceTag is the data element tag of ChannelDisplaySequence ChannelDisplaySequenceTag = DataElementTag(0x003A0242) // ChannelRecommendedDisplayCIELabValueTag is the data element tag of ChannelRecommendedDisplayCIELabValue ChannelRecommendedDisplayCIELabValueTag = DataElementTag(0x003A0244) // ChannelPositionTag is the data element tag of ChannelPosition ChannelPositionTag = DataElementTag(0x003A0245) // DisplayShadingFlagTag is the data element tag of DisplayShadingFlag DisplayShadingFlagTag = DataElementTag(0x003A0246) // FractionalChannelDisplayScaleTag is the data element tag of FractionalChannelDisplayScale FractionalChannelDisplayScaleTag = DataElementTag(0x003A0247) // AbsoluteChannelDisplayScaleTag is the data element tag of AbsoluteChannelDisplayScale AbsoluteChannelDisplayScaleTag = DataElementTag(0x003A0248) // MultiplexedAudioChannelsDescriptionCodeSequenceTag is the data element tag of MultiplexedAudioChannelsDescriptionCodeSequence MultiplexedAudioChannelsDescriptionCodeSequenceTag = DataElementTag(0x003A0300) // ChannelIdentificationCodeTag is the data element tag of ChannelIdentificationCode ChannelIdentificationCodeTag = DataElementTag(0x003A0301) // ChannelModeTag is the data element tag of ChannelMode ChannelModeTag = DataElementTag(0x003A0302) // ScheduledStationAETitleTag is the data element tag of ScheduledStationAETitle ScheduledStationAETitleTag = DataElementTag(0x00400001) // ScheduledProcedureStepStartDateTag is the data element tag of ScheduledProcedureStepStartDate ScheduledProcedureStepStartDateTag = DataElementTag(0x00400002) // ScheduledProcedureStepStartTimeTag is the data element tag of ScheduledProcedureStepStartTime ScheduledProcedureStepStartTimeTag = DataElementTag(0x00400003) // ScheduledProcedureStepEndDateTag is the data element tag of ScheduledProcedureStepEndDate ScheduledProcedureStepEndDateTag = DataElementTag(0x00400004) // ScheduledProcedureStepEndTimeTag is the data element tag of ScheduledProcedureStepEndTime ScheduledProcedureStepEndTimeTag = DataElementTag(0x00400005) // ScheduledPerformingPhysicianNameTag is the data element tag of ScheduledPerformingPhysicianName ScheduledPerformingPhysicianNameTag = DataElementTag(0x00400006) // ScheduledProcedureStepDescriptionTag is the data element tag of ScheduledProcedureStepDescription ScheduledProcedureStepDescriptionTag = DataElementTag(0x00400007) // ScheduledProtocolCodeSequenceTag is the data element tag of ScheduledProtocolCodeSequence ScheduledProtocolCodeSequenceTag = DataElementTag(0x00400008) // ScheduledProcedureStepIDTag is the data element tag of ScheduledProcedureStepID ScheduledProcedureStepIDTag = DataElementTag(0x00400009) // StageCodeSequenceTag is the data element tag of StageCodeSequence StageCodeSequenceTag = DataElementTag(0x0040000A) // ScheduledPerformingPhysicianIdentificationSequenceTag is the data element tag of ScheduledPerformingPhysicianIdentificationSequence ScheduledPerformingPhysicianIdentificationSequenceTag = DataElementTag(0x0040000B) // ScheduledStationNameTag is the data element tag of ScheduledStationName ScheduledStationNameTag = DataElementTag(0x00400010) // ScheduledProcedureStepLocationTag is the data element tag of ScheduledProcedureStepLocation ScheduledProcedureStepLocationTag = DataElementTag(0x00400011) // PreMedicationTag is the data element tag of PreMedication PreMedicationTag = DataElementTag(0x00400012) // ScheduledProcedureStepStatusTag is the data element tag of ScheduledProcedureStepStatus ScheduledProcedureStepStatusTag = DataElementTag(0x00400020) // OrderPlacerIdentifierSequenceTag is the data element tag of OrderPlacerIdentifierSequence OrderPlacerIdentifierSequenceTag = DataElementTag(0x00400026) // OrderFillerIdentifierSequenceTag is the data element tag of OrderFillerIdentifierSequence OrderFillerIdentifierSequenceTag = DataElementTag(0x00400027) // LocalNamespaceEntityIDTag is the data element tag of LocalNamespaceEntityID LocalNamespaceEntityIDTag = DataElementTag(0x00400031) // UniversalEntityIDTag is the data element tag of UniversalEntityID UniversalEntityIDTag = DataElementTag(0x00400032) // UniversalEntityIDTypeTag is the data element tag of UniversalEntityIDType UniversalEntityIDTypeTag = DataElementTag(0x00400033) // IdentifierTypeCodeTag is the data element tag of IdentifierTypeCode IdentifierTypeCodeTag = DataElementTag(0x00400035) // AssigningFacilitySequenceTag is the data element tag of AssigningFacilitySequence AssigningFacilitySequenceTag = DataElementTag(0x00400036) // AssigningJurisdictionCodeSequenceTag is the data element tag of AssigningJurisdictionCodeSequence AssigningJurisdictionCodeSequenceTag = DataElementTag(0x00400039) // AssigningAgencyOrDepartmentCodeSequenceTag is the data element tag of AssigningAgencyOrDepartmentCodeSequence AssigningAgencyOrDepartmentCodeSequenceTag = DataElementTag(0x0040003A) // ScheduledProcedureStepSequenceTag is the data element tag of ScheduledProcedureStepSequence ScheduledProcedureStepSequenceTag = DataElementTag(0x00400100) // ReferencedNonImageCompositeSOPInstanceSequenceTag is the data element tag of ReferencedNonImageCompositeSOPInstanceSequence ReferencedNonImageCompositeSOPInstanceSequenceTag = DataElementTag(0x00400220) // PerformedStationAETitleTag is the data element tag of PerformedStationAETitle PerformedStationAETitleTag = DataElementTag(0x00400241) // PerformedStationNameTag is the data element tag of PerformedStationName PerformedStationNameTag = DataElementTag(0x00400242) // PerformedLocationTag is the data element tag of PerformedLocation PerformedLocationTag = DataElementTag(0x00400243) // PerformedProcedureStepStartDateTag is the data element tag of PerformedProcedureStepStartDate PerformedProcedureStepStartDateTag = DataElementTag(0x00400244) // PerformedProcedureStepStartTimeTag is the data element tag of PerformedProcedureStepStartTime PerformedProcedureStepStartTimeTag = DataElementTag(0x00400245) // PerformedProcedureStepEndDateTag is the data element tag of PerformedProcedureStepEndDate PerformedProcedureStepEndDateTag = DataElementTag(0x00400250) // PerformedProcedureStepEndTimeTag is the data element tag of PerformedProcedureStepEndTime PerformedProcedureStepEndTimeTag = DataElementTag(0x00400251) // PerformedProcedureStepStatusTag is the data element tag of PerformedProcedureStepStatus PerformedProcedureStepStatusTag = DataElementTag(0x00400252) // PerformedProcedureStepIDTag is the data element tag of PerformedProcedureStepID PerformedProcedureStepIDTag = DataElementTag(0x00400253) // PerformedProcedureStepDescriptionTag is the data element tag of PerformedProcedureStepDescription PerformedProcedureStepDescriptionTag = DataElementTag(0x00400254) // PerformedProcedureTypeDescriptionTag is the data element tag of PerformedProcedureTypeDescription PerformedProcedureTypeDescriptionTag = DataElementTag(0x00400255) // PerformedProtocolCodeSequenceTag is the data element tag of PerformedProtocolCodeSequence PerformedProtocolCodeSequenceTag = DataElementTag(0x00400260) // PerformedProtocolTypeTag is the data element tag of PerformedProtocolType PerformedProtocolTypeTag = DataElementTag(0x00400261) // ScheduledStepAttributesSequenceTag is the data element tag of ScheduledStepAttributesSequence ScheduledStepAttributesSequenceTag = DataElementTag(0x00400270) // RequestAttributesSequenceTag is the data element tag of RequestAttributesSequence RequestAttributesSequenceTag = DataElementTag(0x00400275) // CommentsOnThePerformedProcedureStepTag is the data element tag of CommentsOnThePerformedProcedureStep CommentsOnThePerformedProcedureStepTag = DataElementTag(0x00400280) // PerformedProcedureStepDiscontinuationReasonCodeSequenceTag is the data element tag of PerformedProcedureStepDiscontinuationReasonCodeSequence PerformedProcedureStepDiscontinuationReasonCodeSequenceTag = DataElementTag(0x00400281) // QuantitySequenceTag is the data element tag of QuantitySequence QuantitySequenceTag = DataElementTag(0x00400293) // QuantityTag is the data element tag of Quantity QuantityTag = DataElementTag(0x00400294) // MeasuringUnitsSequenceTag is the data element tag of MeasuringUnitsSequence MeasuringUnitsSequenceTag = DataElementTag(0x00400295) // BillingItemSequenceTag is the data element tag of BillingItemSequence BillingItemSequenceTag = DataElementTag(0x00400296) // TotalTimeOfFluoroscopyTag is the data element tag of TotalTimeOfFluoroscopy TotalTimeOfFluoroscopyTag = DataElementTag(0x00400300) // TotalNumberOfExposuresTag is the data element tag of TotalNumberOfExposures TotalNumberOfExposuresTag = DataElementTag(0x00400301) // EntranceDoseTag is the data element tag of EntranceDose EntranceDoseTag = DataElementTag(0x00400302) // ExposedAreaTag is the data element tag of ExposedArea ExposedAreaTag = DataElementTag(0x00400303) // DistanceSourceToEntranceTag is the data element tag of DistanceSourceToEntrance DistanceSourceToEntranceTag = DataElementTag(0x00400306) // DistanceSourceToSupportTag is the data element tag of DistanceSourceToSupport DistanceSourceToSupportTag = DataElementTag(0x00400307) // ExposureDoseSequenceTag is the data element tag of ExposureDoseSequence ExposureDoseSequenceTag = DataElementTag(0x0040030E) // CommentsOnRadiationDoseTag is the data element tag of CommentsOnRadiationDose CommentsOnRadiationDoseTag = DataElementTag(0x00400310) // XRayOutputTag is the data element tag of XRayOutput XRayOutputTag = DataElementTag(0x00400312) // HalfValueLayerTag is the data element tag of HalfValueLayer HalfValueLayerTag = DataElementTag(0x00400314) // OrganDoseTag is the data element tag of OrganDose OrganDoseTag = DataElementTag(0x00400316) // OrganExposedTag is the data element tag of OrganExposed OrganExposedTag = DataElementTag(0x00400318) // BillingProcedureStepSequenceTag is the data element tag of BillingProcedureStepSequence BillingProcedureStepSequenceTag = DataElementTag(0x00400320) // FilmConsumptionSequenceTag is the data element tag of FilmConsumptionSequence FilmConsumptionSequenceTag = DataElementTag(0x00400321) // BillingSuppliesAndDevicesSequenceTag is the data element tag of BillingSuppliesAndDevicesSequence BillingSuppliesAndDevicesSequenceTag = DataElementTag(0x00400324) // ReferencedProcedureStepSequenceTag is the data element tag of ReferencedProcedureStepSequence ReferencedProcedureStepSequenceTag = DataElementTag(0x00400330) // PerformedSeriesSequenceTag is the data element tag of PerformedSeriesSequence PerformedSeriesSequenceTag = DataElementTag(0x00400340) // CommentsOnTheScheduledProcedureStepTag is the data element tag of CommentsOnTheScheduledProcedureStep CommentsOnTheScheduledProcedureStepTag = DataElementTag(0x00400400) // ProtocolContextSequenceTag is the data element tag of ProtocolContextSequence ProtocolContextSequenceTag = DataElementTag(0x00400440) // ContentItemModifierSequenceTag is the data element tag of ContentItemModifierSequence ContentItemModifierSequenceTag = DataElementTag(0x00400441) // ScheduledSpecimenSequenceTag is the data element tag of ScheduledSpecimenSequence ScheduledSpecimenSequenceTag = DataElementTag(0x00400500) // SpecimenAccessionNumberTag is the data element tag of SpecimenAccessionNumber SpecimenAccessionNumberTag = DataElementTag(0x0040050A) // ContainerIdentifierTag is the data element tag of ContainerIdentifier ContainerIdentifierTag = DataElementTag(0x00400512) // IssuerOfTheContainerIdentifierSequenceTag is the data element tag of IssuerOfTheContainerIdentifierSequence IssuerOfTheContainerIdentifierSequenceTag = DataElementTag(0x00400513) // AlternateContainerIdentifierSequenceTag is the data element tag of AlternateContainerIdentifierSequence AlternateContainerIdentifierSequenceTag = DataElementTag(0x00400515) // ContainerTypeCodeSequenceTag is the data element tag of ContainerTypeCodeSequence ContainerTypeCodeSequenceTag = DataElementTag(0x00400518) // ContainerDescriptionTag is the data element tag of ContainerDescription ContainerDescriptionTag = DataElementTag(0x0040051A) // ContainerComponentSequenceTag is the data element tag of ContainerComponentSequence ContainerComponentSequenceTag = DataElementTag(0x00400520) // SpecimenSequenceTag is the data element tag of SpecimenSequence SpecimenSequenceTag = DataElementTag(0x00400550) // SpecimenIdentifierTag is the data element tag of SpecimenIdentifier SpecimenIdentifierTag = DataElementTag(0x00400551) // SpecimenDescriptionSequenceTrialTag is the data element tag of SpecimenDescriptionSequenceTrial SpecimenDescriptionSequenceTrialTag = DataElementTag(0x00400552) // SpecimenDescriptionTrialTag is the data element tag of SpecimenDescriptionTrial SpecimenDescriptionTrialTag = DataElementTag(0x00400553) // SpecimenUIDTag is the data element tag of SpecimenUID SpecimenUIDTag = DataElementTag(0x00400554) // AcquisitionContextSequenceTag is the data element tag of AcquisitionContextSequence AcquisitionContextSequenceTag = DataElementTag(0x00400555) // AcquisitionContextDescriptionTag is the data element tag of AcquisitionContextDescription AcquisitionContextDescriptionTag = DataElementTag(0x00400556) // SpecimenDescriptionSequenceTag is the data element tag of SpecimenDescriptionSequence SpecimenDescriptionSequenceTag = DataElementTag(0x00400560) // IssuerOfTheSpecimenIdentifierSequenceTag is the data element tag of IssuerOfTheSpecimenIdentifierSequence IssuerOfTheSpecimenIdentifierSequenceTag = DataElementTag(0x00400562) // SpecimenTypeCodeSequenceTag is the data element tag of SpecimenTypeCodeSequence SpecimenTypeCodeSequenceTag = DataElementTag(0x0040059A) // SpecimenShortDescriptionTag is the data element tag of SpecimenShortDescription SpecimenShortDescriptionTag = DataElementTag(0x00400600) // SpecimenDetailedDescriptionTag is the data element tag of SpecimenDetailedDescription SpecimenDetailedDescriptionTag = DataElementTag(0x00400602) // SpecimenPreparationSequenceTag is the data element tag of SpecimenPreparationSequence SpecimenPreparationSequenceTag = DataElementTag(0x00400610) // SpecimenPreparationStepContentItemSequenceTag is the data element tag of SpecimenPreparationStepContentItemSequence SpecimenPreparationStepContentItemSequenceTag = DataElementTag(0x00400612) // SpecimenLocalizationContentItemSequenceTag is the data element tag of SpecimenLocalizationContentItemSequence SpecimenLocalizationContentItemSequenceTag = DataElementTag(0x00400620) // SlideIdentifierTag is the data element tag of SlideIdentifier SlideIdentifierTag = DataElementTag(0x004006FA) // WholeSlideMicroscopyImageFrameTypeSequenceTag is the data element tag of WholeSlideMicroscopyImageFrameTypeSequence WholeSlideMicroscopyImageFrameTypeSequenceTag = DataElementTag(0x00400710) // ImageCenterPointCoordinatesSequenceTag is the data element tag of ImageCenterPointCoordinatesSequence ImageCenterPointCoordinatesSequenceTag = DataElementTag(0x0040071A) // XOffsetInSlideCoordinateSystemTag is the data element tag of XOffsetInSlideCoordinateSystem XOffsetInSlideCoordinateSystemTag = DataElementTag(0x0040072A) // YOffsetInSlideCoordinateSystemTag is the data element tag of YOffsetInSlideCoordinateSystem YOffsetInSlideCoordinateSystemTag = DataElementTag(0x0040073A) // ZOffsetInSlideCoordinateSystemTag is the data element tag of ZOffsetInSlideCoordinateSystem ZOffsetInSlideCoordinateSystemTag = DataElementTag(0x0040074A) // PixelSpacingSequenceTag is the data element tag of PixelSpacingSequence PixelSpacingSequenceTag = DataElementTag(0x004008D8) // CoordinateSystemAxisCodeSequenceTag is the data element tag of CoordinateSystemAxisCodeSequence CoordinateSystemAxisCodeSequenceTag = DataElementTag(0x004008DA) // MeasurementUnitsCodeSequenceTag is the data element tag of MeasurementUnitsCodeSequence MeasurementUnitsCodeSequenceTag = DataElementTag(0x004008EA) // VitalStainCodeSequenceTrialTag is the data element tag of VitalStainCodeSequenceTrial VitalStainCodeSequenceTrialTag = DataElementTag(0x004009F8) // RequestedProcedureIDTag is the data element tag of RequestedProcedureID RequestedProcedureIDTag = DataElementTag(0x00401001) // ReasonForTheRequestedProcedureTag is the data element tag of ReasonForTheRequestedProcedure ReasonForTheRequestedProcedureTag = DataElementTag(0x00401002) // RequestedProcedurePriorityTag is the data element tag of RequestedProcedurePriority RequestedProcedurePriorityTag = DataElementTag(0x00401003) // PatientTransportArrangementsTag is the data element tag of PatientTransportArrangements PatientTransportArrangementsTag = DataElementTag(0x00401004) // RequestedProcedureLocationTag is the data element tag of RequestedProcedureLocation RequestedProcedureLocationTag = DataElementTag(0x00401005) // PlacerOrderNumberProcedureTag is the data element tag of PlacerOrderNumberProcedure PlacerOrderNumberProcedureTag = DataElementTag(0x00401006) // FillerOrderNumberProcedureTag is the data element tag of FillerOrderNumberProcedure FillerOrderNumberProcedureTag = DataElementTag(0x00401007) // ConfidentialityCodeTag is the data element tag of ConfidentialityCode ConfidentialityCodeTag = DataElementTag(0x00401008) // ReportingPriorityTag is the data element tag of ReportingPriority ReportingPriorityTag = DataElementTag(0x00401009) // ReasonForRequestedProcedureCodeSequenceTag is the data element tag of ReasonForRequestedProcedureCodeSequence ReasonForRequestedProcedureCodeSequenceTag = DataElementTag(0x0040100A) // NamesOfIntendedRecipientsOfResultsTag is the data element tag of NamesOfIntendedRecipientsOfResults NamesOfIntendedRecipientsOfResultsTag = DataElementTag(0x00401010) // IntendedRecipientsOfResultsIdentificationSequenceTag is the data element tag of IntendedRecipientsOfResultsIdentificationSequence IntendedRecipientsOfResultsIdentificationSequenceTag = DataElementTag(0x00401011) // ReasonForPerformedProcedureCodeSequenceTag is the data element tag of ReasonForPerformedProcedureCodeSequence ReasonForPerformedProcedureCodeSequenceTag = DataElementTag(0x00401012) // RequestedProcedureDescriptionTrialTag is the data element tag of RequestedProcedureDescriptionTrial RequestedProcedureDescriptionTrialTag = DataElementTag(0x00401060) // PersonIdentificationCodeSequenceTag is the data element tag of PersonIdentificationCodeSequence PersonIdentificationCodeSequenceTag = DataElementTag(0x00401101) // PersonAddressTag is the data element tag of PersonAddress PersonAddressTag = DataElementTag(0x00401102) // PersonTelephoneNumbersTag is the data element tag of PersonTelephoneNumbers PersonTelephoneNumbersTag = DataElementTag(0x00401103) // PersonTelecomInformationTag is the data element tag of PersonTelecomInformation PersonTelecomInformationTag = DataElementTag(0x00401104) // RequestedProcedureCommentsTag is the data element tag of RequestedProcedureComments RequestedProcedureCommentsTag = DataElementTag(0x00401400) // ReasonForTheImagingServiceRequestTag is the data element tag of ReasonForTheImagingServiceRequest ReasonForTheImagingServiceRequestTag = DataElementTag(0x00402001) // IssueDateOfImagingServiceRequestTag is the data element tag of IssueDateOfImagingServiceRequest IssueDateOfImagingServiceRequestTag = DataElementTag(0x00402004) // IssueTimeOfImagingServiceRequestTag is the data element tag of IssueTimeOfImagingServiceRequest IssueTimeOfImagingServiceRequestTag = DataElementTag(0x00402005) // PlacerOrderNumberImagingServiceRequestRetiredTag is the data element tag of PlacerOrderNumberImagingServiceRequestRetired PlacerOrderNumberImagingServiceRequestRetiredTag = DataElementTag(0x00402006) // FillerOrderNumberImagingServiceRequestRetiredTag is the data element tag of FillerOrderNumberImagingServiceRequestRetired FillerOrderNumberImagingServiceRequestRetiredTag = DataElementTag(0x00402007) // OrderEnteredByTag is the data element tag of OrderEnteredBy OrderEnteredByTag = DataElementTag(0x00402008) // OrderEntererLocationTag is the data element tag of OrderEntererLocation OrderEntererLocationTag = DataElementTag(0x00402009) // OrderCallbackPhoneNumberTag is the data element tag of OrderCallbackPhoneNumber OrderCallbackPhoneNumberTag = DataElementTag(0x00402010) // OrderCallbackTelecomInformationTag is the data element tag of OrderCallbackTelecomInformation OrderCallbackTelecomInformationTag = DataElementTag(0x00402011) // PlacerOrderNumberImagingServiceRequestTag is the data element tag of PlacerOrderNumberImagingServiceRequest PlacerOrderNumberImagingServiceRequestTag = DataElementTag(0x00402016) // FillerOrderNumberImagingServiceRequestTag is the data element tag of FillerOrderNumberImagingServiceRequest FillerOrderNumberImagingServiceRequestTag = DataElementTag(0x00402017) // ImagingServiceRequestCommentsTag is the data element tag of ImagingServiceRequestComments ImagingServiceRequestCommentsTag = DataElementTag(0x00402400) // ConfidentialityConstraintOnPatientDataDescriptionTag is the data element tag of ConfidentialityConstraintOnPatientDataDescription ConfidentialityConstraintOnPatientDataDescriptionTag = DataElementTag(0x00403001) // GeneralPurposeScheduledProcedureStepStatusTag is the data element tag of GeneralPurposeScheduledProcedureStepStatus GeneralPurposeScheduledProcedureStepStatusTag = DataElementTag(0x00404001) // GeneralPurposePerformedProcedureStepStatusTag is the data element tag of GeneralPurposePerformedProcedureStepStatus GeneralPurposePerformedProcedureStepStatusTag = DataElementTag(0x00404002) // GeneralPurposeScheduledProcedureStepPriorityTag is the data element tag of GeneralPurposeScheduledProcedureStepPriority GeneralPurposeScheduledProcedureStepPriorityTag = DataElementTag(0x00404003) // ScheduledProcessingApplicationsCodeSequenceTag is the data element tag of ScheduledProcessingApplicationsCodeSequence ScheduledProcessingApplicationsCodeSequenceTag = DataElementTag(0x00404004) // ScheduledProcedureStepStartDateTimeTag is the data element tag of ScheduledProcedureStepStartDateTime ScheduledProcedureStepStartDateTimeTag = DataElementTag(0x00404005) // MultipleCopiesFlagTag is the data element tag of MultipleCopiesFlag MultipleCopiesFlagTag = DataElementTag(0x00404006) // PerformedProcessingApplicationsCodeSequenceTag is the data element tag of PerformedProcessingApplicationsCodeSequence PerformedProcessingApplicationsCodeSequenceTag = DataElementTag(0x00404007) // ScheduledProcedureStepExpirationDateTimeTag is the data element tag of ScheduledProcedureStepExpirationDateTime ScheduledProcedureStepExpirationDateTimeTag = DataElementTag(0x00404008) // HumanPerformerCodeSequenceTag is the data element tag of HumanPerformerCodeSequence HumanPerformerCodeSequenceTag = DataElementTag(0x00404009) // ScheduledProcedureStepModificationDateTimeTag is the data element tag of ScheduledProcedureStepModificationDateTime ScheduledProcedureStepModificationDateTimeTag = DataElementTag(0x00404010) // ExpectedCompletionDateTimeTag is the data element tag of ExpectedCompletionDateTime ExpectedCompletionDateTimeTag = DataElementTag(0x00404011) // ResultingGeneralPurposePerformedProcedureStepsSequenceTag is the data element tag of ResultingGeneralPurposePerformedProcedureStepsSequence ResultingGeneralPurposePerformedProcedureStepsSequenceTag = DataElementTag(0x00404015) // ReferencedGeneralPurposeScheduledProcedureStepSequenceTag is the data element tag of ReferencedGeneralPurposeScheduledProcedureStepSequence ReferencedGeneralPurposeScheduledProcedureStepSequenceTag = DataElementTag(0x00404016) // ScheduledWorkitemCodeSequenceTag is the data element tag of ScheduledWorkitemCodeSequence ScheduledWorkitemCodeSequenceTag = DataElementTag(0x00404018) // PerformedWorkitemCodeSequenceTag is the data element tag of PerformedWorkitemCodeSequence PerformedWorkitemCodeSequenceTag = DataElementTag(0x00404019) // InputAvailabilityFlagTag is the data element tag of InputAvailabilityFlag InputAvailabilityFlagTag = DataElementTag(0x00404020) // InputInformationSequenceTag is the data element tag of InputInformationSequence InputInformationSequenceTag = DataElementTag(0x00404021) // RelevantInformationSequenceTag is the data element tag of RelevantInformationSequence RelevantInformationSequenceTag = DataElementTag(0x00404022) // ReferencedGeneralPurposeScheduledProcedureStepTransactionUIDTag is the data element tag of ReferencedGeneralPurposeScheduledProcedureStepTransactionUID ReferencedGeneralPurposeScheduledProcedureStepTransactionUIDTag = DataElementTag(0x00404023) // ScheduledStationNameCodeSequenceTag is the data element tag of ScheduledStationNameCodeSequence ScheduledStationNameCodeSequenceTag = DataElementTag(0x00404025) // ScheduledStationClassCodeSequenceTag is the data element tag of ScheduledStationClassCodeSequence ScheduledStationClassCodeSequenceTag = DataElementTag(0x00404026) // ScheduledStationGeographicLocationCodeSequenceTag is the data element tag of ScheduledStationGeographicLocationCodeSequence ScheduledStationGeographicLocationCodeSequenceTag = DataElementTag(0x00404027) // PerformedStationNameCodeSequenceTag is the data element tag of PerformedStationNameCodeSequence PerformedStationNameCodeSequenceTag = DataElementTag(0x00404028) // PerformedStationClassCodeSequenceTag is the data element tag of PerformedStationClassCodeSequence PerformedStationClassCodeSequenceTag = DataElementTag(0x00404029) // PerformedStationGeographicLocationCodeSequenceTag is the data element tag of PerformedStationGeographicLocationCodeSequence PerformedStationGeographicLocationCodeSequenceTag = DataElementTag(0x00404030) // RequestedSubsequentWorkitemCodeSequenceTag is the data element tag of RequestedSubsequentWorkitemCodeSequence RequestedSubsequentWorkitemCodeSequenceTag = DataElementTag(0x00404031) // NonDICOMOutputCodeSequenceTag is the data element tag of NonDICOMOutputCodeSequence NonDICOMOutputCodeSequenceTag = DataElementTag(0x00404032) // OutputInformationSequenceTag is the data element tag of OutputInformationSequence OutputInformationSequenceTag = DataElementTag(0x00404033) // ScheduledHumanPerformersSequenceTag is the data element tag of ScheduledHumanPerformersSequence ScheduledHumanPerformersSequenceTag = DataElementTag(0x00404034) // ActualHumanPerformersSequenceTag is the data element tag of ActualHumanPerformersSequence ActualHumanPerformersSequenceTag = DataElementTag(0x00404035) // HumanPerformerOrganizationTag is the data element tag of HumanPerformerOrganization HumanPerformerOrganizationTag = DataElementTag(0x00404036) // HumanPerformerNameTag is the data element tag of HumanPerformerName HumanPerformerNameTag = DataElementTag(0x00404037) // RawDataHandlingTag is the data element tag of RawDataHandling RawDataHandlingTag = DataElementTag(0x00404040) // InputReadinessStateTag is the data element tag of InputReadinessState InputReadinessStateTag = DataElementTag(0x00404041) // PerformedProcedureStepStartDateTimeTag is the data element tag of PerformedProcedureStepStartDateTime PerformedProcedureStepStartDateTimeTag = DataElementTag(0x00404050) // PerformedProcedureStepEndDateTimeTag is the data element tag of PerformedProcedureStepEndDateTime PerformedProcedureStepEndDateTimeTag = DataElementTag(0x00404051) // ProcedureStepCancellationDateTimeTag is the data element tag of ProcedureStepCancellationDateTime ProcedureStepCancellationDateTimeTag = DataElementTag(0x00404052) // OutputDestinationSequenceTag is the data element tag of OutputDestinationSequence OutputDestinationSequenceTag = DataElementTag(0x00404070) // DICOMStorageSequenceTag is the data element tag of DICOMStorageSequence DICOMStorageSequenceTag = DataElementTag(0x00404071) // STOWRSStorageSequenceTag is the data element tag of STOWRSStorageSequence STOWRSStorageSequenceTag = DataElementTag(0x00404072) // StorageURLTag is the data element tag of StorageURL StorageURLTag = DataElementTag(0x00404073) // XDSStorageSequenceTag is the data element tag of XDSStorageSequence XDSStorageSequenceTag = DataElementTag(0x00404074) // EntranceDoseInmGyTag is the data element tag of EntranceDoseInmGy EntranceDoseInmGyTag = DataElementTag(0x00408302) // EntranceDoseDerivationTag is the data element tag of EntranceDoseDerivation EntranceDoseDerivationTag = DataElementTag(0x00408303) // ParametricMapFrameTypeSequenceTag is the data element tag of ParametricMapFrameTypeSequence ParametricMapFrameTypeSequenceTag = DataElementTag(0x00409092) // ReferencedImageRealWorldValueMappingSequenceTag is the data element tag of ReferencedImageRealWorldValueMappingSequence ReferencedImageRealWorldValueMappingSequenceTag = DataElementTag(0x00409094) // RealWorldValueMappingSequenceTag is the data element tag of RealWorldValueMappingSequence RealWorldValueMappingSequenceTag = DataElementTag(0x00409096) // PixelValueMappingCodeSequenceTag is the data element tag of PixelValueMappingCodeSequence PixelValueMappingCodeSequenceTag = DataElementTag(0x00409098) // LUTLabelTag is the data element tag of LUTLabel LUTLabelTag = DataElementTag(0x00409210) // RealWorldValueLastValueMappedTag is the data element tag of RealWorldValueLastValueMapped RealWorldValueLastValueMappedTag = DataElementTag(0x00409211) // RealWorldValueLUTDataTag is the data element tag of RealWorldValueLUTData RealWorldValueLUTDataTag = DataElementTag(0x00409212) // DoubleFloatRealWorldValueLastValueMappedTag is the data element tag of DoubleFloatRealWorldValueLastValueMapped DoubleFloatRealWorldValueLastValueMappedTag = DataElementTag(0x00409213) // DoubleFloatRealWorldValueFirstValueMappedTag is the data element tag of DoubleFloatRealWorldValueFirstValueMapped DoubleFloatRealWorldValueFirstValueMappedTag = DataElementTag(0x00409214) // RealWorldValueFirstValueMappedTag is the data element tag of RealWorldValueFirstValueMapped RealWorldValueFirstValueMappedTag = DataElementTag(0x00409216) // QuantityDefinitionSequenceTag is the data element tag of QuantityDefinitionSequence QuantityDefinitionSequenceTag = DataElementTag(0x00409220) // RealWorldValueInterceptTag is the data element tag of RealWorldValueIntercept RealWorldValueInterceptTag = DataElementTag(0x00409224) // RealWorldValueSlopeTag is the data element tag of RealWorldValueSlope RealWorldValueSlopeTag = DataElementTag(0x00409225) // FindingsFlagTrialTag is the data element tag of FindingsFlagTrial FindingsFlagTrialTag = DataElementTag(0x0040A007) // RelationshipTypeTag is the data element tag of RelationshipType RelationshipTypeTag = DataElementTag(0x0040A010) // FindingsSequenceTrialTag is the data element tag of FindingsSequenceTrial FindingsSequenceTrialTag = DataElementTag(0x0040A020) // FindingsGroupUIDTrialTag is the data element tag of FindingsGroupUIDTrial FindingsGroupUIDTrialTag = DataElementTag(0x0040A021) // ReferencedFindingsGroupUIDTrialTag is the data element tag of ReferencedFindingsGroupUIDTrial ReferencedFindingsGroupUIDTrialTag = DataElementTag(0x0040A022) // FindingsGroupRecordingDateTrialTag is the data element tag of FindingsGroupRecordingDateTrial FindingsGroupRecordingDateTrialTag = DataElementTag(0x0040A023) // FindingsGroupRecordingTimeTrialTag is the data element tag of FindingsGroupRecordingTimeTrial FindingsGroupRecordingTimeTrialTag = DataElementTag(0x0040A024) // FindingsSourceCategoryCodeSequenceTrialTag is the data element tag of FindingsSourceCategoryCodeSequenceTrial FindingsSourceCategoryCodeSequenceTrialTag = DataElementTag(0x0040A026) // VerifyingOrganizationTag is the data element tag of VerifyingOrganization VerifyingOrganizationTag = DataElementTag(0x0040A027) // DocumentingOrganizationIdentifierCodeSequenceTrialTag is the data element tag of DocumentingOrganizationIdentifierCodeSequenceTrial DocumentingOrganizationIdentifierCodeSequenceTrialTag = DataElementTag(0x0040A028) // VerificationDateTimeTag is the data element tag of VerificationDateTime VerificationDateTimeTag = DataElementTag(0x0040A030) // ObservationDateTimeTag is the data element tag of ObservationDateTime ObservationDateTimeTag = DataElementTag(0x0040A032) // ValueTypeTag is the data element tag of ValueType ValueTypeTag = DataElementTag(0x0040A040) // ConceptNameCodeSequenceTag is the data element tag of ConceptNameCodeSequence ConceptNameCodeSequenceTag = DataElementTag(0x0040A043) // MeasurementPrecisionDescriptionTrialTag is the data element tag of MeasurementPrecisionDescriptionTrial MeasurementPrecisionDescriptionTrialTag = DataElementTag(0x0040A047) // ContinuityOfContentTag is the data element tag of ContinuityOfContent ContinuityOfContentTag = DataElementTag(0x0040A050) // UrgencyOrPriorityAlertsTrialTag is the data element tag of UrgencyOrPriorityAlertsTrial UrgencyOrPriorityAlertsTrialTag = DataElementTag(0x0040A057) // SequencingIndicatorTrialTag is the data element tag of SequencingIndicatorTrial SequencingIndicatorTrialTag = DataElementTag(0x0040A060) // DocumentIdentifierCodeSequenceTrialTag is the data element tag of DocumentIdentifierCodeSequenceTrial DocumentIdentifierCodeSequenceTrialTag = DataElementTag(0x0040A066) // DocumentAuthorTrialTag is the data element tag of DocumentAuthorTrial DocumentAuthorTrialTag = DataElementTag(0x0040A067) // DocumentAuthorIdentifierCodeSequenceTrialTag is the data element tag of DocumentAuthorIdentifierCodeSequenceTrial DocumentAuthorIdentifierCodeSequenceTrialTag = DataElementTag(0x0040A068) // IdentifierCodeSequenceTrialTag is the data element tag of IdentifierCodeSequenceTrial IdentifierCodeSequenceTrialTag = DataElementTag(0x0040A070) // VerifyingObserverSequenceTag is the data element tag of VerifyingObserverSequence VerifyingObserverSequenceTag = DataElementTag(0x0040A073) // ObjectBinaryIdentifierTrialTag is the data element tag of ObjectBinaryIdentifierTrial ObjectBinaryIdentifierTrialTag = DataElementTag(0x0040A074) // VerifyingObserverNameTag is the data element tag of VerifyingObserverName VerifyingObserverNameTag = DataElementTag(0x0040A075) // DocumentingObserverIdentifierCodeSequenceTrialTag is the data element tag of DocumentingObserverIdentifierCodeSequenceTrial DocumentingObserverIdentifierCodeSequenceTrialTag = DataElementTag(0x0040A076) // AuthorObserverSequenceTag is the data element tag of AuthorObserverSequence AuthorObserverSequenceTag = DataElementTag(0x0040A078) // ParticipantSequenceTag is the data element tag of ParticipantSequence ParticipantSequenceTag = DataElementTag(0x0040A07A) // CustodialOrganizationSequenceTag is the data element tag of CustodialOrganizationSequence CustodialOrganizationSequenceTag = DataElementTag(0x0040A07C) // ParticipationTypeTag is the data element tag of ParticipationType ParticipationTypeTag = DataElementTag(0x0040A080) // ParticipationDateTimeTag is the data element tag of ParticipationDateTime ParticipationDateTimeTag = DataElementTag(0x0040A082) // ObserverTypeTag is the data element tag of ObserverType ObserverTypeTag = DataElementTag(0x0040A084) // ProcedureIdentifierCodeSequenceTrialTag is the data element tag of ProcedureIdentifierCodeSequenceTrial ProcedureIdentifierCodeSequenceTrialTag = DataElementTag(0x0040A085) // VerifyingObserverIdentificationCodeSequenceTag is the data element tag of VerifyingObserverIdentificationCodeSequence VerifyingObserverIdentificationCodeSequenceTag = DataElementTag(0x0040A088) // ObjectDirectoryBinaryIdentifierTrialTag is the data element tag of ObjectDirectoryBinaryIdentifierTrial ObjectDirectoryBinaryIdentifierTrialTag = DataElementTag(0x0040A089) // EquivalentCDADocumentSequenceTag is the data element tag of EquivalentCDADocumentSequence EquivalentCDADocumentSequenceTag = DataElementTag(0x0040A090) // ReferencedWaveformChannelsTag is the data element tag of ReferencedWaveformChannels ReferencedWaveformChannelsTag = DataElementTag(0x0040A0B0) // DateOfDocumentOrVerbalTransactionTrialTag is the data element tag of DateOfDocumentOrVerbalTransactionTrial DateOfDocumentOrVerbalTransactionTrialTag = DataElementTag(0x0040A110) // TimeOfDocumentCreationOrVerbalTransactionTrialTag is the data element tag of TimeOfDocumentCreationOrVerbalTransactionTrial TimeOfDocumentCreationOrVerbalTransactionTrialTag = DataElementTag(0x0040A112) // DateTimeTag is the data element tag of DateTime DateTimeTag = DataElementTag(0x0040A120) // DateTag is the data element tag of Date DateTag = DataElementTag(0x0040A121) // TimeTag is the data element tag of Time TimeTag = DataElementTag(0x0040A122) // PersonNameTag is the data element tag of PersonName PersonNameTag = DataElementTag(0x0040A123) // UIDTag is the data element tag of UID UIDTag = DataElementTag(0x0040A124) // ReportStatusIDTrialTag is the data element tag of ReportStatusIDTrial ReportStatusIDTrialTag = DataElementTag(0x0040A125) // TemporalRangeTypeTag is the data element tag of TemporalRangeType TemporalRangeTypeTag = DataElementTag(0x0040A130) // ReferencedSamplePositionsTag is the data element tag of ReferencedSamplePositions ReferencedSamplePositionsTag = DataElementTag(0x0040A132) // ReferencedFrameNumbersTag is the data element tag of ReferencedFrameNumbers ReferencedFrameNumbersTag = DataElementTag(0x0040A136) // ReferencedTimeOffsetsTag is the data element tag of ReferencedTimeOffsets ReferencedTimeOffsetsTag = DataElementTag(0x0040A138) // ReferencedDateTimeTag is the data element tag of ReferencedDateTime ReferencedDateTimeTag = DataElementTag(0x0040A13A) // TextValueTag is the data element tag of TextValue TextValueTag = DataElementTag(0x0040A160) // FloatingPointValueTag is the data element tag of FloatingPointValue FloatingPointValueTag = DataElementTag(0x0040A161) // RationalNumeratorValueTag is the data element tag of RationalNumeratorValue RationalNumeratorValueTag = DataElementTag(0x0040A162) // RationalDenominatorValueTag is the data element tag of RationalDenominatorValue RationalDenominatorValueTag = DataElementTag(0x0040A163) // ObservationCategoryCodeSequenceTrialTag is the data element tag of ObservationCategoryCodeSequenceTrial ObservationCategoryCodeSequenceTrialTag = DataElementTag(0x0040A167) // ConceptCodeSequenceTag is the data element tag of ConceptCodeSequence ConceptCodeSequenceTag = DataElementTag(0x0040A168) // BibliographicCitationTrialTag is the data element tag of BibliographicCitationTrial BibliographicCitationTrialTag = DataElementTag(0x0040A16A) // PurposeOfReferenceCodeSequenceTag is the data element tag of PurposeOfReferenceCodeSequence PurposeOfReferenceCodeSequenceTag = DataElementTag(0x0040A170) // ObservationUIDTag is the data element tag of ObservationUID ObservationUIDTag = DataElementTag(0x0040A171) // ReferencedObservationUIDTrialTag is the data element tag of ReferencedObservationUIDTrial ReferencedObservationUIDTrialTag = DataElementTag(0x0040A172) // ReferencedObservationClassTrialTag is the data element tag of ReferencedObservationClassTrial ReferencedObservationClassTrialTag = DataElementTag(0x0040A173) // ReferencedObjectObservationClassTrialTag is the data element tag of ReferencedObjectObservationClassTrial ReferencedObjectObservationClassTrialTag = DataElementTag(0x0040A174) // AnnotationGroupNumberTag is the data element tag of AnnotationGroupNumber AnnotationGroupNumberTag = DataElementTag(0x0040A180) // ObservationDateTrialTag is the data element tag of ObservationDateTrial ObservationDateTrialTag = DataElementTag(0x0040A192) // ObservationTimeTrialTag is the data element tag of ObservationTimeTrial ObservationTimeTrialTag = DataElementTag(0x0040A193) // MeasurementAutomationTrialTag is the data element tag of MeasurementAutomationTrial MeasurementAutomationTrialTag = DataElementTag(0x0040A194) // ModifierCodeSequenceTag is the data element tag of ModifierCodeSequence ModifierCodeSequenceTag = DataElementTag(0x0040A195) // IdentificationDescriptionTrialTag is the data element tag of IdentificationDescriptionTrial IdentificationDescriptionTrialTag = DataElementTag(0x0040A224) // CoordinatesSetGeometricTypeTrialTag is the data element tag of CoordinatesSetGeometricTypeTrial CoordinatesSetGeometricTypeTrialTag = DataElementTag(0x0040A290) // AlgorithmCodeSequenceTrialTag is the data element tag of AlgorithmCodeSequenceTrial AlgorithmCodeSequenceTrialTag = DataElementTag(0x0040A296) // AlgorithmDescriptionTrialTag is the data element tag of AlgorithmDescriptionTrial AlgorithmDescriptionTrialTag = DataElementTag(0x0040A297) // PixelCoordinatesSetTrialTag is the data element tag of PixelCoordinatesSetTrial PixelCoordinatesSetTrialTag = DataElementTag(0x0040A29A) // MeasuredValueSequenceTag is the data element tag of MeasuredValueSequence MeasuredValueSequenceTag = DataElementTag(0x0040A300) // NumericValueQualifierCodeSequenceTag is the data element tag of NumericValueQualifierCodeSequence NumericValueQualifierCodeSequenceTag = DataElementTag(0x0040A301) // CurrentObserverTrialTag is the data element tag of CurrentObserverTrial CurrentObserverTrialTag = DataElementTag(0x0040A307) // NumericValueTag is the data element tag of NumericValue NumericValueTag = DataElementTag(0x0040A30A) // ReferencedAccessionSequenceTrialTag is the data element tag of ReferencedAccessionSequenceTrial ReferencedAccessionSequenceTrialTag = DataElementTag(0x0040A313) // ReportStatusCommentTrialTag is the data element tag of ReportStatusCommentTrial ReportStatusCommentTrialTag = DataElementTag(0x0040A33A) // ProcedureContextSequenceTrialTag is the data element tag of ProcedureContextSequenceTrial ProcedureContextSequenceTrialTag = DataElementTag(0x0040A340) // VerbalSourceTrialTag is the data element tag of VerbalSourceTrial VerbalSourceTrialTag = DataElementTag(0x0040A352) // AddressTrialTag is the data element tag of AddressTrial AddressTrialTag = DataElementTag(0x0040A353) // TelephoneNumberTrialTag is the data element tag of TelephoneNumberTrial TelephoneNumberTrialTag = DataElementTag(0x0040A354) // VerbalSourceIdentifierCodeSequenceTrialTag is the data element tag of VerbalSourceIdentifierCodeSequenceTrial VerbalSourceIdentifierCodeSequenceTrialTag = DataElementTag(0x0040A358) // PredecessorDocumentsSequenceTag is the data element tag of PredecessorDocumentsSequence PredecessorDocumentsSequenceTag = DataElementTag(0x0040A360) // ReferencedRequestSequenceTag is the data element tag of ReferencedRequestSequence ReferencedRequestSequenceTag = DataElementTag(0x0040A370) // PerformedProcedureCodeSequenceTag is the data element tag of PerformedProcedureCodeSequence PerformedProcedureCodeSequenceTag = DataElementTag(0x0040A372) // CurrentRequestedProcedureEvidenceSequenceTag is the data element tag of CurrentRequestedProcedureEvidenceSequence CurrentRequestedProcedureEvidenceSequenceTag = DataElementTag(0x0040A375) // ReportDetailSequenceTrialTag is the data element tag of ReportDetailSequenceTrial ReportDetailSequenceTrialTag = DataElementTag(0x0040A380) // PertinentOtherEvidenceSequenceTag is the data element tag of PertinentOtherEvidenceSequence PertinentOtherEvidenceSequenceTag = DataElementTag(0x0040A385) // HL7StructuredDocumentReferenceSequenceTag is the data element tag of HL7StructuredDocumentReferenceSequence HL7StructuredDocumentReferenceSequenceTag = DataElementTag(0x0040A390) // ObservationSubjectUIDTrialTag is the data element tag of ObservationSubjectUIDTrial ObservationSubjectUIDTrialTag = DataElementTag(0x0040A402) // ObservationSubjectClassTrialTag is the data element tag of ObservationSubjectClassTrial ObservationSubjectClassTrialTag = DataElementTag(0x0040A403) // ObservationSubjectTypeCodeSequenceTrialTag is the data element tag of ObservationSubjectTypeCodeSequenceTrial ObservationSubjectTypeCodeSequenceTrialTag = DataElementTag(0x0040A404) // CompletionFlagTag is the data element tag of CompletionFlag CompletionFlagTag = DataElementTag(0x0040A491) // CompletionFlagDescriptionTag is the data element tag of CompletionFlagDescription CompletionFlagDescriptionTag = DataElementTag(0x0040A492) // VerificationFlagTag is the data element tag of VerificationFlag VerificationFlagTag = DataElementTag(0x0040A493) // ArchiveRequestedTag is the data element tag of ArchiveRequested ArchiveRequestedTag = DataElementTag(0x0040A494) // PreliminaryFlagTag is the data element tag of PreliminaryFlag PreliminaryFlagTag = DataElementTag(0x0040A496) // ContentTemplateSequenceTag is the data element tag of ContentTemplateSequence ContentTemplateSequenceTag = DataElementTag(0x0040A504) // IdenticalDocumentsSequenceTag is the data element tag of IdenticalDocumentsSequence IdenticalDocumentsSequenceTag = DataElementTag(0x0040A525) // ObservationSubjectContextFlagTrialTag is the data element tag of ObservationSubjectContextFlagTrial ObservationSubjectContextFlagTrialTag = DataElementTag(0x0040A600) // ObserverContextFlagTrialTag is the data element tag of ObserverContextFlagTrial ObserverContextFlagTrialTag = DataElementTag(0x0040A601) // ProcedureContextFlagTrialTag is the data element tag of ProcedureContextFlagTrial ProcedureContextFlagTrialTag = DataElementTag(0x0040A603) // ContentSequenceTag is the data element tag of ContentSequence ContentSequenceTag = DataElementTag(0x0040A730) // RelationshipSequenceTrialTag is the data element tag of RelationshipSequenceTrial RelationshipSequenceTrialTag = DataElementTag(0x0040A731) // RelationshipTypeCodeSequenceTrialTag is the data element tag of RelationshipTypeCodeSequenceTrial RelationshipTypeCodeSequenceTrialTag = DataElementTag(0x0040A732) // LanguageCodeSequenceTrialTag is the data element tag of LanguageCodeSequenceTrial LanguageCodeSequenceTrialTag = DataElementTag(0x0040A744) // UniformResourceLocatorTrialTag is the data element tag of UniformResourceLocatorTrial UniformResourceLocatorTrialTag = DataElementTag(0x0040A992) // WaveformAnnotationSequenceTag is the data element tag of WaveformAnnotationSequence WaveformAnnotationSequenceTag = DataElementTag(0x0040B020) // TemplateIdentifierTag is the data element tag of TemplateIdentifier TemplateIdentifierTag = DataElementTag(0x0040DB00) // TemplateVersionTag is the data element tag of TemplateVersion TemplateVersionTag = DataElementTag(0x0040DB06) // TemplateLocalVersionTag is the data element tag of TemplateLocalVersion TemplateLocalVersionTag = DataElementTag(0x0040DB07) // TemplateExtensionFlagTag is the data element tag of TemplateExtensionFlag TemplateExtensionFlagTag = DataElementTag(0x0040DB0B) // TemplateExtensionOrganizationUIDTag is the data element tag of TemplateExtensionOrganizationUID TemplateExtensionOrganizationUIDTag = DataElementTag(0x0040DB0C) // TemplateExtensionCreatorUIDTag is the data element tag of TemplateExtensionCreatorUID TemplateExtensionCreatorUIDTag = DataElementTag(0x0040DB0D) // ReferencedContentItemIdentifierTag is the data element tag of ReferencedContentItemIdentifier ReferencedContentItemIdentifierTag = DataElementTag(0x0040DB73) // HL7InstanceIdentifierTag is the data element tag of HL7InstanceIdentifier HL7InstanceIdentifierTag = DataElementTag(0x0040E001) // HL7DocumentEffectiveTimeTag is the data element tag of HL7DocumentEffectiveTime HL7DocumentEffectiveTimeTag = DataElementTag(0x0040E004) // HL7DocumentTypeCodeSequenceTag is the data element tag of HL7DocumentTypeCodeSequence HL7DocumentTypeCodeSequenceTag = DataElementTag(0x0040E006) // DocumentClassCodeSequenceTag is the data element tag of DocumentClassCodeSequence DocumentClassCodeSequenceTag = DataElementTag(0x0040E008) // RetrieveURITag is the data element tag of RetrieveURI RetrieveURITag = DataElementTag(0x0040E010) // RetrieveLocationUIDTag is the data element tag of RetrieveLocationUID RetrieveLocationUIDTag = DataElementTag(0x0040E011) // TypeOfInstancesTag is the data element tag of TypeOfInstances TypeOfInstancesTag = DataElementTag(0x0040E020) // DICOMRetrievalSequenceTag is the data element tag of DICOMRetrievalSequence DICOMRetrievalSequenceTag = DataElementTag(0x0040E021) // DICOMMediaRetrievalSequenceTag is the data element tag of DICOMMediaRetrievalSequence DICOMMediaRetrievalSequenceTag = DataElementTag(0x0040E022) // WADORetrievalSequenceTag is the data element tag of WADORetrievalSequence WADORetrievalSequenceTag = DataElementTag(0x0040E023) // XDSRetrievalSequenceTag is the data element tag of XDSRetrievalSequence XDSRetrievalSequenceTag = DataElementTag(0x0040E024) // WADORSRetrievalSequenceTag is the data element tag of WADORSRetrievalSequence WADORSRetrievalSequenceTag = DataElementTag(0x0040E025) // RepositoryUniqueIDTag is the data element tag of RepositoryUniqueID RepositoryUniqueIDTag = DataElementTag(0x0040E030) // HomeCommunityIDTag is the data element tag of HomeCommunityID HomeCommunityIDTag = DataElementTag(0x0040E031) // DocumentTitleTag is the data element tag of DocumentTitle DocumentTitleTag = DataElementTag(0x00420010) // EncapsulatedDocumentTag is the data element tag of EncapsulatedDocument EncapsulatedDocumentTag = DataElementTag(0x00420011) // MIMETypeOfEncapsulatedDocumentTag is the data element tag of MIMETypeOfEncapsulatedDocument MIMETypeOfEncapsulatedDocumentTag = DataElementTag(0x00420012) // SourceInstanceSequenceTag is the data element tag of SourceInstanceSequence SourceInstanceSequenceTag = DataElementTag(0x00420013) // ListOfMIMETypesTag is the data element tag of ListOfMIMETypes ListOfMIMETypesTag = DataElementTag(0x00420014) // EncapsulatedDocumentLengthTag is the data element tag of EncapsulatedDocumentLength EncapsulatedDocumentLengthTag = DataElementTag(0x00420015) // ProductPackageIdentifierTag is the data element tag of ProductPackageIdentifier ProductPackageIdentifierTag = DataElementTag(0x00440001) // SubstanceAdministrationApprovalTag is the data element tag of SubstanceAdministrationApproval SubstanceAdministrationApprovalTag = DataElementTag(0x00440002) // ApprovalStatusFurtherDescriptionTag is the data element tag of ApprovalStatusFurtherDescription ApprovalStatusFurtherDescriptionTag = DataElementTag(0x00440003) // ApprovalStatusDateTimeTag is the data element tag of ApprovalStatusDateTime ApprovalStatusDateTimeTag = DataElementTag(0x00440004) // ProductTypeCodeSequenceTag is the data element tag of ProductTypeCodeSequence ProductTypeCodeSequenceTag = DataElementTag(0x00440007) // ProductNameTag is the data element tag of ProductName ProductNameTag = DataElementTag(0x00440008) // ProductDescriptionTag is the data element tag of ProductDescription ProductDescriptionTag = DataElementTag(0x00440009) // ProductLotIdentifierTag is the data element tag of ProductLotIdentifier ProductLotIdentifierTag = DataElementTag(0x0044000A) // ProductExpirationDateTimeTag is the data element tag of ProductExpirationDateTime ProductExpirationDateTimeTag = DataElementTag(0x0044000B) // SubstanceAdministrationDateTimeTag is the data element tag of SubstanceAdministrationDateTime SubstanceAdministrationDateTimeTag = DataElementTag(0x00440010) // SubstanceAdministrationNotesTag is the data element tag of SubstanceAdministrationNotes SubstanceAdministrationNotesTag = DataElementTag(0x00440011) // SubstanceAdministrationDeviceIDTag is the data element tag of SubstanceAdministrationDeviceID SubstanceAdministrationDeviceIDTag = DataElementTag(0x00440012) // ProductParameterSequenceTag is the data element tag of ProductParameterSequence ProductParameterSequenceTag = DataElementTag(0x00440013) // SubstanceAdministrationParameterSequenceTag is the data element tag of SubstanceAdministrationParameterSequence SubstanceAdministrationParameterSequenceTag = DataElementTag(0x00440019) // ApprovalSequenceTag is the data element tag of ApprovalSequence ApprovalSequenceTag = DataElementTag(0x00440100) // AssertionCodeSequenceTag is the data element tag of AssertionCodeSequence AssertionCodeSequenceTag = DataElementTag(0x00440101) // AssertionUIDTag is the data element tag of AssertionUID AssertionUIDTag = DataElementTag(0x00440102) // AsserterIdentificationSequenceTag is the data element tag of AsserterIdentificationSequence AsserterIdentificationSequenceTag = DataElementTag(0x00440103) // AssertionDateTimeTag is the data element tag of AssertionDateTime AssertionDateTimeTag = DataElementTag(0x00440104) // AssertionExpirationDateTimeTag is the data element tag of AssertionExpirationDateTime AssertionExpirationDateTimeTag = DataElementTag(0x00440105) // AssertionCommentsTag is the data element tag of AssertionComments AssertionCommentsTag = DataElementTag(0x00440106) // RelatedAssertionSequenceTag is the data element tag of RelatedAssertionSequence RelatedAssertionSequenceTag = DataElementTag(0x00440107) // ReferencedAssertionUIDTag is the data element tag of ReferencedAssertionUID ReferencedAssertionUIDTag = DataElementTag(0x00440108) // ApprovalSubjectSequenceTag is the data element tag of ApprovalSubjectSequence ApprovalSubjectSequenceTag = DataElementTag(0x00440109) // OrganizationalRoleCodeSequenceTag is the data element tag of OrganizationalRoleCodeSequence OrganizationalRoleCodeSequenceTag = DataElementTag(0x0044010A) // LensDescriptionTag is the data element tag of LensDescription LensDescriptionTag = DataElementTag(0x00460012) // RightLensSequenceTag is the data element tag of RightLensSequence RightLensSequenceTag = DataElementTag(0x00460014) // LeftLensSequenceTag is the data element tag of LeftLensSequence LeftLensSequenceTag = DataElementTag(0x00460015) // UnspecifiedLateralityLensSequenceTag is the data element tag of UnspecifiedLateralityLensSequence UnspecifiedLateralityLensSequenceTag = DataElementTag(0x00460016) // CylinderSequenceTag is the data element tag of CylinderSequence CylinderSequenceTag = DataElementTag(0x00460018) // PrismSequenceTag is the data element tag of PrismSequence PrismSequenceTag = DataElementTag(0x00460028) // HorizontalPrismPowerTag is the data element tag of HorizontalPrismPower HorizontalPrismPowerTag = DataElementTag(0x00460030) // HorizontalPrismBaseTag is the data element tag of HorizontalPrismBase HorizontalPrismBaseTag = DataElementTag(0x00460032) // VerticalPrismPowerTag is the data element tag of VerticalPrismPower VerticalPrismPowerTag = DataElementTag(0x00460034) // VerticalPrismBaseTag is the data element tag of VerticalPrismBase VerticalPrismBaseTag = DataElementTag(0x00460036) // LensSegmentTypeTag is the data element tag of LensSegmentType LensSegmentTypeTag = DataElementTag(0x00460038) // OpticalTransmittanceTag is the data element tag of OpticalTransmittance OpticalTransmittanceTag = DataElementTag(0x00460040) // ChannelWidthTag is the data element tag of ChannelWidth ChannelWidthTag = DataElementTag(0x00460042) // PupilSizeTag is the data element tag of PupilSize PupilSizeTag = DataElementTag(0x00460044) // CornealSizeTag is the data element tag of CornealSize CornealSizeTag = DataElementTag(0x00460046) // CornealSizeSequenceTag is the data element tag of CornealSizeSequence CornealSizeSequenceTag = DataElementTag(0x00460047) // AutorefractionRightEyeSequenceTag is the data element tag of AutorefractionRightEyeSequence AutorefractionRightEyeSequenceTag = DataElementTag(0x00460050) // AutorefractionLeftEyeSequenceTag is the data element tag of AutorefractionLeftEyeSequence AutorefractionLeftEyeSequenceTag = DataElementTag(0x00460052) // DistancePupillaryDistanceTag is the data element tag of DistancePupillaryDistance DistancePupillaryDistanceTag = DataElementTag(0x00460060) // NearPupillaryDistanceTag is the data element tag of NearPupillaryDistance NearPupillaryDistanceTag = DataElementTag(0x00460062) // IntermediatePupillaryDistanceTag is the data element tag of IntermediatePupillaryDistance IntermediatePupillaryDistanceTag = DataElementTag(0x00460063) // OtherPupillaryDistanceTag is the data element tag of OtherPupillaryDistance OtherPupillaryDistanceTag = DataElementTag(0x00460064) // KeratometryRightEyeSequenceTag is the data element tag of KeratometryRightEyeSequence KeratometryRightEyeSequenceTag = DataElementTag(0x00460070) // KeratometryLeftEyeSequenceTag is the data element tag of KeratometryLeftEyeSequence KeratometryLeftEyeSequenceTag = DataElementTag(0x00460071) // SteepKeratometricAxisSequenceTag is the data element tag of SteepKeratometricAxisSequence SteepKeratometricAxisSequenceTag = DataElementTag(0x00460074) // RadiusOfCurvatureTag is the data element tag of RadiusOfCurvature RadiusOfCurvatureTag = DataElementTag(0x00460075) // KeratometricPowerTag is the data element tag of KeratometricPower KeratometricPowerTag = DataElementTag(0x00460076) // KeratometricAxisTag is the data element tag of KeratometricAxis KeratometricAxisTag = DataElementTag(0x00460077) // FlatKeratometricAxisSequenceTag is the data element tag of FlatKeratometricAxisSequence FlatKeratometricAxisSequenceTag = DataElementTag(0x00460080) // BackgroundColorTag is the data element tag of BackgroundColor BackgroundColorTag = DataElementTag(0x00460092) // OptotypeTag is the data element tag of Optotype OptotypeTag = DataElementTag(0x00460094) // OptotypePresentationTag is the data element tag of OptotypePresentation OptotypePresentationTag = DataElementTag(0x00460095) // SubjectiveRefractionRightEyeSequenceTag is the data element tag of SubjectiveRefractionRightEyeSequence SubjectiveRefractionRightEyeSequenceTag = DataElementTag(0x00460097) // SubjectiveRefractionLeftEyeSequenceTag is the data element tag of SubjectiveRefractionLeftEyeSequence SubjectiveRefractionLeftEyeSequenceTag = DataElementTag(0x00460098) // AddNearSequenceTag is the data element tag of AddNearSequence AddNearSequenceTag = DataElementTag(0x00460100) // AddIntermediateSequenceTag is the data element tag of AddIntermediateSequence AddIntermediateSequenceTag = DataElementTag(0x00460101) // AddOtherSequenceTag is the data element tag of AddOtherSequence AddOtherSequenceTag = DataElementTag(0x00460102) // AddPowerTag is the data element tag of AddPower AddPowerTag = DataElementTag(0x00460104) // ViewingDistanceTag is the data element tag of ViewingDistance ViewingDistanceTag = DataElementTag(0x00460106) // CorneaMeasurementsSequenceTag is the data element tag of CorneaMeasurementsSequence CorneaMeasurementsSequenceTag = DataElementTag(0x00460110) // SourceOfCorneaMeasurementDataCodeSequenceTag is the data element tag of SourceOfCorneaMeasurementDataCodeSequence SourceOfCorneaMeasurementDataCodeSequenceTag = DataElementTag(0x00460111) // SteepCornealAxisSequenceTag is the data element tag of SteepCornealAxisSequence SteepCornealAxisSequenceTag = DataElementTag(0x00460112) // FlatCornealAxisSequenceTag is the data element tag of FlatCornealAxisSequence FlatCornealAxisSequenceTag = DataElementTag(0x00460113) // CornealPowerTag is the data element tag of CornealPower CornealPowerTag = DataElementTag(0x00460114) // CornealAxisTag is the data element tag of CornealAxis CornealAxisTag = DataElementTag(0x00460115) // CorneaMeasurementMethodCodeSequenceTag is the data element tag of CorneaMeasurementMethodCodeSequence CorneaMeasurementMethodCodeSequenceTag = DataElementTag(0x00460116) // RefractiveIndexOfCorneaTag is the data element tag of RefractiveIndexOfCornea RefractiveIndexOfCorneaTag = DataElementTag(0x00460117) // RefractiveIndexOfAqueousHumorTag is the data element tag of RefractiveIndexOfAqueousHumor RefractiveIndexOfAqueousHumorTag = DataElementTag(0x00460118) // VisualAcuityTypeCodeSequenceTag is the data element tag of VisualAcuityTypeCodeSequence VisualAcuityTypeCodeSequenceTag = DataElementTag(0x00460121) // VisualAcuityRightEyeSequenceTag is the data element tag of VisualAcuityRightEyeSequence VisualAcuityRightEyeSequenceTag = DataElementTag(0x00460122) // VisualAcuityLeftEyeSequenceTag is the data element tag of VisualAcuityLeftEyeSequence VisualAcuityLeftEyeSequenceTag = DataElementTag(0x00460123) // VisualAcuityBothEyesOpenSequenceTag is the data element tag of VisualAcuityBothEyesOpenSequence VisualAcuityBothEyesOpenSequenceTag = DataElementTag(0x00460124) // ViewingDistanceTypeTag is the data element tag of ViewingDistanceType ViewingDistanceTypeTag = DataElementTag(0x00460125) // VisualAcuityModifiersTag is the data element tag of VisualAcuityModifiers VisualAcuityModifiersTag = DataElementTag(0x00460135) // DecimalVisualAcuityTag is the data element tag of DecimalVisualAcuity DecimalVisualAcuityTag = DataElementTag(0x00460137) // OptotypeDetailedDefinitionTag is the data element tag of OptotypeDetailedDefinition OptotypeDetailedDefinitionTag = DataElementTag(0x00460139) // ReferencedRefractiveMeasurementsSequenceTag is the data element tag of ReferencedRefractiveMeasurementsSequence ReferencedRefractiveMeasurementsSequenceTag = DataElementTag(0x00460145) // SpherePowerTag is the data element tag of SpherePower SpherePowerTag = DataElementTag(0x00460146) // CylinderPowerTag is the data element tag of CylinderPower CylinderPowerTag = DataElementTag(0x00460147) // CornealTopographySurfaceTag is the data element tag of CornealTopographySurface CornealTopographySurfaceTag = DataElementTag(0x00460201) // CornealVertexLocationTag is the data element tag of CornealVertexLocation CornealVertexLocationTag = DataElementTag(0x00460202) // PupilCentroidXCoordinateTag is the data element tag of PupilCentroidXCoordinate PupilCentroidXCoordinateTag = DataElementTag(0x00460203) // PupilCentroidYCoordinateTag is the data element tag of PupilCentroidYCoordinate PupilCentroidYCoordinateTag = DataElementTag(0x00460204) // EquivalentPupilRadiusTag is the data element tag of EquivalentPupilRadius EquivalentPupilRadiusTag = DataElementTag(0x00460205) // CornealTopographyMapTypeCodeSequenceTag is the data element tag of CornealTopographyMapTypeCodeSequence CornealTopographyMapTypeCodeSequenceTag = DataElementTag(0x00460207) // VerticesOfTheOutlineOfPupilTag is the data element tag of VerticesOfTheOutlineOfPupil VerticesOfTheOutlineOfPupilTag = DataElementTag(0x00460208) // CornealTopographyMappingNormalsSequenceTag is the data element tag of CornealTopographyMappingNormalsSequence CornealTopographyMappingNormalsSequenceTag = DataElementTag(0x00460210) // MaximumCornealCurvatureSequenceTag is the data element tag of MaximumCornealCurvatureSequence MaximumCornealCurvatureSequenceTag = DataElementTag(0x00460211) // MaximumCornealCurvatureTag is the data element tag of MaximumCornealCurvature MaximumCornealCurvatureTag = DataElementTag(0x00460212) // MaximumCornealCurvatureLocationTag is the data element tag of MaximumCornealCurvatureLocation MaximumCornealCurvatureLocationTag = DataElementTag(0x00460213) // MinimumKeratometricSequenceTag is the data element tag of MinimumKeratometricSequence MinimumKeratometricSequenceTag = DataElementTag(0x00460215) // SimulatedKeratometricCylinderSequenceTag is the data element tag of SimulatedKeratometricCylinderSequence SimulatedKeratometricCylinderSequenceTag = DataElementTag(0x00460218) // AverageCornealPowerTag is the data element tag of AverageCornealPower AverageCornealPowerTag = DataElementTag(0x00460220) // CornealISValueTag is the data element tag of CornealISValue CornealISValueTag = DataElementTag(0x00460224) // AnalyzedAreaTag is the data element tag of AnalyzedArea AnalyzedAreaTag = DataElementTag(0x00460227) // SurfaceRegularityIndexTag is the data element tag of SurfaceRegularityIndex SurfaceRegularityIndexTag = DataElementTag(0x00460230) // SurfaceAsymmetryIndexTag is the data element tag of SurfaceAsymmetryIndex SurfaceAsymmetryIndexTag = DataElementTag(0x00460232) // CornealEccentricityIndexTag is the data element tag of CornealEccentricityIndex CornealEccentricityIndexTag = DataElementTag(0x00460234) // KeratoconusPredictionIndexTag is the data element tag of KeratoconusPredictionIndex KeratoconusPredictionIndexTag = DataElementTag(0x00460236) // DecimalPotentialVisualAcuityTag is the data element tag of DecimalPotentialVisualAcuity DecimalPotentialVisualAcuityTag = DataElementTag(0x00460238) // CornealTopographyMapQualityEvaluationTag is the data element tag of CornealTopographyMapQualityEvaluation CornealTopographyMapQualityEvaluationTag = DataElementTag(0x00460242) // SourceImageCornealProcessedDataSequenceTag is the data element tag of SourceImageCornealProcessedDataSequence SourceImageCornealProcessedDataSequenceTag = DataElementTag(0x00460244) // CornealPointLocationTag is the data element tag of CornealPointLocation CornealPointLocationTag = DataElementTag(0x00460247) // CornealPointEstimatedTag is the data element tag of CornealPointEstimated CornealPointEstimatedTag = DataElementTag(0x00460248) // AxialPowerTag is the data element tag of AxialPower AxialPowerTag = DataElementTag(0x00460249) // TangentialPowerTag is the data element tag of TangentialPower TangentialPowerTag = DataElementTag(0x00460250) // RefractivePowerTag is the data element tag of RefractivePower RefractivePowerTag = DataElementTag(0x00460251) // RelativeElevationTag is the data element tag of RelativeElevation RelativeElevationTag = DataElementTag(0x00460252) // CornealWavefrontTag is the data element tag of CornealWavefront CornealWavefrontTag = DataElementTag(0x00460253) // ImagedVolumeWidthTag is the data element tag of ImagedVolumeWidth ImagedVolumeWidthTag = DataElementTag(0x00480001) // ImagedVolumeHeightTag is the data element tag of ImagedVolumeHeight ImagedVolumeHeightTag = DataElementTag(0x00480002) // ImagedVolumeDepthTag is the data element tag of ImagedVolumeDepth ImagedVolumeDepthTag = DataElementTag(0x00480003) // TotalPixelMatrixColumnsTag is the data element tag of TotalPixelMatrixColumns TotalPixelMatrixColumnsTag = DataElementTag(0x00480006) // TotalPixelMatrixRowsTag is the data element tag of TotalPixelMatrixRows TotalPixelMatrixRowsTag = DataElementTag(0x00480007) // TotalPixelMatrixOriginSequenceTag is the data element tag of TotalPixelMatrixOriginSequence TotalPixelMatrixOriginSequenceTag = DataElementTag(0x00480008) // SpecimenLabelInImageTag is the data element tag of SpecimenLabelInImage SpecimenLabelInImageTag = DataElementTag(0x00480010) // FocusMethodTag is the data element tag of FocusMethod FocusMethodTag = DataElementTag(0x00480011) // ExtendedDepthOfFieldTag is the data element tag of ExtendedDepthOfField ExtendedDepthOfFieldTag = DataElementTag(0x00480012) // NumberOfFocalPlanesTag is the data element tag of NumberOfFocalPlanes NumberOfFocalPlanesTag = DataElementTag(0x00480013) // DistanceBetweenFocalPlanesTag is the data element tag of DistanceBetweenFocalPlanes DistanceBetweenFocalPlanesTag = DataElementTag(0x00480014) // RecommendedAbsentPixelCIELabValueTag is the data element tag of RecommendedAbsentPixelCIELabValue RecommendedAbsentPixelCIELabValueTag = DataElementTag(0x00480015) // IlluminatorTypeCodeSequenceTag is the data element tag of IlluminatorTypeCodeSequence IlluminatorTypeCodeSequenceTag = DataElementTag(0x00480100) // ImageOrientationSlideTag is the data element tag of ImageOrientationSlide ImageOrientationSlideTag = DataElementTag(0x00480102) // OpticalPathSequenceTag is the data element tag of OpticalPathSequence OpticalPathSequenceTag = DataElementTag(0x00480105) // OpticalPathIdentifierTag is the data element tag of OpticalPathIdentifier OpticalPathIdentifierTag = DataElementTag(0x00480106) // OpticalPathDescriptionTag is the data element tag of OpticalPathDescription OpticalPathDescriptionTag = DataElementTag(0x00480107) // IlluminationColorCodeSequenceTag is the data element tag of IlluminationColorCodeSequence IlluminationColorCodeSequenceTag = DataElementTag(0x00480108) // SpecimenReferenceSequenceTag is the data element tag of SpecimenReferenceSequence SpecimenReferenceSequenceTag = DataElementTag(0x00480110) // CondenserLensPowerTag is the data element tag of CondenserLensPower CondenserLensPowerTag = DataElementTag(0x00480111) // ObjectiveLensPowerTag is the data element tag of ObjectiveLensPower ObjectiveLensPowerTag = DataElementTag(0x00480112) // ObjectiveLensNumericalApertureTag is the data element tag of ObjectiveLensNumericalAperture ObjectiveLensNumericalApertureTag = DataElementTag(0x00480113) // PaletteColorLookupTableSequenceTag is the data element tag of PaletteColorLookupTableSequence PaletteColorLookupTableSequenceTag = DataElementTag(0x00480120) ReferencedImageNavigationSequenceTag = DataElementTag(0x00480200) // TopLeftHandCornerOfLocalizerAreaTag is the data element tag of TopLeftHandCornerOfLocalizerArea TopLeftHandCornerOfLocalizerAreaTag = DataElementTag(0x00480201) // BottomRightHandCornerOfLocalizerAreaTag is the data element tag of BottomRightHandCornerOfLocalizerArea BottomRightHandCornerOfLocalizerAreaTag = DataElementTag(0x00480202) // OpticalPathIdentificationSequenceTag is the data element tag of OpticalPathIdentificationSequence OpticalPathIdentificationSequenceTag = DataElementTag(0x00480207) // PlanePositionSlideSequenceTag is the data element tag of PlanePositionSlideSequence PlanePositionSlideSequenceTag = DataElementTag(0x0048021A) // ColumnPositionInTotalImagePixelMatrixTag is the data element tag of ColumnPositionInTotalImagePixelMatrix ColumnPositionInTotalImagePixelMatrixTag = DataElementTag(0x0048021E) // RowPositionInTotalImagePixelMatrixTag is the data element tag of RowPositionInTotalImagePixelMatrix RowPositionInTotalImagePixelMatrixTag = DataElementTag(0x0048021F) // PixelOriginInterpretationTag is the data element tag of PixelOriginInterpretation PixelOriginInterpretationTag = DataElementTag(0x00480301) // NumberOfOpticalPathsTag is the data element tag of NumberOfOpticalPaths NumberOfOpticalPathsTag = DataElementTag(0x00480302) // TotalPixelMatrixFocalPlanesTag is the data element tag of TotalPixelMatrixFocalPlanes TotalPixelMatrixFocalPlanesTag = DataElementTag(0x00480303) // CalibrationImageTag is the data element tag of CalibrationImage CalibrationImageTag = DataElementTag(0x00500004) // DeviceSequenceTag is the data element tag of DeviceSequence DeviceSequenceTag = DataElementTag(0x00500010) // ContainerComponentTypeCodeSequenceTag is the data element tag of ContainerComponentTypeCodeSequence ContainerComponentTypeCodeSequenceTag = DataElementTag(0x00500012) // ContainerComponentThicknessTag is the data element tag of ContainerComponentThickness ContainerComponentThicknessTag = DataElementTag(0x00500013) // DeviceLengthTag is the data element tag of DeviceLength DeviceLengthTag = DataElementTag(0x00500014) // ContainerComponentWidthTag is the data element tag of ContainerComponentWidth ContainerComponentWidthTag = DataElementTag(0x00500015) // DeviceDiameterTag is the data element tag of DeviceDiameter DeviceDiameterTag = DataElementTag(0x00500016) // DeviceDiameterUnitsTag is the data element tag of DeviceDiameterUnits DeviceDiameterUnitsTag = DataElementTag(0x00500017) // DeviceVolumeTag is the data element tag of DeviceVolume DeviceVolumeTag = DataElementTag(0x00500018) // InterMarkerDistanceTag is the data element tag of InterMarkerDistance InterMarkerDistanceTag = DataElementTag(0x00500019) // ContainerComponentMaterialTag is the data element tag of ContainerComponentMaterial ContainerComponentMaterialTag = DataElementTag(0x0050001A) // ContainerComponentIDTag is the data element tag of ContainerComponentID ContainerComponentIDTag = DataElementTag(0x0050001B) // ContainerComponentLengthTag is the data element tag of ContainerComponentLength ContainerComponentLengthTag = DataElementTag(0x0050001C) // ContainerComponentDiameterTag is the data element tag of ContainerComponentDiameter ContainerComponentDiameterTag = DataElementTag(0x0050001D) // ContainerComponentDescriptionTag is the data element tag of ContainerComponentDescription ContainerComponentDescriptionTag = DataElementTag(0x0050001E) // DeviceDescriptionTag is the data element tag of DeviceDescription DeviceDescriptionTag = DataElementTag(0x00500020) // LongDeviceDescriptionTag is the data element tag of LongDeviceDescription LongDeviceDescriptionTag = DataElementTag(0x00500021) // ContrastBolusIngredientPercentByVolumeTag is the data element tag of ContrastBolusIngredientPercentByVolume ContrastBolusIngredientPercentByVolumeTag = DataElementTag(0x00520001) // OCTFocalDistanceTag is the data element tag of OCTFocalDistance OCTFocalDistanceTag = DataElementTag(0x00520002) // BeamSpotSizeTag is the data element tag of BeamSpotSize BeamSpotSizeTag = DataElementTag(0x00520003) // EffectiveRefractiveIndexTag is the data element tag of EffectiveRefractiveIndex EffectiveRefractiveIndexTag = DataElementTag(0x00520004) // OCTAcquisitionDomainTag is the data element tag of OCTAcquisitionDomain OCTAcquisitionDomainTag = DataElementTag(0x00520006) // OCTOpticalCenterWavelengthTag is the data element tag of OCTOpticalCenterWavelength OCTOpticalCenterWavelengthTag = DataElementTag(0x00520007) // AxialResolutionTag is the data element tag of AxialResolution AxialResolutionTag = DataElementTag(0x00520008) // RangingDepthTag is the data element tag of RangingDepth RangingDepthTag = DataElementTag(0x00520009) // ALineRateTag is the data element tag of ALineRate ALineRateTag = DataElementTag(0x00520011) // ALinesPerFrameTag is the data element tag of ALinesPerFrame ALinesPerFrameTag = DataElementTag(0x00520012) // CatheterRotationalRateTag is the data element tag of CatheterRotationalRate CatheterRotationalRateTag = DataElementTag(0x00520013) // ALinePixelSpacingTag is the data element tag of ALinePixelSpacing ALinePixelSpacingTag = DataElementTag(0x00520014) // ModeOfPercutaneousAccessSequenceTag is the data element tag of ModeOfPercutaneousAccessSequence ModeOfPercutaneousAccessSequenceTag = DataElementTag(0x00520016) // IntravascularOCTFrameTypeSequenceTag is the data element tag of IntravascularOCTFrameTypeSequence IntravascularOCTFrameTypeSequenceTag = DataElementTag(0x00520025) // OCTZOffsetAppliedTag is the data element tag of OCTZOffsetApplied OCTZOffsetAppliedTag = DataElementTag(0x00520026) // IntravascularFrameContentSequenceTag is the data element tag of IntravascularFrameContentSequence IntravascularFrameContentSequenceTag = DataElementTag(0x00520027) // IntravascularLongitudinalDistanceTag is the data element tag of IntravascularLongitudinalDistance IntravascularLongitudinalDistanceTag = DataElementTag(0x00520028) // IntravascularOCTFrameContentSequenceTag is the data element tag of IntravascularOCTFrameContentSequence IntravascularOCTFrameContentSequenceTag = DataElementTag(0x00520029) // OCTZOffsetCorrectionTag is the data element tag of OCTZOffsetCorrection OCTZOffsetCorrectionTag = DataElementTag(0x00520030) // CatheterDirectionOfRotationTag is the data element tag of CatheterDirectionOfRotation CatheterDirectionOfRotationTag = DataElementTag(0x00520031) // SeamLineLocationTag is the data element tag of SeamLineLocation SeamLineLocationTag = DataElementTag(0x00520033) // FirstALineLocationTag is the data element tag of FirstALineLocation FirstALineLocationTag = DataElementTag(0x00520034) // SeamLineIndexTag is the data element tag of SeamLineIndex SeamLineIndexTag = DataElementTag(0x00520036) // NumberOfPaddedALinesTag is the data element tag of NumberOfPaddedALines NumberOfPaddedALinesTag = DataElementTag(0x00520038) // InterpolationTypeTag is the data element tag of InterpolationType InterpolationTypeTag = DataElementTag(0x00520039) // RefractiveIndexAppliedTag is the data element tag of RefractiveIndexApplied RefractiveIndexAppliedTag = DataElementTag(0x0052003A) // EnergyWindowVectorTag is the data element tag of EnergyWindowVector EnergyWindowVectorTag = DataElementTag(0x00540010) // NumberOfEnergyWindowsTag is the data element tag of NumberOfEnergyWindows NumberOfEnergyWindowsTag = DataElementTag(0x00540011) // EnergyWindowInformationSequenceTag is the data element tag of EnergyWindowInformationSequence EnergyWindowInformationSequenceTag = DataElementTag(0x00540012) // EnergyWindowRangeSequenceTag is the data element tag of EnergyWindowRangeSequence EnergyWindowRangeSequenceTag = DataElementTag(0x00540013) // EnergyWindowLowerLimitTag is the data element tag of EnergyWindowLowerLimit EnergyWindowLowerLimitTag = DataElementTag(0x00540014) // EnergyWindowUpperLimitTag is the data element tag of EnergyWindowUpperLimit EnergyWindowUpperLimitTag = DataElementTag(0x00540015) // RadiopharmaceuticalInformationSequenceTag is the data element tag of RadiopharmaceuticalInformationSequence RadiopharmaceuticalInformationSequenceTag = DataElementTag(0x00540016) // ResidualSyringeCountsTag is the data element tag of ResidualSyringeCounts ResidualSyringeCountsTag = DataElementTag(0x00540017) // EnergyWindowNameTag is the data element tag of EnergyWindowName EnergyWindowNameTag = DataElementTag(0x00540018) // DetectorVectorTag is the data element tag of DetectorVector DetectorVectorTag = DataElementTag(0x00540020) // NumberOfDetectorsTag is the data element tag of NumberOfDetectors NumberOfDetectorsTag = DataElementTag(0x00540021) // DetectorInformationSequenceTag is the data element tag of DetectorInformationSequence DetectorInformationSequenceTag = DataElementTag(0x00540022) // PhaseVectorTag is the data element tag of PhaseVector PhaseVectorTag = DataElementTag(0x00540030) // NumberOfPhasesTag is the data element tag of NumberOfPhases NumberOfPhasesTag = DataElementTag(0x00540031) // PhaseInformationSequenceTag is the data element tag of PhaseInformationSequence PhaseInformationSequenceTag = DataElementTag(0x00540032) // NumberOfFramesInPhaseTag is the data element tag of NumberOfFramesInPhase NumberOfFramesInPhaseTag = DataElementTag(0x00540033) // PhaseDelayTag is the data element tag of PhaseDelay PhaseDelayTag = DataElementTag(0x00540036) // PauseBetweenFramesTag is the data element tag of PauseBetweenFrames PauseBetweenFramesTag = DataElementTag(0x00540038) // PhaseDescriptionTag is the data element tag of PhaseDescription PhaseDescriptionTag = DataElementTag(0x00540039) // RotationVectorTag is the data element tag of RotationVector RotationVectorTag = DataElementTag(0x00540050) // NumberOfRotationsTag is the data element tag of NumberOfRotations NumberOfRotationsTag = DataElementTag(0x00540051) // RotationInformationSequenceTag is the data element tag of RotationInformationSequence RotationInformationSequenceTag = DataElementTag(0x00540052) // NumberOfFramesInRotationTag is the data element tag of NumberOfFramesInRotation NumberOfFramesInRotationTag = DataElementTag(0x00540053) // RRIntervalVectorTag is the data element tag of RRIntervalVector RRIntervalVectorTag = DataElementTag(0x00540060) // NumberOfRRIntervalsTag is the data element tag of NumberOfRRIntervals NumberOfRRIntervalsTag = DataElementTag(0x00540061) // GatedInformationSequenceTag is the data element tag of GatedInformationSequence GatedInformationSequenceTag = DataElementTag(0x00540062) // DataInformationSequenceTag is the data element tag of DataInformationSequence DataInformationSequenceTag = DataElementTag(0x00540063) // TimeSlotVectorTag is the data element tag of TimeSlotVector TimeSlotVectorTag = DataElementTag(0x00540070) // NumberOfTimeSlotsTag is the data element tag of NumberOfTimeSlots NumberOfTimeSlotsTag = DataElementTag(0x00540071) // TimeSlotInformationSequenceTag is the data element tag of TimeSlotInformationSequence TimeSlotInformationSequenceTag = DataElementTag(0x00540072) // TimeSlotTimeTag is the data element tag of TimeSlotTime TimeSlotTimeTag = DataElementTag(0x00540073) // SliceVectorTag is the data element tag of SliceVector SliceVectorTag = DataElementTag(0x00540080) // NumberOfSlicesTag is the data element tag of NumberOfSlices NumberOfSlicesTag = DataElementTag(0x00540081) // AngularViewVectorTag is the data element tag of AngularViewVector AngularViewVectorTag = DataElementTag(0x00540090) // TimeSliceVectorTag is the data element tag of TimeSliceVector TimeSliceVectorTag = DataElementTag(0x00540100) // NumberOfTimeSlicesTag is the data element tag of NumberOfTimeSlices NumberOfTimeSlicesTag = DataElementTag(0x00540101) // StartAngleTag is the data element tag of StartAngle StartAngleTag = DataElementTag(0x00540200) // TypeOfDetectorMotionTag is the data element tag of TypeOfDetectorMotion TypeOfDetectorMotionTag = DataElementTag(0x00540202) // TriggerVectorTag is the data element tag of TriggerVector TriggerVectorTag = DataElementTag(0x00540210) // NumberOfTriggersInPhaseTag is the data element tag of NumberOfTriggersInPhase NumberOfTriggersInPhaseTag = DataElementTag(0x00540211) // ViewCodeSequenceTag is the data element tag of ViewCodeSequence ViewCodeSequenceTag = DataElementTag(0x00540220) // ViewModifierCodeSequenceTag is the data element tag of ViewModifierCodeSequence ViewModifierCodeSequenceTag = DataElementTag(0x00540222) // RadionuclideCodeSequenceTag is the data element tag of RadionuclideCodeSequence RadionuclideCodeSequenceTag = DataElementTag(0x00540300) // AdministrationRouteCodeSequenceTag is the data element tag of AdministrationRouteCodeSequence AdministrationRouteCodeSequenceTag = DataElementTag(0x00540302) // RadiopharmaceuticalCodeSequenceTag is the data element tag of RadiopharmaceuticalCodeSequence RadiopharmaceuticalCodeSequenceTag = DataElementTag(0x00540304) // CalibrationDataSequenceTag is the data element tag of CalibrationDataSequence CalibrationDataSequenceTag = DataElementTag(0x00540306) // EnergyWindowNumberTag is the data element tag of EnergyWindowNumber EnergyWindowNumberTag = DataElementTag(0x00540308) // ImageIDTag is the data element tag of ImageID ImageIDTag = DataElementTag(0x00540400) // PatientOrientationCodeSequenceTag is the data element tag of PatientOrientationCodeSequence PatientOrientationCodeSequenceTag = DataElementTag(0x00540410) // PatientOrientationModifierCodeSequenceTag is the data element tag of PatientOrientationModifierCodeSequence PatientOrientationModifierCodeSequenceTag = DataElementTag(0x00540412) // PatientGantryRelationshipCodeSequenceTag is the data element tag of PatientGantryRelationshipCodeSequence PatientGantryRelationshipCodeSequenceTag = DataElementTag(0x00540414) // SliceProgressionDirectionTag is the data element tag of SliceProgressionDirection SliceProgressionDirectionTag = DataElementTag(0x00540500) // ScanProgressionDirectionTag is the data element tag of ScanProgressionDirection ScanProgressionDirectionTag = DataElementTag(0x00540501) // SeriesTypeTag is the data element tag of SeriesType SeriesTypeTag = DataElementTag(0x00541000) // UnitsTag is the data element tag of Units UnitsTag = DataElementTag(0x00541001) // CountsSourceTag is the data element tag of CountsSource CountsSourceTag = DataElementTag(0x00541002) // ReprojectionMethodTag is the data element tag of ReprojectionMethod ReprojectionMethodTag = DataElementTag(0x00541004) // SUVTypeTag is the data element tag of SUVType SUVTypeTag = DataElementTag(0x00541006) // RandomsCorrectionMethodTag is the data element tag of RandomsCorrectionMethod RandomsCorrectionMethodTag = DataElementTag(0x00541100) // AttenuationCorrectionMethodTag is the data element tag of AttenuationCorrectionMethod AttenuationCorrectionMethodTag = DataElementTag(0x00541101) // DecayCorrectionTag is the data element tag of DecayCorrection DecayCorrectionTag = DataElementTag(0x00541102) // ReconstructionMethodTag is the data element tag of ReconstructionMethod ReconstructionMethodTag = DataElementTag(0x00541103) // DetectorLinesOfResponseUsedTag is the data element tag of DetectorLinesOfResponseUsed DetectorLinesOfResponseUsedTag = DataElementTag(0x00541104) // ScatterCorrectionMethodTag is the data element tag of ScatterCorrectionMethod ScatterCorrectionMethodTag = DataElementTag(0x00541105) // AxialAcceptanceTag is the data element tag of AxialAcceptance AxialAcceptanceTag = DataElementTag(0x00541200) // AxialMashTag is the data element tag of AxialMash AxialMashTag = DataElementTag(0x00541201) // TransverseMashTag is the data element tag of TransverseMash TransverseMashTag = DataElementTag(0x00541202) // DetectorElementSizeTag is the data element tag of DetectorElementSize DetectorElementSizeTag = DataElementTag(0x00541203) // CoincidenceWindowWidthTag is the data element tag of CoincidenceWindowWidth CoincidenceWindowWidthTag = DataElementTag(0x00541210) // SecondaryCountsTypeTag is the data element tag of SecondaryCountsType SecondaryCountsTypeTag = DataElementTag(0x00541220) // FrameReferenceTimeTag is the data element tag of FrameReferenceTime FrameReferenceTimeTag = DataElementTag(0x00541300) // PrimaryPromptsCountsAccumulatedTag is the data element tag of PrimaryPromptsCountsAccumulated PrimaryPromptsCountsAccumulatedTag = DataElementTag(0x00541310) // SecondaryCountsAccumulatedTag is the data element tag of SecondaryCountsAccumulated SecondaryCountsAccumulatedTag = DataElementTag(0x00541311) // SliceSensitivityFactorTag is the data element tag of SliceSensitivityFactor SliceSensitivityFactorTag = DataElementTag(0x00541320) // DecayFactorTag is the data element tag of DecayFactor DecayFactorTag = DataElementTag(0x00541321) // DoseCalibrationFactorTag is the data element tag of DoseCalibrationFactor DoseCalibrationFactorTag = DataElementTag(0x00541322) // ScatterFractionFactorTag is the data element tag of ScatterFractionFactor ScatterFractionFactorTag = DataElementTag(0x00541323) // DeadTimeFactorTag is the data element tag of DeadTimeFactor DeadTimeFactorTag = DataElementTag(0x00541324) // ImageIndexTag is the data element tag of ImageIndex ImageIndexTag = DataElementTag(0x00541330) // CountsIncludedTag is the data element tag of CountsIncluded CountsIncludedTag = DataElementTag(0x00541400) // DeadTimeCorrectionFlagTag is the data element tag of DeadTimeCorrectionFlag DeadTimeCorrectionFlagTag = DataElementTag(0x00541401) // HistogramSequenceTag is the data element tag of HistogramSequence HistogramSequenceTag = DataElementTag(0x00603000) // HistogramNumberOfBinsTag is the data element tag of HistogramNumberOfBins HistogramNumberOfBinsTag = DataElementTag(0x00603002) // HistogramFirstBinValueTag is the data element tag of HistogramFirstBinValue HistogramFirstBinValueTag = DataElementTag(0x00603004) // HistogramLastBinValueTag is the data element tag of HistogramLastBinValue HistogramLastBinValueTag = DataElementTag(0x00603006) // HistogramBinWidthTag is the data element tag of HistogramBinWidth HistogramBinWidthTag = DataElementTag(0x00603008) // HistogramExplanationTag is the data element tag of HistogramExplanation HistogramExplanationTag = DataElementTag(0x00603010) // HistogramDataTag is the data element tag of HistogramData HistogramDataTag = DataElementTag(0x00603020) // SegmentationTypeTag is the data element tag of SegmentationType SegmentationTypeTag = DataElementTag(0x00620001) // SegmentSequenceTag is the data element tag of SegmentSequence SegmentSequenceTag = DataElementTag(0x00620002) // SegmentedPropertyCategoryCodeSequenceTag is the data element tag of SegmentedPropertyCategoryCodeSequence SegmentedPropertyCategoryCodeSequenceTag = DataElementTag(0x00620003) // SegmentNumberTag is the data element tag of SegmentNumber SegmentNumberTag = DataElementTag(0x00620004) // SegmentLabelTag is the data element tag of SegmentLabel SegmentLabelTag = DataElementTag(0x00620005) // SegmentDescriptionTag is the data element tag of SegmentDescription SegmentDescriptionTag = DataElementTag(0x00620006) // SegmentationAlgorithmIdentificationSequenceTag is the data element tag of SegmentationAlgorithmIdentificationSequence SegmentationAlgorithmIdentificationSequenceTag = DataElementTag(0x00620007) // SegmentAlgorithmTypeTag is the data element tag of SegmentAlgorithmType SegmentAlgorithmTypeTag = DataElementTag(0x00620008) // SegmentAlgorithmNameTag is the data element tag of SegmentAlgorithmName SegmentAlgorithmNameTag = DataElementTag(0x00620009) // SegmentIdentificationSequenceTag is the data element tag of SegmentIdentificationSequence SegmentIdentificationSequenceTag = DataElementTag(0x0062000A) // ReferencedSegmentNumberTag is the data element tag of ReferencedSegmentNumber ReferencedSegmentNumberTag = DataElementTag(0x0062000B) // RecommendedDisplayGrayscaleValueTag is the data element tag of RecommendedDisplayGrayscaleValue RecommendedDisplayGrayscaleValueTag = DataElementTag(0x0062000C) // RecommendedDisplayCIELabValueTag is the data element tag of RecommendedDisplayCIELabValue RecommendedDisplayCIELabValueTag = DataElementTag(0x0062000D) // MaximumFractionalValueTag is the data element tag of MaximumFractionalValue MaximumFractionalValueTag = DataElementTag(0x0062000E) // SegmentedPropertyTypeCodeSequenceTag is the data element tag of SegmentedPropertyTypeCodeSequence SegmentedPropertyTypeCodeSequenceTag = DataElementTag(0x0062000F) // SegmentationFractionalTypeTag is the data element tag of SegmentationFractionalType SegmentationFractionalTypeTag = DataElementTag(0x00620010) // SegmentedPropertyTypeModifierCodeSequenceTag is the data element tag of SegmentedPropertyTypeModifierCodeSequence SegmentedPropertyTypeModifierCodeSequenceTag = DataElementTag(0x00620011) // UsedSegmentsSequenceTag is the data element tag of UsedSegmentsSequence UsedSegmentsSequenceTag = DataElementTag(0x00620012) // SegmentsOverlapTag is the data element tag of SegmentsOverlap SegmentsOverlapTag = DataElementTag(0x00620013) // TrackingIDTag is the data element tag of TrackingID TrackingIDTag = DataElementTag(0x00620020) // TrackingUIDTag is the data element tag of TrackingUID TrackingUIDTag = DataElementTag(0x00620021) // DeformableRegistrationSequenceTag is the data element tag of DeformableRegistrationSequence DeformableRegistrationSequenceTag = DataElementTag(0x00640002) // SourceFrameOfReferenceUIDTag is the data element tag of SourceFrameOfReferenceUID SourceFrameOfReferenceUIDTag = DataElementTag(0x00640003) // DeformableRegistrationGridSequenceTag is the data element tag of DeformableRegistrationGridSequence DeformableRegistrationGridSequenceTag = DataElementTag(0x00640005) // GridDimensionsTag is the data element tag of GridDimensions GridDimensionsTag = DataElementTag(0x00640007) // GridResolutionTag is the data element tag of GridResolution GridResolutionTag = DataElementTag(0x00640008) // VectorGridDataTag is the data element tag of VectorGridData VectorGridDataTag = DataElementTag(0x00640009) // PreDeformationMatrixRegistrationSequenceTag is the data element tag of PreDeformationMatrixRegistrationSequence PreDeformationMatrixRegistrationSequenceTag = DataElementTag(0x0064000F) // PostDeformationMatrixRegistrationSequenceTag is the data element tag of PostDeformationMatrixRegistrationSequence PostDeformationMatrixRegistrationSequenceTag = DataElementTag(0x00640010) // NumberOfSurfacesTag is the data element tag of NumberOfSurfaces NumberOfSurfacesTag = DataElementTag(0x00660001) // SurfaceSequenceTag is the data element tag of SurfaceSequence SurfaceSequenceTag = DataElementTag(0x00660002) // SurfaceNumberTag is the data element tag of SurfaceNumber SurfaceNumberTag = DataElementTag(0x00660003) // SurfaceCommentsTag is the data element tag of SurfaceComments SurfaceCommentsTag = DataElementTag(0x00660004) // SurfaceProcessingTag is the data element tag of SurfaceProcessing SurfaceProcessingTag = DataElementTag(0x00660009) // SurfaceProcessingRatioTag is the data element tag of SurfaceProcessingRatio SurfaceProcessingRatioTag = DataElementTag(0x0066000A) // SurfaceProcessingDescriptionTag is the data element tag of SurfaceProcessingDescription SurfaceProcessingDescriptionTag = DataElementTag(0x0066000B) // RecommendedPresentationOpacityTag is the data element tag of RecommendedPresentationOpacity RecommendedPresentationOpacityTag = DataElementTag(0x0066000C) // RecommendedPresentationTypeTag is the data element tag of RecommendedPresentationType RecommendedPresentationTypeTag = DataElementTag(0x0066000D) // FiniteVolumeTag is the data element tag of FiniteVolume FiniteVolumeTag = DataElementTag(0x0066000E) // ManifoldTag is the data element tag of Manifold ManifoldTag = DataElementTag(0x00660010) // SurfacePointsSequenceTag is the data element tag of SurfacePointsSequence SurfacePointsSequenceTag = DataElementTag(0x00660011) // SurfacePointsNormalsSequenceTag is the data element tag of SurfacePointsNormalsSequence SurfacePointsNormalsSequenceTag = DataElementTag(0x00660012) // SurfaceMeshPrimitivesSequenceTag is the data element tag of SurfaceMeshPrimitivesSequence SurfaceMeshPrimitivesSequenceTag = DataElementTag(0x00660013) // NumberOfSurfacePointsTag is the data element tag of NumberOfSurfacePoints NumberOfSurfacePointsTag = DataElementTag(0x00660015) // PointCoordinatesDataTag is the data element tag of PointCoordinatesData PointCoordinatesDataTag = DataElementTag(0x00660016) // PointPositionAccuracyTag is the data element tag of PointPositionAccuracy PointPositionAccuracyTag = DataElementTag(0x00660017) // MeanPointDistanceTag is the data element tag of MeanPointDistance MeanPointDistanceTag = DataElementTag(0x00660018) // MaximumPointDistanceTag is the data element tag of MaximumPointDistance MaximumPointDistanceTag = DataElementTag(0x00660019) // PointsBoundingBoxCoordinatesTag is the data element tag of PointsBoundingBoxCoordinates PointsBoundingBoxCoordinatesTag = DataElementTag(0x0066001A) // AxisOfRotationTag is the data element tag of AxisOfRotation AxisOfRotationTag = DataElementTag(0x0066001B) // CenterOfRotationTag is the data element tag of CenterOfRotation CenterOfRotationTag = DataElementTag(0x0066001C) // NumberOfVectorsTag is the data element tag of NumberOfVectors NumberOfVectorsTag = DataElementTag(0x0066001E) // VectorDimensionalityTag is the data element tag of VectorDimensionality VectorDimensionalityTag = DataElementTag(0x0066001F) // VectorAccuracyTag is the data element tag of VectorAccuracy VectorAccuracyTag = DataElementTag(0x00660020) // VectorCoordinateDataTag is the data element tag of VectorCoordinateData VectorCoordinateDataTag = DataElementTag(0x00660021) // TrianglePointIndexListTag is the data element tag of TrianglePointIndexList TrianglePointIndexListTag = DataElementTag(0x00660023) // EdgePointIndexListTag is the data element tag of EdgePointIndexList EdgePointIndexListTag = DataElementTag(0x00660024) // VertexPointIndexListTag is the data element tag of VertexPointIndexList VertexPointIndexListTag = DataElementTag(0x00660025) // TriangleStripSequenceTag is the data element tag of TriangleStripSequence TriangleStripSequenceTag = DataElementTag(0x00660026) // TriangleFanSequenceTag is the data element tag of TriangleFanSequence TriangleFanSequenceTag = DataElementTag(0x00660027) // LineSequenceTag is the data element tag of LineSequence LineSequenceTag = DataElementTag(0x00660028) // PrimitivePointIndexListTag is the data element tag of PrimitivePointIndexList PrimitivePointIndexListTag = DataElementTag(0x00660029) // SurfaceCountTag is the data element tag of SurfaceCount SurfaceCountTag = DataElementTag(0x0066002A) // ReferencedSurfaceSequenceTag is the data element tag of ReferencedSurfaceSequence ReferencedSurfaceSequenceTag = DataElementTag(0x0066002B) // ReferencedSurfaceNumberTag is the data element tag of ReferencedSurfaceNumber ReferencedSurfaceNumberTag = DataElementTag(0x0066002C) // SegmentSurfaceGenerationAlgorithmIdentificationSequenceTag is the data element tag of SegmentSurfaceGenerationAlgorithmIdentificationSequence SegmentSurfaceGenerationAlgorithmIdentificationSequenceTag = DataElementTag(0x0066002D) // SegmentSurfaceSourceInstanceSequenceTag is the data element tag of SegmentSurfaceSourceInstanceSequence SegmentSurfaceSourceInstanceSequenceTag = DataElementTag(0x0066002E) // AlgorithmFamilyCodeSequenceTag is the data element tag of AlgorithmFamilyCodeSequence AlgorithmFamilyCodeSequenceTag = DataElementTag(0x0066002F) // AlgorithmNameCodeSequenceTag is the data element tag of AlgorithmNameCodeSequence AlgorithmNameCodeSequenceTag = DataElementTag(0x00660030) // AlgorithmVersionTag is the data element tag of AlgorithmVersion AlgorithmVersionTag = DataElementTag(0x00660031) // AlgorithmParametersTag is the data element tag of AlgorithmParameters AlgorithmParametersTag = DataElementTag(0x00660032) // FacetSequenceTag is the data element tag of FacetSequence FacetSequenceTag = DataElementTag(0x00660034) // SurfaceProcessingAlgorithmIdentificationSequenceTag is the data element tag of SurfaceProcessingAlgorithmIdentificationSequence SurfaceProcessingAlgorithmIdentificationSequenceTag = DataElementTag(0x00660035) // AlgorithmNameTag is the data element tag of AlgorithmName AlgorithmNameTag = DataElementTag(0x00660036) // RecommendedPointRadiusTag is the data element tag of RecommendedPointRadius RecommendedPointRadiusTag = DataElementTag(0x00660037) // RecommendedLineThicknessTag is the data element tag of RecommendedLineThickness RecommendedLineThicknessTag = DataElementTag(0x00660038) // LongPrimitivePointIndexListTag is the data element tag of LongPrimitivePointIndexList LongPrimitivePointIndexListTag = DataElementTag(0x00660040) // LongTrianglePointIndexListTag is the data element tag of LongTrianglePointIndexList LongTrianglePointIndexListTag = DataElementTag(0x00660041) // LongEdgePointIndexListTag is the data element tag of LongEdgePointIndexList LongEdgePointIndexListTag = DataElementTag(0x00660042) // LongVertexPointIndexListTag is the data element tag of LongVertexPointIndexList LongVertexPointIndexListTag = DataElementTag(0x00660043) // TrackSetSequenceTag is the data element tag of TrackSetSequence TrackSetSequenceTag = DataElementTag(0x00660101) // TrackSequenceTag is the data element tag of TrackSequence TrackSequenceTag = DataElementTag(0x00660102) // RecommendedDisplayCIELabValueListTag is the data element tag of RecommendedDisplayCIELabValueList RecommendedDisplayCIELabValueListTag = DataElementTag(0x00660103) // TrackingAlgorithmIdentificationSequenceTag is the data element tag of TrackingAlgorithmIdentificationSequence TrackingAlgorithmIdentificationSequenceTag = DataElementTag(0x00660104) // TrackSetNumberTag is the data element tag of TrackSetNumber TrackSetNumberTag = DataElementTag(0x00660105) // TrackSetLabelTag is the data element tag of TrackSetLabel TrackSetLabelTag = DataElementTag(0x00660106) // TrackSetDescriptionTag is the data element tag of TrackSetDescription TrackSetDescriptionTag = DataElementTag(0x00660107) // TrackSetAnatomicalTypeCodeSequenceTag is the data element tag of TrackSetAnatomicalTypeCodeSequence TrackSetAnatomicalTypeCodeSequenceTag = DataElementTag(0x00660108) // MeasurementsSequenceTag is the data element tag of MeasurementsSequence MeasurementsSequenceTag = DataElementTag(0x00660121) // TrackSetStatisticsSequenceTag is the data element tag of TrackSetStatisticsSequence TrackSetStatisticsSequenceTag = DataElementTag(0x00660124) // FloatingPointValuesTag is the data element tag of FloatingPointValues FloatingPointValuesTag = DataElementTag(0x00660125) // TrackPointIndexListTag is the data element tag of TrackPointIndexList TrackPointIndexListTag = DataElementTag(0x00660129) // TrackStatisticsSequenceTag is the data element tag of TrackStatisticsSequence TrackStatisticsSequenceTag = DataElementTag(0x00660130) // MeasurementValuesSequenceTag is the data element tag of MeasurementValuesSequence MeasurementValuesSequenceTag = DataElementTag(0x00660132) // DiffusionAcquisitionCodeSequenceTag is the data element tag of DiffusionAcquisitionCodeSequence DiffusionAcquisitionCodeSequenceTag = DataElementTag(0x00660133) // DiffusionModelCodeSequenceTag is the data element tag of DiffusionModelCodeSequence DiffusionModelCodeSequenceTag = DataElementTag(0x00660134) // ImplantSizeTag is the data element tag of ImplantSize ImplantSizeTag = DataElementTag(0x00686210) // ImplantTemplateVersionTag is the data element tag of ImplantTemplateVersion ImplantTemplateVersionTag = DataElementTag(0x00686221) // ReplacedImplantTemplateSequenceTag is the data element tag of ReplacedImplantTemplateSequence ReplacedImplantTemplateSequenceTag = DataElementTag(0x00686222) // ImplantTypeTag is the data element tag of ImplantType ImplantTypeTag = DataElementTag(0x00686223) // DerivationImplantTemplateSequenceTag is the data element tag of DerivationImplantTemplateSequence DerivationImplantTemplateSequenceTag = DataElementTag(0x00686224) // OriginalImplantTemplateSequenceTag is the data element tag of OriginalImplantTemplateSequence OriginalImplantTemplateSequenceTag = DataElementTag(0x00686225) // EffectiveDateTimeTag is the data element tag of EffectiveDateTime EffectiveDateTimeTag = DataElementTag(0x00686226) // ImplantTargetAnatomySequenceTag is the data element tag of ImplantTargetAnatomySequence ImplantTargetAnatomySequenceTag = DataElementTag(0x00686230) // InformationFromManufacturerSequenceTag is the data element tag of InformationFromManufacturerSequence InformationFromManufacturerSequenceTag = DataElementTag(0x00686260) // NotificationFromManufacturerSequenceTag is the data element tag of NotificationFromManufacturerSequence NotificationFromManufacturerSequenceTag = DataElementTag(0x00686265) // InformationIssueDateTimeTag is the data element tag of InformationIssueDateTime InformationIssueDateTimeTag = DataElementTag(0x00686270) // InformationSummaryTag is the data element tag of InformationSummary InformationSummaryTag = DataElementTag(0x00686280) // ImplantRegulatoryDisapprovalCodeSequenceTag is the data element tag of ImplantRegulatoryDisapprovalCodeSequence ImplantRegulatoryDisapprovalCodeSequenceTag = DataElementTag(0x006862A0) // OverallTemplateSpatialToleranceTag is the data element tag of OverallTemplateSpatialTolerance OverallTemplateSpatialToleranceTag = DataElementTag(0x006862A5) // HPGLDocumentSequenceTag is the data element tag of HPGLDocumentSequence HPGLDocumentSequenceTag = DataElementTag(0x006862C0) // HPGLDocumentIDTag is the data element tag of HPGLDocumentID HPGLDocumentIDTag = DataElementTag(0x006862D0) // HPGLDocumentLabelTag is the data element tag of HPGLDocumentLabel HPGLDocumentLabelTag = DataElementTag(0x006862D5) // ViewOrientationCodeSequenceTag is the data element tag of ViewOrientationCodeSequence ViewOrientationCodeSequenceTag = DataElementTag(0x006862E0) // ViewOrientationModifierCodeSequenceTag is the data element tag of ViewOrientationModifierCodeSequence ViewOrientationModifierCodeSequenceTag = DataElementTag(0x006862F0) // HPGLDocumentScalingTag is the data element tag of HPGLDocumentScaling HPGLDocumentScalingTag = DataElementTag(0x006862F2) // HPGLDocumentTag is the data element tag of HPGLDocument HPGLDocumentTag = DataElementTag(0x00686300) // HPGLContourPenNumberTag is the data element tag of HPGLContourPenNumber HPGLContourPenNumberTag = DataElementTag(0x00686310) // HPGLPenSequenceTag is the data element tag of HPGLPenSequence HPGLPenSequenceTag = DataElementTag(0x00686320) // HPGLPenNumberTag is the data element tag of HPGLPenNumber HPGLPenNumberTag = DataElementTag(0x00686330) // HPGLPenLabelTag is the data element tag of HPGLPenLabel HPGLPenLabelTag = DataElementTag(0x00686340) // HPGLPenDescriptionTag is the data element tag of HPGLPenDescription HPGLPenDescriptionTag = DataElementTag(0x00686345) // RecommendedRotationPointTag is the data element tag of RecommendedRotationPoint RecommendedRotationPointTag = DataElementTag(0x00686346) // BoundingRectangleTag is the data element tag of BoundingRectangle BoundingRectangleTag = DataElementTag(0x00686347) // ImplantTemplate3DModelSurfaceNumberTag is the data element tag of ImplantTemplate3DModelSurfaceNumber ImplantTemplate3DModelSurfaceNumberTag = DataElementTag(0x00686350) // SurfaceModelDescriptionSequenceTag is the data element tag of SurfaceModelDescriptionSequence SurfaceModelDescriptionSequenceTag = DataElementTag(0x00686360) // SurfaceModelLabelTag is the data element tag of SurfaceModelLabel SurfaceModelLabelTag = DataElementTag(0x00686380) // SurfaceModelScalingFactorTag is the data element tag of SurfaceModelScalingFactor SurfaceModelScalingFactorTag = DataElementTag(0x00686390) // MaterialsCodeSequenceTag is the data element tag of MaterialsCodeSequence MaterialsCodeSequenceTag = DataElementTag(0x006863A0) // CoatingMaterialsCodeSequenceTag is the data element tag of CoatingMaterialsCodeSequence CoatingMaterialsCodeSequenceTag = DataElementTag(0x006863A4) // ImplantTypeCodeSequenceTag is the data element tag of ImplantTypeCodeSequence ImplantTypeCodeSequenceTag = DataElementTag(0x006863A8) // FixationMethodCodeSequenceTag is the data element tag of FixationMethodCodeSequence FixationMethodCodeSequenceTag = DataElementTag(0x006863AC) // MatingFeatureSetsSequenceTag is the data element tag of MatingFeatureSetsSequence MatingFeatureSetsSequenceTag = DataElementTag(0x006863B0) // MatingFeatureSetIDTag is the data element tag of MatingFeatureSetID MatingFeatureSetIDTag = DataElementTag(0x006863C0) // MatingFeatureSetLabelTag is the data element tag of MatingFeatureSetLabel MatingFeatureSetLabelTag = DataElementTag(0x006863D0) // MatingFeatureSequenceTag is the data element tag of MatingFeatureSequence MatingFeatureSequenceTag = DataElementTag(0x006863E0) // MatingFeatureIDTag is the data element tag of MatingFeatureID MatingFeatureIDTag = DataElementTag(0x006863F0) // MatingFeatureDegreeOfFreedomSequenceTag is the data element tag of MatingFeatureDegreeOfFreedomSequence MatingFeatureDegreeOfFreedomSequenceTag = DataElementTag(0x00686400) // DegreeOfFreedomIDTag is the data element tag of DegreeOfFreedomID DegreeOfFreedomIDTag = DataElementTag(0x00686410) // DegreeOfFreedomTypeTag is the data element tag of DegreeOfFreedomType DegreeOfFreedomTypeTag = DataElementTag(0x00686420) // TwoDMatingFeatureCoordinatesSequenceTag is the data element tag of TwoDMatingFeatureCoordinatesSequence TwoDMatingFeatureCoordinatesSequenceTag = DataElementTag(0x00686430) // ReferencedHPGLDocumentIDTag is the data element tag of ReferencedHPGLDocumentID ReferencedHPGLDocumentIDTag = DataElementTag(0x00686440) // TwoDMatingPointTag is the data element tag of TwoDMatingPoint TwoDMatingPointTag = DataElementTag(0x00686450) // TwoDMatingAxesTag is the data element tag of TwoDMatingAxes TwoDMatingAxesTag = DataElementTag(0x00686460) // TwoDDegreeOfFreedomSequenceTag is the data element tag of TwoDDegreeOfFreedomSequence TwoDDegreeOfFreedomSequenceTag = DataElementTag(0x00686470) // ThreeDDegreeOfFreedomAxisTag is the data element tag of ThreeDDegreeOfFreedomAxis ThreeDDegreeOfFreedomAxisTag = DataElementTag(0x00686490) // RangeOfFreedomTag is the data element tag of RangeOfFreedom RangeOfFreedomTag = DataElementTag(0x006864A0) // ThreeDMatingPointTag is the data element tag of ThreeDMatingPoint ThreeDMatingPointTag = DataElementTag(0x006864C0) // ThreeDMatingAxesTag is the data element tag of ThreeDMatingAxes ThreeDMatingAxesTag = DataElementTag(0x006864D0) // TwoDDegreeOfFreedomAxisTag is the data element tag of TwoDDegreeOfFreedomAxis TwoDDegreeOfFreedomAxisTag = DataElementTag(0x006864F0) // PlanningLandmarkPointSequenceTag is the data element tag of PlanningLandmarkPointSequence PlanningLandmarkPointSequenceTag = DataElementTag(0x00686500) // PlanningLandmarkLineSequenceTag is the data element tag of PlanningLandmarkLineSequence PlanningLandmarkLineSequenceTag = DataElementTag(0x00686510) // PlanningLandmarkPlaneSequenceTag is the data element tag of PlanningLandmarkPlaneSequence PlanningLandmarkPlaneSequenceTag = DataElementTag(0x00686520) // PlanningLandmarkIDTag is the data element tag of PlanningLandmarkID PlanningLandmarkIDTag = DataElementTag(0x00686530) // PlanningLandmarkDescriptionTag is the data element tag of PlanningLandmarkDescription PlanningLandmarkDescriptionTag = DataElementTag(0x00686540) // PlanningLandmarkIdentificationCodeSequenceTag is the data element tag of PlanningLandmarkIdentificationCodeSequence PlanningLandmarkIdentificationCodeSequenceTag = DataElementTag(0x00686545) // TwoDPointCoordinatesSequenceTag is the data element tag of TwoDPointCoordinatesSequence TwoDPointCoordinatesSequenceTag = DataElementTag(0x00686550) // TwoDPointCoordinatesTag is the data element tag of TwoDPointCoordinates TwoDPointCoordinatesTag = DataElementTag(0x00686560) // ThreeDPointCoordinatesTag is the data element tag of ThreeDPointCoordinates ThreeDPointCoordinatesTag = DataElementTag(0x00686590) // TwoDLineCoordinatesSequenceTag is the data element tag of TwoDLineCoordinatesSequence TwoDLineCoordinatesSequenceTag = DataElementTag(0x006865A0) // TwoDLineCoordinatesTag is the data element tag of TwoDLineCoordinates TwoDLineCoordinatesTag = DataElementTag(0x006865B0) // ThreeDLineCoordinatesTag is the data element tag of ThreeDLineCoordinates ThreeDLineCoordinatesTag = DataElementTag(0x006865D0) // TwoDPlaneCoordinatesSequenceTag is the data element tag of TwoDPlaneCoordinatesSequence TwoDPlaneCoordinatesSequenceTag = DataElementTag(0x006865E0) // TwoDPlaneIntersectionTag is the data element tag of TwoDPlaneIntersection TwoDPlaneIntersectionTag = DataElementTag(0x006865F0) // ThreeDPlaneOriginTag is the data element tag of ThreeDPlaneOrigin ThreeDPlaneOriginTag = DataElementTag(0x00686610) // ThreeDPlaneNormalTag is the data element tag of ThreeDPlaneNormal ThreeDPlaneNormalTag = DataElementTag(0x00686620) // ModelModificationTag is the data element tag of ModelModification ModelModificationTag = DataElementTag(0x00687001) // ModelMirroringTag is the data element tag of ModelMirroring ModelMirroringTag = DataElementTag(0x00687002) // ModelUsageCodeSequenceTag is the data element tag of ModelUsageCodeSequence ModelUsageCodeSequenceTag = DataElementTag(0x00687003) // GraphicAnnotationSequenceTag is the data element tag of GraphicAnnotationSequence GraphicAnnotationSequenceTag = DataElementTag(0x00700001) // GraphicLayerTag is the data element tag of GraphicLayer GraphicLayerTag = DataElementTag(0x00700002) // BoundingBoxAnnotationUnitsTag is the data element tag of BoundingBoxAnnotationUnits BoundingBoxAnnotationUnitsTag = DataElementTag(0x00700003) // AnchorPointAnnotationUnitsTag is the data element tag of AnchorPointAnnotationUnits AnchorPointAnnotationUnitsTag = DataElementTag(0x00700004) // GraphicAnnotationUnitsTag is the data element tag of GraphicAnnotationUnits GraphicAnnotationUnitsTag = DataElementTag(0x00700005) // UnformattedTextValueTag is the data element tag of UnformattedTextValue UnformattedTextValueTag = DataElementTag(0x00700006) // TextObjectSequenceTag is the data element tag of TextObjectSequence TextObjectSequenceTag = DataElementTag(0x00700008) // GraphicObjectSequenceTag is the data element tag of GraphicObjectSequence GraphicObjectSequenceTag = DataElementTag(0x00700009) // BoundingBoxTopLeftHandCornerTag is the data element tag of BoundingBoxTopLeftHandCorner BoundingBoxTopLeftHandCornerTag = DataElementTag(0x00700010) // BoundingBoxBottomRightHandCornerTag is the data element tag of BoundingBoxBottomRightHandCorner BoundingBoxBottomRightHandCornerTag = DataElementTag(0x00700011) // BoundingBoxTextHorizontalJustificationTag is the data element tag of BoundingBoxTextHorizontalJustification BoundingBoxTextHorizontalJustificationTag = DataElementTag(0x00700012) // AnchorPointTag is the data element tag of AnchorPoint AnchorPointTag = DataElementTag(0x00700014) // AnchorPointVisibilityTag is the data element tag of AnchorPointVisibility AnchorPointVisibilityTag = DataElementTag(0x00700015) // GraphicDimensionsTag is the data element tag of GraphicDimensions GraphicDimensionsTag = DataElementTag(0x00700020) // NumberOfGraphicPointsTag is the data element tag of NumberOfGraphicPoints NumberOfGraphicPointsTag = DataElementTag(0x00700021) // GraphicDataTag is the data element tag of GraphicData GraphicDataTag = DataElementTag(0x00700022) // GraphicTypeTag is the data element tag of GraphicType GraphicTypeTag = DataElementTag(0x00700023) // GraphicFilledTag is the data element tag of GraphicFilled GraphicFilledTag = DataElementTag(0x00700024) // ImageRotationRetiredTag is the data element tag of ImageRotationRetired ImageRotationRetiredTag = DataElementTag(0x00700040) // ImageHorizontalFlipTag is the data element tag of ImageHorizontalFlip ImageHorizontalFlipTag = DataElementTag(0x00700041) // ImageRotationTag is the data element tag of ImageRotation ImageRotationTag = DataElementTag(0x00700042) // DisplayedAreaTopLeftHandCornerTrialTag is the data element tag of DisplayedAreaTopLeftHandCornerTrial DisplayedAreaTopLeftHandCornerTrialTag = DataElementTag(0x00700050) // DisplayedAreaBottomRightHandCornerTrialTag is the data element tag of DisplayedAreaBottomRightHandCornerTrial DisplayedAreaBottomRightHandCornerTrialTag = DataElementTag(0x00700051) // DisplayedAreaTopLeftHandCornerTag is the data element tag of DisplayedAreaTopLeftHandCorner DisplayedAreaTopLeftHandCornerTag = DataElementTag(0x00700052) // DisplayedAreaBottomRightHandCornerTag is the data element tag of DisplayedAreaBottomRightHandCorner DisplayedAreaBottomRightHandCornerTag = DataElementTag(0x00700053) // DisplayedAreaSelectionSequenceTag is the data element tag of DisplayedAreaSelectionSequence DisplayedAreaSelectionSequenceTag = DataElementTag(0x0070005A) // GraphicLayerSequenceTag is the data element tag of GraphicLayerSequence GraphicLayerSequenceTag = DataElementTag(0x00700060) // GraphicLayerOrderTag is the data element tag of GraphicLayerOrder GraphicLayerOrderTag = DataElementTag(0x00700062) // GraphicLayerRecommendedDisplayGrayscaleValueTag is the data element tag of GraphicLayerRecommendedDisplayGrayscaleValue GraphicLayerRecommendedDisplayGrayscaleValueTag = DataElementTag(0x00700066) // GraphicLayerRecommendedDisplayRGBValueTag is the data element tag of GraphicLayerRecommendedDisplayRGBValue GraphicLayerRecommendedDisplayRGBValueTag = DataElementTag(0x00700067) // GraphicLayerDescriptionTag is the data element tag of GraphicLayerDescription GraphicLayerDescriptionTag = DataElementTag(0x00700068) // ContentLabelTag is the data element tag of ContentLabel ContentLabelTag = DataElementTag(0x00700080) // ContentDescriptionTag is the data element tag of ContentDescription ContentDescriptionTag = DataElementTag(0x00700081) // PresentationCreationDateTag is the data element tag of PresentationCreationDate PresentationCreationDateTag = DataElementTag(0x00700082) // PresentationCreationTimeTag is the data element tag of PresentationCreationTime PresentationCreationTimeTag = DataElementTag(0x00700083) // ContentCreatorNameTag is the data element tag of ContentCreatorName ContentCreatorNameTag = DataElementTag(0x00700084) // ContentCreatorIdentificationCodeSequenceTag is the data element tag of ContentCreatorIdentificationCodeSequence ContentCreatorIdentificationCodeSequenceTag = DataElementTag(0x00700086) // AlternateContentDescriptionSequenceTag is the data element tag of AlternateContentDescriptionSequence AlternateContentDescriptionSequenceTag = DataElementTag(0x00700087) // PresentationSizeModeTag is the data element tag of PresentationSizeMode PresentationSizeModeTag = DataElementTag(0x00700100) // PresentationPixelSpacingTag is the data element tag of PresentationPixelSpacing PresentationPixelSpacingTag = DataElementTag(0x00700101) // PresentationPixelAspectRatioTag is the data element tag of PresentationPixelAspectRatio PresentationPixelAspectRatioTag = DataElementTag(0x00700102) // PresentationPixelMagnificationRatioTag is the data element tag of PresentationPixelMagnificationRatio PresentationPixelMagnificationRatioTag = DataElementTag(0x00700103) // GraphicGroupLabelTag is the data element tag of GraphicGroupLabel GraphicGroupLabelTag = DataElementTag(0x00700207) // GraphicGroupDescriptionTag is the data element tag of GraphicGroupDescription GraphicGroupDescriptionTag = DataElementTag(0x00700208) // CompoundGraphicSequenceTag is the data element tag of CompoundGraphicSequence CompoundGraphicSequenceTag = DataElementTag(0x00700209) // CompoundGraphicInstanceIDTag is the data element tag of CompoundGraphicInstanceID CompoundGraphicInstanceIDTag = DataElementTag(0x00700226) // FontNameTag is the data element tag of FontName FontNameTag = DataElementTag(0x00700227) // FontNameTypeTag is the data element tag of FontNameType FontNameTypeTag = DataElementTag(0x00700228) // CSSFontNameTag is the data element tag of CSSFontName CSSFontNameTag = DataElementTag(0x00700229) // RotationAngleTag is the data element tag of RotationAngle RotationAngleTag = DataElementTag(0x00700230) // TextStyleSequenceTag is the data element tag of TextStyleSequence TextStyleSequenceTag = DataElementTag(0x00700231) // LineStyleSequenceTag is the data element tag of LineStyleSequence LineStyleSequenceTag = DataElementTag(0x00700232) // FillStyleSequenceTag is the data element tag of FillStyleSequence FillStyleSequenceTag = DataElementTag(0x00700233) // GraphicGroupSequenceTag is the data element tag of GraphicGroupSequence GraphicGroupSequenceTag = DataElementTag(0x00700234) // TextColorCIELabValueTag is the data element tag of TextColorCIELabValue TextColorCIELabValueTag = DataElementTag(0x00700241) // HorizontalAlignmentTag is the data element tag of HorizontalAlignment HorizontalAlignmentTag = DataElementTag(0x00700242) // VerticalAlignmentTag is the data element tag of VerticalAlignment VerticalAlignmentTag = DataElementTag(0x00700243) // ShadowStyleTag is the data element tag of ShadowStyle ShadowStyleTag = DataElementTag(0x00700244) // ShadowOffsetXTag is the data element tag of ShadowOffsetX ShadowOffsetXTag = DataElementTag(0x00700245) // ShadowOffsetYTag is the data element tag of ShadowOffsetY ShadowOffsetYTag = DataElementTag(0x00700246) // ShadowColorCIELabValueTag is the data element tag of ShadowColorCIELabValue ShadowColorCIELabValueTag = DataElementTag(0x00700247) // UnderlinedTag is the data element tag of Underlined UnderlinedTag = DataElementTag(0x00700248) // BoldTag is the data element tag of Bold BoldTag = DataElementTag(0x00700249) // ItalicTag is the data element tag of Italic ItalicTag = DataElementTag(0x00700250) // PatternOnColorCIELabValueTag is the data element tag of PatternOnColorCIELabValue PatternOnColorCIELabValueTag = DataElementTag(0x00700251) // PatternOffColorCIELabValueTag is the data element tag of PatternOffColorCIELabValue PatternOffColorCIELabValueTag = DataElementTag(0x00700252) // LineThicknessTag is the data element tag of LineThickness LineThicknessTag = DataElementTag(0x00700253) // LineDashingStyleTag is the data element tag of LineDashingStyle LineDashingStyleTag = DataElementTag(0x00700254) // LinePatternTag is the data element tag of LinePattern LinePatternTag = DataElementTag(0x00700255) // FillPatternTag is the data element tag of FillPattern FillPatternTag = DataElementTag(0x00700256) // FillModeTag is the data element tag of FillMode FillModeTag = DataElementTag(0x00700257) // ShadowOpacityTag is the data element tag of ShadowOpacity ShadowOpacityTag = DataElementTag(0x00700258) // GapLengthTag is the data element tag of GapLength GapLengthTag = DataElementTag(0x00700261) // DiameterOfVisibilityTag is the data element tag of DiameterOfVisibility DiameterOfVisibilityTag = DataElementTag(0x00700262) // RotationPointTag is the data element tag of RotationPoint RotationPointTag = DataElementTag(0x00700273) // TickAlignmentTag is the data element tag of TickAlignment TickAlignmentTag = DataElementTag(0x00700274) // ShowTickLabelTag is the data element tag of ShowTickLabel ShowTickLabelTag = DataElementTag(0x00700278) // TickLabelAlignmentTag is the data element tag of TickLabelAlignment TickLabelAlignmentTag = DataElementTag(0x00700279) // CompoundGraphicUnitsTag is the data element tag of CompoundGraphicUnits CompoundGraphicUnitsTag = DataElementTag(0x00700282) // PatternOnOpacityTag is the data element tag of PatternOnOpacity PatternOnOpacityTag = DataElementTag(0x00700284) // PatternOffOpacityTag is the data element tag of PatternOffOpacity PatternOffOpacityTag = DataElementTag(0x00700285) // MajorTicksSequenceTag is the data element tag of MajorTicksSequence MajorTicksSequenceTag = DataElementTag(0x00700287) // TickPositionTag is the data element tag of TickPosition TickPositionTag = DataElementTag(0x00700288) // TickLabelTag is the data element tag of TickLabel TickLabelTag = DataElementTag(0x00700289) // CompoundGraphicTypeTag is the data element tag of CompoundGraphicType CompoundGraphicTypeTag = DataElementTag(0x00700294) // GraphicGroupIDTag is the data element tag of GraphicGroupID GraphicGroupIDTag = DataElementTag(0x00700295) // ShapeTypeTag is the data element tag of ShapeType ShapeTypeTag = DataElementTag(0x00700306) // RegistrationSequenceTag is the data element tag of RegistrationSequence RegistrationSequenceTag = DataElementTag(0x00700308) // MatrixRegistrationSequenceTag is the data element tag of MatrixRegistrationSequence MatrixRegistrationSequenceTag = DataElementTag(0x00700309) // MatrixSequenceTag is the data element tag of MatrixSequence MatrixSequenceTag = DataElementTag(0x0070030A) // FrameOfReferenceToDisplayedCoordinateSystemTransformationMatrixTag is the data element tag of FrameOfReferenceToDisplayedCoordinateSystemTransformationMatrix FrameOfReferenceToDisplayedCoordinateSystemTransformationMatrixTag = DataElementTag(0x0070030B) // FrameOfReferenceTransformationMatrixTypeTag is the data element tag of FrameOfReferenceTransformationMatrixType FrameOfReferenceTransformationMatrixTypeTag = DataElementTag(0x0070030C) // RegistrationTypeCodeSequenceTag is the data element tag of RegistrationTypeCodeSequence RegistrationTypeCodeSequenceTag = DataElementTag(0x0070030D) // FiducialDescriptionTag is the data element tag of FiducialDescription FiducialDescriptionTag = DataElementTag(0x0070030F) // FiducialIdentifierTag is the data element tag of FiducialIdentifier FiducialIdentifierTag = DataElementTag(0x00700310) // FiducialIdentifierCodeSequenceTag is the data element tag of FiducialIdentifierCodeSequence FiducialIdentifierCodeSequenceTag = DataElementTag(0x00700311) // ContourUncertaintyRadiusTag is the data element tag of ContourUncertaintyRadius ContourUncertaintyRadiusTag = DataElementTag(0x00700312) // UsedFiducialsSequenceTag is the data element tag of UsedFiducialsSequence UsedFiducialsSequenceTag = DataElementTag(0x00700314) // GraphicCoordinatesDataSequenceTag is the data element tag of GraphicCoordinatesDataSequence GraphicCoordinatesDataSequenceTag = DataElementTag(0x00700318) // FiducialUIDTag is the data element tag of FiducialUID FiducialUIDTag = DataElementTag(0x0070031A) // ReferencedFiducialUIDTag is the data element tag of ReferencedFiducialUID ReferencedFiducialUIDTag = DataElementTag(0x0070031B) // FiducialSetSequenceTag is the data element tag of FiducialSetSequence FiducialSetSequenceTag = DataElementTag(0x0070031C) // FiducialSequenceTag is the data element tag of FiducialSequence FiducialSequenceTag = DataElementTag(0x0070031E) // FiducialsPropertyCategoryCodeSequenceTag is the data element tag of FiducialsPropertyCategoryCodeSequence FiducialsPropertyCategoryCodeSequenceTag = DataElementTag(0x0070031F) // GraphicLayerRecommendedDisplayCIELabValueTag is the data element tag of GraphicLayerRecommendedDisplayCIELabValue GraphicLayerRecommendedDisplayCIELabValueTag = DataElementTag(0x00700401) // BlendingSequenceTag is the data element tag of BlendingSequence BlendingSequenceTag = DataElementTag(0x00700402) // RelativeOpacityTag is the data element tag of RelativeOpacity RelativeOpacityTag = DataElementTag(0x00700403) // ReferencedSpatialRegistrationSequenceTag is the data element tag of ReferencedSpatialRegistrationSequence ReferencedSpatialRegistrationSequenceTag = DataElementTag(0x00700404) // BlendingPositionTag is the data element tag of BlendingPosition BlendingPositionTag = DataElementTag(0x00700405) // PresentationDisplayCollectionUIDTag is the data element tag of PresentationDisplayCollectionUID PresentationDisplayCollectionUIDTag = DataElementTag(0x00701101) // PresentationSequenceCollectionUIDTag is the data element tag of PresentationSequenceCollectionUID PresentationSequenceCollectionUIDTag = DataElementTag(0x00701102) // PresentationSequencePositionIndexTag is the data element tag of PresentationSequencePositionIndex PresentationSequencePositionIndexTag = DataElementTag(0x00701103) // RenderedImageReferenceSequenceTag is the data element tag of RenderedImageReferenceSequence RenderedImageReferenceSequenceTag = DataElementTag(0x00701104) // VolumetricPresentationStateInputSequenceTag is the data element tag of VolumetricPresentationStateInputSequence VolumetricPresentationStateInputSequenceTag = DataElementTag(0x00701201) // PresentationInputTypeTag is the data element tag of PresentationInputType PresentationInputTypeTag = DataElementTag(0x00701202) // InputSequencePositionIndexTag is the data element tag of InputSequencePositionIndex InputSequencePositionIndexTag = DataElementTag(0x00701203) // CropTag is the data element tag of Crop CropTag = DataElementTag(0x00701204) // CroppingSpecificationIndexTag is the data element tag of CroppingSpecificationIndex CroppingSpecificationIndexTag = DataElementTag(0x00701205) // CompositingMethodTag is the data element tag of CompositingMethod CompositingMethodTag = DataElementTag(0x00701206) // VolumetricPresentationInputNumberTag is the data element tag of VolumetricPresentationInputNumber VolumetricPresentationInputNumberTag = DataElementTag(0x00701207) // ImageVolumeGeometryTag is the data element tag of ImageVolumeGeometry ImageVolumeGeometryTag = DataElementTag(0x00701208) // VolumetricPresentationInputSetUIDTag is the data element tag of VolumetricPresentationInputSetUID VolumetricPresentationInputSetUIDTag = DataElementTag(0x00701209) // VolumetricPresentationInputSetSequenceTag is the data element tag of VolumetricPresentationInputSetSequence VolumetricPresentationInputSetSequenceTag = DataElementTag(0x0070120A) // GlobalCropTag is the data element tag of GlobalCrop GlobalCropTag = DataElementTag(0x0070120B) // GlobalCroppingSpecificationIndexTag is the data element tag of GlobalCroppingSpecificationIndex GlobalCroppingSpecificationIndexTag = DataElementTag(0x0070120C) // RenderingMethodTag is the data element tag of RenderingMethod RenderingMethodTag = DataElementTag(0x0070120D) // VolumeCroppingSequenceTag is the data element tag of VolumeCroppingSequence VolumeCroppingSequenceTag = DataElementTag(0x00701301) // VolumeCroppingMethodTag is the data element tag of VolumeCroppingMethod VolumeCroppingMethodTag = DataElementTag(0x00701302) // BoundingBoxCropTag is the data element tag of BoundingBoxCrop BoundingBoxCropTag = DataElementTag(0x00701303) // ObliqueCroppingPlaneSequenceTag is the data element tag of ObliqueCroppingPlaneSequence ObliqueCroppingPlaneSequenceTag = DataElementTag(0x00701304) // PlaneTag is the data element tag of Plane PlaneTag = DataElementTag(0x00701305) // PlaneNormalTag is the data element tag of PlaneNormal PlaneNormalTag = DataElementTag(0x00701306) // CroppingSpecificationNumberTag is the data element tag of CroppingSpecificationNumber CroppingSpecificationNumberTag = DataElementTag(0x00701309) // MultiPlanarReconstructionStyleTag is the data element tag of MultiPlanarReconstructionStyle MultiPlanarReconstructionStyleTag = DataElementTag(0x00701501) // MPRThicknessTypeTag is the data element tag of MPRThicknessType MPRThicknessTypeTag = DataElementTag(0x00701502) // MPRSlabThicknessTag is the data element tag of MPRSlabThickness MPRSlabThicknessTag = DataElementTag(0x00701503) // MPRTopLeftHandCornerTag is the data element tag of MPRTopLeftHandCorner MPRTopLeftHandCornerTag = DataElementTag(0x00701505) // MPRViewWidthDirectionTag is the data element tag of MPRViewWidthDirection MPRViewWidthDirectionTag = DataElementTag(0x00701507) // MPRViewWidthTag is the data element tag of MPRViewWidth MPRViewWidthTag = DataElementTag(0x00701508) // NumberOfVolumetricCurvePointsTag is the data element tag of NumberOfVolumetricCurvePoints NumberOfVolumetricCurvePointsTag = DataElementTag(0x0070150C) // VolumetricCurvePointsTag is the data element tag of VolumetricCurvePoints VolumetricCurvePointsTag = DataElementTag(0x0070150D) // MPRViewHeightDirectionTag is the data element tag of MPRViewHeightDirection MPRViewHeightDirectionTag = DataElementTag(0x00701511) // MPRViewHeightTag is the data element tag of MPRViewHeight MPRViewHeightTag = DataElementTag(0x00701512) // RenderProjectionTag is the data element tag of RenderProjection RenderProjectionTag = DataElementTag(0x00701602) // ViewpointPositionTag is the data element tag of ViewpointPosition ViewpointPositionTag = DataElementTag(0x00701603) // ViewpointLookAtPointTag is the data element tag of ViewpointLookAtPoint ViewpointLookAtPointTag = DataElementTag(0x00701604) // ViewpointUpDirectionTag is the data element tag of ViewpointUpDirection ViewpointUpDirectionTag = DataElementTag(0x00701605) // RenderFieldOfViewTag is the data element tag of RenderFieldOfView RenderFieldOfViewTag = DataElementTag(0x00701606) // SamplingStepSizeTag is the data element tag of SamplingStepSize SamplingStepSizeTag = DataElementTag(0x00701607) // ShadingStyleTag is the data element tag of ShadingStyle ShadingStyleTag = DataElementTag(0x00701701) // AmbientReflectionIntensityTag is the data element tag of AmbientReflectionIntensity AmbientReflectionIntensityTag = DataElementTag(0x00701702) // LightDirectionTag is the data element tag of LightDirection LightDirectionTag = DataElementTag(0x00701703) // DiffuseReflectionIntensityTag is the data element tag of DiffuseReflectionIntensity DiffuseReflectionIntensityTag = DataElementTag(0x00701704) // SpecularReflectionIntensityTag is the data element tag of SpecularReflectionIntensity SpecularReflectionIntensityTag = DataElementTag(0x00701705) // ShininessTag is the data element tag of Shininess ShininessTag = DataElementTag(0x00701706) // PresentationStateClassificationComponentSequenceTag is the data element tag of PresentationStateClassificationComponentSequence PresentationStateClassificationComponentSequenceTag = DataElementTag(0x00701801) // ComponentTypeTag is the data element tag of ComponentType ComponentTypeTag = DataElementTag(0x00701802) // ComponentInputSequenceTag is the data element tag of ComponentInputSequence ComponentInputSequenceTag = DataElementTag(0x00701803) // VolumetricPresentationInputIndexTag is the data element tag of VolumetricPresentationInputIndex VolumetricPresentationInputIndexTag = DataElementTag(0x00701804) // PresentationStateCompositorComponentSequenceTag is the data element tag of PresentationStateCompositorComponentSequence PresentationStateCompositorComponentSequenceTag = DataElementTag(0x00701805) // WeightingTransferFunctionSequenceTag is the data element tag of WeightingTransferFunctionSequence WeightingTransferFunctionSequenceTag = DataElementTag(0x00701806) // WeightingLookupTableDescriptorTag is the data element tag of WeightingLookupTableDescriptor WeightingLookupTableDescriptorTag = DataElementTag(0x00701807) // WeightingLookupTableDataTag is the data element tag of WeightingLookupTableData WeightingLookupTableDataTag = DataElementTag(0x00701808) // VolumetricAnnotationSequenceTag is the data element tag of VolumetricAnnotationSequence VolumetricAnnotationSequenceTag = DataElementTag(0x00701901) // ReferencedStructuredContextSequenceTag is the data element tag of ReferencedStructuredContextSequence ReferencedStructuredContextSequenceTag = DataElementTag(0x00701903) // ReferencedContentItemTag is the data element tag of ReferencedContentItem ReferencedContentItemTag = DataElementTag(0x00701904) // VolumetricPresentationInputAnnotationSequenceTag is the data element tag of VolumetricPresentationInputAnnotationSequence VolumetricPresentationInputAnnotationSequenceTag = DataElementTag(0x00701905) // AnnotationClippingTag is the data element tag of AnnotationClipping AnnotationClippingTag = DataElementTag(0x00701907) // PresentationAnimationStyleTag is the data element tag of PresentationAnimationStyle PresentationAnimationStyleTag = DataElementTag(0x00701A01) // RecommendedAnimationRateTag is the data element tag of RecommendedAnimationRate RecommendedAnimationRateTag = DataElementTag(0x00701A03) // AnimationCurveSequenceTag is the data element tag of AnimationCurveSequence AnimationCurveSequenceTag = DataElementTag(0x00701A04) // AnimationStepSizeTag is the data element tag of AnimationStepSize AnimationStepSizeTag = DataElementTag(0x00701A05) // SwivelRangeTag is the data element tag of SwivelRange SwivelRangeTag = DataElementTag(0x00701A06) // VolumetricCurveUpDirectionsTag is the data element tag of VolumetricCurveUpDirections VolumetricCurveUpDirectionsTag = DataElementTag(0x00701A07) // VolumeStreamSequenceTag is the data element tag of VolumeStreamSequence VolumeStreamSequenceTag = DataElementTag(0x00701A08) // RGBATransferFunctionDescriptionTag is the data element tag of RGBATransferFunctionDescription RGBATransferFunctionDescriptionTag = DataElementTag(0x00701A09) // AdvancedBlendingSequenceTag is the data element tag of AdvancedBlendingSequence AdvancedBlendingSequenceTag = DataElementTag(0x00701B01) // BlendingInputNumberTag is the data element tag of BlendingInputNumber BlendingInputNumberTag = DataElementTag(0x00701B02) // BlendingDisplayInputSequenceTag is the data element tag of BlendingDisplayInputSequence BlendingDisplayInputSequenceTag = DataElementTag(0x00701B03) // BlendingDisplaySequenceTag is the data element tag of BlendingDisplaySequence BlendingDisplaySequenceTag = DataElementTag(0x00701B04) // BlendingModeTag is the data element tag of BlendingMode BlendingModeTag = DataElementTag(0x00701B06) // TimeSeriesBlendingTag is the data element tag of TimeSeriesBlending TimeSeriesBlendingTag = DataElementTag(0x00701B07) // GeometryForDisplayTag is the data element tag of GeometryForDisplay GeometryForDisplayTag = DataElementTag(0x00701B08) // ThresholdSequenceTag is the data element tag of ThresholdSequence ThresholdSequenceTag = DataElementTag(0x00701B11) // ThresholdValueSequenceTag is the data element tag of ThresholdValueSequence ThresholdValueSequenceTag = DataElementTag(0x00701B12) // ThresholdTypeTag is the data element tag of ThresholdType ThresholdTypeTag = DataElementTag(0x00701B13) // ThresholdValueTag is the data element tag of ThresholdValue ThresholdValueTag = DataElementTag(0x00701B14) // HangingProtocolNameTag is the data element tag of HangingProtocolName HangingProtocolNameTag = DataElementTag(0x00720002) // HangingProtocolDescriptionTag is the data element tag of HangingProtocolDescription HangingProtocolDescriptionTag = DataElementTag(0x00720004) // HangingProtocolLevelTag is the data element tag of HangingProtocolLevel HangingProtocolLevelTag = DataElementTag(0x00720006) // HangingProtocolCreatorTag is the data element tag of HangingProtocolCreator HangingProtocolCreatorTag = DataElementTag(0x00720008) // HangingProtocolCreationDateTimeTag is the data element tag of HangingProtocolCreationDateTime HangingProtocolCreationDateTimeTag = DataElementTag(0x0072000A) // HangingProtocolDefinitionSequenceTag is the data element tag of HangingProtocolDefinitionSequence HangingProtocolDefinitionSequenceTag = DataElementTag(0x0072000C) // HangingProtocolUserIdentificationCodeSequenceTag is the data element tag of HangingProtocolUserIdentificationCodeSequence HangingProtocolUserIdentificationCodeSequenceTag = DataElementTag(0x0072000E) // HangingProtocolUserGroupNameTag is the data element tag of HangingProtocolUserGroupName HangingProtocolUserGroupNameTag = DataElementTag(0x00720010) // SourceHangingProtocolSequenceTag is the data element tag of SourceHangingProtocolSequence SourceHangingProtocolSequenceTag = DataElementTag(0x00720012) // NumberOfPriorsReferencedTag is the data element tag of NumberOfPriorsReferenced NumberOfPriorsReferencedTag = DataElementTag(0x00720014) // ImageSetsSequenceTag is the data element tag of ImageSetsSequence ImageSetsSequenceTag = DataElementTag(0x00720020) // ImageSetSelectorSequenceTag is the data element tag of ImageSetSelectorSequence ImageSetSelectorSequenceTag = DataElementTag(0x00720022) // ImageSetSelectorUsageFlagTag is the data element tag of ImageSetSelectorUsageFlag ImageSetSelectorUsageFlagTag = DataElementTag(0x00720024) // SelectorAttributeTag is the data element tag of SelectorAttribute SelectorAttributeTag = DataElementTag(0x00720026) // SelectorValueNumberTag is the data element tag of SelectorValueNumber SelectorValueNumberTag = DataElementTag(0x00720028) // TimeBasedImageSetsSequenceTag is the data element tag of TimeBasedImageSetsSequence TimeBasedImageSetsSequenceTag = DataElementTag(0x00720030) // ImageSetNumberTag is the data element tag of ImageSetNumber ImageSetNumberTag = DataElementTag(0x00720032) // ImageSetSelectorCategoryTag is the data element tag of ImageSetSelectorCategory ImageSetSelectorCategoryTag = DataElementTag(0x00720034) // RelativeTimeTag is the data element tag of RelativeTime RelativeTimeTag = DataElementTag(0x00720038) // RelativeTimeUnitsTag is the data element tag of RelativeTimeUnits RelativeTimeUnitsTag = DataElementTag(0x0072003A) // AbstractPriorValueTag is the data element tag of AbstractPriorValue AbstractPriorValueTag = DataElementTag(0x0072003C) // AbstractPriorCodeSequenceTag is the data element tag of AbstractPriorCodeSequence AbstractPriorCodeSequenceTag = DataElementTag(0x0072003E) // ImageSetLabelTag is the data element tag of ImageSetLabel ImageSetLabelTag = DataElementTag(0x00720040) // SelectorAttributeVRTag is the data element tag of SelectorAttributeVR SelectorAttributeVRTag = DataElementTag(0x00720050) // SelectorSequencePointerTag is the data element tag of SelectorSequencePointer SelectorSequencePointerTag = DataElementTag(0x00720052) // SelectorSequencePointerPrivateCreatorTag is the data element tag of SelectorSequencePointerPrivateCreator SelectorSequencePointerPrivateCreatorTag = DataElementTag(0x00720054) // SelectorAttributePrivateCreatorTag is the data element tag of SelectorAttributePrivateCreator SelectorAttributePrivateCreatorTag = DataElementTag(0x00720056) // SelectorAEValueTag is the data element tag of SelectorAEValue SelectorAEValueTag = DataElementTag(0x0072005E) // SelectorASValueTag is the data element tag of SelectorASValue SelectorASValueTag = DataElementTag(0x0072005F) // SelectorATValueTag is the data element tag of SelectorATValue SelectorATValueTag = DataElementTag(0x00720060) // SelectorDAValueTag is the data element tag of SelectorDAValue SelectorDAValueTag = DataElementTag(0x00720061) // SelectorCSValueTag is the data element tag of SelectorCSValue SelectorCSValueTag = DataElementTag(0x00720062) // SelectorDTValueTag is the data element tag of SelectorDTValue SelectorDTValueTag = DataElementTag(0x00720063) // SelectorISValueTag is the data element tag of SelectorISValue SelectorISValueTag = DataElementTag(0x00720064) // SelectorOBValueTag is the data element tag of SelectorOBValue SelectorOBValueTag = DataElementTag(0x00720065) // SelectorLOValueTag is the data element tag of SelectorLOValue SelectorLOValueTag = DataElementTag(0x00720066) // SelectorOFValueTag is the data element tag of SelectorOFValue SelectorOFValueTag = DataElementTag(0x00720067) // SelectorLTValueTag is the data element tag of SelectorLTValue SelectorLTValueTag = DataElementTag(0x00720068) // SelectorOWValueTag is the data element tag of SelectorOWValue SelectorOWValueTag = DataElementTag(0x00720069) // SelectorPNValueTag is the data element tag of SelectorPNValue SelectorPNValueTag = DataElementTag(0x0072006A) // SelectorTMValueTag is the data element tag of SelectorTMValue SelectorTMValueTag = DataElementTag(0x0072006B) // SelectorSHValueTag is the data element tag of SelectorSHValue SelectorSHValueTag = DataElementTag(0x0072006C) // SelectorUNValueTag is the data element tag of SelectorUNValue SelectorUNValueTag = DataElementTag(0x0072006D) // SelectorSTValueTag is the data element tag of SelectorSTValue SelectorSTValueTag = DataElementTag(0x0072006E) // SelectorUCValueTag is the data element tag of SelectorUCValue SelectorUCValueTag = DataElementTag(0x0072006F) // SelectorUTValueTag is the data element tag of SelectorUTValue SelectorUTValueTag = DataElementTag(0x00720070) // SelectorURValueTag is the data element tag of SelectorURValue SelectorURValueTag = DataElementTag(0x00720071) // SelectorDSValueTag is the data element tag of SelectorDSValue SelectorDSValueTag = DataElementTag(0x00720072) // SelectorODValueTag is the data element tag of SelectorODValue SelectorODValueTag = DataElementTag(0x00720073) // SelectorFDValueTag is the data element tag of SelectorFDValue SelectorFDValueTag = DataElementTag(0x00720074) // SelectorOLValueTag is the data element tag of SelectorOLValue SelectorOLValueTag = DataElementTag(0x00720075) // SelectorFLValueTag is the data element tag of SelectorFLValue SelectorFLValueTag = DataElementTag(0x00720076) // SelectorULValueTag is the data element tag of SelectorULValue SelectorULValueTag = DataElementTag(0x00720078) // SelectorUSValueTag is the data element tag of SelectorUSValue SelectorUSValueTag = DataElementTag(0x0072007A) // SelectorSLValueTag is the data element tag of SelectorSLValue SelectorSLValueTag = DataElementTag(0x0072007C) // SelectorSSValueTag is the data element tag of SelectorSSValue SelectorSSValueTag = DataElementTag(0x0072007E) // SelectorUIValueTag is the data element tag of SelectorUIValue SelectorUIValueTag = DataElementTag(0x0072007F) // SelectorCodeSequenceValueTag is the data element tag of SelectorCodeSequenceValue SelectorCodeSequenceValueTag = DataElementTag(0x00720080) // NumberOfScreensTag is the data element tag of NumberOfScreens NumberOfScreensTag = DataElementTag(0x00720100) // NominalScreenDefinitionSequenceTag is the data element tag of NominalScreenDefinitionSequence NominalScreenDefinitionSequenceTag = DataElementTag(0x00720102) // NumberOfVerticalPixelsTag is the data element tag of NumberOfVerticalPixels NumberOfVerticalPixelsTag = DataElementTag(0x00720104) // NumberOfHorizontalPixelsTag is the data element tag of NumberOfHorizontalPixels NumberOfHorizontalPixelsTag = DataElementTag(0x00720106) // DisplayEnvironmentSpatialPositionTag is the data element tag of DisplayEnvironmentSpatialPosition DisplayEnvironmentSpatialPositionTag = DataElementTag(0x00720108) // ScreenMinimumGrayscaleBitDepthTag is the data element tag of ScreenMinimumGrayscaleBitDepth ScreenMinimumGrayscaleBitDepthTag = DataElementTag(0x0072010A) // ScreenMinimumColorBitDepthTag is the data element tag of ScreenMinimumColorBitDepth ScreenMinimumColorBitDepthTag = DataElementTag(0x0072010C) // ApplicationMaximumRepaintTimeTag is the data element tag of ApplicationMaximumRepaintTime ApplicationMaximumRepaintTimeTag = DataElementTag(0x0072010E) // DisplaySetsSequenceTag is the data element tag of DisplaySetsSequence DisplaySetsSequenceTag = DataElementTag(0x00720200) // DisplaySetNumberTag is the data element tag of DisplaySetNumber DisplaySetNumberTag = DataElementTag(0x00720202) // DisplaySetLabelTag is the data element tag of DisplaySetLabel DisplaySetLabelTag = DataElementTag(0x00720203) // DisplaySetPresentationGroupTag is the data element tag of DisplaySetPresentationGroup DisplaySetPresentationGroupTag = DataElementTag(0x00720204) // DisplaySetPresentationGroupDescriptionTag is the data element tag of DisplaySetPresentationGroupDescription DisplaySetPresentationGroupDescriptionTag = DataElementTag(0x00720206) // PartialDataDisplayHandlingTag is the data element tag of PartialDataDisplayHandling PartialDataDisplayHandlingTag = DataElementTag(0x00720208) // SynchronizedScrollingSequenceTag is the data element tag of SynchronizedScrollingSequence SynchronizedScrollingSequenceTag = DataElementTag(0x00720210) // DisplaySetScrollingGroupTag is the data element tag of DisplaySetScrollingGroup DisplaySetScrollingGroupTag = DataElementTag(0x00720212) NavigationIndicatorSequenceTag = DataElementTag(0x00720214) NavigationDisplaySetTag = DataElementTag(0x00720216) // ReferenceDisplaySetsTag is the data element tag of ReferenceDisplaySets ReferenceDisplaySetsTag = DataElementTag(0x00720218) // ImageBoxesSequenceTag is the data element tag of ImageBoxesSequence ImageBoxesSequenceTag = DataElementTag(0x00720300) // ImageBoxNumberTag is the data element tag of ImageBoxNumber ImageBoxNumberTag = DataElementTag(0x00720302) // ImageBoxLayoutTypeTag is the data element tag of ImageBoxLayoutType ImageBoxLayoutTypeTag = DataElementTag(0x00720304) // ImageBoxTileHorizontalDimensionTag is the data element tag of ImageBoxTileHorizontalDimension ImageBoxTileHorizontalDimensionTag = DataElementTag(0x00720306) // ImageBoxTileVerticalDimensionTag is the data element tag of ImageBoxTileVerticalDimension ImageBoxTileVerticalDimensionTag = DataElementTag(0x00720308) // ImageBoxScrollDirectionTag is the data element tag of ImageBoxScrollDirection ImageBoxScrollDirectionTag = DataElementTag(0x00720310) // ImageBoxSmallScrollTypeTag is the data element tag of ImageBoxSmallScrollType ImageBoxSmallScrollTypeTag = DataElementTag(0x00720312) // ImageBoxSmallScrollAmountTag is the data element tag of ImageBoxSmallScrollAmount ImageBoxSmallScrollAmountTag = DataElementTag(0x00720314) // ImageBoxLargeScrollTypeTag is the data element tag of ImageBoxLargeScrollType ImageBoxLargeScrollTypeTag = DataElementTag(0x00720316) // ImageBoxLargeScrollAmountTag is the data element tag of ImageBoxLargeScrollAmount ImageBoxLargeScrollAmountTag = DataElementTag(0x00720318) // ImageBoxOverlapPriorityTag is the data element tag of ImageBoxOverlapPriority ImageBoxOverlapPriorityTag = DataElementTag(0x00720320) // CineRelativeToRealTimeTag is the data element tag of CineRelativeToRealTime CineRelativeToRealTimeTag = DataElementTag(0x00720330) // FilterOperationsSequenceTag is the data element tag of FilterOperationsSequence FilterOperationsSequenceTag = DataElementTag(0x00720400) // FilterByCategoryTag is the data element tag of FilterByCategory FilterByCategoryTag = DataElementTag(0x00720402) // FilterByAttributePresenceTag is the data element tag of FilterByAttributePresence FilterByAttributePresenceTag = DataElementTag(0x00720404) // FilterByOperatorTag is the data element tag of FilterByOperator FilterByOperatorTag = DataElementTag(0x00720406) // StructuredDisplayBackgroundCIELabValueTag is the data element tag of StructuredDisplayBackgroundCIELabValue StructuredDisplayBackgroundCIELabValueTag = DataElementTag(0x00720420) // EmptyImageBoxCIELabValueTag is the data element tag of EmptyImageBoxCIELabValue EmptyImageBoxCIELabValueTag = DataElementTag(0x00720421) // StructuredDisplayImageBoxSequenceTag is the data element tag of StructuredDisplayImageBoxSequence StructuredDisplayImageBoxSequenceTag = DataElementTag(0x00720422) // StructuredDisplayTextBoxSequenceTag is the data element tag of StructuredDisplayTextBoxSequence StructuredDisplayTextBoxSequenceTag = DataElementTag(0x00720424) // ReferencedFirstFrameSequenceTag is the data element tag of ReferencedFirstFrameSequence ReferencedFirstFrameSequenceTag = DataElementTag(0x00720427) // ImageBoxSynchronizationSequenceTag is the data element tag of ImageBoxSynchronizationSequence ImageBoxSynchronizationSequenceTag = DataElementTag(0x00720430) // SynchronizedImageBoxListTag is the data element tag of SynchronizedImageBoxList SynchronizedImageBoxListTag = DataElementTag(0x00720432) // TypeOfSynchronizationTag is the data element tag of TypeOfSynchronization TypeOfSynchronizationTag = DataElementTag(0x00720434) // BlendingOperationTypeTag is the data element tag of BlendingOperationType BlendingOperationTypeTag = DataElementTag(0x00720500) // ReformattingOperationTypeTag is the data element tag of ReformattingOperationType ReformattingOperationTypeTag = DataElementTag(0x00720510) // ReformattingThicknessTag is the data element tag of ReformattingThickness ReformattingThicknessTag = DataElementTag(0x00720512) // ReformattingIntervalTag is the data element tag of ReformattingInterval ReformattingIntervalTag = DataElementTag(0x00720514) // ReformattingOperationInitialViewDirectionTag is the data element tag of ReformattingOperationInitialViewDirection ReformattingOperationInitialViewDirectionTag = DataElementTag(0x00720516) // ThreeDRenderingTypeTag is the data element tag of ThreeDRenderingType ThreeDRenderingTypeTag = DataElementTag(0x00720520) // SortingOperationsSequenceTag is the data element tag of SortingOperationsSequence SortingOperationsSequenceTag = DataElementTag(0x00720600) // SortByCategoryTag is the data element tag of SortByCategory SortByCategoryTag = DataElementTag(0x00720602) // SortingDirectionTag is the data element tag of SortingDirection SortingDirectionTag = DataElementTag(0x00720604) // DisplaySetPatientOrientationTag is the data element tag of DisplaySetPatientOrientation DisplaySetPatientOrientationTag = DataElementTag(0x00720700) // VOITypeTag is the data element tag of VOIType VOITypeTag = DataElementTag(0x00720702) // PseudoColorTypeTag is the data element tag of PseudoColorType PseudoColorTypeTag = DataElementTag(0x00720704) // PseudoColorPaletteInstanceReferenceSequenceTag is the data element tag of PseudoColorPaletteInstanceReferenceSequence PseudoColorPaletteInstanceReferenceSequenceTag = DataElementTag(0x00720705) // ShowGrayscaleInvertedTag is the data element tag of ShowGrayscaleInverted ShowGrayscaleInvertedTag = DataElementTag(0x00720706) // ShowImageTrueSizeFlagTag is the data element tag of ShowImageTrueSizeFlag ShowImageTrueSizeFlagTag = DataElementTag(0x00720710) // ShowGraphicAnnotationFlagTag is the data element tag of ShowGraphicAnnotationFlag ShowGraphicAnnotationFlagTag = DataElementTag(0x00720712) // ShowPatientDemographicsFlagTag is the data element tag of ShowPatientDemographicsFlag ShowPatientDemographicsFlagTag = DataElementTag(0x00720714) // ShowAcquisitionTechniquesFlagTag is the data element tag of ShowAcquisitionTechniquesFlag ShowAcquisitionTechniquesFlagTag = DataElementTag(0x00720716) // DisplaySetHorizontalJustificationTag is the data element tag of DisplaySetHorizontalJustification DisplaySetHorizontalJustificationTag = DataElementTag(0x00720717) // DisplaySetVerticalJustificationTag is the data element tag of DisplaySetVerticalJustification DisplaySetVerticalJustificationTag = DataElementTag(0x00720718) // ContinuationStartMetersetTag is the data element tag of ContinuationStartMeterset ContinuationStartMetersetTag = DataElementTag(0x00740120) // ContinuationEndMetersetTag is the data element tag of ContinuationEndMeterset ContinuationEndMetersetTag = DataElementTag(0x00740121) // ProcedureStepStateTag is the data element tag of ProcedureStepState ProcedureStepStateTag = DataElementTag(0x00741000) // ProcedureStepProgressInformationSequenceTag is the data element tag of ProcedureStepProgressInformationSequence ProcedureStepProgressInformationSequenceTag = DataElementTag(0x00741002) // ProcedureStepProgressTag is the data element tag of ProcedureStepProgress ProcedureStepProgressTag = DataElementTag(0x00741004) // ProcedureStepProgressDescriptionTag is the data element tag of ProcedureStepProgressDescription ProcedureStepProgressDescriptionTag = DataElementTag(0x00741006) // ProcedureStepProgressParametersSequenceTag is the data element tag of ProcedureStepProgressParametersSequence ProcedureStepProgressParametersSequenceTag = DataElementTag(0x00741007) // ProcedureStepCommunicationsURISequenceTag is the data element tag of ProcedureStepCommunicationsURISequence ProcedureStepCommunicationsURISequenceTag = DataElementTag(0x00741008) // ContactURITag is the data element tag of ContactURI ContactURITag = DataElementTag(0x0074100A) // ContactDisplayNameTag is the data element tag of ContactDisplayName ContactDisplayNameTag = DataElementTag(0x0074100C) // ProcedureStepDiscontinuationReasonCodeSequenceTag is the data element tag of ProcedureStepDiscontinuationReasonCodeSequence ProcedureStepDiscontinuationReasonCodeSequenceTag = DataElementTag(0x0074100E) // BeamTaskSequenceTag is the data element tag of BeamTaskSequence BeamTaskSequenceTag = DataElementTag(0x00741020) // BeamTaskTypeTag is the data element tag of BeamTaskType BeamTaskTypeTag = DataElementTag(0x00741022) // BeamOrderIndexTrialTag is the data element tag of BeamOrderIndexTrial BeamOrderIndexTrialTag = DataElementTag(0x00741024) // AutosequenceFlagTag is the data element tag of AutosequenceFlag AutosequenceFlagTag = DataElementTag(0x00741025) // TableTopVerticalAdjustedPositionTag is the data element tag of TableTopVerticalAdjustedPosition TableTopVerticalAdjustedPositionTag = DataElementTag(0x00741026) // TableTopLongitudinalAdjustedPositionTag is the data element tag of TableTopLongitudinalAdjustedPosition TableTopLongitudinalAdjustedPositionTag = DataElementTag(0x00741027) // TableTopLateralAdjustedPositionTag is the data element tag of TableTopLateralAdjustedPosition TableTopLateralAdjustedPositionTag = DataElementTag(0x00741028) // PatientSupportAdjustedAngleTag is the data element tag of PatientSupportAdjustedAngle PatientSupportAdjustedAngleTag = DataElementTag(0x0074102A) // TableTopEccentricAdjustedAngleTag is the data element tag of TableTopEccentricAdjustedAngle TableTopEccentricAdjustedAngleTag = DataElementTag(0x0074102B) // TableTopPitchAdjustedAngleTag is the data element tag of TableTopPitchAdjustedAngle TableTopPitchAdjustedAngleTag = DataElementTag(0x0074102C) // TableTopRollAdjustedAngleTag is the data element tag of TableTopRollAdjustedAngle TableTopRollAdjustedAngleTag = DataElementTag(0x0074102D) // DeliveryVerificationImageSequenceTag is the data element tag of DeliveryVerificationImageSequence DeliveryVerificationImageSequenceTag = DataElementTag(0x00741030) // VerificationImageTimingTag is the data element tag of VerificationImageTiming VerificationImageTimingTag = DataElementTag(0x00741032) // DoubleExposureFlagTag is the data element tag of DoubleExposureFlag DoubleExposureFlagTag = DataElementTag(0x00741034) // DoubleExposureOrderingTag is the data element tag of DoubleExposureOrdering DoubleExposureOrderingTag = DataElementTag(0x00741036) // DoubleExposureMetersetTrialTag is the data element tag of DoubleExposureMetersetTrial DoubleExposureMetersetTrialTag = DataElementTag(0x00741038) // DoubleExposureFieldDeltaTrialTag is the data element tag of DoubleExposureFieldDeltaTrial DoubleExposureFieldDeltaTrialTag = DataElementTag(0x0074103A) // RelatedReferenceRTImageSequenceTag is the data element tag of RelatedReferenceRTImageSequence RelatedReferenceRTImageSequenceTag = DataElementTag(0x00741040) // GeneralMachineVerificationSequenceTag is the data element tag of GeneralMachineVerificationSequence GeneralMachineVerificationSequenceTag = DataElementTag(0x00741042) // ConventionalMachineVerificationSequenceTag is the data element tag of ConventionalMachineVerificationSequence ConventionalMachineVerificationSequenceTag = DataElementTag(0x00741044) // IonMachineVerificationSequenceTag is the data element tag of IonMachineVerificationSequence IonMachineVerificationSequenceTag = DataElementTag(0x00741046) // FailedAttributesSequenceTag is the data element tag of FailedAttributesSequence FailedAttributesSequenceTag = DataElementTag(0x00741048) // OverriddenAttributesSequenceTag is the data element tag of OverriddenAttributesSequence OverriddenAttributesSequenceTag = DataElementTag(0x0074104A) // ConventionalControlPointVerificationSequenceTag is the data element tag of ConventionalControlPointVerificationSequence ConventionalControlPointVerificationSequenceTag = DataElementTag(0x0074104C) // IonControlPointVerificationSequenceTag is the data element tag of IonControlPointVerificationSequence IonControlPointVerificationSequenceTag = DataElementTag(0x0074104E) // AttributeOccurrenceSequenceTag is the data element tag of AttributeOccurrenceSequence AttributeOccurrenceSequenceTag = DataElementTag(0x00741050) // AttributeOccurrencePointerTag is the data element tag of AttributeOccurrencePointer AttributeOccurrencePointerTag = DataElementTag(0x00741052) // AttributeItemSelectorTag is the data element tag of AttributeItemSelector AttributeItemSelectorTag = DataElementTag(0x00741054) // AttributeOccurrencePrivateCreatorTag is the data element tag of AttributeOccurrencePrivateCreator AttributeOccurrencePrivateCreatorTag = DataElementTag(0x00741056) // SelectorSequencePointerItemsTag is the data element tag of SelectorSequencePointerItems SelectorSequencePointerItemsTag = DataElementTag(0x00741057) // ScheduledProcedureStepPriorityTag is the data element tag of ScheduledProcedureStepPriority ScheduledProcedureStepPriorityTag = DataElementTag(0x00741200) // WorklistLabelTag is the data element tag of WorklistLabel WorklistLabelTag = DataElementTag(0x00741202) // ProcedureStepLabelTag is the data element tag of ProcedureStepLabel ProcedureStepLabelTag = DataElementTag(0x00741204) // ScheduledProcessingParametersSequenceTag is the data element tag of ScheduledProcessingParametersSequence ScheduledProcessingParametersSequenceTag = DataElementTag(0x00741210) // PerformedProcessingParametersSequenceTag is the data element tag of PerformedProcessingParametersSequence PerformedProcessingParametersSequenceTag = DataElementTag(0x00741212) // UnifiedProcedureStepPerformedProcedureSequenceTag is the data element tag of UnifiedProcedureStepPerformedProcedureSequence UnifiedProcedureStepPerformedProcedureSequenceTag = DataElementTag(0x00741216) // RelatedProcedureStepSequenceTag is the data element tag of RelatedProcedureStepSequence RelatedProcedureStepSequenceTag = DataElementTag(0x00741220) // ProcedureStepRelationshipTypeTag is the data element tag of ProcedureStepRelationshipType ProcedureStepRelationshipTypeTag = DataElementTag(0x00741222) // ReplacedProcedureStepSequenceTag is the data element tag of ReplacedProcedureStepSequence ReplacedProcedureStepSequenceTag = DataElementTag(0x00741224) // DeletionLockTag is the data element tag of DeletionLock DeletionLockTag = DataElementTag(0x00741230) // ReceivingAETag is the data element tag of ReceivingAE ReceivingAETag = DataElementTag(0x00741234) // RequestingAETag is the data element tag of RequestingAE RequestingAETag = DataElementTag(0x00741236) // ReasonForCancellationTag is the data element tag of ReasonForCancellation ReasonForCancellationTag = DataElementTag(0x00741238) // SCPStatusTag is the data element tag of SCPStatus SCPStatusTag = DataElementTag(0x00741242) // SubscriptionListStatusTag is the data element tag of SubscriptionListStatus SubscriptionListStatusTag = DataElementTag(0x00741244) // UnifiedProcedureStepListStatusTag is the data element tag of UnifiedProcedureStepListStatus UnifiedProcedureStepListStatusTag = DataElementTag(0x00741246) // BeamOrderIndexTag is the data element tag of BeamOrderIndex BeamOrderIndexTag = DataElementTag(0x00741324) // DoubleExposureMetersetTag is the data element tag of DoubleExposureMeterset DoubleExposureMetersetTag = DataElementTag(0x00741338) // DoubleExposureFieldDeltaTag is the data element tag of DoubleExposureFieldDelta DoubleExposureFieldDeltaTag = DataElementTag(0x0074133A) // BrachyTaskSequenceTag is the data element tag of BrachyTaskSequence BrachyTaskSequenceTag = DataElementTag(0x00741401) // ContinuationStartTotalReferenceAirKermaTag is the data element tag of ContinuationStartTotalReferenceAirKerma ContinuationStartTotalReferenceAirKermaTag = DataElementTag(0x00741402) // ContinuationEndTotalReferenceAirKermaTag is the data element tag of ContinuationEndTotalReferenceAirKerma ContinuationEndTotalReferenceAirKermaTag = DataElementTag(0x00741403) // ContinuationPulseNumberTag is the data element tag of ContinuationPulseNumber ContinuationPulseNumberTag = DataElementTag(0x00741404) // ChannelDeliveryOrderSequenceTag is the data element tag of ChannelDeliveryOrderSequence ChannelDeliveryOrderSequenceTag = DataElementTag(0x00741405) // ReferencedChannelNumberTag is the data element tag of ReferencedChannelNumber ReferencedChannelNumberTag = DataElementTag(0x00741406) // StartCumulativeTimeWeightTag is the data element tag of StartCumulativeTimeWeight StartCumulativeTimeWeightTag = DataElementTag(0x00741407) // EndCumulativeTimeWeightTag is the data element tag of EndCumulativeTimeWeight EndCumulativeTimeWeightTag = DataElementTag(0x00741408) // OmittedChannelSequenceTag is the data element tag of OmittedChannelSequence OmittedChannelSequenceTag = DataElementTag(0x00741409) // ReasonForChannelOmissionTag is the data element tag of ReasonForChannelOmission ReasonForChannelOmissionTag = DataElementTag(0x0074140A) // ReasonForChannelOmissionDescriptionTag is the data element tag of ReasonForChannelOmissionDescription ReasonForChannelOmissionDescriptionTag = DataElementTag(0x0074140B) // ChannelDeliveryOrderIndexTag is the data element tag of ChannelDeliveryOrderIndex ChannelDeliveryOrderIndexTag = DataElementTag(0x0074140C) // ChannelDeliveryContinuationSequenceTag is the data element tag of ChannelDeliveryContinuationSequence ChannelDeliveryContinuationSequenceTag = DataElementTag(0x0074140D) // OmittedApplicationSetupSequenceTag is the data element tag of OmittedApplicationSetupSequence OmittedApplicationSetupSequenceTag = DataElementTag(0x0074140E) // ImplantAssemblyTemplateNameTag is the data element tag of ImplantAssemblyTemplateName ImplantAssemblyTemplateNameTag = DataElementTag(0x00760001) // ImplantAssemblyTemplateIssuerTag is the data element tag of ImplantAssemblyTemplateIssuer ImplantAssemblyTemplateIssuerTag = DataElementTag(0x00760003) // ImplantAssemblyTemplateVersionTag is the data element tag of ImplantAssemblyTemplateVersion ImplantAssemblyTemplateVersionTag = DataElementTag(0x00760006) // ReplacedImplantAssemblyTemplateSequenceTag is the data element tag of ReplacedImplantAssemblyTemplateSequence ReplacedImplantAssemblyTemplateSequenceTag = DataElementTag(0x00760008) // ImplantAssemblyTemplateTypeTag is the data element tag of ImplantAssemblyTemplateType ImplantAssemblyTemplateTypeTag = DataElementTag(0x0076000A) // OriginalImplantAssemblyTemplateSequenceTag is the data element tag of OriginalImplantAssemblyTemplateSequence OriginalImplantAssemblyTemplateSequenceTag = DataElementTag(0x0076000C) // DerivationImplantAssemblyTemplateSequenceTag is the data element tag of DerivationImplantAssemblyTemplateSequence DerivationImplantAssemblyTemplateSequenceTag = DataElementTag(0x0076000E) // ImplantAssemblyTemplateTargetAnatomySequenceTag is the data element tag of ImplantAssemblyTemplateTargetAnatomySequence ImplantAssemblyTemplateTargetAnatomySequenceTag = DataElementTag(0x00760010) // ProcedureTypeCodeSequenceTag is the data element tag of ProcedureTypeCodeSequence ProcedureTypeCodeSequenceTag = DataElementTag(0x00760020) // SurgicalTechniqueTag is the data element tag of SurgicalTechnique SurgicalTechniqueTag = DataElementTag(0x00760030) // ComponentTypesSequenceTag is the data element tag of ComponentTypesSequence ComponentTypesSequenceTag = DataElementTag(0x00760032) // ComponentTypeCodeSequenceTag is the data element tag of ComponentTypeCodeSequence ComponentTypeCodeSequenceTag = DataElementTag(0x00760034) // ExclusiveComponentTypeTag is the data element tag of ExclusiveComponentType ExclusiveComponentTypeTag = DataElementTag(0x00760036) // MandatoryComponentTypeTag is the data element tag of MandatoryComponentType MandatoryComponentTypeTag = DataElementTag(0x00760038) // ComponentSequenceTag is the data element tag of ComponentSequence ComponentSequenceTag = DataElementTag(0x00760040) // ComponentIDTag is the data element tag of ComponentID ComponentIDTag = DataElementTag(0x00760055) // ComponentAssemblySequenceTag is the data element tag of ComponentAssemblySequence ComponentAssemblySequenceTag = DataElementTag(0x00760060) // Component1ReferencedIDTag is the data element tag of Component1ReferencedID Component1ReferencedIDTag = DataElementTag(0x00760070) // Component1ReferencedMatingFeatureSetIDTag is the data element tag of Component1ReferencedMatingFeatureSetID Component1ReferencedMatingFeatureSetIDTag = DataElementTag(0x00760080) // Component1ReferencedMatingFeatureIDTag is the data element tag of Component1ReferencedMatingFeatureID Component1ReferencedMatingFeatureIDTag = DataElementTag(0x00760090) // Component2ReferencedIDTag is the data element tag of Component2ReferencedID Component2ReferencedIDTag = DataElementTag(0x007600A0) // Component2ReferencedMatingFeatureSetIDTag is the data element tag of Component2ReferencedMatingFeatureSetID Component2ReferencedMatingFeatureSetIDTag = DataElementTag(0x007600B0) // Component2ReferencedMatingFeatureIDTag is the data element tag of Component2ReferencedMatingFeatureID Component2ReferencedMatingFeatureIDTag = DataElementTag(0x007600C0) // ImplantTemplateGroupNameTag is the data element tag of ImplantTemplateGroupName ImplantTemplateGroupNameTag = DataElementTag(0x00780001) // ImplantTemplateGroupDescriptionTag is the data element tag of ImplantTemplateGroupDescription ImplantTemplateGroupDescriptionTag = DataElementTag(0x00780010) // ImplantTemplateGroupIssuerTag is the data element tag of ImplantTemplateGroupIssuer ImplantTemplateGroupIssuerTag = DataElementTag(0x00780020) // ImplantTemplateGroupVersionTag is the data element tag of ImplantTemplateGroupVersion ImplantTemplateGroupVersionTag = DataElementTag(0x00780024) // ReplacedImplantTemplateGroupSequenceTag is the data element tag of ReplacedImplantTemplateGroupSequence ReplacedImplantTemplateGroupSequenceTag = DataElementTag(0x00780026) // ImplantTemplateGroupTargetAnatomySequenceTag is the data element tag of ImplantTemplateGroupTargetAnatomySequence ImplantTemplateGroupTargetAnatomySequenceTag = DataElementTag(0x00780028) // ImplantTemplateGroupMembersSequenceTag is the data element tag of ImplantTemplateGroupMembersSequence ImplantTemplateGroupMembersSequenceTag = DataElementTag(0x0078002A) // ImplantTemplateGroupMemberIDTag is the data element tag of ImplantTemplateGroupMemberID ImplantTemplateGroupMemberIDTag = DataElementTag(0x0078002E) // ThreeDImplantTemplateGroupMemberMatchingPointTag is the data element tag of ThreeDImplantTemplateGroupMemberMatchingPoint ThreeDImplantTemplateGroupMemberMatchingPointTag = DataElementTag(0x00780050) // ThreeDImplantTemplateGroupMemberMatchingAxesTag is the data element tag of ThreeDImplantTemplateGroupMemberMatchingAxes ThreeDImplantTemplateGroupMemberMatchingAxesTag = DataElementTag(0x00780060) // ImplantTemplateGroupMemberMatching2DCoordinatesSequenceTag is the data element tag of ImplantTemplateGroupMemberMatching2DCoordinatesSequence ImplantTemplateGroupMemberMatching2DCoordinatesSequenceTag = DataElementTag(0x00780070) // TwoDImplantTemplateGroupMemberMatchingPointTag is the data element tag of TwoDImplantTemplateGroupMemberMatchingPoint TwoDImplantTemplateGroupMemberMatchingPointTag = DataElementTag(0x00780090) // TwoDImplantTemplateGroupMemberMatchingAxesTag is the data element tag of TwoDImplantTemplateGroupMemberMatchingAxes TwoDImplantTemplateGroupMemberMatchingAxesTag = DataElementTag(0x007800A0) // ImplantTemplateGroupVariationDimensionSequenceTag is the data element tag of ImplantTemplateGroupVariationDimensionSequence ImplantTemplateGroupVariationDimensionSequenceTag = DataElementTag(0x007800B0) // ImplantTemplateGroupVariationDimensionNameTag is the data element tag of ImplantTemplateGroupVariationDimensionName ImplantTemplateGroupVariationDimensionNameTag = DataElementTag(0x007800B2) // ImplantTemplateGroupVariationDimensionRankSequenceTag is the data element tag of ImplantTemplateGroupVariationDimensionRankSequence ImplantTemplateGroupVariationDimensionRankSequenceTag = DataElementTag(0x007800B4) // ReferencedImplantTemplateGroupMemberIDTag is the data element tag of ReferencedImplantTemplateGroupMemberID ReferencedImplantTemplateGroupMemberIDTag = DataElementTag(0x007800B6) // ImplantTemplateGroupVariationDimensionRankTag is the data element tag of ImplantTemplateGroupVariationDimensionRank ImplantTemplateGroupVariationDimensionRankTag = DataElementTag(0x007800B8) // SurfaceScanAcquisitionTypeCodeSequenceTag is the data element tag of SurfaceScanAcquisitionTypeCodeSequence SurfaceScanAcquisitionTypeCodeSequenceTag = DataElementTag(0x00800001) // SurfaceScanModeCodeSequenceTag is the data element tag of SurfaceScanModeCodeSequence SurfaceScanModeCodeSequenceTag = DataElementTag(0x00800002) // RegistrationMethodCodeSequenceTag is the data element tag of RegistrationMethodCodeSequence RegistrationMethodCodeSequenceTag = DataElementTag(0x00800003) // ShotDurationTimeTag is the data element tag of ShotDurationTime ShotDurationTimeTag = DataElementTag(0x00800004) // ShotOffsetTimeTag is the data element tag of ShotOffsetTime ShotOffsetTimeTag = DataElementTag(0x00800005) // SurfacePointPresentationValueDataTag is the data element tag of SurfacePointPresentationValueData SurfacePointPresentationValueDataTag = DataElementTag(0x00800006) // SurfacePointColorCIELabValueDataTag is the data element tag of SurfacePointColorCIELabValueData SurfacePointColorCIELabValueDataTag = DataElementTag(0x00800007) // UVMappingSequenceTag is the data element tag of UVMappingSequence UVMappingSequenceTag = DataElementTag(0x00800008) // TextureLabelTag is the data element tag of TextureLabel TextureLabelTag = DataElementTag(0x00800009) // UValueDataTag is the data element tag of UValueData UValueDataTag = DataElementTag(0x00800010) // VValueDataTag is the data element tag of VValueData VValueDataTag = DataElementTag(0x00800011) // ReferencedTextureSequenceTag is the data element tag of ReferencedTextureSequence ReferencedTextureSequenceTag = DataElementTag(0x00800012) // ReferencedSurfaceDataSequenceTag is the data element tag of ReferencedSurfaceDataSequence ReferencedSurfaceDataSequenceTag = DataElementTag(0x00800013) // AssessmentSummaryTag is the data element tag of AssessmentSummary AssessmentSummaryTag = DataElementTag(0x00820001) // AssessmentSummaryDescriptionTag is the data element tag of AssessmentSummaryDescription AssessmentSummaryDescriptionTag = DataElementTag(0x00820003) // AssessedSOPInstanceSequenceTag is the data element tag of AssessedSOPInstanceSequence AssessedSOPInstanceSequenceTag = DataElementTag(0x00820004) // ReferencedComparisonSOPInstanceSequenceTag is the data element tag of ReferencedComparisonSOPInstanceSequence ReferencedComparisonSOPInstanceSequenceTag = DataElementTag(0x00820005) // NumberOfAssessmentObservationsTag is the data element tag of NumberOfAssessmentObservations NumberOfAssessmentObservationsTag = DataElementTag(0x00820006) // AssessmentObservationsSequenceTag is the data element tag of AssessmentObservationsSequence AssessmentObservationsSequenceTag = DataElementTag(0x00820007) // ObservationSignificanceTag is the data element tag of ObservationSignificance ObservationSignificanceTag = DataElementTag(0x00820008) // ObservationDescriptionTag is the data element tag of ObservationDescription ObservationDescriptionTag = DataElementTag(0x0082000A) // StructuredConstraintObservationSequenceTag is the data element tag of StructuredConstraintObservationSequence StructuredConstraintObservationSequenceTag = DataElementTag(0x0082000C) // AssessedAttributeValueSequenceTag is the data element tag of AssessedAttributeValueSequence AssessedAttributeValueSequenceTag = DataElementTag(0x00820010) // AssessmentSetIDTag is the data element tag of AssessmentSetID AssessmentSetIDTag = DataElementTag(0x00820016) // AssessmentRequesterSequenceTag is the data element tag of AssessmentRequesterSequence AssessmentRequesterSequenceTag = DataElementTag(0x00820017) // SelectorAttributeNameTag is the data element tag of SelectorAttributeName SelectorAttributeNameTag = DataElementTag(0x00820018) // SelectorAttributeKeywordTag is the data element tag of SelectorAttributeKeyword SelectorAttributeKeywordTag = DataElementTag(0x00820019) // AssessmentTypeCodeSequenceTag is the data element tag of AssessmentTypeCodeSequence AssessmentTypeCodeSequenceTag = DataElementTag(0x00820021) // ObservationBasisCodeSequenceTag is the data element tag of ObservationBasisCodeSequence ObservationBasisCodeSequenceTag = DataElementTag(0x00820022) // AssessmentLabelTag is the data element tag of AssessmentLabel AssessmentLabelTag = DataElementTag(0x00820023) // ConstraintTypeTag is the data element tag of ConstraintType ConstraintTypeTag = DataElementTag(0x00820032) // SpecificationSelectionGuidanceTag is the data element tag of SpecificationSelectionGuidance SpecificationSelectionGuidanceTag = DataElementTag(0x00820033) // ConstraintValueSequenceTag is the data element tag of ConstraintValueSequence ConstraintValueSequenceTag = DataElementTag(0x00820034) // RecommendedDefaultValueSequenceTag is the data element tag of RecommendedDefaultValueSequence RecommendedDefaultValueSequenceTag = DataElementTag(0x00820035) // ConstraintViolationSignificanceTag is the data element tag of ConstraintViolationSignificance ConstraintViolationSignificanceTag = DataElementTag(0x00820036) // ConstraintViolationConditionTag is the data element tag of ConstraintViolationCondition ConstraintViolationConditionTag = DataElementTag(0x00820037) // ModifiableConstraintFlagTag is the data element tag of ModifiableConstraintFlag ModifiableConstraintFlagTag = DataElementTag(0x00820038) // StorageMediaFileSetIDTag is the data element tag of StorageMediaFileSetID StorageMediaFileSetIDTag = DataElementTag(0x00880130) // StorageMediaFileSetUIDTag is the data element tag of StorageMediaFileSetUID StorageMediaFileSetUIDTag = DataElementTag(0x00880140) // IconImageSequenceTag is the data element tag of IconImageSequence IconImageSequenceTag = DataElementTag(0x00880200) // TopicTitleTag is the data element tag of TopicTitle TopicTitleTag = DataElementTag(0x00880904) // TopicSubjectTag is the data element tag of TopicSubject TopicSubjectTag = DataElementTag(0x00880906) // TopicAuthorTag is the data element tag of TopicAuthor TopicAuthorTag = DataElementTag(0x00880910) // TopicKeywordsTag is the data element tag of TopicKeywords TopicKeywordsTag = DataElementTag(0x00880912) // SOPInstanceStatusTag is the data element tag of SOPInstanceStatus SOPInstanceStatusTag = DataElementTag(0x01000410) // SOPAuthorizationDateTimeTag is the data element tag of SOPAuthorizationDateTime SOPAuthorizationDateTimeTag = DataElementTag(0x01000420) // SOPAuthorizationCommentTag is the data element tag of SOPAuthorizationComment SOPAuthorizationCommentTag = DataElementTag(0x01000424) // AuthorizationEquipmentCertificationNumberTag is the data element tag of AuthorizationEquipmentCertificationNumber AuthorizationEquipmentCertificationNumberTag = DataElementTag(0x01000426) // MACIDNumberTag is the data element tag of MACIDNumber MACIDNumberTag = DataElementTag(0x04000005) // MACCalculationTransferSyntaxUIDTag is the data element tag of MACCalculationTransferSyntaxUID MACCalculationTransferSyntaxUIDTag = DataElementTag(0x04000010) // MACAlgorithmTag is the data element tag of MACAlgorithm MACAlgorithmTag = DataElementTag(0x04000015) // DataElementsSignedTag is the data element tag of DataElementsSigned DataElementsSignedTag = DataElementTag(0x04000020) // DigitalSignatureUIDTag is the data element tag of DigitalSignatureUID DigitalSignatureUIDTag = DataElementTag(0x04000100) // DigitalSignatureDateTimeTag is the data element tag of DigitalSignatureDateTime DigitalSignatureDateTimeTag = DataElementTag(0x04000105) // CertificateTypeTag is the data element tag of CertificateType CertificateTypeTag = DataElementTag(0x04000110) // CertificateOfSignerTag is the data element tag of CertificateOfSigner CertificateOfSignerTag = DataElementTag(0x04000115) // SignatureTag is the data element tag of Signature SignatureTag = DataElementTag(0x04000120) // CertifiedTimestampTypeTag is the data element tag of CertifiedTimestampType CertifiedTimestampTypeTag = DataElementTag(0x04000305) // CertifiedTimestampTag is the data element tag of CertifiedTimestamp CertifiedTimestampTag = DataElementTag(0x04000310) // DigitalSignaturePurposeCodeSequenceTag is the data element tag of DigitalSignaturePurposeCodeSequence DigitalSignaturePurposeCodeSequenceTag = DataElementTag(0x04000401) // ReferencedDigitalSignatureSequenceTag is the data element tag of ReferencedDigitalSignatureSequence ReferencedDigitalSignatureSequenceTag = DataElementTag(0x04000402) // ReferencedSOPInstanceMACSequenceTag is the data element tag of ReferencedSOPInstanceMACSequence ReferencedSOPInstanceMACSequenceTag = DataElementTag(0x04000403) // MACTag is the data element tag of MAC MACTag = DataElementTag(0x04000404) // EncryptedAttributesSequenceTag is the data element tag of EncryptedAttributesSequence EncryptedAttributesSequenceTag = DataElementTag(0x04000500) // EncryptedContentTransferSyntaxUIDTag is the data element tag of EncryptedContentTransferSyntaxUID EncryptedContentTransferSyntaxUIDTag = DataElementTag(0x04000510) // EncryptedContentTag is the data element tag of EncryptedContent EncryptedContentTag = DataElementTag(0x04000520) // ModifiedAttributesSequenceTag is the data element tag of ModifiedAttributesSequence ModifiedAttributesSequenceTag = DataElementTag(0x04000550) // NonconformingModifiedAttributesSequenceTag is the data element tag of NonconformingModifiedAttributesSequence NonconformingModifiedAttributesSequenceTag = DataElementTag(0x04000551) // NonconformingDataElementValueTag is the data element tag of NonconformingDataElementValue NonconformingDataElementValueTag = DataElementTag(0x04000552) // OriginalAttributesSequenceTag is the data element tag of OriginalAttributesSequence OriginalAttributesSequenceTag = DataElementTag(0x04000561) // AttributeModificationDateTimeTag is the data element tag of AttributeModificationDateTime AttributeModificationDateTimeTag = DataElementTag(0x04000562) // ModifyingSystemTag is the data element tag of ModifyingSystem ModifyingSystemTag = DataElementTag(0x04000563) // SourceOfPreviousValuesTag is the data element tag of SourceOfPreviousValues SourceOfPreviousValuesTag = DataElementTag(0x04000564) // ReasonForTheAttributeModificationTag is the data element tag of ReasonForTheAttributeModification ReasonForTheAttributeModificationTag = DataElementTag(0x04000565) // InstanceOriginStatusTag is the data element tag of InstanceOriginStatus InstanceOriginStatusTag = DataElementTag(0x04000600) // EscapeTripletTag is the data element tag of EscapeTriplet EscapeTripletTag = DataElementTag(0x10000000) // RunLengthTripletTag is the data element tag of RunLengthTriplet RunLengthTripletTag = DataElementTag(0x10000001) // HuffmanTableSizeTag is the data element tag of HuffmanTableSize HuffmanTableSizeTag = DataElementTag(0x10000002) // HuffmanTableTripletTag is the data element tag of HuffmanTableTriplet HuffmanTableTripletTag = DataElementTag(0x10000003) // ShiftTableSizeTag is the data element tag of ShiftTableSize ShiftTableSizeTag = DataElementTag(0x10000004) // ShiftTableTripletTag is the data element tag of ShiftTableTriplet ShiftTableTripletTag = DataElementTag(0x10000005) // ZonalMapTag is the data element tag of ZonalMap ZonalMapTag = DataElementTag(0x10100000) // NumberOfCopiesTag is the data element tag of NumberOfCopies NumberOfCopiesTag = DataElementTag(0x20000010) // PrinterConfigurationSequenceTag is the data element tag of PrinterConfigurationSequence PrinterConfigurationSequenceTag = DataElementTag(0x2000001E) // PrintPriorityTag is the data element tag of PrintPriority PrintPriorityTag = DataElementTag(0x20000020) // MediumTypeTag is the data element tag of MediumType MediumTypeTag = DataElementTag(0x20000030) // FilmDestinationTag is the data element tag of FilmDestination FilmDestinationTag = DataElementTag(0x20000040) // FilmSessionLabelTag is the data element tag of FilmSessionLabel FilmSessionLabelTag = DataElementTag(0x20000050) // MemoryAllocationTag is the data element tag of MemoryAllocation MemoryAllocationTag = DataElementTag(0x20000060) // MaximumMemoryAllocationTag is the data element tag of MaximumMemoryAllocation MaximumMemoryAllocationTag = DataElementTag(0x20000061) // ColorImagePrintingFlagTag is the data element tag of ColorImagePrintingFlag ColorImagePrintingFlagTag = DataElementTag(0x20000062) // CollationFlagTag is the data element tag of CollationFlag CollationFlagTag = DataElementTag(0x20000063) // AnnotationFlagTag is the data element tag of AnnotationFlag AnnotationFlagTag = DataElementTag(0x20000065) // ImageOverlayFlagTag is the data element tag of ImageOverlayFlag ImageOverlayFlagTag = DataElementTag(0x20000067) // PresentationLUTFlagTag is the data element tag of PresentationLUTFlag PresentationLUTFlagTag = DataElementTag(0x20000069) // ImageBoxPresentationLUTFlagTag is the data element tag of ImageBoxPresentationLUTFlag ImageBoxPresentationLUTFlagTag = DataElementTag(0x2000006A) // MemoryBitDepthTag is the data element tag of MemoryBitDepth MemoryBitDepthTag = DataElementTag(0x200000A0) // PrintingBitDepthTag is the data element tag of PrintingBitDepth PrintingBitDepthTag = DataElementTag(0x200000A1) // MediaInstalledSequenceTag is the data element tag of MediaInstalledSequence MediaInstalledSequenceTag = DataElementTag(0x200000A2) // OtherMediaAvailableSequenceTag is the data element tag of OtherMediaAvailableSequence OtherMediaAvailableSequenceTag = DataElementTag(0x200000A4) // SupportedImageDisplayFormatsSequenceTag is the data element tag of SupportedImageDisplayFormatsSequence SupportedImageDisplayFormatsSequenceTag = DataElementTag(0x200000A8) // ReferencedFilmBoxSequenceTag is the data element tag of ReferencedFilmBoxSequence ReferencedFilmBoxSequenceTag = DataElementTag(0x20000500) // ReferencedStoredPrintSequenceTag is the data element tag of ReferencedStoredPrintSequence ReferencedStoredPrintSequenceTag = DataElementTag(0x20000510) // ImageDisplayFormatTag is the data element tag of ImageDisplayFormat ImageDisplayFormatTag = DataElementTag(0x20100010) // AnnotationDisplayFormatIDTag is the data element tag of AnnotationDisplayFormatID AnnotationDisplayFormatIDTag = DataElementTag(0x20100030) // FilmOrientationTag is the data element tag of FilmOrientation FilmOrientationTag = DataElementTag(0x20100040) // FilmSizeIDTag is the data element tag of FilmSizeID FilmSizeIDTag = DataElementTag(0x20100050) // PrinterResolutionIDTag is the data element tag of PrinterResolutionID PrinterResolutionIDTag = DataElementTag(0x20100052) // DefaultPrinterResolutionIDTag is the data element tag of DefaultPrinterResolutionID DefaultPrinterResolutionIDTag = DataElementTag(0x20100054) // MagnificationTypeTag is the data element tag of MagnificationType MagnificationTypeTag = DataElementTag(0x20100060) // SmoothingTypeTag is the data element tag of SmoothingType SmoothingTypeTag = DataElementTag(0x20100080) // DefaultMagnificationTypeTag is the data element tag of DefaultMagnificationType DefaultMagnificationTypeTag = DataElementTag(0x201000A6) // OtherMagnificationTypesAvailableTag is the data element tag of OtherMagnificationTypesAvailable OtherMagnificationTypesAvailableTag = DataElementTag(0x201000A7) // DefaultSmoothingTypeTag is the data element tag of DefaultSmoothingType DefaultSmoothingTypeTag = DataElementTag(0x201000A8) // OtherSmoothingTypesAvailableTag is the data element tag of OtherSmoothingTypesAvailable OtherSmoothingTypesAvailableTag = DataElementTag(0x201000A9) // BorderDensityTag is the data element tag of BorderDensity BorderDensityTag = DataElementTag(0x20100100) // EmptyImageDensityTag is the data element tag of EmptyImageDensity EmptyImageDensityTag = DataElementTag(0x20100110) // MinDensityTag is the data element tag of MinDensity MinDensityTag = DataElementTag(0x20100120) // MaxDensityTag is the data element tag of MaxDensity MaxDensityTag = DataElementTag(0x20100130) // TrimTag is the data element tag of Trim TrimTag = DataElementTag(0x20100140) // ConfigurationInformationTag is the data element tag of ConfigurationInformation ConfigurationInformationTag = DataElementTag(0x20100150) // ConfigurationInformationDescriptionTag is the data element tag of ConfigurationInformationDescription ConfigurationInformationDescriptionTag = DataElementTag(0x20100152) // MaximumCollatedFilmsTag is the data element tag of MaximumCollatedFilms MaximumCollatedFilmsTag = DataElementTag(0x20100154) // IlluminationTag is the data element tag of Illumination IlluminationTag = DataElementTag(0x2010015E) // ReflectedAmbientLightTag is the data element tag of ReflectedAmbientLight ReflectedAmbientLightTag = DataElementTag(0x20100160) // PrinterPixelSpacingTag is the data element tag of PrinterPixelSpacing PrinterPixelSpacingTag = DataElementTag(0x20100376) // ReferencedFilmSessionSequenceTag is the data element tag of ReferencedFilmSessionSequence ReferencedFilmSessionSequenceTag = DataElementTag(0x20100500) // ReferencedImageBoxSequenceTag is the data element tag of ReferencedImageBoxSequence ReferencedImageBoxSequenceTag = DataElementTag(0x20100510) // ReferencedBasicAnnotationBoxSequenceTag is the data element tag of ReferencedBasicAnnotationBoxSequence ReferencedBasicAnnotationBoxSequenceTag = DataElementTag(0x20100520) // ImageBoxPositionTag is the data element tag of ImageBoxPosition ImageBoxPositionTag = DataElementTag(0x20200010) // PolarityTag is the data element tag of Polarity PolarityTag = DataElementTag(0x20200020) // RequestedImageSizeTag is the data element tag of RequestedImageSize RequestedImageSizeTag = DataElementTag(0x20200030) // RequestedDecimateCropBehaviorTag is the data element tag of RequestedDecimateCropBehavior RequestedDecimateCropBehaviorTag = DataElementTag(0x20200040) // RequestedResolutionIDTag is the data element tag of RequestedResolutionID RequestedResolutionIDTag = DataElementTag(0x20200050) // RequestedImageSizeFlagTag is the data element tag of RequestedImageSizeFlag RequestedImageSizeFlagTag = DataElementTag(0x202000A0) // DecimateCropResultTag is the data element tag of DecimateCropResult DecimateCropResultTag = DataElementTag(0x202000A2) // BasicGrayscaleImageSequenceTag is the data element tag of BasicGrayscaleImageSequence BasicGrayscaleImageSequenceTag = DataElementTag(0x20200110) // BasicColorImageSequenceTag is the data element tag of BasicColorImageSequence BasicColorImageSequenceTag = DataElementTag(0x20200111) // ReferencedImageOverlayBoxSequenceTag is the data element tag of ReferencedImageOverlayBoxSequence ReferencedImageOverlayBoxSequenceTag = DataElementTag(0x20200130) // ReferencedVOILUTBoxSequenceTag is the data element tag of ReferencedVOILUTBoxSequence ReferencedVOILUTBoxSequenceTag = DataElementTag(0x20200140) // AnnotationPositionTag is the data element tag of AnnotationPosition AnnotationPositionTag = DataElementTag(0x20300010) // TextStringTag is the data element tag of TextString TextStringTag = DataElementTag(0x20300020) // ReferencedOverlayPlaneSequenceTag is the data element tag of ReferencedOverlayPlaneSequence ReferencedOverlayPlaneSequenceTag = DataElementTag(0x20400010) // ReferencedOverlayPlaneGroupsTag is the data element tag of ReferencedOverlayPlaneGroups ReferencedOverlayPlaneGroupsTag = DataElementTag(0x20400011) // OverlayPixelDataSequenceTag is the data element tag of OverlayPixelDataSequence OverlayPixelDataSequenceTag = DataElementTag(0x20400020) // OverlayMagnificationTypeTag is the data element tag of OverlayMagnificationType OverlayMagnificationTypeTag = DataElementTag(0x20400060) // OverlaySmoothingTypeTag is the data element tag of OverlaySmoothingType OverlaySmoothingTypeTag = DataElementTag(0x20400070) // OverlayOrImageMagnificationTag is the data element tag of OverlayOrImageMagnification OverlayOrImageMagnificationTag = DataElementTag(0x20400072) // MagnifyToNumberOfColumnsTag is the data element tag of MagnifyToNumberOfColumns MagnifyToNumberOfColumnsTag = DataElementTag(0x20400074) // OverlayForegroundDensityTag is the data element tag of OverlayForegroundDensity OverlayForegroundDensityTag = DataElementTag(0x20400080) // OverlayBackgroundDensityTag is the data element tag of OverlayBackgroundDensity OverlayBackgroundDensityTag = DataElementTag(0x20400082) // OverlayModeTag is the data element tag of OverlayMode OverlayModeTag = DataElementTag(0x20400090) // ThresholdDensityTag is the data element tag of ThresholdDensity ThresholdDensityTag = DataElementTag(0x20400100) // ReferencedImageBoxSequenceRetiredTag is the data element tag of ReferencedImageBoxSequenceRetired ReferencedImageBoxSequenceRetiredTag = DataElementTag(0x20400500) // PresentationLUTSequenceTag is the data element tag of PresentationLUTSequence PresentationLUTSequenceTag = DataElementTag(0x20500010) // PresentationLUTShapeTag is the data element tag of PresentationLUTShape PresentationLUTShapeTag = DataElementTag(0x20500020) // ReferencedPresentationLUTSequenceTag is the data element tag of ReferencedPresentationLUTSequence ReferencedPresentationLUTSequenceTag = DataElementTag(0x20500500) // PrintJobIDTag is the data element tag of PrintJobID PrintJobIDTag = DataElementTag(0x21000010) // ExecutionStatusTag is the data element tag of ExecutionStatus ExecutionStatusTag = DataElementTag(0x21000020) // ExecutionStatusInfoTag is the data element tag of ExecutionStatusInfo ExecutionStatusInfoTag = DataElementTag(0x21000030) // CreationDateTag is the data element tag of CreationDate CreationDateTag = DataElementTag(0x21000040) // CreationTimeTag is the data element tag of CreationTime CreationTimeTag = DataElementTag(0x21000050) // OriginatorTag is the data element tag of Originator OriginatorTag = DataElementTag(0x21000070) // DestinationAETag is the data element tag of DestinationAE DestinationAETag = DataElementTag(0x21000140) // OwnerIDTag is the data element tag of OwnerID OwnerIDTag = DataElementTag(0x21000160) // NumberOfFilmsTag is the data element tag of NumberOfFilms NumberOfFilmsTag = DataElementTag(0x21000170) // ReferencedPrintJobSequencePullStoredPrintTag is the data element tag of ReferencedPrintJobSequencePullStoredPrint ReferencedPrintJobSequencePullStoredPrintTag = DataElementTag(0x21000500) // PrinterStatusTag is the data element tag of PrinterStatus PrinterStatusTag = DataElementTag(0x21100010) // PrinterStatusInfoTag is the data element tag of PrinterStatusInfo PrinterStatusInfoTag = DataElementTag(0x21100020) // PrinterNameTag is the data element tag of PrinterName PrinterNameTag = DataElementTag(0x21100030) // PrintQueueIDTag is the data element tag of PrintQueueID PrintQueueIDTag = DataElementTag(0x21100099) // QueueStatusTag is the data element tag of QueueStatus QueueStatusTag = DataElementTag(0x21200010) // PrintJobDescriptionSequenceTag is the data element tag of PrintJobDescriptionSequence PrintJobDescriptionSequenceTag = DataElementTag(0x21200050) // ReferencedPrintJobSequenceTag is the data element tag of ReferencedPrintJobSequence ReferencedPrintJobSequenceTag = DataElementTag(0x21200070) // PrintManagementCapabilitiesSequenceTag is the data element tag of PrintManagementCapabilitiesSequence PrintManagementCapabilitiesSequenceTag = DataElementTag(0x21300010) // PrinterCharacteristicsSequenceTag is the data element tag of PrinterCharacteristicsSequence PrinterCharacteristicsSequenceTag = DataElementTag(0x21300015) // FilmBoxContentSequenceTag is the data element tag of FilmBoxContentSequence FilmBoxContentSequenceTag = DataElementTag(0x21300030) // ImageBoxContentSequenceTag is the data element tag of ImageBoxContentSequence ImageBoxContentSequenceTag = DataElementTag(0x21300040) // AnnotationContentSequenceTag is the data element tag of AnnotationContentSequence AnnotationContentSequenceTag = DataElementTag(0x21300050) // ImageOverlayBoxContentSequenceTag is the data element tag of ImageOverlayBoxContentSequence ImageOverlayBoxContentSequenceTag = DataElementTag(0x21300060) // PresentationLUTContentSequenceTag is the data element tag of PresentationLUTContentSequence PresentationLUTContentSequenceTag = DataElementTag(0x21300080) // ProposedStudySequenceTag is the data element tag of ProposedStudySequence ProposedStudySequenceTag = DataElementTag(0x213000A0) // OriginalImageSequenceTag is the data element tag of OriginalImageSequence OriginalImageSequenceTag = DataElementTag(0x213000C0) // LabelUsingInformationExtractedFromInstancesTag is the data element tag of LabelUsingInformationExtractedFromInstances LabelUsingInformationExtractedFromInstancesTag = DataElementTag(0x22000001) // LabelTextTag is the data element tag of LabelText LabelTextTag = DataElementTag(0x22000002) // LabelStyleSelectionTag is the data element tag of LabelStyleSelection LabelStyleSelectionTag = DataElementTag(0x22000003) // MediaDispositionTag is the data element tag of MediaDisposition MediaDispositionTag = DataElementTag(0x22000004) // BarcodeValueTag is the data element tag of BarcodeValue BarcodeValueTag = DataElementTag(0x22000005) // BarcodeSymbologyTag is the data element tag of BarcodeSymbology BarcodeSymbologyTag = DataElementTag(0x22000006) // AllowMediaSplittingTag is the data element tag of AllowMediaSplitting AllowMediaSplittingTag = DataElementTag(0x22000007) // IncludeNonDICOMObjectsTag is the data element tag of IncludeNonDICOMObjects IncludeNonDICOMObjectsTag = DataElementTag(0x22000008) // IncludeDisplayApplicationTag is the data element tag of IncludeDisplayApplication IncludeDisplayApplicationTag = DataElementTag(0x22000009) // PreserveCompositeInstancesAfterMediaCreationTag is the data element tag of PreserveCompositeInstancesAfterMediaCreation PreserveCompositeInstancesAfterMediaCreationTag = DataElementTag(0x2200000A) // TotalNumberOfPiecesOfMediaCreatedTag is the data element tag of TotalNumberOfPiecesOfMediaCreated TotalNumberOfPiecesOfMediaCreatedTag = DataElementTag(0x2200000B) // RequestedMediaApplicationProfileTag is the data element tag of RequestedMediaApplicationProfile RequestedMediaApplicationProfileTag = DataElementTag(0x2200000C) // ReferencedStorageMediaSequenceTag is the data element tag of ReferencedStorageMediaSequence ReferencedStorageMediaSequenceTag = DataElementTag(0x2200000D) // FailureAttributesTag is the data element tag of FailureAttributes FailureAttributesTag = DataElementTag(0x2200000E) // AllowLossyCompressionTag is the data element tag of AllowLossyCompression AllowLossyCompressionTag = DataElementTag(0x2200000F) // RequestPriorityTag is the data element tag of RequestPriority RequestPriorityTag = DataElementTag(0x22000020) // RTImageLabelTag is the data element tag of RTImageLabel RTImageLabelTag = DataElementTag(0x30020002) // RTImageNameTag is the data element tag of RTImageName RTImageNameTag = DataElementTag(0x30020003) // RTImageDescriptionTag is the data element tag of RTImageDescription RTImageDescriptionTag = DataElementTag(0x30020004) // ReportedValuesOriginTag is the data element tag of ReportedValuesOrigin ReportedValuesOriginTag = DataElementTag(0x3002000A) // RTImagePlaneTag is the data element tag of RTImagePlane RTImagePlaneTag = DataElementTag(0x3002000C) // XRayImageReceptorTranslationTag is the data element tag of XRayImageReceptorTranslation XRayImageReceptorTranslationTag = DataElementTag(0x3002000D) // XRayImageReceptorAngleTag is the data element tag of XRayImageReceptorAngle XRayImageReceptorAngleTag = DataElementTag(0x3002000E) // RTImageOrientationTag is the data element tag of RTImageOrientation RTImageOrientationTag = DataElementTag(0x30020010) // ImagePlanePixelSpacingTag is the data element tag of ImagePlanePixelSpacing ImagePlanePixelSpacingTag = DataElementTag(0x30020011) // RTImagePositionTag is the data element tag of RTImagePosition RTImagePositionTag = DataElementTag(0x30020012) // RadiationMachineNameTag is the data element tag of RadiationMachineName RadiationMachineNameTag = DataElementTag(0x30020020) // RadiationMachineSADTag is the data element tag of RadiationMachineSAD RadiationMachineSADTag = DataElementTag(0x30020022) // RadiationMachineSSDTag is the data element tag of RadiationMachineSSD RadiationMachineSSDTag = DataElementTag(0x30020024) // RTImageSIDTag is the data element tag of RTImageSID RTImageSIDTag = DataElementTag(0x30020026) // SourceToReferenceObjectDistanceTag is the data element tag of SourceToReferenceObjectDistance SourceToReferenceObjectDistanceTag = DataElementTag(0x30020028) // FractionNumberTag is the data element tag of FractionNumber FractionNumberTag = DataElementTag(0x30020029) // ExposureSequenceTag is the data element tag of ExposureSequence ExposureSequenceTag = DataElementTag(0x30020030) // MetersetExposureTag is the data element tag of MetersetExposure MetersetExposureTag = DataElementTag(0x30020032) // DiaphragmPositionTag is the data element tag of DiaphragmPosition DiaphragmPositionTag = DataElementTag(0x30020034) // FluenceMapSequenceTag is the data element tag of FluenceMapSequence FluenceMapSequenceTag = DataElementTag(0x30020040) // FluenceDataSourceTag is the data element tag of FluenceDataSource FluenceDataSourceTag = DataElementTag(0x30020041) // FluenceDataScaleTag is the data element tag of FluenceDataScale FluenceDataScaleTag = DataElementTag(0x30020042) // PrimaryFluenceModeSequenceTag is the data element tag of PrimaryFluenceModeSequence PrimaryFluenceModeSequenceTag = DataElementTag(0x30020050) // FluenceModeTag is the data element tag of FluenceMode FluenceModeTag = DataElementTag(0x30020051) // FluenceModeIDTag is the data element tag of FluenceModeID FluenceModeIDTag = DataElementTag(0x30020052) // DVHTypeTag is the data element tag of DVHType DVHTypeTag = DataElementTag(0x30040001) // DoseUnitsTag is the data element tag of DoseUnits DoseUnitsTag = DataElementTag(0x30040002) // DoseTypeTag is the data element tag of DoseType DoseTypeTag = DataElementTag(0x30040004) // SpatialTransformOfDoseTag is the data element tag of SpatialTransformOfDose SpatialTransformOfDoseTag = DataElementTag(0x30040005) // DoseCommentTag is the data element tag of DoseComment DoseCommentTag = DataElementTag(0x30040006) // NormalizationPointTag is the data element tag of NormalizationPoint NormalizationPointTag = DataElementTag(0x30040008) // DoseSummationTypeTag is the data element tag of DoseSummationType DoseSummationTypeTag = DataElementTag(0x3004000A) // GridFrameOffsetVectorTag is the data element tag of GridFrameOffsetVector GridFrameOffsetVectorTag = DataElementTag(0x3004000C) // DoseGridScalingTag is the data element tag of DoseGridScaling DoseGridScalingTag = DataElementTag(0x3004000E) // RTDoseROISequenceTag is the data element tag of RTDoseROISequence RTDoseROISequenceTag = DataElementTag(0x30040010) // DoseValueTag is the data element tag of DoseValue DoseValueTag = DataElementTag(0x30040012) // TissueHeterogeneityCorrectionTag is the data element tag of TissueHeterogeneityCorrection TissueHeterogeneityCorrectionTag = DataElementTag(0x30040014) // DVHNormalizationPointTag is the data element tag of DVHNormalizationPoint DVHNormalizationPointTag = DataElementTag(0x30040040) // DVHNormalizationDoseValueTag is the data element tag of DVHNormalizationDoseValue DVHNormalizationDoseValueTag = DataElementTag(0x30040042) // DVHSequenceTag is the data element tag of DVHSequence DVHSequenceTag = DataElementTag(0x30040050) // DVHDoseScalingTag is the data element tag of DVHDoseScaling DVHDoseScalingTag = DataElementTag(0x30040052) // DVHVolumeUnitsTag is the data element tag of DVHVolumeUnits DVHVolumeUnitsTag = DataElementTag(0x30040054) // DVHNumberOfBinsTag is the data element tag of DVHNumberOfBins DVHNumberOfBinsTag = DataElementTag(0x30040056) // DVHDataTag is the data element tag of DVHData DVHDataTag = DataElementTag(0x30040058) // DVHReferencedROISequenceTag is the data element tag of DVHReferencedROISequence DVHReferencedROISequenceTag = DataElementTag(0x30040060) // DVHROIContributionTypeTag is the data element tag of DVHROIContributionType DVHROIContributionTypeTag = DataElementTag(0x30040062) // DVHMinimumDoseTag is the data element tag of DVHMinimumDose DVHMinimumDoseTag = DataElementTag(0x30040070) // DVHMaximumDoseTag is the data element tag of DVHMaximumDose DVHMaximumDoseTag = DataElementTag(0x30040072) // DVHMeanDoseTag is the data element tag of DVHMeanDose DVHMeanDoseTag = DataElementTag(0x30040074) // StructureSetLabelTag is the data element tag of StructureSetLabel StructureSetLabelTag = DataElementTag(0x30060002) // StructureSetNameTag is the data element tag of StructureSetName StructureSetNameTag = DataElementTag(0x30060004) // StructureSetDescriptionTag is the data element tag of StructureSetDescription StructureSetDescriptionTag = DataElementTag(0x30060006) // StructureSetDateTag is the data element tag of StructureSetDate StructureSetDateTag = DataElementTag(0x30060008) // StructureSetTimeTag is the data element tag of StructureSetTime StructureSetTimeTag = DataElementTag(0x30060009) // ReferencedFrameOfReferenceSequenceTag is the data element tag of ReferencedFrameOfReferenceSequence ReferencedFrameOfReferenceSequenceTag = DataElementTag(0x30060010) // RTReferencedStudySequenceTag is the data element tag of RTReferencedStudySequence RTReferencedStudySequenceTag = DataElementTag(0x30060012) // RTReferencedSeriesSequenceTag is the data element tag of RTReferencedSeriesSequence RTReferencedSeriesSequenceTag = DataElementTag(0x30060014) // ContourImageSequenceTag is the data element tag of ContourImageSequence ContourImageSequenceTag = DataElementTag(0x30060016) // PredecessorStructureSetSequenceTag is the data element tag of PredecessorStructureSetSequence PredecessorStructureSetSequenceTag = DataElementTag(0x30060018) // StructureSetROISequenceTag is the data element tag of StructureSetROISequence StructureSetROISequenceTag = DataElementTag(0x30060020) // ROINumberTag is the data element tag of ROINumber ROINumberTag = DataElementTag(0x30060022) // ReferencedFrameOfReferenceUIDTag is the data element tag of ReferencedFrameOfReferenceUID ReferencedFrameOfReferenceUIDTag = DataElementTag(0x30060024) // ROINameTag is the data element tag of ROIName ROINameTag = DataElementTag(0x30060026) // ROIDescriptionTag is the data element tag of ROIDescription ROIDescriptionTag = DataElementTag(0x30060028) // ROIDisplayColorTag is the data element tag of ROIDisplayColor ROIDisplayColorTag = DataElementTag(0x3006002A) // ROIVolumeTag is the data element tag of ROIVolume ROIVolumeTag = DataElementTag(0x3006002C) // RTRelatedROISequenceTag is the data element tag of RTRelatedROISequence RTRelatedROISequenceTag = DataElementTag(0x30060030) // RTROIRelationshipTag is the data element tag of RTROIRelationship RTROIRelationshipTag = DataElementTag(0x30060033) // ROIGenerationAlgorithmTag is the data element tag of ROIGenerationAlgorithm ROIGenerationAlgorithmTag = DataElementTag(0x30060036) // ROIDerivationAlgorithmIdentificationSequenceTag is the data element tag of ROIDerivationAlgorithmIdentificationSequence ROIDerivationAlgorithmIdentificationSequenceTag = DataElementTag(0x30060037) // ROIGenerationDescriptionTag is the data element tag of ROIGenerationDescription ROIGenerationDescriptionTag = DataElementTag(0x30060038) // ROIContourSequenceTag is the data element tag of ROIContourSequence ROIContourSequenceTag = DataElementTag(0x30060039) // ContourSequenceTag is the data element tag of ContourSequence ContourSequenceTag = DataElementTag(0x30060040) // ContourGeometricTypeTag is the data element tag of ContourGeometricType ContourGeometricTypeTag = DataElementTag(0x30060042) // ContourSlabThicknessTag is the data element tag of ContourSlabThickness ContourSlabThicknessTag = DataElementTag(0x30060044) // ContourOffsetVectorTag is the data element tag of ContourOffsetVector ContourOffsetVectorTag = DataElementTag(0x30060045) // NumberOfContourPointsTag is the data element tag of NumberOfContourPoints NumberOfContourPointsTag = DataElementTag(0x30060046) // ContourNumberTag is the data element tag of ContourNumber ContourNumberTag = DataElementTag(0x30060048) // AttachedContoursTag is the data element tag of AttachedContours AttachedContoursTag = DataElementTag(0x30060049) // ContourDataTag is the data element tag of ContourData ContourDataTag = DataElementTag(0x30060050) // RTROIObservationsSequenceTag is the data element tag of RTROIObservationsSequence RTROIObservationsSequenceTag = DataElementTag(0x30060080) // ObservationNumberTag is the data element tag of ObservationNumber ObservationNumberTag = DataElementTag(0x30060082) // ReferencedROINumberTag is the data element tag of ReferencedROINumber ReferencedROINumberTag = DataElementTag(0x30060084) // ROIObservationLabelTag is the data element tag of ROIObservationLabel ROIObservationLabelTag = DataElementTag(0x30060085) // RTROIIdentificationCodeSequenceTag is the data element tag of RTROIIdentificationCodeSequence RTROIIdentificationCodeSequenceTag = DataElementTag(0x30060086) // ROIObservationDescriptionTag is the data element tag of ROIObservationDescription ROIObservationDescriptionTag = DataElementTag(0x30060088) // RelatedRTROIObservationsSequenceTag is the data element tag of RelatedRTROIObservationsSequence RelatedRTROIObservationsSequenceTag = DataElementTag(0x300600A0) // RTROIInterpretedTypeTag is the data element tag of RTROIInterpretedType RTROIInterpretedTypeTag = DataElementTag(0x300600A4) // ROIInterpreterTag is the data element tag of ROIInterpreter ROIInterpreterTag = DataElementTag(0x300600A6) // ROIPhysicalPropertiesSequenceTag is the data element tag of ROIPhysicalPropertiesSequence ROIPhysicalPropertiesSequenceTag = DataElementTag(0x300600B0) // ROIPhysicalPropertyTag is the data element tag of ROIPhysicalProperty ROIPhysicalPropertyTag = DataElementTag(0x300600B2) // ROIPhysicalPropertyValueTag is the data element tag of ROIPhysicalPropertyValue ROIPhysicalPropertyValueTag = DataElementTag(0x300600B4) // ROIElementalCompositionSequenceTag is the data element tag of ROIElementalCompositionSequence ROIElementalCompositionSequenceTag = DataElementTag(0x300600B6) // ROIElementalCompositionAtomicNumberTag is the data element tag of ROIElementalCompositionAtomicNumber ROIElementalCompositionAtomicNumberTag = DataElementTag(0x300600B7) // ROIElementalCompositionAtomicMassFractionTag is the data element tag of ROIElementalCompositionAtomicMassFraction ROIElementalCompositionAtomicMassFractionTag = DataElementTag(0x300600B8) // AdditionalRTROIIdentificationCodeSequenceTag is the data element tag of AdditionalRTROIIdentificationCodeSequence AdditionalRTROIIdentificationCodeSequenceTag = DataElementTag(0x300600B9) // FrameOfReferenceRelationshipSequenceTag is the data element tag of FrameOfReferenceRelationshipSequence FrameOfReferenceRelationshipSequenceTag = DataElementTag(0x300600C0) // RelatedFrameOfReferenceUIDTag is the data element tag of RelatedFrameOfReferenceUID RelatedFrameOfReferenceUIDTag = DataElementTag(0x300600C2) // FrameOfReferenceTransformationTypeTag is the data element tag of FrameOfReferenceTransformationType FrameOfReferenceTransformationTypeTag = DataElementTag(0x300600C4) // FrameOfReferenceTransformationMatrixTag is the data element tag of FrameOfReferenceTransformationMatrix FrameOfReferenceTransformationMatrixTag = DataElementTag(0x300600C6) // FrameOfReferenceTransformationCommentTag is the data element tag of FrameOfReferenceTransformationComment FrameOfReferenceTransformationCommentTag = DataElementTag(0x300600C8) // MeasuredDoseReferenceSequenceTag is the data element tag of MeasuredDoseReferenceSequence MeasuredDoseReferenceSequenceTag = DataElementTag(0x30080010) // MeasuredDoseDescriptionTag is the data element tag of MeasuredDoseDescription MeasuredDoseDescriptionTag = DataElementTag(0x30080012) // MeasuredDoseTypeTag is the data element tag of MeasuredDoseType MeasuredDoseTypeTag = DataElementTag(0x30080014) // MeasuredDoseValueTag is the data element tag of MeasuredDoseValue MeasuredDoseValueTag = DataElementTag(0x30080016) // TreatmentSessionBeamSequenceTag is the data element tag of TreatmentSessionBeamSequence TreatmentSessionBeamSequenceTag = DataElementTag(0x30080020) // TreatmentSessionIonBeamSequenceTag is the data element tag of TreatmentSessionIonBeamSequence TreatmentSessionIonBeamSequenceTag = DataElementTag(0x30080021) // CurrentFractionNumberTag is the data element tag of CurrentFractionNumber CurrentFractionNumberTag = DataElementTag(0x30080022) // TreatmentControlPointDateTag is the data element tag of TreatmentControlPointDate TreatmentControlPointDateTag = DataElementTag(0x30080024) // TreatmentControlPointTimeTag is the data element tag of TreatmentControlPointTime TreatmentControlPointTimeTag = DataElementTag(0x30080025) // TreatmentTerminationStatusTag is the data element tag of TreatmentTerminationStatus TreatmentTerminationStatusTag = DataElementTag(0x3008002A) // TreatmentTerminationCodeTag is the data element tag of TreatmentTerminationCode TreatmentTerminationCodeTag = DataElementTag(0x3008002B) // TreatmentVerificationStatusTag is the data element tag of TreatmentVerificationStatus TreatmentVerificationStatusTag = DataElementTag(0x3008002C) // ReferencedTreatmentRecordSequenceTag is the data element tag of ReferencedTreatmentRecordSequence ReferencedTreatmentRecordSequenceTag = DataElementTag(0x30080030) // SpecifiedPrimaryMetersetTag is the data element tag of SpecifiedPrimaryMeterset SpecifiedPrimaryMetersetTag = DataElementTag(0x30080032) // SpecifiedSecondaryMetersetTag is the data element tag of SpecifiedSecondaryMeterset SpecifiedSecondaryMetersetTag = DataElementTag(0x30080033) // DeliveredPrimaryMetersetTag is the data element tag of DeliveredPrimaryMeterset DeliveredPrimaryMetersetTag = DataElementTag(0x30080036) // DeliveredSecondaryMetersetTag is the data element tag of DeliveredSecondaryMeterset DeliveredSecondaryMetersetTag = DataElementTag(0x30080037) // SpecifiedTreatmentTimeTag is the data element tag of SpecifiedTreatmentTime SpecifiedTreatmentTimeTag = DataElementTag(0x3008003A) // DeliveredTreatmentTimeTag is the data element tag of DeliveredTreatmentTime DeliveredTreatmentTimeTag = DataElementTag(0x3008003B) // ControlPointDeliverySequenceTag is the data element tag of ControlPointDeliverySequence ControlPointDeliverySequenceTag = DataElementTag(0x30080040) // IonControlPointDeliverySequenceTag is the data element tag of IonControlPointDeliverySequence IonControlPointDeliverySequenceTag = DataElementTag(0x30080041) // SpecifiedMetersetTag is the data element tag of SpecifiedMeterset SpecifiedMetersetTag = DataElementTag(0x30080042) // DeliveredMetersetTag is the data element tag of DeliveredMeterset DeliveredMetersetTag = DataElementTag(0x30080044) // MetersetRateSetTag is the data element tag of MetersetRateSet MetersetRateSetTag = DataElementTag(0x30080045) // MetersetRateDeliveredTag is the data element tag of MetersetRateDelivered MetersetRateDeliveredTag = DataElementTag(0x30080046) // ScanSpotMetersetsDeliveredTag is the data element tag of ScanSpotMetersetsDelivered ScanSpotMetersetsDeliveredTag = DataElementTag(0x30080047) // DoseRateDeliveredTag is the data element tag of DoseRateDelivered DoseRateDeliveredTag = DataElementTag(0x30080048) // TreatmentSummaryCalculatedDoseReferenceSequenceTag is the data element tag of TreatmentSummaryCalculatedDoseReferenceSequence TreatmentSummaryCalculatedDoseReferenceSequenceTag = DataElementTag(0x30080050) // CumulativeDoseToDoseReferenceTag is the data element tag of CumulativeDoseToDoseReference CumulativeDoseToDoseReferenceTag = DataElementTag(0x30080052) // FirstTreatmentDateTag is the data element tag of FirstTreatmentDate FirstTreatmentDateTag = DataElementTag(0x30080054) // MostRecentTreatmentDateTag is the data element tag of MostRecentTreatmentDate MostRecentTreatmentDateTag = DataElementTag(0x30080056) // NumberOfFractionsDeliveredTag is the data element tag of NumberOfFractionsDelivered NumberOfFractionsDeliveredTag = DataElementTag(0x3008005A) // OverrideSequenceTag is the data element tag of OverrideSequence OverrideSequenceTag = DataElementTag(0x30080060) // ParameterSequencePointerTag is the data element tag of ParameterSequencePointer ParameterSequencePointerTag = DataElementTag(0x30080061) // OverrideParameterPointerTag is the data element tag of OverrideParameterPointer OverrideParameterPointerTag = DataElementTag(0x30080062) // ParameterItemIndexTag is the data element tag of ParameterItemIndex ParameterItemIndexTag = DataElementTag(0x30080063) // MeasuredDoseReferenceNumberTag is the data element tag of MeasuredDoseReferenceNumber MeasuredDoseReferenceNumberTag = DataElementTag(0x30080064) // ParameterPointerTag is the data element tag of ParameterPointer ParameterPointerTag = DataElementTag(0x30080065) // OverrideReasonTag is the data element tag of OverrideReason OverrideReasonTag = DataElementTag(0x30080066) // ParameterValueNumberTag is the data element tag of ParameterValueNumber ParameterValueNumberTag = DataElementTag(0x30080067) // CorrectedParameterSequenceTag is the data element tag of CorrectedParameterSequence CorrectedParameterSequenceTag = DataElementTag(0x30080068) // CorrectionValueTag is the data element tag of CorrectionValue CorrectionValueTag = DataElementTag(0x3008006A) // CalculatedDoseReferenceSequenceTag is the data element tag of CalculatedDoseReferenceSequence CalculatedDoseReferenceSequenceTag = DataElementTag(0x30080070) // CalculatedDoseReferenceNumberTag is the data element tag of CalculatedDoseReferenceNumber CalculatedDoseReferenceNumberTag = DataElementTag(0x30080072) // CalculatedDoseReferenceDescriptionTag is the data element tag of CalculatedDoseReferenceDescription CalculatedDoseReferenceDescriptionTag = DataElementTag(0x30080074) // CalculatedDoseReferenceDoseValueTag is the data element tag of CalculatedDoseReferenceDoseValue CalculatedDoseReferenceDoseValueTag = DataElementTag(0x30080076) // StartMetersetTag is the data element tag of StartMeterset StartMetersetTag = DataElementTag(0x30080078) // EndMetersetTag is the data element tag of EndMeterset EndMetersetTag = DataElementTag(0x3008007A) // ReferencedMeasuredDoseReferenceSequenceTag is the data element tag of ReferencedMeasuredDoseReferenceSequence ReferencedMeasuredDoseReferenceSequenceTag = DataElementTag(0x30080080) // ReferencedMeasuredDoseReferenceNumberTag is the data element tag of ReferencedMeasuredDoseReferenceNumber ReferencedMeasuredDoseReferenceNumberTag = DataElementTag(0x30080082) // ReferencedCalculatedDoseReferenceSequenceTag is the data element tag of ReferencedCalculatedDoseReferenceSequence ReferencedCalculatedDoseReferenceSequenceTag = DataElementTag(0x30080090) // ReferencedCalculatedDoseReferenceNumberTag is the data element tag of ReferencedCalculatedDoseReferenceNumber ReferencedCalculatedDoseReferenceNumberTag = DataElementTag(0x30080092) // BeamLimitingDeviceLeafPairsSequenceTag is the data element tag of BeamLimitingDeviceLeafPairsSequence BeamLimitingDeviceLeafPairsSequenceTag = DataElementTag(0x300800A0) // RecordedWedgeSequenceTag is the data element tag of RecordedWedgeSequence RecordedWedgeSequenceTag = DataElementTag(0x300800B0) // RecordedCompensatorSequenceTag is the data element tag of RecordedCompensatorSequence RecordedCompensatorSequenceTag = DataElementTag(0x300800C0) // RecordedBlockSequenceTag is the data element tag of RecordedBlockSequence RecordedBlockSequenceTag = DataElementTag(0x300800D0) // TreatmentSummaryMeasuredDoseReferenceSequenceTag is the data element tag of TreatmentSummaryMeasuredDoseReferenceSequence TreatmentSummaryMeasuredDoseReferenceSequenceTag = DataElementTag(0x300800E0) // RecordedSnoutSequenceTag is the data element tag of RecordedSnoutSequence RecordedSnoutSequenceTag = DataElementTag(0x300800F0) // RecordedRangeShifterSequenceTag is the data element tag of RecordedRangeShifterSequence RecordedRangeShifterSequenceTag = DataElementTag(0x300800F2) // RecordedLateralSpreadingDeviceSequenceTag is the data element tag of RecordedLateralSpreadingDeviceSequence RecordedLateralSpreadingDeviceSequenceTag = DataElementTag(0x300800F4) // RecordedRangeModulatorSequenceTag is the data element tag of RecordedRangeModulatorSequence RecordedRangeModulatorSequenceTag = DataElementTag(0x300800F6) // RecordedSourceSequenceTag is the data element tag of RecordedSourceSequence RecordedSourceSequenceTag = DataElementTag(0x30080100) // SourceSerialNumberTag is the data element tag of SourceSerialNumber SourceSerialNumberTag = DataElementTag(0x30080105) // TreatmentSessionApplicationSetupSequenceTag is the data element tag of TreatmentSessionApplicationSetupSequence TreatmentSessionApplicationSetupSequenceTag = DataElementTag(0x30080110) // ApplicationSetupCheckTag is the data element tag of ApplicationSetupCheck ApplicationSetupCheckTag = DataElementTag(0x30080116) // RecordedBrachyAccessoryDeviceSequenceTag is the data element tag of RecordedBrachyAccessoryDeviceSequence RecordedBrachyAccessoryDeviceSequenceTag = DataElementTag(0x30080120) // ReferencedBrachyAccessoryDeviceNumberTag is the data element tag of ReferencedBrachyAccessoryDeviceNumber ReferencedBrachyAccessoryDeviceNumberTag = DataElementTag(0x30080122) // RecordedChannelSequenceTag is the data element tag of RecordedChannelSequence RecordedChannelSequenceTag = DataElementTag(0x30080130) // SpecifiedChannelTotalTimeTag is the data element tag of SpecifiedChannelTotalTime SpecifiedChannelTotalTimeTag = DataElementTag(0x30080132) // DeliveredChannelTotalTimeTag is the data element tag of DeliveredChannelTotalTime DeliveredChannelTotalTimeTag = DataElementTag(0x30080134) // SpecifiedNumberOfPulsesTag is the data element tag of SpecifiedNumberOfPulses SpecifiedNumberOfPulsesTag = DataElementTag(0x30080136) // DeliveredNumberOfPulsesTag is the data element tag of DeliveredNumberOfPulses DeliveredNumberOfPulsesTag = DataElementTag(0x30080138) // SpecifiedPulseRepetitionIntervalTag is the data element tag of SpecifiedPulseRepetitionInterval SpecifiedPulseRepetitionIntervalTag = DataElementTag(0x3008013A) // DeliveredPulseRepetitionIntervalTag is the data element tag of DeliveredPulseRepetitionInterval DeliveredPulseRepetitionIntervalTag = DataElementTag(0x3008013C) // RecordedSourceApplicatorSequenceTag is the data element tag of RecordedSourceApplicatorSequence RecordedSourceApplicatorSequenceTag = DataElementTag(0x30080140) // ReferencedSourceApplicatorNumberTag is the data element tag of ReferencedSourceApplicatorNumber ReferencedSourceApplicatorNumberTag = DataElementTag(0x30080142) // RecordedChannelShieldSequenceTag is the data element tag of RecordedChannelShieldSequence RecordedChannelShieldSequenceTag = DataElementTag(0x30080150) // ReferencedChannelShieldNumberTag is the data element tag of ReferencedChannelShieldNumber ReferencedChannelShieldNumberTag = DataElementTag(0x30080152) // BrachyControlPointDeliveredSequenceTag is the data element tag of BrachyControlPointDeliveredSequence BrachyControlPointDeliveredSequenceTag = DataElementTag(0x30080160) // SafePositionExitDateTag is the data element tag of SafePositionExitDate SafePositionExitDateTag = DataElementTag(0x30080162) // SafePositionExitTimeTag is the data element tag of SafePositionExitTime SafePositionExitTimeTag = DataElementTag(0x30080164) // SafePositionReturnDateTag is the data element tag of SafePositionReturnDate SafePositionReturnDateTag = DataElementTag(0x30080166) // SafePositionReturnTimeTag is the data element tag of SafePositionReturnTime SafePositionReturnTimeTag = DataElementTag(0x30080168) // PulseSpecificBrachyControlPointDeliveredSequenceTag is the data element tag of PulseSpecificBrachyControlPointDeliveredSequence PulseSpecificBrachyControlPointDeliveredSequenceTag = DataElementTag(0x30080171) // PulseNumberTag is the data element tag of PulseNumber PulseNumberTag = DataElementTag(0x30080172) // BrachyPulseControlPointDeliveredSequenceTag is the data element tag of BrachyPulseControlPointDeliveredSequence BrachyPulseControlPointDeliveredSequenceTag = DataElementTag(0x30080173) // CurrentTreatmentStatusTag is the data element tag of CurrentTreatmentStatus CurrentTreatmentStatusTag = DataElementTag(0x30080200) // TreatmentStatusCommentTag is the data element tag of TreatmentStatusComment TreatmentStatusCommentTag = DataElementTag(0x30080202) // FractionGroupSummarySequenceTag is the data element tag of FractionGroupSummarySequence FractionGroupSummarySequenceTag = DataElementTag(0x30080220) // ReferencedFractionNumberTag is the data element tag of ReferencedFractionNumber ReferencedFractionNumberTag = DataElementTag(0x30080223) // FractionGroupTypeTag is the data element tag of FractionGroupType FractionGroupTypeTag = DataElementTag(0x30080224) // BeamStopperPositionTag is the data element tag of BeamStopperPosition BeamStopperPositionTag = DataElementTag(0x30080230) // FractionStatusSummarySequenceTag is the data element tag of FractionStatusSummarySequence FractionStatusSummarySequenceTag = DataElementTag(0x30080240) // TreatmentDateTag is the data element tag of TreatmentDate TreatmentDateTag = DataElementTag(0x30080250) // TreatmentTimeTag is the data element tag of TreatmentTime TreatmentTimeTag = DataElementTag(0x30080251) // RTPlanLabelTag is the data element tag of RTPlanLabel RTPlanLabelTag = DataElementTag(0x300A0002) // RTPlanNameTag is the data element tag of RTPlanName RTPlanNameTag = DataElementTag(0x300A0003) // RTPlanDescriptionTag is the data element tag of RTPlanDescription RTPlanDescriptionTag = DataElementTag(0x300A0004) // RTPlanDateTag is the data element tag of RTPlanDate RTPlanDateTag = DataElementTag(0x300A0006) // RTPlanTimeTag is the data element tag of RTPlanTime RTPlanTimeTag = DataElementTag(0x300A0007) // TreatmentProtocolsTag is the data element tag of TreatmentProtocols TreatmentProtocolsTag = DataElementTag(0x300A0009) // PlanIntentTag is the data element tag of PlanIntent PlanIntentTag = DataElementTag(0x300A000A) // TreatmentSitesTag is the data element tag of TreatmentSites TreatmentSitesTag = DataElementTag(0x300A000B) // RTPlanGeometryTag is the data element tag of RTPlanGeometry RTPlanGeometryTag = DataElementTag(0x300A000C) // PrescriptionDescriptionTag is the data element tag of PrescriptionDescription PrescriptionDescriptionTag = DataElementTag(0x300A000E) // DoseReferenceSequenceTag is the data element tag of DoseReferenceSequence DoseReferenceSequenceTag = DataElementTag(0x300A0010) // DoseReferenceNumberTag is the data element tag of DoseReferenceNumber DoseReferenceNumberTag = DataElementTag(0x300A0012) // DoseReferenceUIDTag is the data element tag of DoseReferenceUID DoseReferenceUIDTag = DataElementTag(0x300A0013) // DoseReferenceStructureTypeTag is the data element tag of DoseReferenceStructureType DoseReferenceStructureTypeTag = DataElementTag(0x300A0014) // NominalBeamEnergyUnitTag is the data element tag of NominalBeamEnergyUnit NominalBeamEnergyUnitTag = DataElementTag(0x300A0015) // DoseReferenceDescriptionTag is the data element tag of DoseReferenceDescription DoseReferenceDescriptionTag = DataElementTag(0x300A0016) // DoseReferencePointCoordinatesTag is the data element tag of DoseReferencePointCoordinates DoseReferencePointCoordinatesTag = DataElementTag(0x300A0018) // NominalPriorDoseTag is the data element tag of NominalPriorDose NominalPriorDoseTag = DataElementTag(0x300A001A) // DoseReferenceTypeTag is the data element tag of DoseReferenceType DoseReferenceTypeTag = DataElementTag(0x300A0020) // ConstraintWeightTag is the data element tag of ConstraintWeight ConstraintWeightTag = DataElementTag(0x300A0021) // DeliveryWarningDoseTag is the data element tag of DeliveryWarningDose DeliveryWarningDoseTag = DataElementTag(0x300A0022) // DeliveryMaximumDoseTag is the data element tag of DeliveryMaximumDose DeliveryMaximumDoseTag = DataElementTag(0x300A0023) // TargetMinimumDoseTag is the data element tag of TargetMinimumDose TargetMinimumDoseTag = DataElementTag(0x300A0025) // TargetPrescriptionDoseTag is the data element tag of TargetPrescriptionDose TargetPrescriptionDoseTag = DataElementTag(0x300A0026) // TargetMaximumDoseTag is the data element tag of TargetMaximumDose TargetMaximumDoseTag = DataElementTag(0x300A0027) // TargetUnderdoseVolumeFractionTag is the data element tag of TargetUnderdoseVolumeFraction TargetUnderdoseVolumeFractionTag = DataElementTag(0x300A0028) // OrganAtRiskFullVolumeDoseTag is the data element tag of OrganAtRiskFullVolumeDose OrganAtRiskFullVolumeDoseTag = DataElementTag(0x300A002A) // OrganAtRiskLimitDoseTag is the data element tag of OrganAtRiskLimitDose OrganAtRiskLimitDoseTag = DataElementTag(0x300A002B) // OrganAtRiskMaximumDoseTag is the data element tag of OrganAtRiskMaximumDose OrganAtRiskMaximumDoseTag = DataElementTag(0x300A002C) // OrganAtRiskOverdoseVolumeFractionTag is the data element tag of OrganAtRiskOverdoseVolumeFraction OrganAtRiskOverdoseVolumeFractionTag = DataElementTag(0x300A002D) // ToleranceTableSequenceTag is the data element tag of ToleranceTableSequence ToleranceTableSequenceTag = DataElementTag(0x300A0040) // ToleranceTableNumberTag is the data element tag of ToleranceTableNumber ToleranceTableNumberTag = DataElementTag(0x300A0042) // ToleranceTableLabelTag is the data element tag of ToleranceTableLabel ToleranceTableLabelTag = DataElementTag(0x300A0043) // GantryAngleToleranceTag is the data element tag of GantryAngleTolerance GantryAngleToleranceTag = DataElementTag(0x300A0044) // BeamLimitingDeviceAngleToleranceTag is the data element tag of BeamLimitingDeviceAngleTolerance BeamLimitingDeviceAngleToleranceTag = DataElementTag(0x300A0046) // BeamLimitingDeviceToleranceSequenceTag is the data element tag of BeamLimitingDeviceToleranceSequence BeamLimitingDeviceToleranceSequenceTag = DataElementTag(0x300A0048) // BeamLimitingDevicePositionToleranceTag is the data element tag of BeamLimitingDevicePositionTolerance BeamLimitingDevicePositionToleranceTag = DataElementTag(0x300A004A) // SnoutPositionToleranceTag is the data element tag of SnoutPositionTolerance SnoutPositionToleranceTag = DataElementTag(0x300A004B) // PatientSupportAngleToleranceTag is the data element tag of PatientSupportAngleTolerance PatientSupportAngleToleranceTag = DataElementTag(0x300A004C) // TableTopEccentricAngleToleranceTag is the data element tag of TableTopEccentricAngleTolerance TableTopEccentricAngleToleranceTag = DataElementTag(0x300A004E) // TableTopPitchAngleToleranceTag is the data element tag of TableTopPitchAngleTolerance TableTopPitchAngleToleranceTag = DataElementTag(0x300A004F) // TableTopRollAngleToleranceTag is the data element tag of TableTopRollAngleTolerance TableTopRollAngleToleranceTag = DataElementTag(0x300A0050) // TableTopVerticalPositionToleranceTag is the data element tag of TableTopVerticalPositionTolerance TableTopVerticalPositionToleranceTag = DataElementTag(0x300A0051) // TableTopLongitudinalPositionToleranceTag is the data element tag of TableTopLongitudinalPositionTolerance TableTopLongitudinalPositionToleranceTag = DataElementTag(0x300A0052) // TableTopLateralPositionToleranceTag is the data element tag of TableTopLateralPositionTolerance TableTopLateralPositionToleranceTag = DataElementTag(0x300A0053) // RTPlanRelationshipTag is the data element tag of RTPlanRelationship RTPlanRelationshipTag = DataElementTag(0x300A0055) // FractionGroupSequenceTag is the data element tag of FractionGroupSequence FractionGroupSequenceTag = DataElementTag(0x300A0070) // FractionGroupNumberTag is the data element tag of FractionGroupNumber FractionGroupNumberTag = DataElementTag(0x300A0071) // FractionGroupDescriptionTag is the data element tag of FractionGroupDescription FractionGroupDescriptionTag = DataElementTag(0x300A0072) // NumberOfFractionsPlannedTag is the data element tag of NumberOfFractionsPlanned NumberOfFractionsPlannedTag = DataElementTag(0x300A0078) // NumberOfFractionPatternDigitsPerDayTag is the data element tag of NumberOfFractionPatternDigitsPerDay NumberOfFractionPatternDigitsPerDayTag = DataElementTag(0x300A0079) // RepeatFractionCycleLengthTag is the data element tag of RepeatFractionCycleLength RepeatFractionCycleLengthTag = DataElementTag(0x300A007A) // FractionPatternTag is the data element tag of FractionPattern FractionPatternTag = DataElementTag(0x300A007B) // NumberOfBeamsTag is the data element tag of NumberOfBeams NumberOfBeamsTag = DataElementTag(0x300A0080) // BeamDoseSpecificationPointTag is the data element tag of BeamDoseSpecificationPoint BeamDoseSpecificationPointTag = DataElementTag(0x300A0082) // ReferencedDoseReferenceUIDTag is the data element tag of ReferencedDoseReferenceUID ReferencedDoseReferenceUIDTag = DataElementTag(0x300A0083) // BeamDoseTag is the data element tag of BeamDose BeamDoseTag = DataElementTag(0x300A0084) // BeamMetersetTag is the data element tag of BeamMeterset BeamMetersetTag = DataElementTag(0x300A0086) // BeamDosePointDepthTag is the data element tag of BeamDosePointDepth BeamDosePointDepthTag = DataElementTag(0x300A0088) // BeamDosePointEquivalentDepthTag is the data element tag of BeamDosePointEquivalentDepth BeamDosePointEquivalentDepthTag = DataElementTag(0x300A0089) // BeamDosePointSSDTag is the data element tag of BeamDosePointSSD BeamDosePointSSDTag = DataElementTag(0x300A008A) // BeamDoseMeaningTag is the data element tag of BeamDoseMeaning BeamDoseMeaningTag = DataElementTag(0x300A008B) // BeamDoseVerificationControlPointSequenceTag is the data element tag of BeamDoseVerificationControlPointSequence BeamDoseVerificationControlPointSequenceTag = DataElementTag(0x300A008C) // AverageBeamDosePointDepthTag is the data element tag of AverageBeamDosePointDepth AverageBeamDosePointDepthTag = DataElementTag(0x300A008D) // AverageBeamDosePointEquivalentDepthTag is the data element tag of AverageBeamDosePointEquivalentDepth AverageBeamDosePointEquivalentDepthTag = DataElementTag(0x300A008E) // AverageBeamDosePointSSDTag is the data element tag of AverageBeamDosePointSSD AverageBeamDosePointSSDTag = DataElementTag(0x300A008F) // BeamDoseTypeTag is the data element tag of BeamDoseType BeamDoseTypeTag = DataElementTag(0x300A0090) // AlternateBeamDoseTag is the data element tag of AlternateBeamDose AlternateBeamDoseTag = DataElementTag(0x300A0091) // AlternateBeamDoseTypeTag is the data element tag of AlternateBeamDoseType AlternateBeamDoseTypeTag = DataElementTag(0x300A0092) // DepthValueAveragingFlagTag is the data element tag of DepthValueAveragingFlag DepthValueAveragingFlagTag = DataElementTag(0x300A0093) // BeamDosePointSourceToExternalContourDistanceTag is the data element tag of BeamDosePointSourceToExternalContourDistance BeamDosePointSourceToExternalContourDistanceTag = DataElementTag(0x300A0094) // NumberOfBrachyApplicationSetupsTag is the data element tag of NumberOfBrachyApplicationSetups NumberOfBrachyApplicationSetupsTag = DataElementTag(0x300A00A0) // BrachyApplicationSetupDoseSpecificationPointTag is the data element tag of BrachyApplicationSetupDoseSpecificationPoint BrachyApplicationSetupDoseSpecificationPointTag = DataElementTag(0x300A00A2) // BrachyApplicationSetupDoseTag is the data element tag of BrachyApplicationSetupDose BrachyApplicationSetupDoseTag = DataElementTag(0x300A00A4) // BeamSequenceTag is the data element tag of BeamSequence BeamSequenceTag = DataElementTag(0x300A00B0) // TreatmentMachineNameTag is the data element tag of TreatmentMachineName TreatmentMachineNameTag = DataElementTag(0x300A00B2) // PrimaryDosimeterUnitTag is the data element tag of PrimaryDosimeterUnit PrimaryDosimeterUnitTag = DataElementTag(0x300A00B3) // SourceAxisDistanceTag is the data element tag of SourceAxisDistance SourceAxisDistanceTag = DataElementTag(0x300A00B4) // BeamLimitingDeviceSequenceTag is the data element tag of BeamLimitingDeviceSequence BeamLimitingDeviceSequenceTag = DataElementTag(0x300A00B6) // RTBeamLimitingDeviceTypeTag is the data element tag of RTBeamLimitingDeviceType RTBeamLimitingDeviceTypeTag = DataElementTag(0x300A00B8) // SourceToBeamLimitingDeviceDistanceTag is the data element tag of SourceToBeamLimitingDeviceDistance SourceToBeamLimitingDeviceDistanceTag = DataElementTag(0x300A00BA) // IsocenterToBeamLimitingDeviceDistanceTag is the data element tag of IsocenterToBeamLimitingDeviceDistance IsocenterToBeamLimitingDeviceDistanceTag = DataElementTag(0x300A00BB) // NumberOfLeafJawPairsTag is the data element tag of NumberOfLeafJawPairs NumberOfLeafJawPairsTag = DataElementTag(0x300A00BC) // LeafPositionBoundariesTag is the data element tag of LeafPositionBoundaries LeafPositionBoundariesTag = DataElementTag(0x300A00BE) // BeamNumberTag is the data element tag of BeamNumber BeamNumberTag = DataElementTag(0x300A00C0) // BeamNameTag is the data element tag of BeamName BeamNameTag = DataElementTag(0x300A00C2) // BeamDescriptionTag is the data element tag of BeamDescription BeamDescriptionTag = DataElementTag(0x300A00C3) // BeamTypeTag is the data element tag of BeamType BeamTypeTag = DataElementTag(0x300A00C4) // BeamDeliveryDurationLimitTag is the data element tag of BeamDeliveryDurationLimit BeamDeliveryDurationLimitTag = DataElementTag(0x300A00C5) // RadiationTypeTag is the data element tag of RadiationType RadiationTypeTag = DataElementTag(0x300A00C6) // HighDoseTechniqueTypeTag is the data element tag of HighDoseTechniqueType HighDoseTechniqueTypeTag = DataElementTag(0x300A00C7) // ReferenceImageNumberTag is the data element tag of ReferenceImageNumber ReferenceImageNumberTag = DataElementTag(0x300A00C8) // PlannedVerificationImageSequenceTag is the data element tag of PlannedVerificationImageSequence PlannedVerificationImageSequenceTag = DataElementTag(0x300A00CA) // ImagingDeviceSpecificAcquisitionParametersTag is the data element tag of ImagingDeviceSpecificAcquisitionParameters ImagingDeviceSpecificAcquisitionParametersTag = DataElementTag(0x300A00CC) // TreatmentDeliveryTypeTag is the data element tag of TreatmentDeliveryType TreatmentDeliveryTypeTag = DataElementTag(0x300A00CE) // NumberOfWedgesTag is the data element tag of NumberOfWedges NumberOfWedgesTag = DataElementTag(0x300A00D0) // WedgeSequenceTag is the data element tag of WedgeSequence WedgeSequenceTag = DataElementTag(0x300A00D1) // WedgeNumberTag is the data element tag of WedgeNumber WedgeNumberTag = DataElementTag(0x300A00D2) // WedgeTypeTag is the data element tag of WedgeType WedgeTypeTag = DataElementTag(0x300A00D3) // WedgeIDTag is the data element tag of WedgeID WedgeIDTag = DataElementTag(0x300A00D4) // WedgeAngleTag is the data element tag of WedgeAngle WedgeAngleTag = DataElementTag(0x300A00D5) // WedgeFactorTag is the data element tag of WedgeFactor WedgeFactorTag = DataElementTag(0x300A00D6) // TotalWedgeTrayWaterEquivalentThicknessTag is the data element tag of TotalWedgeTrayWaterEquivalentThickness TotalWedgeTrayWaterEquivalentThicknessTag = DataElementTag(0x300A00D7) // WedgeOrientationTag is the data element tag of WedgeOrientation WedgeOrientationTag = DataElementTag(0x300A00D8) // IsocenterToWedgeTrayDistanceTag is the data element tag of IsocenterToWedgeTrayDistance IsocenterToWedgeTrayDistanceTag = DataElementTag(0x300A00D9) // SourceToWedgeTrayDistanceTag is the data element tag of SourceToWedgeTrayDistance SourceToWedgeTrayDistanceTag = DataElementTag(0x300A00DA) // WedgeThinEdgePositionTag is the data element tag of WedgeThinEdgePosition WedgeThinEdgePositionTag = DataElementTag(0x300A00DB) // BolusIDTag is the data element tag of BolusID BolusIDTag = DataElementTag(0x300A00DC) // BolusDescriptionTag is the data element tag of BolusDescription BolusDescriptionTag = DataElementTag(0x300A00DD) // EffectiveWedgeAngleTag is the data element tag of EffectiveWedgeAngle EffectiveWedgeAngleTag = DataElementTag(0x300A00DE) // NumberOfCompensatorsTag is the data element tag of NumberOfCompensators NumberOfCompensatorsTag = DataElementTag(0x300A00E0) // MaterialIDTag is the data element tag of MaterialID MaterialIDTag = DataElementTag(0x300A00E1) // TotalCompensatorTrayFactorTag is the data element tag of TotalCompensatorTrayFactor TotalCompensatorTrayFactorTag = DataElementTag(0x300A00E2) // CompensatorSequenceTag is the data element tag of CompensatorSequence CompensatorSequenceTag = DataElementTag(0x300A00E3) // CompensatorNumberTag is the data element tag of CompensatorNumber CompensatorNumberTag = DataElementTag(0x300A00E4) // CompensatorIDTag is the data element tag of CompensatorID CompensatorIDTag = DataElementTag(0x300A00E5) // SourceToCompensatorTrayDistanceTag is the data element tag of SourceToCompensatorTrayDistance SourceToCompensatorTrayDistanceTag = DataElementTag(0x300A00E6) // CompensatorRowsTag is the data element tag of CompensatorRows CompensatorRowsTag = DataElementTag(0x300A00E7) // CompensatorColumnsTag is the data element tag of CompensatorColumns CompensatorColumnsTag = DataElementTag(0x300A00E8) // CompensatorPixelSpacingTag is the data element tag of CompensatorPixelSpacing CompensatorPixelSpacingTag = DataElementTag(0x300A00E9) // CompensatorPositionTag is the data element tag of CompensatorPosition CompensatorPositionTag = DataElementTag(0x300A00EA) // CompensatorTransmissionDataTag is the data element tag of CompensatorTransmissionData CompensatorTransmissionDataTag = DataElementTag(0x300A00EB) // CompensatorThicknessDataTag is the data element tag of CompensatorThicknessData CompensatorThicknessDataTag = DataElementTag(0x300A00EC) // NumberOfBoliTag is the data element tag of NumberOfBoli NumberOfBoliTag = DataElementTag(0x300A00ED) // CompensatorTypeTag is the data element tag of CompensatorType CompensatorTypeTag = DataElementTag(0x300A00EE) // CompensatorTrayIDTag is the data element tag of CompensatorTrayID CompensatorTrayIDTag = DataElementTag(0x300A00EF) // NumberOfBlocksTag is the data element tag of NumberOfBlocks NumberOfBlocksTag = DataElementTag(0x300A00F0) // TotalBlockTrayFactorTag is the data element tag of TotalBlockTrayFactor TotalBlockTrayFactorTag = DataElementTag(0x300A00F2) // TotalBlockTrayWaterEquivalentThicknessTag is the data element tag of TotalBlockTrayWaterEquivalentThickness TotalBlockTrayWaterEquivalentThicknessTag = DataElementTag(0x300A00F3) // BlockSequenceTag is the data element tag of BlockSequence BlockSequenceTag = DataElementTag(0x300A00F4) // BlockTrayIDTag is the data element tag of BlockTrayID BlockTrayIDTag = DataElementTag(0x300A00F5) // SourceToBlockTrayDistanceTag is the data element tag of SourceToBlockTrayDistance SourceToBlockTrayDistanceTag = DataElementTag(0x300A00F6) // IsocenterToBlockTrayDistanceTag is the data element tag of IsocenterToBlockTrayDistance IsocenterToBlockTrayDistanceTag = DataElementTag(0x300A00F7) // BlockTypeTag is the data element tag of BlockType BlockTypeTag = DataElementTag(0x300A00F8) // AccessoryCodeTag is the data element tag of AccessoryCode AccessoryCodeTag = DataElementTag(0x300A00F9) // BlockDivergenceTag is the data element tag of BlockDivergence BlockDivergenceTag = DataElementTag(0x300A00FA) // BlockMountingPositionTag is the data element tag of BlockMountingPosition BlockMountingPositionTag = DataElementTag(0x300A00FB) // BlockNumberTag is the data element tag of BlockNumber BlockNumberTag = DataElementTag(0x300A00FC) // BlockNameTag is the data element tag of BlockName BlockNameTag = DataElementTag(0x300A00FE) // BlockThicknessTag is the data element tag of BlockThickness BlockThicknessTag = DataElementTag(0x300A0100) // BlockTransmissionTag is the data element tag of BlockTransmission BlockTransmissionTag = DataElementTag(0x300A0102) // BlockNumberOfPointsTag is the data element tag of BlockNumberOfPoints BlockNumberOfPointsTag = DataElementTag(0x300A0104) // BlockDataTag is the data element tag of BlockData BlockDataTag = DataElementTag(0x300A0106) // ApplicatorSequenceTag is the data element tag of ApplicatorSequence ApplicatorSequenceTag = DataElementTag(0x300A0107) // ApplicatorIDTag is the data element tag of ApplicatorID ApplicatorIDTag = DataElementTag(0x300A0108) // ApplicatorTypeTag is the data element tag of ApplicatorType ApplicatorTypeTag = DataElementTag(0x300A0109) // ApplicatorDescriptionTag is the data element tag of ApplicatorDescription ApplicatorDescriptionTag = DataElementTag(0x300A010A) // CumulativeDoseReferenceCoefficientTag is the data element tag of CumulativeDoseReferenceCoefficient CumulativeDoseReferenceCoefficientTag = DataElementTag(0x300A010C) // FinalCumulativeMetersetWeightTag is the data element tag of FinalCumulativeMetersetWeight FinalCumulativeMetersetWeightTag = DataElementTag(0x300A010E) // NumberOfControlPointsTag is the data element tag of NumberOfControlPoints NumberOfControlPointsTag = DataElementTag(0x300A0110) // ControlPointSequenceTag is the data element tag of ControlPointSequence ControlPointSequenceTag = DataElementTag(0x300A0111) // ControlPointIndexTag is the data element tag of ControlPointIndex ControlPointIndexTag = DataElementTag(0x300A0112) // NominalBeamEnergyTag is the data element tag of NominalBeamEnergy NominalBeamEnergyTag = DataElementTag(0x300A0114) // DoseRateSetTag is the data element tag of DoseRateSet DoseRateSetTag = DataElementTag(0x300A0115) // WedgePositionSequenceTag is the data element tag of WedgePositionSequence WedgePositionSequenceTag = DataElementTag(0x300A0116) // WedgePositionTag is the data element tag of WedgePosition WedgePositionTag = DataElementTag(0x300A0118) // BeamLimitingDevicePositionSequenceTag is the data element tag of BeamLimitingDevicePositionSequence BeamLimitingDevicePositionSequenceTag = DataElementTag(0x300A011A) // LeafJawPositionsTag is the data element tag of LeafJawPositions LeafJawPositionsTag = DataElementTag(0x300A011C) // GantryAngleTag is the data element tag of GantryAngle GantryAngleTag = DataElementTag(0x300A011E) // GantryRotationDirectionTag is the data element tag of GantryRotationDirection GantryRotationDirectionTag = DataElementTag(0x300A011F) // BeamLimitingDeviceAngleTag is the data element tag of BeamLimitingDeviceAngle BeamLimitingDeviceAngleTag = DataElementTag(0x300A0120) // BeamLimitingDeviceRotationDirectionTag is the data element tag of BeamLimitingDeviceRotationDirection BeamLimitingDeviceRotationDirectionTag = DataElementTag(0x300A0121) // PatientSupportAngleTag is the data element tag of PatientSupportAngle PatientSupportAngleTag = DataElementTag(0x300A0122) // PatientSupportRotationDirectionTag is the data element tag of PatientSupportRotationDirection PatientSupportRotationDirectionTag = DataElementTag(0x300A0123) // TableTopEccentricAxisDistanceTag is the data element tag of TableTopEccentricAxisDistance TableTopEccentricAxisDistanceTag = DataElementTag(0x300A0124) // TableTopEccentricAngleTag is the data element tag of TableTopEccentricAngle TableTopEccentricAngleTag = DataElementTag(0x300A0125) // TableTopEccentricRotationDirectionTag is the data element tag of TableTopEccentricRotationDirection TableTopEccentricRotationDirectionTag = DataElementTag(0x300A0126) // TableTopVerticalPositionTag is the data element tag of TableTopVerticalPosition TableTopVerticalPositionTag = DataElementTag(0x300A0128) // TableTopLongitudinalPositionTag is the data element tag of TableTopLongitudinalPosition TableTopLongitudinalPositionTag = DataElementTag(0x300A0129) // TableTopLateralPositionTag is the data element tag of TableTopLateralPosition TableTopLateralPositionTag = DataElementTag(0x300A012A) // IsocenterPositionTag is the data element tag of IsocenterPosition IsocenterPositionTag = DataElementTag(0x300A012C) // SurfaceEntryPointTag is the data element tag of SurfaceEntryPoint SurfaceEntryPointTag = DataElementTag(0x300A012E) // SourceToSurfaceDistanceTag is the data element tag of SourceToSurfaceDistance SourceToSurfaceDistanceTag = DataElementTag(0x300A0130) // AverageBeamDosePointSourceToExternalContourDistanceTag is the data element tag of AverageBeamDosePointSourceToExternalContourDistance AverageBeamDosePointSourceToExternalContourDistanceTag = DataElementTag(0x300A0131) // SourceToExternalContourDistanceTag is the data element tag of SourceToExternalContourDistance SourceToExternalContourDistanceTag = DataElementTag(0x300A0132) // ExternalContourEntryPointTag is the data element tag of ExternalContourEntryPoint ExternalContourEntryPointTag = DataElementTag(0x300A0133) // CumulativeMetersetWeightTag is the data element tag of CumulativeMetersetWeight CumulativeMetersetWeightTag = DataElementTag(0x300A0134) // TableTopPitchAngleTag is the data element tag of TableTopPitchAngle TableTopPitchAngleTag = DataElementTag(0x300A0140) // TableTopPitchRotationDirectionTag is the data element tag of TableTopPitchRotationDirection TableTopPitchRotationDirectionTag = DataElementTag(0x300A0142) // TableTopRollAngleTag is the data element tag of TableTopRollAngle TableTopRollAngleTag = DataElementTag(0x300A0144) // TableTopRollRotationDirectionTag is the data element tag of TableTopRollRotationDirection TableTopRollRotationDirectionTag = DataElementTag(0x300A0146) // HeadFixationAngleTag is the data element tag of HeadFixationAngle HeadFixationAngleTag = DataElementTag(0x300A0148) // GantryPitchAngleTag is the data element tag of GantryPitchAngle GantryPitchAngleTag = DataElementTag(0x300A014A) // GantryPitchRotationDirectionTag is the data element tag of GantryPitchRotationDirection GantryPitchRotationDirectionTag = DataElementTag(0x300A014C) // GantryPitchAngleToleranceTag is the data element tag of GantryPitchAngleTolerance GantryPitchAngleToleranceTag = DataElementTag(0x300A014E) // FixationEyeTag is the data element tag of FixationEye FixationEyeTag = DataElementTag(0x300A0150) // ChairHeadFramePositionTag is the data element tag of ChairHeadFramePosition ChairHeadFramePositionTag = DataElementTag(0x300A0151) // HeadFixationAngleToleranceTag is the data element tag of HeadFixationAngleTolerance HeadFixationAngleToleranceTag = DataElementTag(0x300A0152) // ChairHeadFramePositionToleranceTag is the data element tag of ChairHeadFramePositionTolerance ChairHeadFramePositionToleranceTag = DataElementTag(0x300A0153) // FixationLightAzimuthalAngleToleranceTag is the data element tag of FixationLightAzimuthalAngleTolerance FixationLightAzimuthalAngleToleranceTag = DataElementTag(0x300A0154) // FixationLightPolarAngleToleranceTag is the data element tag of FixationLightPolarAngleTolerance FixationLightPolarAngleToleranceTag = DataElementTag(0x300A0155) // PatientSetupSequenceTag is the data element tag of PatientSetupSequence PatientSetupSequenceTag = DataElementTag(0x300A0180) // PatientSetupNumberTag is the data element tag of PatientSetupNumber PatientSetupNumberTag = DataElementTag(0x300A0182) // PatientSetupLabelTag is the data element tag of PatientSetupLabel PatientSetupLabelTag = DataElementTag(0x300A0183) // PatientAdditionalPositionTag is the data element tag of PatientAdditionalPosition PatientAdditionalPositionTag = DataElementTag(0x300A0184) // FixationDeviceSequenceTag is the data element tag of FixationDeviceSequence FixationDeviceSequenceTag = DataElementTag(0x300A0190) // FixationDeviceTypeTag is the data element tag of FixationDeviceType FixationDeviceTypeTag = DataElementTag(0x300A0192) // FixationDeviceLabelTag is the data element tag of FixationDeviceLabel FixationDeviceLabelTag = DataElementTag(0x300A0194) // FixationDeviceDescriptionTag is the data element tag of FixationDeviceDescription FixationDeviceDescriptionTag = DataElementTag(0x300A0196) // FixationDevicePositionTag is the data element tag of FixationDevicePosition FixationDevicePositionTag = DataElementTag(0x300A0198) // FixationDevicePitchAngleTag is the data element tag of FixationDevicePitchAngle FixationDevicePitchAngleTag = DataElementTag(0x300A0199) // FixationDeviceRollAngleTag is the data element tag of FixationDeviceRollAngle FixationDeviceRollAngleTag = DataElementTag(0x300A019A) // ShieldingDeviceSequenceTag is the data element tag of ShieldingDeviceSequence ShieldingDeviceSequenceTag = DataElementTag(0x300A01A0) // ShieldingDeviceTypeTag is the data element tag of ShieldingDeviceType ShieldingDeviceTypeTag = DataElementTag(0x300A01A2) // ShieldingDeviceLabelTag is the data element tag of ShieldingDeviceLabel ShieldingDeviceLabelTag = DataElementTag(0x300A01A4) // ShieldingDeviceDescriptionTag is the data element tag of ShieldingDeviceDescription ShieldingDeviceDescriptionTag = DataElementTag(0x300A01A6) // ShieldingDevicePositionTag is the data element tag of ShieldingDevicePosition ShieldingDevicePositionTag = DataElementTag(0x300A01A8) // SetupTechniqueTag is the data element tag of SetupTechnique SetupTechniqueTag = DataElementTag(0x300A01B0) // SetupTechniqueDescriptionTag is the data element tag of SetupTechniqueDescription SetupTechniqueDescriptionTag = DataElementTag(0x300A01B2) // SetupDeviceSequenceTag is the data element tag of SetupDeviceSequence SetupDeviceSequenceTag = DataElementTag(0x300A01B4) // SetupDeviceTypeTag is the data element tag of SetupDeviceType SetupDeviceTypeTag = DataElementTag(0x300A01B6) // SetupDeviceLabelTag is the data element tag of SetupDeviceLabel SetupDeviceLabelTag = DataElementTag(0x300A01B8) // SetupDeviceDescriptionTag is the data element tag of SetupDeviceDescription SetupDeviceDescriptionTag = DataElementTag(0x300A01BA) // SetupDeviceParameterTag is the data element tag of SetupDeviceParameter SetupDeviceParameterTag = DataElementTag(0x300A01BC) // SetupReferenceDescriptionTag is the data element tag of SetupReferenceDescription SetupReferenceDescriptionTag = DataElementTag(0x300A01D0) // TableTopVerticalSetupDisplacementTag is the data element tag of TableTopVerticalSetupDisplacement TableTopVerticalSetupDisplacementTag = DataElementTag(0x300A01D2) // TableTopLongitudinalSetupDisplacementTag is the data element tag of TableTopLongitudinalSetupDisplacement TableTopLongitudinalSetupDisplacementTag = DataElementTag(0x300A01D4) // TableTopLateralSetupDisplacementTag is the data element tag of TableTopLateralSetupDisplacement TableTopLateralSetupDisplacementTag = DataElementTag(0x300A01D6) // BrachyTreatmentTechniqueTag is the data element tag of BrachyTreatmentTechnique BrachyTreatmentTechniqueTag = DataElementTag(0x300A0200) // BrachyTreatmentTypeTag is the data element tag of BrachyTreatmentType BrachyTreatmentTypeTag = DataElementTag(0x300A0202) // TreatmentMachineSequenceTag is the data element tag of TreatmentMachineSequence TreatmentMachineSequenceTag = DataElementTag(0x300A0206) // SourceSequenceTag is the data element tag of SourceSequence SourceSequenceTag = DataElementTag(0x300A0210) // SourceNumberTag is the data element tag of SourceNumber SourceNumberTag = DataElementTag(0x300A0212) // SourceTypeTag is the data element tag of SourceType SourceTypeTag = DataElementTag(0x300A0214) // SourceManufacturerTag is the data element tag of SourceManufacturer SourceManufacturerTag = DataElementTag(0x300A0216) // ActiveSourceDiameterTag is the data element tag of ActiveSourceDiameter ActiveSourceDiameterTag = DataElementTag(0x300A0218) // ActiveSourceLengthTag is the data element tag of ActiveSourceLength ActiveSourceLengthTag = DataElementTag(0x300A021A) // SourceModelIDTag is the data element tag of SourceModelID SourceModelIDTag = DataElementTag(0x300A021B) // SourceDescriptionTag is the data element tag of SourceDescription SourceDescriptionTag = DataElementTag(0x300A021C) // SourceEncapsulationNominalThicknessTag is the data element tag of SourceEncapsulationNominalThickness SourceEncapsulationNominalThicknessTag = DataElementTag(0x300A0222) // SourceEncapsulationNominalTransmissionTag is the data element tag of SourceEncapsulationNominalTransmission SourceEncapsulationNominalTransmissionTag = DataElementTag(0x300A0224) // SourceIsotopeNameTag is the data element tag of SourceIsotopeName SourceIsotopeNameTag = DataElementTag(0x300A0226) // SourceIsotopeHalfLifeTag is the data element tag of SourceIsotopeHalfLife SourceIsotopeHalfLifeTag = DataElementTag(0x300A0228) // SourceStrengthUnitsTag is the data element tag of SourceStrengthUnits SourceStrengthUnitsTag = DataElementTag(0x300A0229) // ReferenceAirKermaRateTag is the data element tag of ReferenceAirKermaRate ReferenceAirKermaRateTag = DataElementTag(0x300A022A) // SourceStrengthTag is the data element tag of SourceStrength SourceStrengthTag = DataElementTag(0x300A022B) // SourceStrengthReferenceDateTag is the data element tag of SourceStrengthReferenceDate SourceStrengthReferenceDateTag = DataElementTag(0x300A022C) // SourceStrengthReferenceTimeTag is the data element tag of SourceStrengthReferenceTime SourceStrengthReferenceTimeTag = DataElementTag(0x300A022E) // ApplicationSetupSequenceTag is the data element tag of ApplicationSetupSequence ApplicationSetupSequenceTag = DataElementTag(0x300A0230) // ApplicationSetupTypeTag is the data element tag of ApplicationSetupType ApplicationSetupTypeTag = DataElementTag(0x300A0232) // ApplicationSetupNumberTag is the data element tag of ApplicationSetupNumber ApplicationSetupNumberTag = DataElementTag(0x300A0234) // ApplicationSetupNameTag is the data element tag of ApplicationSetupName ApplicationSetupNameTag = DataElementTag(0x300A0236) // ApplicationSetupManufacturerTag is the data element tag of ApplicationSetupManufacturer ApplicationSetupManufacturerTag = DataElementTag(0x300A0238) // TemplateNumberTag is the data element tag of TemplateNumber TemplateNumberTag = DataElementTag(0x300A0240) // TemplateTypeTag is the data element tag of TemplateType TemplateTypeTag = DataElementTag(0x300A0242) // TemplateNameTag is the data element tag of TemplateName TemplateNameTag = DataElementTag(0x300A0244) // TotalReferenceAirKermaTag is the data element tag of TotalReferenceAirKerma TotalReferenceAirKermaTag = DataElementTag(0x300A0250) // BrachyAccessoryDeviceSequenceTag is the data element tag of BrachyAccessoryDeviceSequence BrachyAccessoryDeviceSequenceTag = DataElementTag(0x300A0260) // BrachyAccessoryDeviceNumberTag is the data element tag of BrachyAccessoryDeviceNumber BrachyAccessoryDeviceNumberTag = DataElementTag(0x300A0262) // BrachyAccessoryDeviceIDTag is the data element tag of BrachyAccessoryDeviceID BrachyAccessoryDeviceIDTag = DataElementTag(0x300A0263) // BrachyAccessoryDeviceTypeTag is the data element tag of BrachyAccessoryDeviceType BrachyAccessoryDeviceTypeTag = DataElementTag(0x300A0264) // BrachyAccessoryDeviceNameTag is the data element tag of BrachyAccessoryDeviceName BrachyAccessoryDeviceNameTag = DataElementTag(0x300A0266) // BrachyAccessoryDeviceNominalThicknessTag is the data element tag of BrachyAccessoryDeviceNominalThickness BrachyAccessoryDeviceNominalThicknessTag = DataElementTag(0x300A026A) // BrachyAccessoryDeviceNominalTransmissionTag is the data element tag of BrachyAccessoryDeviceNominalTransmission BrachyAccessoryDeviceNominalTransmissionTag = DataElementTag(0x300A026C) // ChannelEffectiveLengthTag is the data element tag of ChannelEffectiveLength ChannelEffectiveLengthTag = DataElementTag(0x300A0271) // ChannelInnerLengthTag is the data element tag of ChannelInnerLength ChannelInnerLengthTag = DataElementTag(0x300A0272) // AfterloaderChannelIDTag is the data element tag of AfterloaderChannelID AfterloaderChannelIDTag = DataElementTag(0x300A0273) // SourceApplicatorTipLengthTag is the data element tag of SourceApplicatorTipLength SourceApplicatorTipLengthTag = DataElementTag(0x300A0274) // ChannelSequenceTag is the data element tag of ChannelSequence ChannelSequenceTag = DataElementTag(0x300A0280) // ChannelNumberTag is the data element tag of ChannelNumber ChannelNumberTag = DataElementTag(0x300A0282) // ChannelLengthTag is the data element tag of ChannelLength ChannelLengthTag = DataElementTag(0x300A0284) // ChannelTotalTimeTag is the data element tag of ChannelTotalTime ChannelTotalTimeTag = DataElementTag(0x300A0286) // SourceMovementTypeTag is the data element tag of SourceMovementType SourceMovementTypeTag = DataElementTag(0x300A0288) // NumberOfPulsesTag is the data element tag of NumberOfPulses NumberOfPulsesTag = DataElementTag(0x300A028A) // PulseRepetitionIntervalTag is the data element tag of PulseRepetitionInterval PulseRepetitionIntervalTag = DataElementTag(0x300A028C) // SourceApplicatorNumberTag is the data element tag of SourceApplicatorNumber SourceApplicatorNumberTag = DataElementTag(0x300A0290) // SourceApplicatorIDTag is the data element tag of SourceApplicatorID SourceApplicatorIDTag = DataElementTag(0x300A0291) // SourceApplicatorTypeTag is the data element tag of SourceApplicatorType SourceApplicatorTypeTag = DataElementTag(0x300A0292) // SourceApplicatorNameTag is the data element tag of SourceApplicatorName SourceApplicatorNameTag = DataElementTag(0x300A0294) // SourceApplicatorLengthTag is the data element tag of SourceApplicatorLength SourceApplicatorLengthTag = DataElementTag(0x300A0296) // SourceApplicatorManufacturerTag is the data element tag of SourceApplicatorManufacturer SourceApplicatorManufacturerTag = DataElementTag(0x300A0298) // SourceApplicatorWallNominalThicknessTag is the data element tag of SourceApplicatorWallNominalThickness SourceApplicatorWallNominalThicknessTag = DataElementTag(0x300A029C) // SourceApplicatorWallNominalTransmissionTag is the data element tag of SourceApplicatorWallNominalTransmission SourceApplicatorWallNominalTransmissionTag = DataElementTag(0x300A029E) // SourceApplicatorStepSizeTag is the data element tag of SourceApplicatorStepSize SourceApplicatorStepSizeTag = DataElementTag(0x300A02A0) // TransferTubeNumberTag is the data element tag of TransferTubeNumber TransferTubeNumberTag = DataElementTag(0x300A02A2) // TransferTubeLengthTag is the data element tag of TransferTubeLength TransferTubeLengthTag = DataElementTag(0x300A02A4) // ChannelShieldSequenceTag is the data element tag of ChannelShieldSequence ChannelShieldSequenceTag = DataElementTag(0x300A02B0) // ChannelShieldNumberTag is the data element tag of ChannelShieldNumber ChannelShieldNumberTag = DataElementTag(0x300A02B2) // ChannelShieldIDTag is the data element tag of ChannelShieldID ChannelShieldIDTag = DataElementTag(0x300A02B3) // ChannelShieldNameTag is the data element tag of ChannelShieldName ChannelShieldNameTag = DataElementTag(0x300A02B4) // ChannelShieldNominalThicknessTag is the data element tag of ChannelShieldNominalThickness ChannelShieldNominalThicknessTag = DataElementTag(0x300A02B8) // ChannelShieldNominalTransmissionTag is the data element tag of ChannelShieldNominalTransmission ChannelShieldNominalTransmissionTag = DataElementTag(0x300A02BA) // FinalCumulativeTimeWeightTag is the data element tag of FinalCumulativeTimeWeight FinalCumulativeTimeWeightTag = DataElementTag(0x300A02C8) // BrachyControlPointSequenceTag is the data element tag of BrachyControlPointSequence BrachyControlPointSequenceTag = DataElementTag(0x300A02D0) // ControlPointRelativePositionTag is the data element tag of ControlPointRelativePosition ControlPointRelativePositionTag = DataElementTag(0x300A02D2) // ControlPoint3DPositionTag is the data element tag of ControlPoint3DPosition ControlPoint3DPositionTag = DataElementTag(0x300A02D4) // CumulativeTimeWeightTag is the data element tag of CumulativeTimeWeight CumulativeTimeWeightTag = DataElementTag(0x300A02D6) // CompensatorDivergenceTag is the data element tag of CompensatorDivergence CompensatorDivergenceTag = DataElementTag(0x300A02E0) // CompensatorMountingPositionTag is the data element tag of CompensatorMountingPosition CompensatorMountingPositionTag = DataElementTag(0x300A02E1) // SourceToCompensatorDistanceTag is the data element tag of SourceToCompensatorDistance SourceToCompensatorDistanceTag = DataElementTag(0x300A02E2) // TotalCompensatorTrayWaterEquivalentThicknessTag is the data element tag of TotalCompensatorTrayWaterEquivalentThickness TotalCompensatorTrayWaterEquivalentThicknessTag = DataElementTag(0x300A02E3) // IsocenterToCompensatorTrayDistanceTag is the data element tag of IsocenterToCompensatorTrayDistance IsocenterToCompensatorTrayDistanceTag = DataElementTag(0x300A02E4) // CompensatorColumnOffsetTag is the data element tag of CompensatorColumnOffset CompensatorColumnOffsetTag = DataElementTag(0x300A02E5) // IsocenterToCompensatorDistancesTag is the data element tag of IsocenterToCompensatorDistances IsocenterToCompensatorDistancesTag = DataElementTag(0x300A02E6) // CompensatorRelativeStoppingPowerRatioTag is the data element tag of CompensatorRelativeStoppingPowerRatio CompensatorRelativeStoppingPowerRatioTag = DataElementTag(0x300A02E7) // CompensatorMillingToolDiameterTag is the data element tag of CompensatorMillingToolDiameter CompensatorMillingToolDiameterTag = DataElementTag(0x300A02E8) // IonRangeCompensatorSequenceTag is the data element tag of IonRangeCompensatorSequence IonRangeCompensatorSequenceTag = DataElementTag(0x300A02EA) // CompensatorDescriptionTag is the data element tag of CompensatorDescription CompensatorDescriptionTag = DataElementTag(0x300A02EB) // RadiationMassNumberTag is the data element tag of RadiationMassNumber RadiationMassNumberTag = DataElementTag(0x300A0302) // RadiationAtomicNumberTag is the data element tag of RadiationAtomicNumber RadiationAtomicNumberTag = DataElementTag(0x300A0304) // RadiationChargeStateTag is the data element tag of RadiationChargeState RadiationChargeStateTag = DataElementTag(0x300A0306) // ScanModeTag is the data element tag of ScanMode ScanModeTag = DataElementTag(0x300A0308) // ModulatedScanModeTypeTag is the data element tag of ModulatedScanModeType ModulatedScanModeTypeTag = DataElementTag(0x300A0309) // VirtualSourceAxisDistancesTag is the data element tag of VirtualSourceAxisDistances VirtualSourceAxisDistancesTag = DataElementTag(0x300A030A) // SnoutSequenceTag is the data element tag of SnoutSequence SnoutSequenceTag = DataElementTag(0x300A030C) // SnoutPositionTag is the data element tag of SnoutPosition SnoutPositionTag = DataElementTag(0x300A030D) // SnoutIDTag is the data element tag of SnoutID SnoutIDTag = DataElementTag(0x300A030F) // NumberOfRangeShiftersTag is the data element tag of NumberOfRangeShifters NumberOfRangeShiftersTag = DataElementTag(0x300A0312) // RangeShifterSequenceTag is the data element tag of RangeShifterSequence RangeShifterSequenceTag = DataElementTag(0x300A0314) // RangeShifterNumberTag is the data element tag of RangeShifterNumber RangeShifterNumberTag = DataElementTag(0x300A0316) // RangeShifterIDTag is the data element tag of RangeShifterID RangeShifterIDTag = DataElementTag(0x300A0318) // RangeShifterTypeTag is the data element tag of RangeShifterType RangeShifterTypeTag = DataElementTag(0x300A0320) // RangeShifterDescriptionTag is the data element tag of RangeShifterDescription RangeShifterDescriptionTag = DataElementTag(0x300A0322) // NumberOfLateralSpreadingDevicesTag is the data element tag of NumberOfLateralSpreadingDevices NumberOfLateralSpreadingDevicesTag = DataElementTag(0x300A0330) // LateralSpreadingDeviceSequenceTag is the data element tag of LateralSpreadingDeviceSequence LateralSpreadingDeviceSequenceTag = DataElementTag(0x300A0332) // LateralSpreadingDeviceNumberTag is the data element tag of LateralSpreadingDeviceNumber LateralSpreadingDeviceNumberTag = DataElementTag(0x300A0334) // LateralSpreadingDeviceIDTag is the data element tag of LateralSpreadingDeviceID LateralSpreadingDeviceIDTag = DataElementTag(0x300A0336) // LateralSpreadingDeviceTypeTag is the data element tag of LateralSpreadingDeviceType LateralSpreadingDeviceTypeTag = DataElementTag(0x300A0338) // LateralSpreadingDeviceDescriptionTag is the data element tag of LateralSpreadingDeviceDescription LateralSpreadingDeviceDescriptionTag = DataElementTag(0x300A033A) // LateralSpreadingDeviceWaterEquivalentThicknessTag is the data element tag of LateralSpreadingDeviceWaterEquivalentThickness LateralSpreadingDeviceWaterEquivalentThicknessTag = DataElementTag(0x300A033C) // NumberOfRangeModulatorsTag is the data element tag of NumberOfRangeModulators NumberOfRangeModulatorsTag = DataElementTag(0x300A0340) // RangeModulatorSequenceTag is the data element tag of RangeModulatorSequence RangeModulatorSequenceTag = DataElementTag(0x300A0342) // RangeModulatorNumberTag is the data element tag of RangeModulatorNumber RangeModulatorNumberTag = DataElementTag(0x300A0344) // RangeModulatorIDTag is the data element tag of RangeModulatorID RangeModulatorIDTag = DataElementTag(0x300A0346) // RangeModulatorTypeTag is the data element tag of RangeModulatorType RangeModulatorTypeTag = DataElementTag(0x300A0348) // RangeModulatorDescriptionTag is the data element tag of RangeModulatorDescription RangeModulatorDescriptionTag = DataElementTag(0x300A034A) // BeamCurrentModulationIDTag is the data element tag of BeamCurrentModulationID BeamCurrentModulationIDTag = DataElementTag(0x300A034C) // PatientSupportTypeTag is the data element tag of PatientSupportType PatientSupportTypeTag = DataElementTag(0x300A0350) // PatientSupportIDTag is the data element tag of PatientSupportID PatientSupportIDTag = DataElementTag(0x300A0352) // PatientSupportAccessoryCodeTag is the data element tag of PatientSupportAccessoryCode PatientSupportAccessoryCodeTag = DataElementTag(0x300A0354) // TrayAccessoryCodeTag is the data element tag of TrayAccessoryCode TrayAccessoryCodeTag = DataElementTag(0x300A0355) // FixationLightAzimuthalAngleTag is the data element tag of FixationLightAzimuthalAngle FixationLightAzimuthalAngleTag = DataElementTag(0x300A0356) // FixationLightPolarAngleTag is the data element tag of FixationLightPolarAngle FixationLightPolarAngleTag = DataElementTag(0x300A0358) // MetersetRateTag is the data element tag of MetersetRate MetersetRateTag = DataElementTag(0x300A035A) // RangeShifterSettingsSequenceTag is the data element tag of RangeShifterSettingsSequence RangeShifterSettingsSequenceTag = DataElementTag(0x300A0360) // RangeShifterSettingTag is the data element tag of RangeShifterSetting RangeShifterSettingTag = DataElementTag(0x300A0362) // IsocenterToRangeShifterDistanceTag is the data element tag of IsocenterToRangeShifterDistance IsocenterToRangeShifterDistanceTag = DataElementTag(0x300A0364) // RangeShifterWaterEquivalentThicknessTag is the data element tag of RangeShifterWaterEquivalentThickness RangeShifterWaterEquivalentThicknessTag = DataElementTag(0x300A0366) // LateralSpreadingDeviceSettingsSequenceTag is the data element tag of LateralSpreadingDeviceSettingsSequence LateralSpreadingDeviceSettingsSequenceTag = DataElementTag(0x300A0370) // LateralSpreadingDeviceSettingTag is the data element tag of LateralSpreadingDeviceSetting LateralSpreadingDeviceSettingTag = DataElementTag(0x300A0372) // IsocenterToLateralSpreadingDeviceDistanceTag is the data element tag of IsocenterToLateralSpreadingDeviceDistance IsocenterToLateralSpreadingDeviceDistanceTag = DataElementTag(0x300A0374) // RangeModulatorSettingsSequenceTag is the data element tag of RangeModulatorSettingsSequence RangeModulatorSettingsSequenceTag = DataElementTag(0x300A0380) // RangeModulatorGatingStartValueTag is the data element tag of RangeModulatorGatingStartValue RangeModulatorGatingStartValueTag = DataElementTag(0x300A0382) // RangeModulatorGatingStopValueTag is the data element tag of RangeModulatorGatingStopValue RangeModulatorGatingStopValueTag = DataElementTag(0x300A0384) // RangeModulatorGatingStartWaterEquivalentThicknessTag is the data element tag of RangeModulatorGatingStartWaterEquivalentThickness RangeModulatorGatingStartWaterEquivalentThicknessTag = DataElementTag(0x300A0386) // RangeModulatorGatingStopWaterEquivalentThicknessTag is the data element tag of RangeModulatorGatingStopWaterEquivalentThickness RangeModulatorGatingStopWaterEquivalentThicknessTag = DataElementTag(0x300A0388) // IsocenterToRangeModulatorDistanceTag is the data element tag of IsocenterToRangeModulatorDistance IsocenterToRangeModulatorDistanceTag = DataElementTag(0x300A038A) // ScanSpotTimeOffsetTag is the data element tag of ScanSpotTimeOffset ScanSpotTimeOffsetTag = DataElementTag(0x300A038F) // ScanSpotTuneIDTag is the data element tag of ScanSpotTuneID ScanSpotTuneIDTag = DataElementTag(0x300A0390) // ScanSpotPrescribedIndicesTag is the data element tag of ScanSpotPrescribedIndices ScanSpotPrescribedIndicesTag = DataElementTag(0x300A0391) // NumberOfScanSpotPositionsTag is the data element tag of NumberOfScanSpotPositions NumberOfScanSpotPositionsTag = DataElementTag(0x300A0392) // ScanSpotReorderedTag is the data element tag of ScanSpotReordered ScanSpotReorderedTag = DataElementTag(0x300A0393) // ScanSpotPositionMapTag is the data element tag of ScanSpotPositionMap ScanSpotPositionMapTag = DataElementTag(0x300A0394) // ScanSpotReorderingAllowedTag is the data element tag of ScanSpotReorderingAllowed ScanSpotReorderingAllowedTag = DataElementTag(0x300A0395) // ScanSpotMetersetWeightsTag is the data element tag of ScanSpotMetersetWeights ScanSpotMetersetWeightsTag = DataElementTag(0x300A0396) // ScanningSpotSizeTag is the data element tag of ScanningSpotSize ScanningSpotSizeTag = DataElementTag(0x300A0398) // NumberOfPaintingsTag is the data element tag of NumberOfPaintings NumberOfPaintingsTag = DataElementTag(0x300A039A) // IonToleranceTableSequenceTag is the data element tag of IonToleranceTableSequence IonToleranceTableSequenceTag = DataElementTag(0x300A03A0) // IonBeamSequenceTag is the data element tag of IonBeamSequence IonBeamSequenceTag = DataElementTag(0x300A03A2) // IonBeamLimitingDeviceSequenceTag is the data element tag of IonBeamLimitingDeviceSequence IonBeamLimitingDeviceSequenceTag = DataElementTag(0x300A03A4) // IonBlockSequenceTag is the data element tag of IonBlockSequence IonBlockSequenceTag = DataElementTag(0x300A03A6) // IonControlPointSequenceTag is the data element tag of IonControlPointSequence IonControlPointSequenceTag = DataElementTag(0x300A03A8) // IonWedgeSequenceTag is the data element tag of IonWedgeSequence IonWedgeSequenceTag = DataElementTag(0x300A03AA) // IonWedgePositionSequenceTag is the data element tag of IonWedgePositionSequence IonWedgePositionSequenceTag = DataElementTag(0x300A03AC) // ReferencedSetupImageSequenceTag is the data element tag of ReferencedSetupImageSequence ReferencedSetupImageSequenceTag = DataElementTag(0x300A0401) // SetupImageCommentTag is the data element tag of SetupImageComment SetupImageCommentTag = DataElementTag(0x300A0402) // MotionSynchronizationSequenceTag is the data element tag of MotionSynchronizationSequence MotionSynchronizationSequenceTag = DataElementTag(0x300A0410) // ControlPointOrientationTag is the data element tag of ControlPointOrientation ControlPointOrientationTag = DataElementTag(0x300A0412) // GeneralAccessorySequenceTag is the data element tag of GeneralAccessorySequence GeneralAccessorySequenceTag = DataElementTag(0x300A0420) // GeneralAccessoryIDTag is the data element tag of GeneralAccessoryID GeneralAccessoryIDTag = DataElementTag(0x300A0421) // GeneralAccessoryDescriptionTag is the data element tag of GeneralAccessoryDescription GeneralAccessoryDescriptionTag = DataElementTag(0x300A0422) // GeneralAccessoryTypeTag is the data element tag of GeneralAccessoryType GeneralAccessoryTypeTag = DataElementTag(0x300A0423) // GeneralAccessoryNumberTag is the data element tag of GeneralAccessoryNumber GeneralAccessoryNumberTag = DataElementTag(0x300A0424) // SourceToGeneralAccessoryDistanceTag is the data element tag of SourceToGeneralAccessoryDistance SourceToGeneralAccessoryDistanceTag = DataElementTag(0x300A0425) // ApplicatorGeometrySequenceTag is the data element tag of ApplicatorGeometrySequence ApplicatorGeometrySequenceTag = DataElementTag(0x300A0431) // ApplicatorApertureShapeTag is the data element tag of ApplicatorApertureShape ApplicatorApertureShapeTag = DataElementTag(0x300A0432) // ApplicatorOpeningTag is the data element tag of ApplicatorOpening ApplicatorOpeningTag = DataElementTag(0x300A0433) // ApplicatorOpeningXTag is the data element tag of ApplicatorOpeningX ApplicatorOpeningXTag = DataElementTag(0x300A0434) // ApplicatorOpeningYTag is the data element tag of ApplicatorOpeningY ApplicatorOpeningYTag = DataElementTag(0x300A0435) // SourceToApplicatorMountingPositionDistanceTag is the data element tag of SourceToApplicatorMountingPositionDistance SourceToApplicatorMountingPositionDistanceTag = DataElementTag(0x300A0436) // NumberOfBlockSlabItemsTag is the data element tag of NumberOfBlockSlabItems NumberOfBlockSlabItemsTag = DataElementTag(0x300A0440) // BlockSlabSequenceTag is the data element tag of BlockSlabSequence BlockSlabSequenceTag = DataElementTag(0x300A0441) // BlockSlabThicknessTag is the data element tag of BlockSlabThickness BlockSlabThicknessTag = DataElementTag(0x300A0442) // BlockSlabNumberTag is the data element tag of BlockSlabNumber BlockSlabNumberTag = DataElementTag(0x300A0443) // DeviceMotionControlSequenceTag is the data element tag of DeviceMotionControlSequence DeviceMotionControlSequenceTag = DataElementTag(0x300A0450) // DeviceMotionExecutionModeTag is the data element tag of DeviceMotionExecutionMode DeviceMotionExecutionModeTag = DataElementTag(0x300A0451) // DeviceMotionObservationModeTag is the data element tag of DeviceMotionObservationMode DeviceMotionObservationModeTag = DataElementTag(0x300A0452) // DeviceMotionParameterCodeSequenceTag is the data element tag of DeviceMotionParameterCodeSequence DeviceMotionParameterCodeSequenceTag = DataElementTag(0x300A0453) // DistalDepthFractionTag is the data element tag of DistalDepthFraction DistalDepthFractionTag = DataElementTag(0x300A0501) // DistalDepthTag is the data element tag of DistalDepth DistalDepthTag = DataElementTag(0x300A0502) // NominalRangeModulationFractionsTag is the data element tag of NominalRangeModulationFractions NominalRangeModulationFractionsTag = DataElementTag(0x300A0503) // NominalRangeModulatedRegionDepthsTag is the data element tag of NominalRangeModulatedRegionDepths NominalRangeModulatedRegionDepthsTag = DataElementTag(0x300A0504) // DepthDoseParametersSequenceTag is the data element tag of DepthDoseParametersSequence DepthDoseParametersSequenceTag = DataElementTag(0x300A0505) // DeliveredDepthDoseParametersSequenceTag is the data element tag of DeliveredDepthDoseParametersSequence DeliveredDepthDoseParametersSequenceTag = DataElementTag(0x300A0506) // DeliveredDistalDepthFractionTag is the data element tag of DeliveredDistalDepthFraction DeliveredDistalDepthFractionTag = DataElementTag(0x300A0507) // DeliveredDistalDepthTag is the data element tag of DeliveredDistalDepth DeliveredDistalDepthTag = DataElementTag(0x300A0508) // DeliveredNominalRangeModulationFractionsTag is the data element tag of DeliveredNominalRangeModulationFractions DeliveredNominalRangeModulationFractionsTag = DataElementTag(0x300A0509) // DeliveredNominalRangeModulatedRegionDepthsTag is the data element tag of DeliveredNominalRangeModulatedRegionDepths DeliveredNominalRangeModulatedRegionDepthsTag = DataElementTag(0x300A0510) // DeliveredReferenceDoseDefinitionTag is the data element tag of DeliveredReferenceDoseDefinition DeliveredReferenceDoseDefinitionTag = DataElementTag(0x300A0511) // ReferenceDoseDefinitionTag is the data element tag of ReferenceDoseDefinition ReferenceDoseDefinitionTag = DataElementTag(0x300A0512) // ReferencedRTPlanSequenceTag is the data element tag of ReferencedRTPlanSequence ReferencedRTPlanSequenceTag = DataElementTag(0x300C0002) // ReferencedBeamSequenceTag is the data element tag of ReferencedBeamSequence ReferencedBeamSequenceTag = DataElementTag(0x300C0004) // ReferencedBeamNumberTag is the data element tag of ReferencedBeamNumber ReferencedBeamNumberTag = DataElementTag(0x300C0006) // ReferencedReferenceImageNumberTag is the data element tag of ReferencedReferenceImageNumber ReferencedReferenceImageNumberTag = DataElementTag(0x300C0007) // StartCumulativeMetersetWeightTag is the data element tag of StartCumulativeMetersetWeight StartCumulativeMetersetWeightTag = DataElementTag(0x300C0008) // EndCumulativeMetersetWeightTag is the data element tag of EndCumulativeMetersetWeight EndCumulativeMetersetWeightTag = DataElementTag(0x300C0009) // ReferencedBrachyApplicationSetupSequenceTag is the data element tag of ReferencedBrachyApplicationSetupSequence ReferencedBrachyApplicationSetupSequenceTag = DataElementTag(0x300C000A) // ReferencedBrachyApplicationSetupNumberTag is the data element tag of ReferencedBrachyApplicationSetupNumber ReferencedBrachyApplicationSetupNumberTag = DataElementTag(0x300C000C) // ReferencedSourceNumberTag is the data element tag of ReferencedSourceNumber ReferencedSourceNumberTag = DataElementTag(0x300C000E) // ReferencedFractionGroupSequenceTag is the data element tag of ReferencedFractionGroupSequence ReferencedFractionGroupSequenceTag = DataElementTag(0x300C0020) // ReferencedFractionGroupNumberTag is the data element tag of ReferencedFractionGroupNumber ReferencedFractionGroupNumberTag = DataElementTag(0x300C0022) // ReferencedVerificationImageSequenceTag is the data element tag of ReferencedVerificationImageSequence ReferencedVerificationImageSequenceTag = DataElementTag(0x300C0040) // ReferencedReferenceImageSequenceTag is the data element tag of ReferencedReferenceImageSequence ReferencedReferenceImageSequenceTag = DataElementTag(0x300C0042) // ReferencedDoseReferenceSequenceTag is the data element tag of ReferencedDoseReferenceSequence ReferencedDoseReferenceSequenceTag = DataElementTag(0x300C0050) // ReferencedDoseReferenceNumberTag is the data element tag of ReferencedDoseReferenceNumber ReferencedDoseReferenceNumberTag = DataElementTag(0x300C0051) // BrachyReferencedDoseReferenceSequenceTag is the data element tag of BrachyReferencedDoseReferenceSequence BrachyReferencedDoseReferenceSequenceTag = DataElementTag(0x300C0055) // ReferencedStructureSetSequenceTag is the data element tag of ReferencedStructureSetSequence ReferencedStructureSetSequenceTag = DataElementTag(0x300C0060) // ReferencedPatientSetupNumberTag is the data element tag of ReferencedPatientSetupNumber ReferencedPatientSetupNumberTag = DataElementTag(0x300C006A) // ReferencedDoseSequenceTag is the data element tag of ReferencedDoseSequence ReferencedDoseSequenceTag = DataElementTag(0x300C0080) // ReferencedToleranceTableNumberTag is the data element tag of ReferencedToleranceTableNumber ReferencedToleranceTableNumberTag = DataElementTag(0x300C00A0) // ReferencedBolusSequenceTag is the data element tag of ReferencedBolusSequence ReferencedBolusSequenceTag = DataElementTag(0x300C00B0) // ReferencedWedgeNumberTag is the data element tag of ReferencedWedgeNumber ReferencedWedgeNumberTag = DataElementTag(0x300C00C0) // ReferencedCompensatorNumberTag is the data element tag of ReferencedCompensatorNumber ReferencedCompensatorNumberTag = DataElementTag(0x300C00D0) // ReferencedBlockNumberTag is the data element tag of ReferencedBlockNumber ReferencedBlockNumberTag = DataElementTag(0x300C00E0) // ReferencedControlPointIndexTag is the data element tag of ReferencedControlPointIndex ReferencedControlPointIndexTag = DataElementTag(0x300C00F0) // ReferencedControlPointSequenceTag is the data element tag of ReferencedControlPointSequence ReferencedControlPointSequenceTag = DataElementTag(0x300C00F2) // ReferencedStartControlPointIndexTag is the data element tag of ReferencedStartControlPointIndex ReferencedStartControlPointIndexTag = DataElementTag(0x300C00F4) // ReferencedStopControlPointIndexTag is the data element tag of ReferencedStopControlPointIndex ReferencedStopControlPointIndexTag = DataElementTag(0x300C00F6) // ReferencedRangeShifterNumberTag is the data element tag of ReferencedRangeShifterNumber ReferencedRangeShifterNumberTag = DataElementTag(0x300C0100) // ReferencedLateralSpreadingDeviceNumberTag is the data element tag of ReferencedLateralSpreadingDeviceNumber ReferencedLateralSpreadingDeviceNumberTag = DataElementTag(0x300C0102) // ReferencedRangeModulatorNumberTag is the data element tag of ReferencedRangeModulatorNumber ReferencedRangeModulatorNumberTag = DataElementTag(0x300C0104) // OmittedBeamTaskSequenceTag is the data element tag of OmittedBeamTaskSequence OmittedBeamTaskSequenceTag = DataElementTag(0x300C0111) // ReasonForOmissionTag is the data element tag of ReasonForOmission ReasonForOmissionTag = DataElementTag(0x300C0112) // ReasonForOmissionDescriptionTag is the data element tag of ReasonForOmissionDescription ReasonForOmissionDescriptionTag = DataElementTag(0x300C0113) // ApprovalStatusTag is the data element tag of ApprovalStatus ApprovalStatusTag = DataElementTag(0x300E0002) // ReviewDateTag is the data element tag of ReviewDate ReviewDateTag = DataElementTag(0x300E0004) // ReviewTimeTag is the data element tag of ReviewTime ReviewTimeTag = DataElementTag(0x300E0005) // ReviewerNameTag is the data element tag of ReviewerName ReviewerNameTag = DataElementTag(0x300E0008) // RadiobiologicalDoseEffectSequenceTag is the data element tag of RadiobiologicalDoseEffectSequence RadiobiologicalDoseEffectSequenceTag = DataElementTag(0x30100001) // RadiobiologicalDoseEffectFlagTag is the data element tag of RadiobiologicalDoseEffectFlag RadiobiologicalDoseEffectFlagTag = DataElementTag(0x30100002) // EffectiveDoseCalculationMethodCategoryCodeSequenceTag is the data element tag of EffectiveDoseCalculationMethodCategoryCodeSequence EffectiveDoseCalculationMethodCategoryCodeSequenceTag = DataElementTag(0x30100003) // EffectiveDoseCalculationMethodCodeSequenceTag is the data element tag of EffectiveDoseCalculationMethodCodeSequence EffectiveDoseCalculationMethodCodeSequenceTag = DataElementTag(0x30100004) // EffectiveDoseCalculationMethodDescriptionTag is the data element tag of EffectiveDoseCalculationMethodDescription EffectiveDoseCalculationMethodDescriptionTag = DataElementTag(0x30100005) // ConceptualVolumeUIDTag is the data element tag of ConceptualVolumeUID ConceptualVolumeUIDTag = DataElementTag(0x30100006) // OriginatingSOPInstanceReferenceSequenceTag is the data element tag of OriginatingSOPInstanceReferenceSequence OriginatingSOPInstanceReferenceSequenceTag = DataElementTag(0x30100007) // ConceptualVolumeConstituentSequenceTag is the data element tag of ConceptualVolumeConstituentSequence ConceptualVolumeConstituentSequenceTag = DataElementTag(0x30100008) // EquivalentConceptualVolumeInstanceReferenceSequenceTag is the data element tag of EquivalentConceptualVolumeInstanceReferenceSequence EquivalentConceptualVolumeInstanceReferenceSequenceTag = DataElementTag(0x30100009) // EquivalentConceptualVolumesSequenceTag is the data element tag of EquivalentConceptualVolumesSequence EquivalentConceptualVolumesSequenceTag = DataElementTag(0x3010000A) // ReferencedConceptualVolumeUIDTag is the data element tag of ReferencedConceptualVolumeUID ReferencedConceptualVolumeUIDTag = DataElementTag(0x3010000B) // ConceptualVolumeCombinationExpressionTag is the data element tag of ConceptualVolumeCombinationExpression ConceptualVolumeCombinationExpressionTag = DataElementTag(0x3010000C) // ConceptualVolumeConstituentIndexTag is the data element tag of ConceptualVolumeConstituentIndex ConceptualVolumeConstituentIndexTag = DataElementTag(0x3010000D) // ConceptualVolumeCombinationFlagTag is the data element tag of ConceptualVolumeCombinationFlag ConceptualVolumeCombinationFlagTag = DataElementTag(0x3010000E) // ConceptualVolumeCombinationDescriptionTag is the data element tag of ConceptualVolumeCombinationDescription ConceptualVolumeCombinationDescriptionTag = DataElementTag(0x3010000F) // ConceptualVolumeSegmentationDefinedFlagTag is the data element tag of ConceptualVolumeSegmentationDefinedFlag ConceptualVolumeSegmentationDefinedFlagTag = DataElementTag(0x30100010) // ConceptualVolumeSegmentationReferenceSequenceTag is the data element tag of ConceptualVolumeSegmentationReferenceSequence ConceptualVolumeSegmentationReferenceSequenceTag = DataElementTag(0x30100011) // ConceptualVolumeConstituentSegmentationReferenceSequenceTag is the data element tag of ConceptualVolumeConstituentSegmentationReferenceSequence ConceptualVolumeConstituentSegmentationReferenceSequenceTag = DataElementTag(0x30100012) // ConstituentConceptualVolumeUIDTag is the data element tag of ConstituentConceptualVolumeUID ConstituentConceptualVolumeUIDTag = DataElementTag(0x30100013) // DerivationConceptualVolumeSequenceTag is the data element tag of DerivationConceptualVolumeSequence DerivationConceptualVolumeSequenceTag = DataElementTag(0x30100014) // SourceConceptualVolumeUIDTag is the data element tag of SourceConceptualVolumeUID SourceConceptualVolumeUIDTag = DataElementTag(0x30100015) // ConceptualVolumeDerivationAlgorithmSequenceTag is the data element tag of ConceptualVolumeDerivationAlgorithmSequence ConceptualVolumeDerivationAlgorithmSequenceTag = DataElementTag(0x30100016) // ConceptualVolumeDescriptionTag is the data element tag of ConceptualVolumeDescription ConceptualVolumeDescriptionTag = DataElementTag(0x30100017) // SourceConceptualVolumeSequenceTag is the data element tag of SourceConceptualVolumeSequence SourceConceptualVolumeSequenceTag = DataElementTag(0x30100018) // AuthorIdentificationSequenceTag is the data element tag of AuthorIdentificationSequence AuthorIdentificationSequenceTag = DataElementTag(0x30100019) // ManufacturerModelVersionTag is the data element tag of ManufacturerModelVersion ManufacturerModelVersionTag = DataElementTag(0x3010001A) // DeviceAlternateIdentifierTag is the data element tag of DeviceAlternateIdentifier DeviceAlternateIdentifierTag = DataElementTag(0x3010001B) // DeviceAlternateIdentifierTypeTag is the data element tag of DeviceAlternateIdentifierType DeviceAlternateIdentifierTypeTag = DataElementTag(0x3010001C) // DeviceAlternateIdentifierFormatTag is the data element tag of DeviceAlternateIdentifierFormat DeviceAlternateIdentifierFormatTag = DataElementTag(0x3010001D) // SegmentationCreationTemplateLabelTag is the data element tag of SegmentationCreationTemplateLabel SegmentationCreationTemplateLabelTag = DataElementTag(0x3010001E) // SegmentationTemplateUIDTag is the data element tag of SegmentationTemplateUID SegmentationTemplateUIDTag = DataElementTag(0x3010001F) // ReferencedSegmentReferenceIndexTag is the data element tag of ReferencedSegmentReferenceIndex ReferencedSegmentReferenceIndexTag = DataElementTag(0x30100020) // SegmentReferenceSequenceTag is the data element tag of SegmentReferenceSequence SegmentReferenceSequenceTag = DataElementTag(0x30100021) // SegmentReferenceIndexTag is the data element tag of SegmentReferenceIndex SegmentReferenceIndexTag = DataElementTag(0x30100022) // DirectSegmentReferenceSequenceTag is the data element tag of DirectSegmentReferenceSequence DirectSegmentReferenceSequenceTag = DataElementTag(0x30100023) // CombinationSegmentReferenceSequenceTag is the data element tag of CombinationSegmentReferenceSequence CombinationSegmentReferenceSequenceTag = DataElementTag(0x30100024) // ConceptualVolumeSequenceTag is the data element tag of ConceptualVolumeSequence ConceptualVolumeSequenceTag = DataElementTag(0x30100025) // SegmentedRTAccessoryDeviceSequenceTag is the data element tag of SegmentedRTAccessoryDeviceSequence SegmentedRTAccessoryDeviceSequenceTag = DataElementTag(0x30100026) // SegmentCharacteristicsSequenceTag is the data element tag of SegmentCharacteristicsSequence SegmentCharacteristicsSequenceTag = DataElementTag(0x30100027) // RelatedSegmentCharacteristicsSequenceTag is the data element tag of RelatedSegmentCharacteristicsSequence RelatedSegmentCharacteristicsSequenceTag = DataElementTag(0x30100028) // SegmentCharacteristicsPrecedenceTag is the data element tag of SegmentCharacteristicsPrecedence SegmentCharacteristicsPrecedenceTag = DataElementTag(0x30100029) // RTSegmentAnnotationSequenceTag is the data element tag of RTSegmentAnnotationSequence RTSegmentAnnotationSequenceTag = DataElementTag(0x3010002A) // SegmentAnnotationCategoryCodeSequenceTag is the data element tag of SegmentAnnotationCategoryCodeSequence SegmentAnnotationCategoryCodeSequenceTag = DataElementTag(0x3010002B) // SegmentAnnotationTypeCodeSequenceTag is the data element tag of SegmentAnnotationTypeCodeSequence SegmentAnnotationTypeCodeSequenceTag = DataElementTag(0x3010002C) // DeviceLabelTag is the data element tag of DeviceLabel DeviceLabelTag = DataElementTag(0x3010002D) // DeviceTypeCodeSequenceTag is the data element tag of DeviceTypeCodeSequence DeviceTypeCodeSequenceTag = DataElementTag(0x3010002E) // PatientEquipmentRelationshipCodeSequenceTag is the data element tag of PatientEquipmentRelationshipCodeSequence PatientEquipmentRelationshipCodeSequenceTag = DataElementTag(0x30100030) // ReferencedFiducialsUIDTag is the data element tag of ReferencedFiducialsUID ReferencedFiducialsUIDTag = DataElementTag(0x30100031) // PatientTreatmentOrientationSequenceTag is the data element tag of PatientTreatmentOrientationSequence PatientTreatmentOrientationSequenceTag = DataElementTag(0x30100032) // UserContentLabelTag is the data element tag of UserContentLabel UserContentLabelTag = DataElementTag(0x30100033) // UserContentLongLabelTag is the data element tag of UserContentLongLabel UserContentLongLabelTag = DataElementTag(0x30100034) // EntityLabelTag is the data element tag of EntityLabel EntityLabelTag = DataElementTag(0x30100035) // EntityNameTag is the data element tag of EntityName EntityNameTag = DataElementTag(0x30100036) // EntityDescriptionTag is the data element tag of EntityDescription EntityDescriptionTag = DataElementTag(0x30100037) // EntityLongLabelTag is the data element tag of EntityLongLabel EntityLongLabelTag = DataElementTag(0x30100038) // DeviceIndexTag is the data element tag of DeviceIndex DeviceIndexTag = DataElementTag(0x30100039) // RTTreatmentPhaseIndexTag is the data element tag of RTTreatmentPhaseIndex RTTreatmentPhaseIndexTag = DataElementTag(0x3010003A) // RTTreatmentPhaseUIDTag is the data element tag of RTTreatmentPhaseUID RTTreatmentPhaseUIDTag = DataElementTag(0x3010003B) // RTPrescriptionIndexTag is the data element tag of RTPrescriptionIndex RTPrescriptionIndexTag = DataElementTag(0x3010003C) // RTSegmentAnnotationIndexTag is the data element tag of RTSegmentAnnotationIndex RTSegmentAnnotationIndexTag = DataElementTag(0x3010003D) // BasisRTTreatmentPhaseIndexTag is the data element tag of BasisRTTreatmentPhaseIndex BasisRTTreatmentPhaseIndexTag = DataElementTag(0x3010003E) // RelatedRTTreatmentPhaseIndexTag is the data element tag of RelatedRTTreatmentPhaseIndex RelatedRTTreatmentPhaseIndexTag = DataElementTag(0x3010003F) // ReferencedRTTreatmentPhaseIndexTag is the data element tag of ReferencedRTTreatmentPhaseIndex ReferencedRTTreatmentPhaseIndexTag = DataElementTag(0x30100040) // ReferencedRTPrescriptionIndexTag is the data element tag of ReferencedRTPrescriptionIndex ReferencedRTPrescriptionIndexTag = DataElementTag(0x30100041) // ReferencedParentRTPrescriptionIndexTag is the data element tag of ReferencedParentRTPrescriptionIndex ReferencedParentRTPrescriptionIndexTag = DataElementTag(0x30100042) // ManufacturerDeviceIdentifierTag is the data element tag of ManufacturerDeviceIdentifier ManufacturerDeviceIdentifierTag = DataElementTag(0x30100043) // InstanceLevelReferencedPerformedProcedureStepSequenceTag is the data element tag of InstanceLevelReferencedPerformedProcedureStepSequence InstanceLevelReferencedPerformedProcedureStepSequenceTag = DataElementTag(0x30100044) // RTTreatmentPhaseIntentPresenceFlagTag is the data element tag of RTTreatmentPhaseIntentPresenceFlag RTTreatmentPhaseIntentPresenceFlagTag = DataElementTag(0x30100045) // RadiotherapyTreatmentTypeTag is the data element tag of RadiotherapyTreatmentType RadiotherapyTreatmentTypeTag = DataElementTag(0x30100046) // TeletherapyRadiationTypeTag is the data element tag of TeletherapyRadiationType TeletherapyRadiationTypeTag = DataElementTag(0x30100047) // BrachytherapySourceTypeTag is the data element tag of BrachytherapySourceType BrachytherapySourceTypeTag = DataElementTag(0x30100048) // ReferencedRTTreatmentPhaseSequenceTag is the data element tag of ReferencedRTTreatmentPhaseSequence ReferencedRTTreatmentPhaseSequenceTag = DataElementTag(0x30100049) // ReferencedDirectSegmentInstanceSequenceTag is the data element tag of ReferencedDirectSegmentInstanceSequence ReferencedDirectSegmentInstanceSequenceTag = DataElementTag(0x3010004A) // IntendedRTTreatmentPhaseSequenceTag is the data element tag of IntendedRTTreatmentPhaseSequence IntendedRTTreatmentPhaseSequenceTag = DataElementTag(0x3010004B) // IntendedPhaseStartDateTag is the data element tag of IntendedPhaseStartDate IntendedPhaseStartDateTag = DataElementTag(0x3010004C) // IntendedPhaseEndDateTag is the data element tag of IntendedPhaseEndDate IntendedPhaseEndDateTag = DataElementTag(0x3010004D) // RTTreatmentPhaseIntervalSequenceTag is the data element tag of RTTreatmentPhaseIntervalSequence RTTreatmentPhaseIntervalSequenceTag = DataElementTag(0x3010004E) // TemporalRelationshipIntervalAnchorTag is the data element tag of TemporalRelationshipIntervalAnchor TemporalRelationshipIntervalAnchorTag = DataElementTag(0x3010004F) // MinimumNumberOfIntervalDaysTag is the data element tag of MinimumNumberOfIntervalDays MinimumNumberOfIntervalDaysTag = DataElementTag(0x30100050) // MaximumNumberOfIntervalDaysTag is the data element tag of MaximumNumberOfIntervalDays MaximumNumberOfIntervalDaysTag = DataElementTag(0x30100051) // PertinentSOPClassesInStudyTag is the data element tag of PertinentSOPClassesInStudy PertinentSOPClassesInStudyTag = DataElementTag(0x30100052) // PertinentSOPClassesInSeriesTag is the data element tag of PertinentSOPClassesInSeries PertinentSOPClassesInSeriesTag = DataElementTag(0x30100053) // RTPrescriptionLabelTag is the data element tag of RTPrescriptionLabel RTPrescriptionLabelTag = DataElementTag(0x30100054) // RTPhysicianIntentPredecessorSequenceTag is the data element tag of RTPhysicianIntentPredecessorSequence RTPhysicianIntentPredecessorSequenceTag = DataElementTag(0x30100055) // RTTreatmentApproachLabelTag is the data element tag of RTTreatmentApproachLabel RTTreatmentApproachLabelTag = DataElementTag(0x30100056) // RTPhysicianIntentSequenceTag is the data element tag of RTPhysicianIntentSequence RTPhysicianIntentSequenceTag = DataElementTag(0x30100057) // RTPhysicianIntentIndexTag is the data element tag of RTPhysicianIntentIndex RTPhysicianIntentIndexTag = DataElementTag(0x30100058) // RTTreatmentIntentTypeTag is the data element tag of RTTreatmentIntentType RTTreatmentIntentTypeTag = DataElementTag(0x30100059) // RTPhysicianIntentNarrativeTag is the data element tag of RTPhysicianIntentNarrative RTPhysicianIntentNarrativeTag = DataElementTag(0x3010005A) // RTProtocolCodeSequenceTag is the data element tag of RTProtocolCodeSequence RTProtocolCodeSequenceTag = DataElementTag(0x3010005B) // ReasonForSupersedingTag is the data element tag of ReasonForSuperseding ReasonForSupersedingTag = DataElementTag(0x3010005C) // RTDiagnosisCodeSequenceTag is the data element tag of RTDiagnosisCodeSequence RTDiagnosisCodeSequenceTag = DataElementTag(0x3010005D) // ReferencedRTPhysicianIntentIndexTag is the data element tag of ReferencedRTPhysicianIntentIndex ReferencedRTPhysicianIntentIndexTag = DataElementTag(0x3010005E) // RTPhysicianIntentInputInstanceSequenceTag is the data element tag of RTPhysicianIntentInputInstanceSequence RTPhysicianIntentInputInstanceSequenceTag = DataElementTag(0x3010005F) // RTAnatomicPrescriptionSequenceTag is the data element tag of RTAnatomicPrescriptionSequence RTAnatomicPrescriptionSequenceTag = DataElementTag(0x30100060) // PriorTreatmentDoseDescriptionTag is the data element tag of PriorTreatmentDoseDescription PriorTreatmentDoseDescriptionTag = DataElementTag(0x30100061) // PriorTreatmentReferenceSequenceTag is the data element tag of PriorTreatmentReferenceSequence PriorTreatmentReferenceSequenceTag = DataElementTag(0x30100062) // DosimetricObjectiveEvaluationScopeTag is the data element tag of DosimetricObjectiveEvaluationScope DosimetricObjectiveEvaluationScopeTag = DataElementTag(0x30100063) // TherapeuticRoleCategoryCodeSequenceTag is the data element tag of TherapeuticRoleCategoryCodeSequence TherapeuticRoleCategoryCodeSequenceTag = DataElementTag(0x30100064) // TherapeuticRoleTypeCodeSequenceTag is the data element tag of TherapeuticRoleTypeCodeSequence TherapeuticRoleTypeCodeSequenceTag = DataElementTag(0x30100065) // ConceptualVolumeOptimizationPrecedenceTag is the data element tag of ConceptualVolumeOptimizationPrecedence ConceptualVolumeOptimizationPrecedenceTag = DataElementTag(0x30100066) // ConceptualVolumeCategoryCodeSequenceTag is the data element tag of ConceptualVolumeCategoryCodeSequence ConceptualVolumeCategoryCodeSequenceTag = DataElementTag(0x30100067) // ConceptualVolumeBlockingConstraintTag is the data element tag of ConceptualVolumeBlockingConstraint ConceptualVolumeBlockingConstraintTag = DataElementTag(0x30100068) // ConceptualVolumeTypeCodeSequenceTag is the data element tag of ConceptualVolumeTypeCodeSequence ConceptualVolumeTypeCodeSequenceTag = DataElementTag(0x30100069) // ConceptualVolumeTypeModifierCodeSequenceTag is the data element tag of ConceptualVolumeTypeModifierCodeSequence ConceptualVolumeTypeModifierCodeSequenceTag = DataElementTag(0x3010006A) // RTPrescriptionSequenceTag is the data element tag of RTPrescriptionSequence RTPrescriptionSequenceTag = DataElementTag(0x3010006B) // DosimetricObjectiveSequenceTag is the data element tag of DosimetricObjectiveSequence DosimetricObjectiveSequenceTag = DataElementTag(0x3010006C) // DosimetricObjectiveTypeCodeSequenceTag is the data element tag of DosimetricObjectiveTypeCodeSequence DosimetricObjectiveTypeCodeSequenceTag = DataElementTag(0x3010006D) // DosimetricObjectiveUIDTag is the data element tag of DosimetricObjectiveUID DosimetricObjectiveUIDTag = DataElementTag(0x3010006E) // ReferencedDosimetricObjectiveUIDTag is the data element tag of ReferencedDosimetricObjectiveUID ReferencedDosimetricObjectiveUIDTag = DataElementTag(0x3010006F) // DosimetricObjectiveParameterSequenceTag is the data element tag of DosimetricObjectiveParameterSequence DosimetricObjectiveParameterSequenceTag = DataElementTag(0x30100070) // ReferencedDosimetricObjectivesSequenceTag is the data element tag of ReferencedDosimetricObjectivesSequence ReferencedDosimetricObjectivesSequenceTag = DataElementTag(0x30100071) // AbsoluteDosimetricObjectiveFlagTag is the data element tag of AbsoluteDosimetricObjectiveFlag AbsoluteDosimetricObjectiveFlagTag = DataElementTag(0x30100073) // DosimetricObjectiveWeightTag is the data element tag of DosimetricObjectiveWeight DosimetricObjectiveWeightTag = DataElementTag(0x30100074) // DosimetricObjectivePurposeTag is the data element tag of DosimetricObjectivePurpose DosimetricObjectivePurposeTag = DataElementTag(0x30100075) // PlanningInputInformationSequenceTag is the data element tag of PlanningInputInformationSequence PlanningInputInformationSequenceTag = DataElementTag(0x30100076) // TreatmentSiteTag is the data element tag of TreatmentSite TreatmentSiteTag = DataElementTag(0x30100077) // TreatmentSiteCodeSequenceTag is the data element tag of TreatmentSiteCodeSequence TreatmentSiteCodeSequenceTag = DataElementTag(0x30100078) // FractionPatternSequenceTag is the data element tag of FractionPatternSequence FractionPatternSequenceTag = DataElementTag(0x30100079) // TreatmentTechniqueNotesTag is the data element tag of TreatmentTechniqueNotes TreatmentTechniqueNotesTag = DataElementTag(0x3010007A) // PrescriptionNotesTag is the data element tag of PrescriptionNotes PrescriptionNotesTag = DataElementTag(0x3010007B) // NumberOfIntervalFractionsTag is the data element tag of NumberOfIntervalFractions NumberOfIntervalFractionsTag = DataElementTag(0x3010007C) // NumberOfFractionsTag is the data element tag of NumberOfFractions NumberOfFractionsTag = DataElementTag(0x3010007D) // IntendedDeliveryDurationTag is the data element tag of IntendedDeliveryDuration IntendedDeliveryDurationTag = DataElementTag(0x3010007E) // FractionationNotesTag is the data element tag of FractionationNotes FractionationNotesTag = DataElementTag(0x3010007F) // RTTreatmentTechniqueCodeSequenceTag is the data element tag of RTTreatmentTechniqueCodeSequence RTTreatmentTechniqueCodeSequenceTag = DataElementTag(0x30100080) // PrescriptionNotesSequenceTag is the data element tag of PrescriptionNotesSequence PrescriptionNotesSequenceTag = DataElementTag(0x30100081) // FractionBasedRelationshipSequenceTag is the data element tag of FractionBasedRelationshipSequence FractionBasedRelationshipSequenceTag = DataElementTag(0x30100082) // FractionBasedRelationshipIntervalAnchorTag is the data element tag of FractionBasedRelationshipIntervalAnchor FractionBasedRelationshipIntervalAnchorTag = DataElementTag(0x30100083) // MinimumHoursBetweenFractionsTag is the data element tag of MinimumHoursBetweenFractions MinimumHoursBetweenFractionsTag = DataElementTag(0x30100084) // IntendedFractionStartTimeTag is the data element tag of IntendedFractionStartTime IntendedFractionStartTimeTag = DataElementTag(0x30100085) // IntendedStartDayOfWeekTag is the data element tag of IntendedStartDayOfWeek IntendedStartDayOfWeekTag = DataElementTag(0x30100086) // WeekdayFractionPatternSequenceTag is the data element tag of WeekdayFractionPatternSequence WeekdayFractionPatternSequenceTag = DataElementTag(0x30100087) // DeliveryTimeStructureCodeSequenceTag is the data element tag of DeliveryTimeStructureCodeSequence DeliveryTimeStructureCodeSequenceTag = DataElementTag(0x30100088) // ArbitraryTag is the data element tag of Arbitrary ArbitraryTag = DataElementTag(0x40000010) // TextCommentsTag is the data element tag of TextComments TextCommentsTag = DataElementTag(0x40004000) // ResultsIDTag is the data element tag of ResultsID ResultsIDTag = DataElementTag(0x40080040) // ResultsIDIssuerTag is the data element tag of ResultsIDIssuer ResultsIDIssuerTag = DataElementTag(0x40080042) // ReferencedInterpretationSequenceTag is the data element tag of ReferencedInterpretationSequence ReferencedInterpretationSequenceTag = DataElementTag(0x40080050) // ReportProductionStatusTrialTag is the data element tag of ReportProductionStatusTrial ReportProductionStatusTrialTag = DataElementTag(0x400800FF) // InterpretationRecordedDateTag is the data element tag of InterpretationRecordedDate InterpretationRecordedDateTag = DataElementTag(0x40080100) // InterpretationRecordedTimeTag is the data element tag of InterpretationRecordedTime InterpretationRecordedTimeTag = DataElementTag(0x40080101) // InterpretationRecorderTag is the data element tag of InterpretationRecorder InterpretationRecorderTag = DataElementTag(0x40080102) // ReferenceToRecordedSoundTag is the data element tag of ReferenceToRecordedSound ReferenceToRecordedSoundTag = DataElementTag(0x40080103) // InterpretationTranscriptionDateTag is the data element tag of InterpretationTranscriptionDate InterpretationTranscriptionDateTag = DataElementTag(0x40080108) // InterpretationTranscriptionTimeTag is the data element tag of InterpretationTranscriptionTime InterpretationTranscriptionTimeTag = DataElementTag(0x40080109) // InterpretationTranscriberTag is the data element tag of InterpretationTranscriber InterpretationTranscriberTag = DataElementTag(0x4008010A) // InterpretationTextTag is the data element tag of InterpretationText InterpretationTextTag = DataElementTag(0x4008010B) // InterpretationAuthorTag is the data element tag of InterpretationAuthor InterpretationAuthorTag = DataElementTag(0x4008010C) // InterpretationApproverSequenceTag is the data element tag of InterpretationApproverSequence InterpretationApproverSequenceTag = DataElementTag(0x40080111) // InterpretationApprovalDateTag is the data element tag of InterpretationApprovalDate InterpretationApprovalDateTag = DataElementTag(0x40080112) // InterpretationApprovalTimeTag is the data element tag of InterpretationApprovalTime InterpretationApprovalTimeTag = DataElementTag(0x40080113) // PhysicianApprovingInterpretationTag is the data element tag of PhysicianApprovingInterpretation PhysicianApprovingInterpretationTag = DataElementTag(0x40080114) // InterpretationDiagnosisDescriptionTag is the data element tag of InterpretationDiagnosisDescription InterpretationDiagnosisDescriptionTag = DataElementTag(0x40080115) // InterpretationDiagnosisCodeSequenceTag is the data element tag of InterpretationDiagnosisCodeSequence InterpretationDiagnosisCodeSequenceTag = DataElementTag(0x40080117) // ResultsDistributionListSequenceTag is the data element tag of ResultsDistributionListSequence ResultsDistributionListSequenceTag = DataElementTag(0x40080118) // DistributionNameTag is the data element tag of DistributionName DistributionNameTag = DataElementTag(0x40080119) // DistributionAddressTag is the data element tag of DistributionAddress DistributionAddressTag = DataElementTag(0x4008011A) // InterpretationIDTag is the data element tag of InterpretationID InterpretationIDTag = DataElementTag(0x40080200) // InterpretationIDIssuerTag is the data element tag of InterpretationIDIssuer InterpretationIDIssuerTag = DataElementTag(0x40080202) // InterpretationTypeIDTag is the data element tag of InterpretationTypeID InterpretationTypeIDTag = DataElementTag(0x40080210) // InterpretationStatusIDTag is the data element tag of InterpretationStatusID InterpretationStatusIDTag = DataElementTag(0x40080212) // ImpressionsTag is the data element tag of Impressions ImpressionsTag = DataElementTag(0x40080300) // ResultsCommentsTag is the data element tag of ResultsComments ResultsCommentsTag = DataElementTag(0x40084000) // LowEnergyDetectorsTag is the data element tag of LowEnergyDetectors LowEnergyDetectorsTag = DataElementTag(0x40100001) // HighEnergyDetectorsTag is the data element tag of HighEnergyDetectors HighEnergyDetectorsTag = DataElementTag(0x40100002) // DetectorGeometrySequenceTag is the data element tag of DetectorGeometrySequence DetectorGeometrySequenceTag = DataElementTag(0x40100004) // ThreatROIVoxelSequenceTag is the data element tag of ThreatROIVoxelSequence ThreatROIVoxelSequenceTag = DataElementTag(0x40101001) // ThreatROIBaseTag is the data element tag of ThreatROIBase ThreatROIBaseTag = DataElementTag(0x40101004) // ThreatROIExtentsTag is the data element tag of ThreatROIExtents ThreatROIExtentsTag = DataElementTag(0x40101005) // ThreatROIBitmapTag is the data element tag of ThreatROIBitmap ThreatROIBitmapTag = DataElementTag(0x40101006) // RouteSegmentIDTag is the data element tag of RouteSegmentID RouteSegmentIDTag = DataElementTag(0x40101007) // GantryTypeTag is the data element tag of GantryType GantryTypeTag = DataElementTag(0x40101008) // OOIOwnerTypeTag is the data element tag of OOIOwnerType OOIOwnerTypeTag = DataElementTag(0x40101009) // RouteSegmentSequenceTag is the data element tag of RouteSegmentSequence RouteSegmentSequenceTag = DataElementTag(0x4010100A) // PotentialThreatObjectIDTag is the data element tag of PotentialThreatObjectID PotentialThreatObjectIDTag = DataElementTag(0x40101010) // ThreatSequenceTag is the data element tag of ThreatSequence ThreatSequenceTag = DataElementTag(0x40101011) // ThreatCategoryTag is the data element tag of ThreatCategory ThreatCategoryTag = DataElementTag(0x40101012) // ThreatCategoryDescriptionTag is the data element tag of ThreatCategoryDescription ThreatCategoryDescriptionTag = DataElementTag(0x40101013) // ATDAbilityAssessmentTag is the data element tag of ATDAbilityAssessment ATDAbilityAssessmentTag = DataElementTag(0x40101014) // ATDAssessmentFlagTag is the data element tag of ATDAssessmentFlag ATDAssessmentFlagTag = DataElementTag(0x40101015) // ATDAssessmentProbabilityTag is the data element tag of ATDAssessmentProbability ATDAssessmentProbabilityTag = DataElementTag(0x40101016) // MassTag is the data element tag of Mass MassTag = DataElementTag(0x40101017) // DensityTag is the data element tag of Density DensityTag = DataElementTag(0x40101018) // ZEffectiveTag is the data element tag of ZEffective ZEffectiveTag = DataElementTag(0x40101019) // BoardingPassIDTag is the data element tag of BoardingPassID BoardingPassIDTag = DataElementTag(0x4010101A) // CenterOfMassTag is the data element tag of CenterOfMass CenterOfMassTag = DataElementTag(0x4010101B) // CenterOfPTOTag is the data element tag of CenterOfPTO CenterOfPTOTag = DataElementTag(0x4010101C) // BoundingPolygonTag is the data element tag of BoundingPolygon BoundingPolygonTag = DataElementTag(0x4010101D) // RouteSegmentStartLocationIDTag is the data element tag of RouteSegmentStartLocationID RouteSegmentStartLocationIDTag = DataElementTag(0x4010101E) // RouteSegmentEndLocationIDTag is the data element tag of RouteSegmentEndLocationID RouteSegmentEndLocationIDTag = DataElementTag(0x4010101F) // RouteSegmentLocationIDTypeTag is the data element tag of RouteSegmentLocationIDType RouteSegmentLocationIDTypeTag = DataElementTag(0x40101020) // AbortReasonTag is the data element tag of AbortReason AbortReasonTag = DataElementTag(0x40101021) // VolumeOfPTOTag is the data element tag of VolumeOfPTO VolumeOfPTOTag = DataElementTag(0x40101023) // AbortFlagTag is the data element tag of AbortFlag AbortFlagTag = DataElementTag(0x40101024) // RouteSegmentStartTimeTag is the data element tag of RouteSegmentStartTime RouteSegmentStartTimeTag = DataElementTag(0x40101025) // RouteSegmentEndTimeTag is the data element tag of RouteSegmentEndTime RouteSegmentEndTimeTag = DataElementTag(0x40101026) // TDRTypeTag is the data element tag of TDRType TDRTypeTag = DataElementTag(0x40101027) // InternationalRouteSegmentTag is the data element tag of InternationalRouteSegment InternationalRouteSegmentTag = DataElementTag(0x40101028) // ThreatDetectionAlgorithmandVersionTag is the data element tag of ThreatDetectionAlgorithmandVersion ThreatDetectionAlgorithmandVersionTag = DataElementTag(0x40101029) // AssignedLocationTag is the data element tag of AssignedLocation AssignedLocationTag = DataElementTag(0x4010102A) // AlarmDecisionTimeTag is the data element tag of AlarmDecisionTime AlarmDecisionTimeTag = DataElementTag(0x4010102B) // AlarmDecisionTag is the data element tag of AlarmDecision AlarmDecisionTag = DataElementTag(0x40101031) // NumberOfTotalObjectsTag is the data element tag of NumberOfTotalObjects NumberOfTotalObjectsTag = DataElementTag(0x40101033) // NumberOfAlarmObjectsTag is the data element tag of NumberOfAlarmObjects NumberOfAlarmObjectsTag = DataElementTag(0x40101034) // PTORepresentationSequenceTag is the data element tag of PTORepresentationSequence PTORepresentationSequenceTag = DataElementTag(0x40101037) // ATDAssessmentSequenceTag is the data element tag of ATDAssessmentSequence ATDAssessmentSequenceTag = DataElementTag(0x40101038) // TIPTypeTag is the data element tag of TIPType TIPTypeTag = DataElementTag(0x40101039) // DICOSVersionTag is the data element tag of DICOSVersion DICOSVersionTag = DataElementTag(0x4010103A) // OOIOwnerCreationTimeTag is the data element tag of OOIOwnerCreationTime OOIOwnerCreationTimeTag = DataElementTag(0x40101041) // OOITypeTag is the data element tag of OOIType OOITypeTag = DataElementTag(0x40101042) // OOISizeTag is the data element tag of OOISize OOISizeTag = DataElementTag(0x40101043) // AcquisitionStatusTag is the data element tag of AcquisitionStatus AcquisitionStatusTag = DataElementTag(0x40101044) // BasisMaterialsCodeSequenceTag is the data element tag of BasisMaterialsCodeSequence BasisMaterialsCodeSequenceTag = DataElementTag(0x40101045) // PhantomTypeTag is the data element tag of PhantomType PhantomTypeTag = DataElementTag(0x40101046) // OOIOwnerSequenceTag is the data element tag of OOIOwnerSequence OOIOwnerSequenceTag = DataElementTag(0x40101047) // ScanTypeTag is the data element tag of ScanType ScanTypeTag = DataElementTag(0x40101048) // ItineraryIDTag is the data element tag of ItineraryID ItineraryIDTag = DataElementTag(0x40101051) // ItineraryIDTypeTag is the data element tag of ItineraryIDType ItineraryIDTypeTag = DataElementTag(0x40101052) // ItineraryIDAssigningAuthorityTag is the data element tag of ItineraryIDAssigningAuthority ItineraryIDAssigningAuthorityTag = DataElementTag(0x40101053) // RouteIDTag is the data element tag of RouteID RouteIDTag = DataElementTag(0x40101054) // RouteIDAssigningAuthorityTag is the data element tag of RouteIDAssigningAuthority RouteIDAssigningAuthorityTag = DataElementTag(0x40101055) // InboundArrivalTypeTag is the data element tag of InboundArrivalType InboundArrivalTypeTag = DataElementTag(0x40101056) // CarrierIDTag is the data element tag of CarrierID CarrierIDTag = DataElementTag(0x40101058) // CarrierIDAssigningAuthorityTag is the data element tag of CarrierIDAssigningAuthority CarrierIDAssigningAuthorityTag = DataElementTag(0x40101059) // SourceOrientationTag is the data element tag of SourceOrientation SourceOrientationTag = DataElementTag(0x40101060) // SourcePositionTag is the data element tag of SourcePosition SourcePositionTag = DataElementTag(0x40101061) // BeltHeightTag is the data element tag of BeltHeight BeltHeightTag = DataElementTag(0x40101062) // AlgorithmRoutingCodeSequenceTag is the data element tag of AlgorithmRoutingCodeSequence AlgorithmRoutingCodeSequenceTag = DataElementTag(0x40101064) // TransportClassificationTag is the data element tag of TransportClassification TransportClassificationTag = DataElementTag(0x40101067) // OOITypeDescriptorTag is the data element tag of OOITypeDescriptor OOITypeDescriptorTag = DataElementTag(0x40101068) // TotalProcessingTimeTag is the data element tag of TotalProcessingTime TotalProcessingTimeTag = DataElementTag(0x40101069) // DetectorCalibrationDataTag is the data element tag of DetectorCalibrationData DetectorCalibrationDataTag = DataElementTag(0x4010106C) // AdditionalScreeningPerformedTag is the data element tag of AdditionalScreeningPerformed AdditionalScreeningPerformedTag = DataElementTag(0x4010106D) // AdditionalInspectionSelectionCriteriaTag is the data element tag of AdditionalInspectionSelectionCriteria AdditionalInspectionSelectionCriteriaTag = DataElementTag(0x4010106E) // AdditionalInspectionMethodSequenceTag is the data element tag of AdditionalInspectionMethodSequence AdditionalInspectionMethodSequenceTag = DataElementTag(0x4010106F) // AITDeviceTypeTag is the data element tag of AITDeviceType AITDeviceTypeTag = DataElementTag(0x40101070) // QRMeasurementsSequenceTag is the data element tag of QRMeasurementsSequence QRMeasurementsSequenceTag = DataElementTag(0x40101071) // TargetMaterialSequenceTag is the data element tag of TargetMaterialSequence TargetMaterialSequenceTag = DataElementTag(0x40101072) // SNRThresholdTag is the data element tag of SNRThreshold SNRThresholdTag = DataElementTag(0x40101073) // ImageScaleRepresentationTag is the data element tag of ImageScaleRepresentation ImageScaleRepresentationTag = DataElementTag(0x40101075) // ReferencedPTOSequenceTag is the data element tag of ReferencedPTOSequence ReferencedPTOSequenceTag = DataElementTag(0x40101076) // ReferencedTDRInstanceSequenceTag is the data element tag of ReferencedTDRInstanceSequence ReferencedTDRInstanceSequenceTag = DataElementTag(0x40101077) // PTOLocationDescriptionTag is the data element tag of PTOLocationDescription PTOLocationDescriptionTag = DataElementTag(0x40101078) // AnomalyLocatorIndicatorSequenceTag is the data element tag of AnomalyLocatorIndicatorSequence AnomalyLocatorIndicatorSequenceTag = DataElementTag(0x40101079) // AnomalyLocatorIndicatorTag is the data element tag of AnomalyLocatorIndicator AnomalyLocatorIndicatorTag = DataElementTag(0x4010107A) // PTORegionSequenceTag is the data element tag of PTORegionSequence PTORegionSequenceTag = DataElementTag(0x4010107B) // InspectionSelectionCriteriaTag is the data element tag of InspectionSelectionCriteria InspectionSelectionCriteriaTag = DataElementTag(0x4010107C) // SecondaryInspectionMethodSequenceTag is the data element tag of SecondaryInspectionMethodSequence SecondaryInspectionMethodSequenceTag = DataElementTag(0x4010107D) // PRCSToRCSOrientationTag is the data element tag of PRCSToRCSOrientation PRCSToRCSOrientationTag = DataElementTag(0x4010107E) // MACParametersSequenceTag is the data element tag of MACParametersSequence MACParametersSequenceTag = DataElementTag(0x4FFE0001) // CurveDimensionsTag is the data element tag of CurveDimensions CurveDimensionsTag = DataElementTag(0x50000005) // NumberOfPointsTag is the data element tag of NumberOfPoints NumberOfPointsTag = DataElementTag(0x50000010) // TypeOfDataTag is the data element tag of TypeOfData TypeOfDataTag = DataElementTag(0x50000020) // CurveDescriptionTag is the data element tag of CurveDescription CurveDescriptionTag = DataElementTag(0x50000022) // AxisUnitsTag is the data element tag of AxisUnits AxisUnitsTag = DataElementTag(0x50000030) // AxisLabelsTag is the data element tag of AxisLabels AxisLabelsTag = DataElementTag(0x50000040) // DataValueRepresentationTag is the data element tag of DataValueRepresentation DataValueRepresentationTag = DataElementTag(0x50000103) // MinimumCoordinateValueTag is the data element tag of MinimumCoordinateValue MinimumCoordinateValueTag = DataElementTag(0x50000104) // MaximumCoordinateValueTag is the data element tag of MaximumCoordinateValue MaximumCoordinateValueTag = DataElementTag(0x50000105) // CurveRangeTag is the data element tag of CurveRange CurveRangeTag = DataElementTag(0x50000106) // CurveDataDescriptorTag is the data element tag of CurveDataDescriptor CurveDataDescriptorTag = DataElementTag(0x50000110) // CoordinateStartValueTag is the data element tag of CoordinateStartValue CoordinateStartValueTag = DataElementTag(0x50000112) // CoordinateStepValueTag is the data element tag of CoordinateStepValue CoordinateStepValueTag = DataElementTag(0x50000114) // CurveActivationLayerTag is the data element tag of CurveActivationLayer CurveActivationLayerTag = DataElementTag(0x50001001) // AudioTypeTag is the data element tag of AudioType AudioTypeTag = DataElementTag(0x50002000) // AudioSampleFormatTag is the data element tag of AudioSampleFormat AudioSampleFormatTag = DataElementTag(0x50002002) // NumberOfChannelsTag is the data element tag of NumberOfChannels NumberOfChannelsTag = DataElementTag(0x50002004) // NumberOfSamplesTag is the data element tag of NumberOfSamples NumberOfSamplesTag = DataElementTag(0x50002006) // SampleRateTag is the data element tag of SampleRate SampleRateTag = DataElementTag(0x50002008) // TotalTimeTag is the data element tag of TotalTime TotalTimeTag = DataElementTag(0x5000200A) // AudioSampleDataTag is the data element tag of AudioSampleData AudioSampleDataTag = DataElementTag(0x5000200C) // AudioCommentsTag is the data element tag of AudioComments AudioCommentsTag = DataElementTag(0x5000200E) // CurveLabelTag is the data element tag of CurveLabel CurveLabelTag = DataElementTag(0x50002500) // CurveReferencedOverlaySequenceTag is the data element tag of CurveReferencedOverlaySequence CurveReferencedOverlaySequenceTag = DataElementTag(0x50002600) // CurveReferencedOverlayGroupTag is the data element tag of CurveReferencedOverlayGroup CurveReferencedOverlayGroupTag = DataElementTag(0x50002610) // CurveDataTag is the data element tag of CurveData CurveDataTag = DataElementTag(0x50003000) SharedFunctionalGroupsSequenceTag = DataElementTag(0x52009229) // PerFrameFunctionalGroupsSequenceTag is the data element tag of PerFrameFunctionalGroupsSequence PerFrameFunctionalGroupsSequenceTag = DataElementTag(0x52009230) // WaveformSequenceTag is the data element tag of WaveformSequence WaveformSequenceTag = DataElementTag(0x54000100) // ChannelMinimumValueTag is the data element tag of ChannelMinimumValue ChannelMinimumValueTag = DataElementTag(0x54000110) // ChannelMaximumValueTag is the data element tag of ChannelMaximumValue ChannelMaximumValueTag = DataElementTag(0x54000112) // WaveformBitsAllocatedTag is the data element tag of WaveformBitsAllocated WaveformBitsAllocatedTag = DataElementTag(0x54001004) // WaveformSampleInterpretationTag is the data element tag of WaveformSampleInterpretation WaveformSampleInterpretationTag = DataElementTag(0x54001006) // WaveformPaddingValueTag is the data element tag of WaveformPaddingValue WaveformPaddingValueTag = DataElementTag(0x5400100A) // WaveformDataTag is the data element tag of WaveformData WaveformDataTag = DataElementTag(0x54001010) // FirstOrderPhaseCorrectionAngleTag is the data element tag of FirstOrderPhaseCorrectionAngle FirstOrderPhaseCorrectionAngleTag = DataElementTag(0x56000010) // SpectroscopyDataTag is the data element tag of SpectroscopyData SpectroscopyDataTag = DataElementTag(0x56000020) // OverlayRowsTag is the data element tag of OverlayRows OverlayRowsTag = DataElementTag(0x60000010) // OverlayColumnsTag is the data element tag of OverlayColumns OverlayColumnsTag = DataElementTag(0x60000011) // OverlayPlanesTag is the data element tag of OverlayPlanes OverlayPlanesTag = DataElementTag(0x60000012) // NumberOfFramesInOverlayTag is the data element tag of NumberOfFramesInOverlay NumberOfFramesInOverlayTag = DataElementTag(0x60000015) // OverlayDescriptionTag is the data element tag of OverlayDescription OverlayDescriptionTag = DataElementTag(0x60000022) // OverlayTypeTag is the data element tag of OverlayType OverlayTypeTag = DataElementTag(0x60000040) // OverlaySubtypeTag is the data element tag of OverlaySubtype OverlaySubtypeTag = DataElementTag(0x60000045) // OverlayOriginTag is the data element tag of OverlayOrigin OverlayOriginTag = DataElementTag(0x60000050) // ImageFrameOriginTag is the data element tag of ImageFrameOrigin ImageFrameOriginTag = DataElementTag(0x60000051) // OverlayPlaneOriginTag is the data element tag of OverlayPlaneOrigin OverlayPlaneOriginTag = DataElementTag(0x60000052) // OverlayCompressionCodeTag is the data element tag of OverlayCompressionCode OverlayCompressionCodeTag = DataElementTag(0x60000060) // OverlayCompressionOriginatorTag is the data element tag of OverlayCompressionOriginator OverlayCompressionOriginatorTag = DataElementTag(0x60000061) // OverlayCompressionLabelTag is the data element tag of OverlayCompressionLabel OverlayCompressionLabelTag = DataElementTag(0x60000062) // OverlayCompressionDescriptionTag is the data element tag of OverlayCompressionDescription OverlayCompressionDescriptionTag = DataElementTag(0x60000063) // OverlayCompressionStepPointersTag is the data element tag of OverlayCompressionStepPointers OverlayCompressionStepPointersTag = DataElementTag(0x60000066) // OverlayRepeatIntervalTag is the data element tag of OverlayRepeatInterval OverlayRepeatIntervalTag = DataElementTag(0x60000068) // OverlayBitsGroupedTag is the data element tag of OverlayBitsGrouped OverlayBitsGroupedTag = DataElementTag(0x60000069) // OverlayBitsAllocatedTag is the data element tag of OverlayBitsAllocated OverlayBitsAllocatedTag = DataElementTag(0x60000100) // OverlayBitPositionTag is the data element tag of OverlayBitPosition OverlayBitPositionTag = DataElementTag(0x60000102) // OverlayFormatTag is the data element tag of OverlayFormat OverlayFormatTag = DataElementTag(0x60000110) // OverlayLocationTag is the data element tag of OverlayLocation OverlayLocationTag = DataElementTag(0x60000200) // OverlayCodeLabelTag is the data element tag of OverlayCodeLabel OverlayCodeLabelTag = DataElementTag(0x60000800) // OverlayNumberOfTablesTag is the data element tag of OverlayNumberOfTables OverlayNumberOfTablesTag = DataElementTag(0x60000802) // OverlayCodeTableLocationTag is the data element tag of OverlayCodeTableLocation OverlayCodeTableLocationTag = DataElementTag(0x60000803) // OverlayBitsForCodeWordTag is the data element tag of OverlayBitsForCodeWord OverlayBitsForCodeWordTag = DataElementTag(0x60000804) // OverlayActivationLayerTag is the data element tag of OverlayActivationLayer OverlayActivationLayerTag = DataElementTag(0x60001001) // OverlayDescriptorGrayTag is the data element tag of OverlayDescriptorGray OverlayDescriptorGrayTag = DataElementTag(0x60001100) // OverlayDescriptorRedTag is the data element tag of OverlayDescriptorRed OverlayDescriptorRedTag = DataElementTag(0x60001101) // OverlayDescriptorGreenTag is the data element tag of OverlayDescriptorGreen OverlayDescriptorGreenTag = DataElementTag(0x60001102) // OverlayDescriptorBlueTag is the data element tag of OverlayDescriptorBlue OverlayDescriptorBlueTag = DataElementTag(0x60001103) // OverlaysGrayTag is the data element tag of OverlaysGray OverlaysGrayTag = DataElementTag(0x60001200) // OverlaysRedTag is the data element tag of OverlaysRed OverlaysRedTag = DataElementTag(0x60001201) // OverlaysGreenTag is the data element tag of OverlaysGreen OverlaysGreenTag = DataElementTag(0x60001202) // OverlaysBlueTag is the data element tag of OverlaysBlue OverlaysBlueTag = DataElementTag(0x60001203) // ROIAreaTag is the data element tag of ROIArea ROIAreaTag = DataElementTag(0x60001301) // ROIMeanTag is the data element tag of ROIMean ROIMeanTag = DataElementTag(0x60001302) // ROIStandardDeviationTag is the data element tag of ROIStandardDeviation ROIStandardDeviationTag = DataElementTag(0x60001303) // OverlayLabelTag is the data element tag of OverlayLabel OverlayLabelTag = DataElementTag(0x60001500) // OverlayDataTag is the data element tag of OverlayData OverlayDataTag = DataElementTag(0x60003000) // OverlayCommentsTag is the data element tag of OverlayComments OverlayCommentsTag = DataElementTag(0x60004000) // VariablePixelDataTag is the data element tag of VariablePixelData VariablePixelDataTag = DataElementTag(0x7F000010) // VariableNextDataGroupTag is the data element tag of VariableNextDataGroup VariableNextDataGroupTag = DataElementTag(0x7F000011) // VariableCoefficientsSDVNTag is the data element tag of VariableCoefficientsSDVN VariableCoefficientsSDVNTag = DataElementTag(0x7F000020) // VariableCoefficientsSDHNTag is the data element tag of VariableCoefficientsSDHN VariableCoefficientsSDHNTag = DataElementTag(0x7F000030) // VariableCoefficientsSDDNTag is the data element tag of VariableCoefficientsSDDN VariableCoefficientsSDDNTag = DataElementTag(0x7F000040) // ExtendedOffsetTableTag is the data element tag of ExtendedOffsetTable ExtendedOffsetTableTag = DataElementTag(0x7FE00001) // ExtendedOffsetTableLengthsTag is the data element tag of ExtendedOffsetTableLengths ExtendedOffsetTableLengthsTag = DataElementTag(0x7FE00002) // FloatPixelDataTag is the data element tag of FloatPixelData FloatPixelDataTag = DataElementTag(0x7FE00008) // DoubleFloatPixelDataTag is the data element tag of DoubleFloatPixelData DoubleFloatPixelDataTag = DataElementTag(0x7FE00009) // PixelDataTag is the data element tag of PixelData PixelDataTag = DataElementTag(0x7FE00010) // CoefficientsSDVNTag is the data element tag of CoefficientsSDVN CoefficientsSDVNTag = DataElementTag(0x7FE00020) // CoefficientsSDHNTag is the data element tag of CoefficientsSDHN CoefficientsSDHNTag = DataElementTag(0x7FE00030) // CoefficientsSDDNTag is the data element tag of CoefficientsSDDN CoefficientsSDDNTag = DataElementTag(0x7FE00040) // DigitalSignaturesSequenceTag is the data element tag of DigitalSignaturesSequence DigitalSignaturesSequenceTag = DataElementTag(0xFFFAFFFA) // DataSetTrailingPaddingTag is the data element tag of DataSetTrailingPadding DataSetTrailingPaddingTag = DataElementTag(0xFFFCFFFC) // ItemTag is the data element tag of Item ItemTag = DataElementTag(0xFFFEE000) // ItemDelimitationItemTag is the data element tag of ItemDelimitationItem ItemDelimitationItemTag = DataElementTag(0xFFFEE00D) // SequenceDelimitationItemTag is the data element tag of SequenceDelimitationItem SequenceDelimitationItemTag = DataElementTag(0xFFFEE0DD) )
const ( // ImplicitVRLittleEndianUID is the Implicit VR Little Endian UID ImplicitVRLittleEndianUID = "1.2.840.10008.1.2" // ExplicitVRLittleEndianUID is the Explicit VR Little Endian UID ExplicitVRLittleEndianUID = "1.2.840.10008.1.2.1" // ExplicitVRBigEndianUID is the Explicit VR Big Endian UID ExplicitVRBigEndianUID = "1.2.840.10008.1.2.2" // DeflatedExplicitVRLittleEndianUID is the Deflated Explicit VR Little Endian UID DeflatedExplicitVRLittleEndianUID = "1.2.840.10008.1.2.1.99" // JPEGBaselineUID is the JPEG Baseline (Process 1) transfer syntax UID JPEGBaselineUID = "1.2.840.10008.1.2.4.50" )
list of transfer syntaxes obtained from http://dicom.nema.org/medical/dicom/current/output/html/part06.html#chapter_A
const UndefinedLength = 0xffffffff
UndefinedLength as specified http://dicom.nema.org/medical/dicom/current/output/html/part05.html#sect_7.1.1
Variables ¶
var ( // textual VRs CSVR = newVR("CS", textVR) SHVR = newVR("SH", textVR) LOVR = newVR("LO", textVR) STVR = newVR("ST", textVR) LTVR = newVR("LT", textVR) ASVR = newVR("AS", textVR) // person name PNVR = newVR("PN", textVR) // application entity AEVR = newVR("AE", textVR) // dates/time VR DAVR = newVR("DA", textVR) TMVR = newVR("TM", textVR) DTVR = newVR("DT", textVR) // textual numbers ISVR = newVR("IS", textVR) DSVR = newVR("DS", textVR) // binary numbers SSVR = newVR("SS", numberBinaryVR) USVR = newVR("US", numberBinaryVR) SLVR = newVR("SL", numberBinaryVR) ULVR = newVR("UL", numberBinaryVR) FLVR = newVR("FL", numberBinaryVR) FDVR = newVR("FD", numberBinaryVR) // large binary sequences OBVR = newVR("OB", bulkDataVR) ODVR = newVR("OD", bulkDataVR) OLVR = newVR("OL", bulkDataVR) OWVR = newVR("OW", bulkDataVR) OFVR = newVR("OF", bulkDataVR) // unlimited char UCVR = newVR("UC", bulkDataVR) // unknown UNVR = newVR("UN", bulkDataVR) // URL URVR = newVR("UR", bulkDataVR) // unlimited text UTVR = newVR("UT", bulkDataVR) // attribute tag ATVR = newVR("AT", tagVR) // unique identifier UIVR = newVR("UI", uniqueIdentifierVR) // sequence SQVR = newVR("SQ", sequenceVR) )
VR list obtained from http://dicom.nema.org/medical/dicom/current/output/html/part05.html#sect_6.2
var DropBasicOffsetTable = ParseOptionWithTransform(func(element *DataElement) (*DataElement, error) { iter, ok := element.ValueField.(BulkDataIterator) if !ok { return element, nil } if element.ValueLength == UndefinedLength && element.Tag == PixelDataTag { if _, err := iter.Next(); err != nil { return nil, fmt.Errorf("discarding offset table: %v", err) } } return element, nil })
DropBasicOffsetTable will exclude the basic offset table fragment from pixel data encoded using the encapsulated (compressed) format. For more information on the offset table and encapsulated formats please see http://dicom.nema.org/medical/dicom/current/output/html/part05.html#sect_A.4.
var DropGroupLengths = ParseOptionWithTransform(func(element *DataElement) (*DataElement, error) { if element.Tag.ElementNumber() == 0 { return nil, nil } return element, nil })
DropGroupLengths will exclude all group length elements (gggg,0000) from the returned DataSet
var ExplicitLengths = ConstructOptionWithTransform(func(element *DataElement) (*DataElement, error) { var clearUndefinedLengths func(elem *DataElement) clearUndefinedLengths = func(elem *DataElement) { if seq, ok := elem.ValueField.(*Sequence); ok { elem.ValueLength = 0 for _, item := range seq.Items { item.Length = 0 for _, itemElem := range item.Elements { clearUndefinedLengths(itemElem) } } } } clearUndefinedLengths(element) return element, nil })
ExplicitLengths ensures all sequences and sequence items are written with explicit length. This option should be applied after all other options. This behaviour when used in conjunction with UndefinedLengths is undefined.
var UndefinedLengths = ConstructOptionWithTransform(func(element *DataElement) (*DataElement, error) { if seq, ok := element.ValueField.(*Sequence); ok { element.ValueLength = UndefinedLength for _, item := range seq.Items { item.Length = UndefinedLength } } return element, nil })
UndefinedLengths ensures all sequences and sequence items are written with undefined length. This option should be applied after all other options. The behaviour when used in conjunction with ExplicitLengths is undefined.
var VRLookupMap = map[string]*VR{}
VRLookupMap is a mapping of VR Names to their VR
Functions ¶
func CollectFragments ¶
func CollectFragments(iter BulkDataIterator) ([][]byte, error)
CollectFragments returns the sequence of byte slices defined by the sequence of BulkDataReaders in the BulkDataIterator. The BulkDataIterator will be closed.
func Construct ¶
func Construct(w io.Writer, dataSet *DataSet, opts ...ConstructOption) error
Construct writes the given *DataSet as a DICOM file to the given io.Writer. The desired transfer syntax must be specified as a transfer syntax DataElement (0002,0010) within the *DataSet.
*DataElements that contain nil VRs are filled in from the DICOM Data Dictionary. The ValueLength of DataElements are re-calculated to enforce consistency with their ValueFields. The calculation will default to explicit length unless a DataElement specifies undefined length.
By default, there is no validation against the DICOM standard of any form.
func DefaultBulkDataDefinition ¶
func DefaultBulkDataDefinition(elem *DataElement) bool
DefaultBulkDataDefinition returns true if and only if the tag corresponds to a data element contains that contains large non-metadata fields
func GetName ¶
func GetName(t DataElementTag) string
Types ¶
type BulkDataBuffer ¶
type BulkDataBuffer interface { DataElementValue // Data returns a reference to the underlying data in the BulkDataBuffer. Implementations shall // guarantee O(1) complexity. Data() [][]byte // Length returns the total length of this bulk data. // Will *not* add a padding byte. // May return UndefinedLength for encapsulated data. Always returns >= 0 with // 0 indicating an empty buffer. Length() int64 // contains filtered or unexported methods }
BulkDataBuffer represents a contiguous sequence of bytes buffered into memory from a file
func NewBulkDataBuffer ¶
func NewBulkDataBuffer(b ...[]byte) BulkDataBuffer
NewBulkDataBuffer returns a DataElementValue representing a raw sequence of bytes.
func NewEncapsulatedFormatBuffer ¶
func NewEncapsulatedFormatBuffer(offsetTable []byte, fragments ...[]byte) BulkDataBuffer
NewEncapsulatedFormatBuffer returns a DataElementValue representing the encapsulated image format. The offset table is assumed to be the basic offset table fragment and fragments is assumed to be the remaining image fragments (excluding the basic offset table fragment). To specify no offsetTable, offsetTable can be set to an empty slice.
type BulkDataIterator ¶
type BulkDataIterator interface { // Next returns the next BulkDataReader in the iterator and discards all bytes from all previous // BulkDataReaders returned from Next. If there are no remaining BulkDataReader in the iterator, // the error io.EOF is returned Next() (*BulkDataReader, error) // Close discards all remaining BulkDataReaders in the iterator. Any previously returned // BulkDataReaders from calls to Next are also emptied. Close() error // ToBuffer converts the BulkDataIterator into its equivalent BulkDataBuffer. Behaviour after // Next has been called is undefined. This will close the iterator. ToBuffer() (BulkDataBuffer, error) // Length returns the total length of this BulkData. // Will *not* add a padding byte. // May return -1 if length is unknown or UndefinedLength for encapsulate // data. Required to be >= 0 when Constructing a DataSet with a // BulkDataIterator. See specific implementations for how to specify // explicit length. Length() int64 // contains filtered or unexported methods }
BulkDataIterator represents a sequence of BulkDataReaders.
func NewBulkDataIterator ¶
func NewBulkDataIterator(r io.Reader, offset int64) BulkDataIterator
NewBulkDataIterator returns a BulkDataIterator with a single BulkDataReader described by r and offset. Offset can safely be set to 0 with the understanding that the BulkDataReaders won't have the proper offset set.
func NewBulkDataIteratorWithLength ¶
func NewBulkDataIteratorWithLength(r io.Reader, offset, length int64) BulkDataIterator
NewBulkDataIteratorWithLength returns a BulkDataIterator with an explicit length. A length is required when Constructing a DataSet and native bulk data must write out an explicit length before the bulk data.
func NewEncapsulatedFormatIterator ¶
func NewEncapsulatedFormatIterator(r io.Reader, offset int64) BulkDataIterator
NewEncapsulatedFormatIterator returns an iterator over byte fragments. r must read the ValueField of a DataElement in the encapsulated format as described in the DICOM standard part5 linked below. offset is the number of bytes preceding the ValueField in the DICOM file. http://dicom.nema.org/medical/dicom/current/output/html/part05.html#sect_A.4
type BulkDataReader ¶
type BulkDataReader struct { io.Reader // Offset is the number of bytes in the file preceding the bulk data described // by the BulkDataReader Offset int64 }
BulkDataReader represents a streamable contiguous sequence of bytes within a file
func (*BulkDataReader) Close ¶
func (r *BulkDataReader) Close() error
Close discards all bytes in the reader
type BulkDataReference ¶
type BulkDataReference struct {
Reference ByteRegion
}
BulkDataReference describes the location of a contiguous sequence of bytes in a file
func CollectFragmentReferences ¶
func CollectFragmentReferences(iter BulkDataIterator) ([]BulkDataReference, error)
CollectFragmentReferences returns the sequence of BulkDataReferences defined by the sequence of BulkDataReaders in the BulkDataIterator. The given BulkDataIterator will be closed.
type ByteRegion ¶
ByteRegion is a contiguous sequence of bytes in a file described by an Offset and a length
type ConstructOption ¶
type ConstructOption struct {
// contains filtered or unexported fields
}
ConstructOption configures how the Construct function behaves
func ConstructOptionWithTransform ¶
func ConstructOptionWithTransform(transform func(element *DataElement) (*DataElement, error)) ConstructOption
ConstructOptionWithTransform returns a construct option that applies the given transformation to each DataElement before it is written to the DICOM file. For sequence DataElements, the transform is applied to the parent DataElement first before being applied to its children (i.e. the transform is applied to DataElements in pre-order)
After all the ConstructOptions are applied to a DataElement, the length of the DataElement is re-calculated and VRs added from the DICOM data dictionary if the DataElement has a nil VR. The length re-calculation will default to explicit lengths unless a DataElement specifies undefined length in its ValueLength field.
type DataElement ¶
type DataElement struct { Tag DataElementTag // Value Representation VR *VR // ValueField represents the field within a Data Element that contains its value(s) // Can be any of of the following types: // []string, // []int16, // []uint16, // []int32, // []uint32, // []float32, // []float64 // []BulkDataReference // BulkDataBuffer // BulkDataIterator // *Sequence // SequenceIterator ValueField DataElementValue // ValueLength is equal to the length of the ValueField in bytes. // Can be equal to 0xFFFFFFFF to represent an undefined length: // http://dicom.nema.org/medical/dicom/current/output/html/part05.html#sect_7.1.1 ValueLength uint32 }
DataElement models a DICOM Data Element as defined in http://dicom.nema.org/medical/dicom/current/output/html/part05.html#sect_3.10
func (*DataElement) IntValue ¶
func (e *DataElement) IntValue() (int64, error)
IntValue returns the first value of ValueField as an int64 if it can safely do so. If it cannot safely do so, an error is returned.
Note since DICOM does not support binary integers larger than 32-bits. This is safe as long as there is no integer string that overflows an int64.
func (*DataElement) String ¶
func (e *DataElement) String() string
func (*DataElement) StringValue ¶
func (e *DataElement) StringValue() (string, error)
StringValue value returns the first element of ValueField as a string if ValueField is a string slice with at least 1 value. If this is not the case, an error is returned.
type DataElementIterator ¶
type DataElementIterator interface { // Next returns the next DataElement in the DataSet. If there is no next DataElement, the // error io.EOF is returned. In Addition, if any previously returned DataElements contained // iterable objects like SequenceIterator, BulkDataIterator, these iterators are emptied. Next() (*DataElement, error) // Close discards all remaining DataElements in the iterator Close() error // Length returns the number of bytes of the DataSet defined by elements in the iterator. Can // be equal to UndefinedLength (or equivalently 0xFFFFFFFF) to represent undefined length Length() uint32 // contains filtered or unexported methods }
DataElementIterator represents an iterator over a DataSet's DataElements
Example ¶
r, err := os.Open("multiframe_image.dcm") if err != nil { fmt.Println(err) return } iter, err := NewDataElementIterator(r) if err != nil { fmt.Println(err) return } defer iter.Close() for element, err := iter.Next(); err != io.EOF; element, err = iter.Next() { if element.Tag != PixelDataTag { // skip elements until pixel data is encountered continue } if fragments, ok := element.ValueField.(BulkDataIterator); ok { for fragment, err := fragments.Next(); err != io.EOF; fragment, err = fragments.Next() { io.ReadAll(fragment) // process image fragment } } }
Output:
func NewDataElementIterator ¶
func NewDataElementIterator(r io.Reader) (DataElementIterator, error)
NewDataElementIterator creates a DataElementIterator from a DICOM file. The implementation returned will consume input from the io.Reader given as needed. It is the callers responsibility to ensure that Close is called when done consuming DataElements.
type DataElementTag ¶
type DataElementTag uint32
DataElementTag is a unique identifier for a Data Element composed of an unordered pair of numbers called the group number and the element number as specified in http://dicom.nema.org/medical/dicom/current/output/html/part05.html#sect_3.10.
The least significant 16 bits is the element number. The most significant 16 bits is the group number.
func (DataElementTag) DictionaryVR ¶
func (t DataElementTag) DictionaryVR() *VR
DictionaryVR returns the VR of this DataElementTag as defined in the DICOM data dictionary http://dicom.nema.org/medical/dicom/current/output/html/part06.html. When the dictionary specifies multiple VRs, the last one in VR row is chosen. If the tag cannot be found in the data dictionary, UNVR is returned.
func (DataElementTag) ElementNumber ¶
func (t DataElementTag) ElementNumber() uint16
ElementNumber returns the element number component of the DataElementTag
func (DataElementTag) GroupNumber ¶
func (t DataElementTag) GroupNumber() uint16
GroupNumber returns the group number component of the DataElementTag
func (DataElementTag) IsMetaElement ¶
func (t DataElementTag) IsMetaElement() bool
IsMetaElement returns true if the DataElementTag is a file meta element as defined in http://dicom.nema.org/medical/dicom/current/output/html/part10.html#sect_7.1
func (DataElementTag) IsPrivate ¶
func (t DataElementTag) IsPrivate() bool
IsPrivate returns true if the DataElementTag is a private data element as defined in http://dicom.nema.org/medical/dicom/current/output/html/part05.html#sect_7.8.1
func (DataElementTag) IsPrivateCreator ¶
func (t DataElementTag) IsPrivateCreator() bool
IsPrivateCreator returns true if the DataElementTag is a private creator element as specified in http://dicom.nema.org/medical/dicom/current/output/html/part05.html#sect_7.8.1
func (DataElementTag) String ¶
func (t DataElementTag) String() string
type DataElementValue ¶
type DataElementValue interface{}
DataElementValue represents the value field of a Data Element
type DataElementWriter ¶
type DataElementWriter interface {
WriteElement(element *DataElement) error
}
DataElementWriter writes DataElements one at a time
func NewDataElementWriter ¶
func NewDataElementWriter(w io.Writer, header *DataSet, opts ...ConstructOption) (DataElementWriter, error)
NewDataElementWriter writes the DICOM preamble, signature, and meta header to w and returns a DataElementWriter that writes DataElements in the transfer syntax specified by the header. The options are applied in the order given to all DataElements including File Meta Elements before being written to w.
type DataSet ¶
type DataSet struct { // Elements is a map of DataElement tags to *DataElement Elements map[DataElementTag]*DataElement // Length returns the number of bytes used to store the DataSet in the DICOM file. Can be equal // to UndefinedLength (or equivalently 0xFFFFFFFF) to represent undefined length Length uint32 }
DataSet models a DICOM Data Set as defined http://dicom.nema.org/medical/dicom/current/output/html/part05.html#sect_3.10
func CollectDataElements ¶
func CollectDataElements(iter DataElementIterator, opts ...ParseOption) (*DataSet, error)
CollectDataElements returns the DataSet defined by the elements in the DataElementIterator. The options will be applied in the order given. The DataElementIterator will be closed.
func NewDataSet ¶
func NewDataSet(elems map[DataElementTag]interface{}) *DataSet
NewDataSet is a helper method for creating a DataSet for standard tags. VRs are retrieved from the standard dictionary. No validation is done on the given values.
func Parse ¶
func Parse(r io.Reader, opts ...ParseOption) (*DataSet, error)
Parse parses a DICOM file represented as an io.Reader, returning the DataSet defined by applying options sequentially in the order given to DataElements in the file.
By default, BulkDataIterators are transformed into their appropriate buffered types for the VR: BulkDataBuffer for OW, OB, UN []uint32 for OL []float64 for OD []float32 for OF []string for UR, UT, UC This behaviour can be overridden by supplying a ParseOption that transforms DataElements with ValueField of type BulkDataIterator to a ValueField other than BulkDataIterator.
Example ¶
r, err := os.Open("example.dcm") if err != nil { fmt.Println(err) return } dataSet, err := Parse(r) if err != nil { fmt.Println(err) return } for _, element := range dataSet.Elements { if sequence, ok := element.ValueField.(*Sequence); ok { for _, item := range sequence.Items { for _, element := range item.Elements { fmt.Println("sequence item element", element) } } } fmt.Println(element) }
Output:
func (*DataSet) Merge ¶
Merge merges two dataset's together. The dataset passed in has precedence for conflicting elements. Length will be set to Undefined.
func (*DataSet) MetaElements ¶
MetaElements returns a DataSet containing only the File Meta Elements (0002,xxxx) in the DataSet
func (*DataSet) SortedElements ¶
func (d *DataSet) SortedElements() []*DataElement
SortedElements returns a reference to the DataElements in the DataSet sorted by DataElementTag in ascending order
func (*DataSet) SortedTags ¶
func (d *DataSet) SortedTags() []DataElementTag
SortedTags returns a copy of the DataElementTags in the DataSet in ascending sorted order
type ParseOption ¶
type ParseOption struct {
// contains filtered or unexported fields
}
ParseOption configures the behavior of the Parse function.
Example ¶
p := path.Join("../", "testdata/"+"ImplicitVRLittleEndian.dcm") r, err := os.Open(p) if err != nil { fmt.Println(err) return } excludeFileMetaElements := ParseOptionWithTransform(func(element *DataElement) (*DataElement, error) { if element.Tag.GroupNumber() == 0x0002 { return nil, nil // exclude meta element by transforming it to nil } return element, nil }) dataSet, err := Parse(r, excludeFileMetaElements) fileMetaElementCount := 0 for _, element := range dataSet.Elements { if element.Tag.GroupNumber() == 0x0002 { fileMetaElementCount++ } } fmt.Println("There are", fileMetaElementCount, "file meta elements in the returned data set.")
Output: There are 0 file meta elements in the returned data set.
func ParseOptionWithTransform ¶
func ParseOptionWithTransform(t func(*DataElement) (*DataElement, error)) ParseOption
ParseOptionWithTransform returns a ParseOption that applies the given transformation to each DataElement in the DICOM file in the order encountered. For DataElements that contain a sequence, the transform is applied to nested DataElements first (i.e. transform is called on DataElements in post-order). If the transform returns an error, Parse will stop parsing and return an error. If no error is returned and a non-nil DataElement is returned, this DataElement will be added to the returned DataSet of Parse. If a nil DataElement is returned, this DataElement will be excluded from the DataSet returned from Parse.
func ReferenceBulkData ¶
func ReferenceBulkData(bulkDataDefinition func(*DataElement) bool) ParseOption
ReferenceBulkData ensures that all DataElements with ValueField of type BulkDataIterator are transformed to []BulkDataReference when bulkDataDefinition returns true and their default buffered types otherwise
func SplitUncompressedPixelDataFrames ¶
func SplitUncompressedPixelDataFrames() ParseOption
SplitUncompressedPixelDataFrames returns an option that ensures Data Elements with uncompressed pixel data (7FE0,0010) respect the image pixel module tags if present. i.e. If a DataElement corresponds to pixel data (7FE0,0010) each element of the ValueField slice (type BulkDataBuffer or []BulkDataReference) will represent an image frame. If ValueField is a BulkDataIterator, each BulkDataReader within the iterator will be an image frame. If image module tags are encountered that do not conform to the Image Pixel Module IOD linked below, the pixel data will be excluded from the returned DataSet. http://dicom.nema.org/medical/dicom/current/output/chtml/part03/sect_C.7.6.3.html
Note this option should be applied before all other options that modify pixel data.
func UTF8TextOption ¶
func UTF8TextOption() ParseOption
UTF8TextOption returns an option that ensures all textual VRs are decoded into UTF-8.
type Sequence ¶
type Sequence struct {
Items []*DataSet
}
Sequence models a DICOM sequence
func CollectSequence ¶
func CollectSequence(iter SequenceIterator, opts ...ParseOption) (*Sequence, error)
CollectSequence returns the Sequence defined by the items in the SequenceIterator. The options will be applied in the order given. The SequenceIterator will be closed.
type SequenceIterator ¶
type SequenceIterator interface { // Next returns the next item in the DICOM Sequence of Items. If there is no next item, the error // io.EOF is returned. In addition, any previously returned iterators from Next are emptied. Next() (DataElementIterator, error) // Close discards all remaining items in the iterator. In addition, any previously returned // iterators from calls to Next are emptied. Close() error }
SequenceIterator is an iterator over a DICOM Sequence of Items in the order in which they appear in the DICOM file.
type VR ¶
type VR struct { // Name represents the 2-character VR Code Name string // contains filtered or unexported fields }
VR models the DICOM Value representations (VR) http://dicom.nema.org/medical/dicom/current/output/html/part05.html#sect_6.2