From d95c56c85ab3fceaf7fd5e46219800149a497535 Mon Sep 17 00:00:00 2001 From: Joerg Riesmeier Date: Thu, 22 Feb 2024 14:59:10 +0100 Subject: [PATCH] Added support for new Storage SOP Classes. Added definition of new Storage SOP Class UIDs introduced with Supplement 226 (Cutaneous Confocal Microscopy). Also added support for these Storage SOP Classes to the various networking tools. --- dcmdata/include/dcmtk/dcmdata/dcuid.h | 2 + dcmdata/libsrc/dcuid.cc | 10 + dcmnet/docs/movescu.man | 2 + dcmnet/docs/storescp.man | 6 +- dcmnet/etc/storescp.cfg | 732 ++++++++++++------------ dcmnet/etc/storescu.cfg | 4 +- dcmqrdb/docs/dcmqrscp.man | 2 + dcmqrdb/etc/dcmqrprf.cfg | 795 +++++++++++++------------- 8 files changed, 792 insertions(+), 761 deletions(-) diff --git a/dcmdata/include/dcmtk/dcmdata/dcuid.h b/dcmdata/include/dcmtk/dcmdata/dcuid.h index e141dd4b7a..df1b3572a1 100644 --- a/dcmdata/include/dcmtk/dcmdata/dcuid.h +++ b/dcmdata/include/dcmtk/dcmdata/dcuid.h @@ -660,6 +660,8 @@ DCMTK_DCMDATA_EXPORT unsigned long dcmGuessModalityBytes(const char *sopClassUID #define UID_OphthalmicOpticalCoherenceTomographyBscanVolumeAnalysisStorage "1.2.840.10008.5.1.4.1.1.77.1.5.8" #define UID_VLWholeSlideMicroscopyImageStorage "1.2.840.10008.5.1.4.1.1.77.1.6" #define UID_DermoscopicPhotographyImageStorage "1.2.840.10008.5.1.4.1.1.77.1.7" +#define UID_ConfocalMicroscopyImageStorage "1.2.840.10008.5.1.4.1.1.77.1.8" +#define UID_ConfocalMicroscopyTiledPyramidalImageStorage "1.2.840.10008.5.1.4.1.1.77.1.9" #define UID_RETIRED_VLMultiframeImageStorage "1.2.840.10008.5.1.4.1.1.77.2" #define UID_LensometryMeasurementsStorage "1.2.840.10008.5.1.4.1.1.78.1" #define UID_AutorefractionMeasurementsStorage "1.2.840.10008.5.1.4.1.1.78.2" diff --git a/dcmdata/libsrc/dcuid.cc b/dcmdata/libsrc/dcuid.cc index e679ee137a..85e2a1d202 100644 --- a/dcmdata/libsrc/dcuid.cc +++ b/dcmdata/libsrc/dcuid.cc @@ -178,6 +178,8 @@ static const UIDNameMap uidNameMap[] = { { UID_Comprehensive3DSRStorage, "Comprehensive3DSRStorage", "Comprehensive3DSRStorage", { EUS_DICOM, EUV_Standard, EUT_SOPClass, EUST_Storage, EUIT_StructuredReport, UID_PROP_NONE } }, { UID_ComprehensiveSRStorage, "ComprehensiveSRStorage", "ComprehensiveSRStorage", { EUS_DICOM, EUV_Standard, EUT_SOPClass, EUST_Storage, EUIT_StructuredReport, UID_PROP_NONE } }, { UID_ComputedRadiographyImageStorage, "ComputedRadiographyImageStorage", "ComputedRadiographyImageStorage", { EUS_DICOM, EUV_Standard, EUT_SOPClass, EUST_Storage, EUIT_Image, UID_PROP_NONE } }, + { UID_ConfocalMicroscopyImageStorage, "ConfocalMicroscopyImageStorage", "ConfocalMicroscopyImageStorage", { EUS_DICOM, EUV_Standard, EUT_SOPClass, EUST_Storage, EUIT_Image, UID_PROP_ENHANCED_MF } }, + { UID_ConfocalMicroscopyTiledPyramidalImageStorage, "ConfocalMicroscopyTiledPyramidalImageStorage", "ConfocalMicroscopyTiledPyramidalImageStorage", { EUS_DICOM, EUV_Standard, EUT_SOPClass, EUST_Storage, EUIT_Image, UID_PROP_ENHANCED_MF } }, { UID_ContentAssessmentResultsStorage, "ContentAssessmentResultsStorage", "ContentAssessmentResultsStorage", { EUS_DICOM, EUV_Standard, EUT_SOPClass, EUST_Storage, EUIT_other, UID_PROP_NONE } }, { UID_CornealTopographyMapStorage, "CornealTopographyMapStorage", "CornealTopographyMapStorage", { EUS_DICOM, EUV_Standard, EUT_SOPClass, EUST_Storage, EUIT_other, UID_PROP_NONE } }, { UID_CTDefinedProcedureProtocolStorage, "CTDefinedProcedureProtocolStorage", "CTDefinedProcedureProtocolStorage", { EUS_DICOM, EUV_Standard, EUT_SOPClass, EUST_Storage, EUIT_other, UID_PROP_NON_PATIENT | UID_PROP_NO_DIR_RECORD } }, @@ -669,6 +671,8 @@ const char* dcmAllStorageSOPClassUIDs[] = { UID_Comprehensive3DSRStorage, UID_ComprehensiveSRStorage, UID_ComputedRadiographyImageStorage, + UID_ConfocalMicroscopyImageStorage, + UID_ConfocalMicroscopyTiledPyramidalImageStorage, UID_ContentAssessmentResultsStorage, UID_CornealTopographyMapStorage, UID_CTImageStorage, @@ -993,6 +997,8 @@ const char* dcmLongSCUStorageSOPClassUIDs[] = { // UID_CArmPhotonElectronRadiationRecordStorage, // UID_CArmPhotonElectronRadiationStorage, // UID_CompositingPlanarMPRVolumetricPresentationStateStorage, +// UID_ConfocalMicroscopyImageStorage, +// UID_ConfocalMicroscopyTiledPyramidalImageStorage, // UID_ContentAssessmentResultsStorage, // UID_CornealTopographyMapStorage, // UID_CTPerformedProcedureProtocolStorage, @@ -1195,6 +1201,8 @@ const char* dcmImageSOPClassUIDs[] = { UID_BreastProjectionXRayImageStorageForProcessing, UID_BreastTomosynthesisImageStorage, UID_ComputedRadiographyImageStorage, + UID_ConfocalMicroscopyImageStorage, + UID_ConfocalMicroscopyTiledPyramidalImageStorage, UID_CTImageStorage, UID_CornealTopographyMapStorage, UID_DermoscopicPhotographyImageStorage, @@ -1313,6 +1321,8 @@ static const DcmModalityTable modalities[] = { { UID_Comprehensive3DSRStorage, "SR3", 4096 }, { UID_ComprehensiveSRStorage, "SRc", 4096 }, { UID_ComputedRadiographyImageStorage, "CR", 2048 * 2048 * 2 }, + { UID_ConfocalMicroscopyImageStorage, "CFm", 1024 * 1024 }, + { UID_ConfocalMicroscopyTiledPyramidalImageStorage, "CFt", 1024 * 1024 * 10 }, { UID_ContentAssessmentResultsStorage, "AS", 4096 }, { UID_CornealTopographyMapStorage, "CM", 512 * 512 }, { UID_CTDefinedProcedureProtocolStorage, "PPcd", 4096 }, /* was PPd */ diff --git a/dcmnet/docs/movescu.man b/dcmnet/docs/movescu.man index ad95dff364..6b8b2af644 100644 --- a/dcmnet/docs/movescu.man +++ b/dcmnet/docs/movescu.man @@ -536,6 +536,8 @@ OphthalmicOpticalCoherenceTomogr.EnFaceImageStorage 1.2.840.10008.5.1.4.1.1.77. OphthalmicOpticalCoh.Tomogr.BscanVolumeAnalysisStor. 1.2.840.10008.5.1.4.1.1.77.1.5.8 VLWholeSlideMicroscopyImageStorage 1.2.840.10008.5.1.4.1.1.77.1.6 DermoscopicPhotographyImageStorage 1.2.840.10008.5.1.4.1.1.77.1.7 +ConfocalMicroscopyImageStorage 1.2.840.10008.5.1.4.1.1.77.1.8 +ConfocalMicroscopyTiledPyramidalImageStorage 1.2.840.10008.5.1.4.1.1.77.1.9 RETIRED_VLMultiframeImageStorage 1.2.840.10008.5.1.4.1.1.77.2 LensometryMeasurementsStorage 1.2.840.10008.5.1.4.1.1.78.1 AutorefractionMeasurementsStorage 1.2.840.10008.5.1.4.1.1.78.2 diff --git a/dcmnet/docs/storescp.man b/dcmnet/docs/storescp.man index b847820051..dced4b0b8c 100644 --- a/dcmnet/docs/storescp.man +++ b/dcmnet/docs/storescp.man @@ -573,9 +573,9 @@ The specified command line is executed as a separate process, so that the execution of \b storescp will not be held back. This behavior can be influenced with the \e --exec-sync option. -Note that the application entity titles (\#a and \#c) will be 'sanitized' +Note that the application entity titles ('\#a' and '\#c') will be 'sanitized' to avoid undesirable behavior when the parameters are passed to the shell. -Unusual characters will be mapped to the '_' character. A warning is printed +Unusual characters will be mapped to the '_' character. A warning is printed to the logger in this case. Option \e --exec-on-eostudy allows one to execute a certain command line when @@ -738,6 +738,8 @@ OphthalmicOpticalCoherenceTomogr.EnFaceImageStorage 1.2.840.10008.5.1.4.1.1.77. OphthalmicOpticalCoh.Tomogr.BscanVolumeAnalysisStor. 1.2.840.10008.5.1.4.1.1.77.1.5.8 VLWholeSlideMicroscopyImageStorage 1.2.840.10008.5.1.4.1.1.77.1.6 DermoscopicPhotographyImageStorage 1.2.840.10008.5.1.4.1.1.77.1.7 +ConfocalMicroscopyImageStorage 1.2.840.10008.5.1.4.1.1.77.1.8 +ConfocalMicroscopyTiledPyramidalImageStorage 1.2.840.10008.5.1.4.1.1.77.1.9 RETIRED_VLMultiframeImageStorage 1.2.840.10008.5.1.4.1.1.77.2 LensometryMeasurementsStorage 1.2.840.10008.5.1.4.1.1.78.1 AutorefractionMeasurementsStorage 1.2.840.10008.5.1.4.1.1.78.2 diff --git a/dcmnet/etc/storescp.cfg b/dcmnet/etc/storescp.cfg index 31f3125dad..72c68f466d 100644 --- a/dcmnet/etc/storescp.cfg +++ b/dcmnet/etc/storescp.cfg @@ -1,5 +1,5 @@ # -# Copyright (C) 2003-2023, OFFIS e.V. +# Copyright (C) 2003-2024, OFFIS e.V. # All rights reserved. See COPYRIGHT file for details. # # This software and supporting documentation were developed by @@ -102,221 +102,223 @@ PresentationContext3 = BreastProjectionXRayImageStorageForProcessing\AnyTransf PresentationContext4 = BreastTomosynthesisImageStorage\AnyTransferSyntax PresentationContext5 = CTImageStorage\AnyTransferSyntax PresentationContext6 = ComputedRadiographyImageStorage\AnyTransferSyntax -PresentationContext7 = CornealTopographyMapStorage\AnyTransferSyntax -PresentationContext8 = DermoscopicPhotographyImageStorage\AnyTransferSyntax -PresentationContext9 = DigitalIntraOralXRayImageStorageForPresentation\AnyTransferSyntax -PresentationContext10 = DigitalIntraOralXRayImageStorageForProcessing\AnyTransferSyntax -PresentationContext11 = DigitalMammographyXRayImageStorageForPresentation\AnyTransferSyntax -PresentationContext12 = DigitalMammographyXRayImageStorageForProcessing\AnyTransferSyntax -PresentationContext13 = DigitalXRayImageStorageForPresentation\AnyTransferSyntax -PresentationContext14 = DigitalXRayImageStorageForProcessing\AnyTransferSyntax -PresentationContext15 = EnhancedContinuousRTImageStorage\AnyTransferSyntax -PresentationContext16 = EnhancedCTImageStorage\AnyTransferSyntax -PresentationContext17 = EnhancedMRColorImageStorage\AnyTransferSyntax -PresentationContext18 = EnhancedMRImageStorage\AnyTransferSyntax -PresentationContext19 = EnhancedPETImageStorage\AnyTransferSyntax -PresentationContext20 = EnhancedRTImageStorage\AnyTransferSyntax -PresentationContext21 = EnhancedUSVolumeStorage\AnyTransferSyntax -PresentationContext22 = EnhancedXAImageStorage\AnyTransferSyntax -PresentationContext23 = EnhancedXRFImageStorage\AnyTransferSyntax -PresentationContext24 = IntravascularOpticalCoherenceTomographyImageStorageForPresentation\AnyTransferSyntax -PresentationContext25 = IntravascularOpticalCoherenceTomographyImageStorageForProcessing\AnyTransferSyntax -PresentationContext26 = LegacyConvertedEnhancedCTImageStorage\AnyTransferSyntax -PresentationContext27 = LegacyConvertedEnhancedMRImageStorage\AnyTransferSyntax -PresentationContext28 = LegacyConvertedEnhancedPETImageStorage\AnyTransferSyntax -PresentationContext29 = MRImageStorage\AnyTransferSyntax -PresentationContext30 = MultiframeGrayscaleByteSecondaryCaptureImageStorage\AnyTransferSyntax -PresentationContext31 = MultiframeGrayscaleWordSecondaryCaptureImageStorage\AnyTransferSyntax -PresentationContext32 = MultiframeSingleBitSecondaryCaptureImageStorage\AnyTransferSyntax -PresentationContext33 = MultiframeTrueColorSecondaryCaptureImageStorage\AnyTransferSyntax -PresentationContext34 = NuclearMedicineImageStorage\AnyTransferSyntax -PresentationContext35 = OphthalmicOpticalCoherenceTomographyEnFaceImageStorage\AnyTransferSyntax -PresentationContext36 = OphthalmicPhotography16BitImageStorage\AnyTransferSyntax -PresentationContext37 = OphthalmicPhotography8BitImageStorage\AnyTransferSyntax -PresentationContext38 = OphthalmicThicknessMapStorage\AnyTransferSyntax -PresentationContext39 = OphthalmicTomographyImageStorage\AnyTransferSyntax -PresentationContext40 = PhotoacousticImageStorage\AnyTransferSyntax -PresentationContext41 = PositronEmissionTomographyImageStorage\AnyTransferSyntax -PresentationContext42 = RTImageStorage\AnyTransferSyntax -PresentationContext43 = SecondaryCaptureImageStorage\AnyTransferSyntax -PresentationContext44 = UltrasoundImageStorage\AnyTransferSyntax -PresentationContext45 = UltrasoundMultiframeImageStorage\AnyTransferSyntax -PresentationContext46 = VLEndoscopicImageStorage\AnyTransferSyntax -PresentationContext47 = VLMicroscopicImageStorage\AnyTransferSyntax -PresentationContext48 = VLPhotographicImageStorage\AnyTransferSyntax -PresentationContext49 = VLSlideCoordinatesMicroscopicImageStorage\AnyTransferSyntax -PresentationContext50 = VLWholeSlideMicroscopyImageStorage\AnyTransferSyntax -PresentationContext51 = VideoEndoscopicImageStorage\AnyTransferSyntax -PresentationContext52 = VideoMicroscopicImageStorage\AnyTransferSyntax -PresentationContext53 = VideoPhotographicImageStorage\AnyTransferSyntax -PresentationContext54 = WideFieldOphthalmicPhotography3DCoordinatesImageStorage\AnyTransferSyntax -PresentationContext55 = WideFieldOphthalmicPhotographyStereographicProjectionImageStorage\AnyTransferSyntax -PresentationContext56 = XRay3DAngiographicImageStorage\AnyTransferSyntax -PresentationContext57 = XRay3DCraniofacialImageStorage\AnyTransferSyntax -PresentationContext58 = XRayAngiographicImageStorage\AnyTransferSyntax -PresentationContext59 = XRayRadiofluoroscopicImageStorage\AnyTransferSyntax +PresentationContext7 = ConfocalMicroscopyImageStorage\AnyTransferSyntax +PresentationContext8 = ConfocalMicroscopyTiledPyramidalImageStorage\AnyTransferSyntax +PresentationContext9 = CornealTopographyMapStorage\AnyTransferSyntax +PresentationContext10 = DermoscopicPhotographyImageStorage\AnyTransferSyntax +PresentationContext11 = DigitalIntraOralXRayImageStorageForPresentation\AnyTransferSyntax +PresentationContext12 = DigitalIntraOralXRayImageStorageForProcessing\AnyTransferSyntax +PresentationContext13 = DigitalMammographyXRayImageStorageForPresentation\AnyTransferSyntax +PresentationContext14 = DigitalMammographyXRayImageStorageForProcessing\AnyTransferSyntax +PresentationContext15 = DigitalXRayImageStorageForPresentation\AnyTransferSyntax +PresentationContext16 = DigitalXRayImageStorageForProcessing\AnyTransferSyntax +PresentationContext17 = EnhancedContinuousRTImageStorage\AnyTransferSyntax +PresentationContext18 = EnhancedCTImageStorage\AnyTransferSyntax +PresentationContext19 = EnhancedMRColorImageStorage\AnyTransferSyntax +PresentationContext20 = EnhancedMRImageStorage\AnyTransferSyntax +PresentationContext21 = EnhancedPETImageStorage\AnyTransferSyntax +PresentationContext22 = EnhancedRTImageStorage\AnyTransferSyntax +PresentationContext23 = EnhancedUSVolumeStorage\AnyTransferSyntax +PresentationContext24 = EnhancedXAImageStorage\AnyTransferSyntax +PresentationContext25 = EnhancedXRFImageStorage\AnyTransferSyntax +PresentationContext26 = IntravascularOpticalCoherenceTomographyImageStorageForPresentation\AnyTransferSyntax +PresentationContext27 = IntravascularOpticalCoherenceTomographyImageStorageForProcessing\AnyTransferSyntax +PresentationContext28 = LegacyConvertedEnhancedCTImageStorage\AnyTransferSyntax +PresentationContext29 = LegacyConvertedEnhancedMRImageStorage\AnyTransferSyntax +PresentationContext30 = LegacyConvertedEnhancedPETImageStorage\AnyTransferSyntax +PresentationContext31 = MRImageStorage\AnyTransferSyntax +PresentationContext32 = MultiframeGrayscaleByteSecondaryCaptureImageStorage\AnyTransferSyntax +PresentationContext33 = MultiframeGrayscaleWordSecondaryCaptureImageStorage\AnyTransferSyntax +PresentationContext34 = MultiframeSingleBitSecondaryCaptureImageStorage\AnyTransferSyntax +PresentationContext35 = MultiframeTrueColorSecondaryCaptureImageStorage\AnyTransferSyntax +PresentationContext36 = NuclearMedicineImageStorage\AnyTransferSyntax +PresentationContext37 = OphthalmicOpticalCoherenceTomographyEnFaceImageStorage\AnyTransferSyntax +PresentationContext38 = OphthalmicPhotography16BitImageStorage\AnyTransferSyntax +PresentationContext39 = OphthalmicPhotography8BitImageStorage\AnyTransferSyntax +PresentationContext40 = OphthalmicThicknessMapStorage\AnyTransferSyntax +PresentationContext41 = OphthalmicTomographyImageStorage\AnyTransferSyntax +PresentationContext42 = PhotoacousticImageStorage\AnyTransferSyntax +PresentationContext43 = PositronEmissionTomographyImageStorage\AnyTransferSyntax +PresentationContext44 = RTImageStorage\AnyTransferSyntax +PresentationContext45 = SecondaryCaptureImageStorage\AnyTransferSyntax +PresentationContext46 = UltrasoundImageStorage\AnyTransferSyntax +PresentationContext47 = UltrasoundMultiframeImageStorage\AnyTransferSyntax +PresentationContext48 = VLEndoscopicImageStorage\AnyTransferSyntax +PresentationContext49 = VLMicroscopicImageStorage\AnyTransferSyntax +PresentationContext50 = VLPhotographicImageStorage\AnyTransferSyntax +PresentationContext51 = VLSlideCoordinatesMicroscopicImageStorage\AnyTransferSyntax +PresentationContext52 = VLWholeSlideMicroscopyImageStorage\AnyTransferSyntax +PresentationContext53 = VideoEndoscopicImageStorage\AnyTransferSyntax +PresentationContext54 = VideoMicroscopicImageStorage\AnyTransferSyntax +PresentationContext55 = VideoPhotographicImageStorage\AnyTransferSyntax +PresentationContext56 = WideFieldOphthalmicPhotography3DCoordinatesImageStorage\AnyTransferSyntax +PresentationContext57 = WideFieldOphthalmicPhotographyStereographicProjectionImageStorage\AnyTransferSyntax +PresentationContext58 = XRay3DAngiographicImageStorage\AnyTransferSyntax +PresentationContext59 = XRay3DCraniofacialImageStorage\AnyTransferSyntax +PresentationContext60 = XRayAngiographicImageStorage\AnyTransferSyntax +PresentationContext61 = XRayRadiofluoroscopicImageStorage\AnyTransferSyntax # # retired image SOP classes # -PresentationContext60 = RETIRED_HardcopyColorImageStorage\AnyTransferSyntax -PresentationContext61 = RETIRED_HardcopyGrayscaleImageStorage\AnyTransferSyntax -PresentationContext62 = RETIRED_NuclearMedicineImageStorage\AnyTransferSyntax -PresentationContext63 = RETIRED_UltrasoundImageStorage\AnyTransferSyntax -PresentationContext64 = RETIRED_UltrasoundMultiframeImageStorage\AnyTransferSyntax -PresentationContext65 = RETIRED_VLImageStorage\AnyTransferSyntax -PresentationContext66 = RETIRED_VLMultiframeImageStorage\AnyTransferSyntax -PresentationContext67 = RETIRED_XRayAngiographicBiPlaneImageStorage\AnyTransferSyntax +PresentationContext62 = RETIRED_HardcopyColorImageStorage\AnyTransferSyntax +PresentationContext63 = RETIRED_HardcopyGrayscaleImageStorage\AnyTransferSyntax +PresentationContext64 = RETIRED_NuclearMedicineImageStorage\AnyTransferSyntax +PresentationContext65 = RETIRED_UltrasoundImageStorage\AnyTransferSyntax +PresentationContext66 = RETIRED_UltrasoundMultiframeImageStorage\AnyTransferSyntax +PresentationContext67 = RETIRED_VLImageStorage\AnyTransferSyntax +PresentationContext68 = RETIRED_VLMultiframeImageStorage\AnyTransferSyntax +PresentationContext69 = RETIRED_XRayAngiographicBiPlaneImageStorage\AnyTransferSyntax # # the following presentation contexts are for non-image SOP classes # (including some that do not fit into the PATIENT-STUDY-SERIES-INSTANCE model) # -PresentationContext68 = AcquisitionContextSRStorage\UncompressedOrZlib -PresentationContext69 = AdvancedBlendingPresentationStateStorage\UncompressedOrZlib -PresentationContext70 = AmbulatoryECGWaveformStorage\UncompressedOrZlib -PresentationContext71 = ArterialPulseWaveformStorage\UncompressedOrZlib -PresentationContext72 = AutorefractionMeasurementsStorage\UncompressedOrZlib -PresentationContext73 = BasicStructuredDisplayStorage\UncompressedOrZlib -PresentationContext74 = BasicTextSRStorage\UncompressedOrZlib -PresentationContext75 = BasicVoiceAudioWaveformStorage\UncompressedOrZlib -PresentationContext76 = BlendingSoftcopyPresentationStateStorage\UncompressedOrZlib -PresentationContext77 = BodyPositionWaveformStorage\UncompressedOrZlib -PresentationContext78 = CArmPhotonElectronRadiationRecordStorage\UncompressedOrZlib -PresentationContext79 = CArmPhotonElectronRadiationStorage\UncompressedOrZlib -PresentationContext80 = CTDefinedProcedureProtocolStorage\UncompressedOrZlib -PresentationContext81 = CTPerformedProcedureProtocolStorage\UncompressedOrZlib -PresentationContext82 = CardiacElectrophysiologyWaveformStorage\UncompressedOrZlib -PresentationContext83 = ChestCADSRStorage\UncompressedOrZlib -PresentationContext84 = ColonCADSRStorage\UncompressedOrZlib -PresentationContext85 = ColorPaletteStorage\UncompressedOrZlib -PresentationContext86 = ColorSoftcopyPresentationStateStorage\UncompressedOrZlib -PresentationContext87 = CompositingPlanarMPRVolumetricPresentationStateStorage\UncompressedOrZlib -PresentationContext88 = Comprehensive3DSRStorage\UncompressedOrZlib -PresentationContext89 = ComprehensiveSRStorage\UncompressedOrZlib -PresentationContext90 = ContentAssessmentResultsStorage\UncompressedOrZlib -PresentationContext91 = DeformableSpatialRegistrationStorage\UncompressedOrZlib -PresentationContext92 = ElectromyogramWaveformStorage\UncompressedOrZlib -PresentationContext93 = ElectrooculogramWaveformStorage\UncompressedOrZlib -PresentationContext94 = EncapsulatedCDAStorage\UncompressedOrZlib -PresentationContext95 = EncapsulatedMTLStorage\UncompressedOrZlib -PresentationContext96 = EncapsulatedOBJStorage\UncompressedOrZlib -PresentationContext97 = EncapsulatedPDFStorage\UncompressedOrZlib -PresentationContext98 = EncapsulatedSTLStorage\UncompressedOrZlib -PresentationContext99 = EnhancedSRStorage\UncompressedOrZlib -PresentationContext100 = EnhancedXRayRadiationDoseSRStorage\UncompressedOrZlib -PresentationContext101 = ExtensibleSRStorage\UncompressedOrZlib -PresentationContext102 = General32BitECGWaveformStorage\UncompressedOrZlib -PresentationContext103 = GeneralAudioWaveformStorage\UncompressedOrZlib -PresentationContext104 = GeneralECGWaveformStorage\UncompressedOrZlib -PresentationContext105 = GenericImplantTemplateStorage\UncompressedOrZlib -PresentationContext106 = GrayscalePlanarMPRVolumetricPresentationStateStorage\UncompressedOrZlib -PresentationContext107 = GrayscaleSoftcopyPresentationStateStorage\UncompressedOrZlib -PresentationContext108 = HangingProtocolStorage\UncompressedOrZlib -PresentationContext109 = HemodynamicWaveformStorage\UncompressedOrZlib -PresentationContext110 = ImplantAssemblyTemplateStorage\UncompressedOrZlib -PresentationContext111 = ImplantTemplateGroupStorage\UncompressedOrZlib -PresentationContext112 = ImplantationPlanSRStorage\UncompressedOrZlib -PresentationContext113 = IntraocularLensCalculationsStorage\UncompressedOrZlib -PresentationContext114 = InventoryStorage\UncompressedOrZlib -PresentationContext115 = KeratometryMeasurementsStorage\UncompressedOrZlib -PresentationContext116 = KeyObjectSelectionDocumentStorage\UncompressedOrZlib -PresentationContext117 = LensometryMeasurementsStorage\UncompressedOrZlib -PresentationContext118 = MRSpectroscopyStorage\UncompressedOrZlib -PresentationContext119 = MacularGridThicknessAndVolumeReportStorage\UncompressedOrZlib -PresentationContext120 = MammographyCADSRStorage\UncompressedOrZlib -PresentationContext121 = MicroscopyBulkSimpleAnnotationsStorage\UncompressedOrZlib -PresentationContext122 = MultichannelRespiratoryWaveformStorage\UncompressedOrZlib -PresentationContext123 = MultipleVolumeRenderingVolumetricPresentationStateStorage\UncompressedOrZlib -PresentationContext124 = OphthalmicAxialMeasurementsStorage\UncompressedOrZlib -PresentationContext125 = OphthalmicOpticalCoherenceTomographyBscanVolumeAnalysisStorage\UncompressedOrZlib -PresentationContext126 = OphthalmicVisualFieldStaticPerimetryMeasurementsStorage\UncompressedOrZlib -PresentationContext127 = ParametricMapStorage\UncompressedOrZlib -PresentationContext128 = PatientRadiationDoseSRStorage\UncompressedOrZlib -PresentationContext129 = PerformedImagingAgentAdministrationSRStorage\UncompressedOrZlib -PresentationContext130 = PlannedImagingAgentAdministrationSRStorage\UncompressedOrZlib -PresentationContext131 = ProcedureLogStorage\UncompressedOrZlib -PresentationContext132 = ProtocolApprovalStorage\UncompressedOrZlib -PresentationContext133 = PseudoColorSoftcopyPresentationStateStorage\UncompressedOrZlib -PresentationContext134 = RTBeamsDeliveryInstructionStorage\UncompressedOrZlib -PresentationContext135 = RTBeamsTreatmentRecordStorage\UncompressedOrZlib -PresentationContext136 = RTBrachyApplicationSetupDeliveryInstructionStorage\UncompressedOrZlib -PresentationContext137 = RTBrachyTreatmentRecordStorage\UncompressedOrZlib -PresentationContext138 = RTDoseStorage\UncompressedOrZlib -PresentationContext139 = RTIonBeamsTreatmentRecordStorage\UncompressedOrZlib -PresentationContext140 = RTIonPlanStorage\UncompressedOrZlib -PresentationContext141 = RTPatientPositionAcquisitionInstructionStorage\UncompressedOrZlib -PresentationContext142 = RTPhysicianIntentStorage\UncompressedOrZlib -PresentationContext143 = RTPlanStorage\UncompressedOrZlib -PresentationContext144 = RTRadiationRecordSetStorage\UncompressedOrZlib -PresentationContext145 = RTRadiationSalvageRecordStorage\UncompressedOrZlib -PresentationContext146 = RTRadiationSetDeliveryInstructionStorage\UncompressedOrZlib -PresentationContext147 = RTRadiationSetStorage\UncompressedOrZlib -PresentationContext148 = RTSegmentAnnotationStorage\UncompressedOrZlib -PresentationContext149 = RTStructureSetStorage\UncompressedOrZlib -PresentationContext150 = RTTreatmentPreparationStorage\UncompressedOrZlib -PresentationContext151 = RTTreatmentSummaryRecordStorage\UncompressedOrZlib -PresentationContext152 = RadiopharmaceuticalRadiationDoseSRStorage\UncompressedOrZlib -PresentationContext153 = RawDataStorage\UncompressedOrZlib -PresentationContext154 = RealWorldValueMappingStorage\UncompressedOrZlib -PresentationContext155 = RespiratoryWaveformStorage\UncompressedOrZlib -PresentationContext156 = RoboticArmRadiationStorage\UncompressedOrZlib -PresentationContext157 = RoboticRadiationRecordStorage\UncompressedOrZlib -PresentationContext158 = RoutineScalpElectroencephalogramWaveformStorage\UncompressedOrZlib -PresentationContext159 = SegmentationStorage\UncompressedOrZlib -PresentationContext160 = SegmentedVolumeRenderingVolumetricPresentationStateStorage\UncompressedOrZlib -PresentationContext161 = SimplifiedAdultEchoSRStorage\UncompressedOrZlib -PresentationContext162 = SleepElectroencephalogramWaveformStorage\UncompressedOrZlib -PresentationContext163 = SpatialFiducialsStorage\UncompressedOrZlib -PresentationContext164 = SpatialRegistrationStorage\UncompressedOrZlib -PresentationContext165 = SpectaclePrescriptionReportStorage\UncompressedOrZlib -PresentationContext166 = StereometricRelationshipStorage\UncompressedOrZlib -PresentationContext167 = SubjectiveRefractionMeasurementsStorage\UncompressedOrZlib -PresentationContext168 = SurfaceScanMeshStorage\UncompressedOrZlib -PresentationContext169 = SurfaceScanPointCloudStorage\UncompressedOrZlib -PresentationContext170 = SurfaceSegmentationStorage\UncompressedOrZlib -PresentationContext171 = TomotherapeuticRadiationRecordStorage\UncompressedOrZlib -PresentationContext172 = TomotherapeuticRadiationStorage\UncompressedOrZlib -PresentationContext173 = TractographyResultsStorage\UncompressedOrZlib -PresentationContext174 = TwelveLeadECGWaveformStorage\UncompressedOrZlib -PresentationContext175 = VariableModalityLUTSoftcopyPresentationStateStorage\UncompressedOrZlib -PresentationContext176 = VisualAcuityMeasurementsStorage\UncompressedOrZlib -PresentationContext177 = VolumeRenderingVolumetricPresentationStateStorage\UncompressedOrZlib -PresentationContext178 = XADefinedProcedureProtocolStorage\UncompressedOrZlib -PresentationContext179 = XAPerformedProcedureProtocolStorage\UncompressedOrZlib -PresentationContext180 = XAXRFGrayscaleSoftcopyPresentationStateStorage\UncompressedOrZlib -PresentationContext181 = XRayRadiationDoseSRStorage\UncompressedOrZlib +PresentationContext70 = AcquisitionContextSRStorage\UncompressedOrZlib +PresentationContext71 = AdvancedBlendingPresentationStateStorage\UncompressedOrZlib +PresentationContext72 = AmbulatoryECGWaveformStorage\UncompressedOrZlib +PresentationContext73 = ArterialPulseWaveformStorage\UncompressedOrZlib +PresentationContext74 = AutorefractionMeasurementsStorage\UncompressedOrZlib +PresentationContext75 = BasicStructuredDisplayStorage\UncompressedOrZlib +PresentationContext76 = BasicTextSRStorage\UncompressedOrZlib +PresentationContext77 = BasicVoiceAudioWaveformStorage\UncompressedOrZlib +PresentationContext78 = BlendingSoftcopyPresentationStateStorage\UncompressedOrZlib +PresentationContext79 = BodyPositionWaveformStorage\UncompressedOrZlib +PresentationContext80 = CArmPhotonElectronRadiationRecordStorage\UncompressedOrZlib +PresentationContext81 = CArmPhotonElectronRadiationStorage\UncompressedOrZlib +PresentationContext82 = CTDefinedProcedureProtocolStorage\UncompressedOrZlib +PresentationContext83 = CTPerformedProcedureProtocolStorage\UncompressedOrZlib +PresentationContext84 = CardiacElectrophysiologyWaveformStorage\UncompressedOrZlib +PresentationContext85 = ChestCADSRStorage\UncompressedOrZlib +PresentationContext86 = ColonCADSRStorage\UncompressedOrZlib +PresentationContext87 = ColorPaletteStorage\UncompressedOrZlib +PresentationContext88 = ColorSoftcopyPresentationStateStorage\UncompressedOrZlib +PresentationContext89 = CompositingPlanarMPRVolumetricPresentationStateStorage\UncompressedOrZlib +PresentationContext90 = Comprehensive3DSRStorage\UncompressedOrZlib +PresentationContext91 = ComprehensiveSRStorage\UncompressedOrZlib +PresentationContext92 = ContentAssessmentResultsStorage\UncompressedOrZlib +PresentationContext93 = DeformableSpatialRegistrationStorage\UncompressedOrZlib +PresentationContext94 = ElectromyogramWaveformStorage\UncompressedOrZlib +PresentationContext95 = ElectrooculogramWaveformStorage\UncompressedOrZlib +PresentationContext96 = EncapsulatedCDAStorage\UncompressedOrZlib +PresentationContext97 = EncapsulatedMTLStorage\UncompressedOrZlib +PresentationContext98 = EncapsulatedOBJStorage\UncompressedOrZlib +PresentationContext99 = EncapsulatedPDFStorage\UncompressedOrZlib +PresentationContext100 = EncapsulatedSTLStorage\UncompressedOrZlib +PresentationContext101 = EnhancedSRStorage\UncompressedOrZlib +PresentationContext102 = EnhancedXRayRadiationDoseSRStorage\UncompressedOrZlib +PresentationContext103 = ExtensibleSRStorage\UncompressedOrZlib +PresentationContext104 = General32BitECGWaveformStorage\UncompressedOrZlib +PresentationContext105 = GeneralAudioWaveformStorage\UncompressedOrZlib +PresentationContext106 = GeneralECGWaveformStorage\UncompressedOrZlib +PresentationContext107 = GenericImplantTemplateStorage\UncompressedOrZlib +PresentationContext108 = GrayscalePlanarMPRVolumetricPresentationStateStorage\UncompressedOrZlib +PresentationContext109 = GrayscaleSoftcopyPresentationStateStorage\UncompressedOrZlib +PresentationContext110 = HangingProtocolStorage\UncompressedOrZlib +PresentationContext111 = HemodynamicWaveformStorage\UncompressedOrZlib +PresentationContext112 = ImplantAssemblyTemplateStorage\UncompressedOrZlib +PresentationContext113 = ImplantTemplateGroupStorage\UncompressedOrZlib +PresentationContext114 = ImplantationPlanSRStorage\UncompressedOrZlib +PresentationContext115 = IntraocularLensCalculationsStorage\UncompressedOrZlib +PresentationContext116 = InventoryStorage\UncompressedOrZlib +PresentationContext117 = KeratometryMeasurementsStorage\UncompressedOrZlib +PresentationContext118 = KeyObjectSelectionDocumentStorage\UncompressedOrZlib +PresentationContext119 = LensometryMeasurementsStorage\UncompressedOrZlib +PresentationContext120 = MRSpectroscopyStorage\UncompressedOrZlib +PresentationContext121 = MacularGridThicknessAndVolumeReportStorage\UncompressedOrZlib +PresentationContext122 = MammographyCADSRStorage\UncompressedOrZlib +PresentationContext123 = MicroscopyBulkSimpleAnnotationsStorage\UncompressedOrZlib +PresentationContext124 = MultichannelRespiratoryWaveformStorage\UncompressedOrZlib +PresentationContext125 = MultipleVolumeRenderingVolumetricPresentationStateStorage\UncompressedOrZlib +PresentationContext126 = OphthalmicAxialMeasurementsStorage\UncompressedOrZlib +PresentationContext127 = OphthalmicOpticalCoherenceTomographyBscanVolumeAnalysisStorage\UncompressedOrZlib +PresentationContext128 = OphthalmicVisualFieldStaticPerimetryMeasurementsStorage\UncompressedOrZlib +PresentationContext129 = ParametricMapStorage\UncompressedOrZlib +PresentationContext130 = PatientRadiationDoseSRStorage\UncompressedOrZlib +PresentationContext131 = PerformedImagingAgentAdministrationSRStorage\UncompressedOrZlib +PresentationContext132 = PlannedImagingAgentAdministrationSRStorage\UncompressedOrZlib +PresentationContext133 = ProcedureLogStorage\UncompressedOrZlib +PresentationContext134 = ProtocolApprovalStorage\UncompressedOrZlib +PresentationContext135 = PseudoColorSoftcopyPresentationStateStorage\UncompressedOrZlib +PresentationContext136 = RTBeamsDeliveryInstructionStorage\UncompressedOrZlib +PresentationContext137 = RTBeamsTreatmentRecordStorage\UncompressedOrZlib +PresentationContext138 = RTBrachyApplicationSetupDeliveryInstructionStorage\UncompressedOrZlib +PresentationContext139 = RTBrachyTreatmentRecordStorage\UncompressedOrZlib +PresentationContext140 = RTDoseStorage\UncompressedOrZlib +PresentationContext141 = RTIonBeamsTreatmentRecordStorage\UncompressedOrZlib +PresentationContext142 = RTIonPlanStorage\UncompressedOrZlib +PresentationContext143 = RTPatientPositionAcquisitionInstructionStorage\UncompressedOrZlib +PresentationContext144 = RTPhysicianIntentStorage\UncompressedOrZlib +PresentationContext145 = RTPlanStorage\UncompressedOrZlib +PresentationContext146 = RTRadiationRecordSetStorage\UncompressedOrZlib +PresentationContext147 = RTRadiationSalvageRecordStorage\UncompressedOrZlib +PresentationContext148 = RTRadiationSetDeliveryInstructionStorage\UncompressedOrZlib +PresentationContext149 = RTRadiationSetStorage\UncompressedOrZlib +PresentationContext150 = RTSegmentAnnotationStorage\UncompressedOrZlib +PresentationContext151 = RTStructureSetStorage\UncompressedOrZlib +PresentationContext152 = RTTreatmentPreparationStorage\UncompressedOrZlib +PresentationContext153 = RTTreatmentSummaryRecordStorage\UncompressedOrZlib +PresentationContext154 = RadiopharmaceuticalRadiationDoseSRStorage\UncompressedOrZlib +PresentationContext155 = RawDataStorage\UncompressedOrZlib +PresentationContext156 = RealWorldValueMappingStorage\UncompressedOrZlib +PresentationContext157 = RespiratoryWaveformStorage\UncompressedOrZlib +PresentationContext158 = RoboticArmRadiationStorage\UncompressedOrZlib +PresentationContext159 = RoboticRadiationRecordStorage\UncompressedOrZlib +PresentationContext160 = RoutineScalpElectroencephalogramWaveformStorage\UncompressedOrZlib +PresentationContext161 = SegmentationStorage\UncompressedOrZlib +PresentationContext162 = SegmentedVolumeRenderingVolumetricPresentationStateStorage\UncompressedOrZlib +PresentationContext163 = SimplifiedAdultEchoSRStorage\UncompressedOrZlib +PresentationContext164 = SleepElectroencephalogramWaveformStorage\UncompressedOrZlib +PresentationContext165 = SpatialFiducialsStorage\UncompressedOrZlib +PresentationContext166 = SpatialRegistrationStorage\UncompressedOrZlib +PresentationContext167 = SpectaclePrescriptionReportStorage\UncompressedOrZlib +PresentationContext168 = StereometricRelationshipStorage\UncompressedOrZlib +PresentationContext169 = SubjectiveRefractionMeasurementsStorage\UncompressedOrZlib +PresentationContext170 = SurfaceScanMeshStorage\UncompressedOrZlib +PresentationContext171 = SurfaceScanPointCloudStorage\UncompressedOrZlib +PresentationContext172 = SurfaceSegmentationStorage\UncompressedOrZlib +PresentationContext173 = TomotherapeuticRadiationRecordStorage\UncompressedOrZlib +PresentationContext174 = TomotherapeuticRadiationStorage\UncompressedOrZlib +PresentationContext175 = TractographyResultsStorage\UncompressedOrZlib +PresentationContext176 = TwelveLeadECGWaveformStorage\UncompressedOrZlib +PresentationContext177 = VariableModalityLUTSoftcopyPresentationStateStorage\UncompressedOrZlib +PresentationContext178 = VisualAcuityMeasurementsStorage\UncompressedOrZlib +PresentationContext179 = VolumeRenderingVolumetricPresentationStateStorage\UncompressedOrZlib +PresentationContext180 = XADefinedProcedureProtocolStorage\UncompressedOrZlib +PresentationContext181 = XAPerformedProcedureProtocolStorage\UncompressedOrZlib +PresentationContext182 = XAXRFGrayscaleSoftcopyPresentationStateStorage\UncompressedOrZlib +PresentationContext183 = XRayRadiationDoseSRStorage\UncompressedOrZlib # # retired non-image SOP classes # -PresentationContext182 = RETIRED_StandaloneCurveStorage\UncompressedOrZlib -PresentationContext183 = RETIRED_StandaloneModalityLUTStorage\UncompressedOrZlib -PresentationContext184 = RETIRED_StandaloneOverlayStorage\UncompressedOrZlib -PresentationContext185 = RETIRED_StandalonePETCurveStorage\UncompressedOrZlib -PresentationContext186 = RETIRED_StandaloneVOILUTStorage\UncompressedOrZlib -PresentationContext187 = RETIRED_StoredPrintStorage\UncompressedOrZlib +PresentationContext184 = RETIRED_StandaloneCurveStorage\UncompressedOrZlib +PresentationContext185 = RETIRED_StandaloneModalityLUTStorage\UncompressedOrZlib +PresentationContext186 = RETIRED_StandaloneOverlayStorage\UncompressedOrZlib +PresentationContext187 = RETIRED_StandalonePETCurveStorage\UncompressedOrZlib +PresentationContext188 = RETIRED_StandaloneVOILUTStorage\UncompressedOrZlib +PresentationContext189 = RETIRED_StoredPrintStorage\UncompressedOrZlib # # draft non-image SOP classes # -PresentationContext188 = DRAFT_RTBeamsDeliveryInstructionStorage\UncompressedOrZlib -PresentationContext189 = DRAFT_SRAudioStorage\UncompressedOrZlib -PresentationContext190 = DRAFT_SRComprehensiveStorage\UncompressedOrZlib -PresentationContext191 = DRAFT_SRDetailStorage\UncompressedOrZlib -PresentationContext192 = DRAFT_SRTextStorage\UncompressedOrZlib -PresentationContext193 = DRAFT_WaveformStorage\UncompressedOrZlib +PresentationContext190 = DRAFT_RTBeamsDeliveryInstructionStorage\UncompressedOrZlib +PresentationContext191 = DRAFT_SRAudioStorage\UncompressedOrZlib +PresentationContext192 = DRAFT_SRComprehensiveStorage\UncompressedOrZlib +PresentationContext193 = DRAFT_SRDetailStorage\UncompressedOrZlib +PresentationContext194 = DRAFT_SRTextStorage\UncompressedOrZlib +PresentationContext195 = DRAFT_WaveformStorage\UncompressedOrZlib # # DICOS Storage # -PresentationContext194 = DICOS_CTImageStorage\AnyTransferSyntax -PresentationContext195 = DICOS_DigitalXRayImageStorageForPresentation\AnyTransferSyntax -PresentationContext196 = DICOS_DigitalXRayImageStorageForProcessing\AnyTransferSyntax -PresentationContext197 = DICOS_2DAITStorage\AnyTransferSyntax -PresentationContext198 = DICOS_3DAITStorage\AnyTransferSyntax -PresentationContext199 = DICOS_QuadrupoleResonanceStorage\UncompressedOrZlib -PresentationContext200 = DICOS_ThreatDetectionReportStorage\UncompressedOrZlib +PresentationContext196 = DICOS_CTImageStorage\AnyTransferSyntax +PresentationContext197 = DICOS_DigitalXRayImageStorageForPresentation\AnyTransferSyntax +PresentationContext198 = DICOS_DigitalXRayImageStorageForProcessing\AnyTransferSyntax +PresentationContext199 = DICOS_2DAITStorage\AnyTransferSyntax +PresentationContext200 = DICOS_3DAITStorage\AnyTransferSyntax +PresentationContext201 = DICOS_QuadrupoleResonanceStorage\UncompressedOrZlib +PresentationContext202 = DICOS_ThreatDetectionReportStorage\UncompressedOrZlib # # DICONDE Storage # -PresentationContext201 = DICONDE_EddyCurrentImageStorage\AnyTransferSyntax -PresentationContext202 = DICONDE_EddyCurrentMultiframeImageStorage\AnyTransferSyntax +PresentationContext203 = DICONDE_EddyCurrentImageStorage\AnyTransferSyntax +PresentationContext204 = DICONDE_EddyCurrentMultiframeImageStorage\AnyTransferSyntax # ---------------------------------------------------------------------------- @@ -338,177 +340,179 @@ PresentationContext3 = BreastProjectionXRayImageStorageForProcessing\AnyTransf PresentationContext4 = BreastTomosynthesisImageStorage\AnyTransferSyntax PresentationContext5 = CTImageStorage\AnyTransferSyntax PresentationContext6 = ComputedRadiographyImageStorage\AnyTransferSyntax -PresentationContext7 = CornealTopographyMapStorage\AnyTransferSyntax -PresentationContext8 = DermoscopicPhotographyImageStorage\AnyTransferSyntax -PresentationContext9 = DigitalIntraOralXRayImageStorageForPresentation\AnyTransferSyntax -PresentationContext10 = DigitalIntraOralXRayImageStorageForProcessing\AnyTransferSyntax -PresentationContext11 = DigitalMammographyXRayImageStorageForPresentation\AnyTransferSyntax -PresentationContext12 = DigitalMammographyXRayImageStorageForProcessing\AnyTransferSyntax -PresentationContext13 = DigitalXRayImageStorageForPresentation\AnyTransferSyntax -PresentationContext14 = DigitalXRayImageStorageForProcessing\AnyTransferSyntax -PresentationContext15 = EnhancedContinuousRTImageStorage\AnyTransferSyntax -PresentationContext16 = EnhancedCTImageStorage\AnyTransferSyntax -PresentationContext17 = EnhancedMRColorImageStorage\AnyTransferSyntax -PresentationContext18 = EnhancedMRImageStorage\AnyTransferSyntax -PresentationContext19 = EnhancedPETImageStorage\AnyTransferSyntax -PresentationContext20 = EnhancedRTImageStorage\AnyTransferSyntax -PresentationContext21 = EnhancedUSVolumeStorage\AnyTransferSyntax -PresentationContext22 = EnhancedXAImageStorage\AnyTransferSyntax -PresentationContext23 = EnhancedXRFImageStorage\AnyTransferSyntax -PresentationContext24 = IntravascularOpticalCoherenceTomographyImageStorageForPresentation\AnyTransferSyntax -PresentationContext25 = IntravascularOpticalCoherenceTomographyImageStorageForProcessing\AnyTransferSyntax -PresentationContext26 = LegacyConvertedEnhancedCTImageStorage\AnyTransferSyntax -PresentationContext27 = LegacyConvertedEnhancedMRImageStorage\AnyTransferSyntax -PresentationContext28 = LegacyConvertedEnhancedPETImageStorage\AnyTransferSyntax -PresentationContext29 = MRImageStorage\AnyTransferSyntax -PresentationContext30 = MultiframeGrayscaleByteSecondaryCaptureImageStorage\AnyTransferSyntax -PresentationContext31 = MultiframeGrayscaleWordSecondaryCaptureImageStorage\AnyTransferSyntax -PresentationContext32 = MultiframeSingleBitSecondaryCaptureImageStorage\AnyTransferSyntax -PresentationContext33 = MultiframeTrueColorSecondaryCaptureImageStorage\AnyTransferSyntax -PresentationContext34 = NuclearMedicineImageStorage\AnyTransferSyntax -PresentationContext35 = OphthalmicOpticalCoherenceTomographyEnFaceImageStorage\AnyTransferSyntax -PresentationContext36 = OphthalmicPhotography16BitImageStorage\AnyTransferSyntax -PresentationContext37 = OphthalmicPhotography8BitImageStorage\AnyTransferSyntax -PresentationContext38 = OphthalmicThicknessMapStorage\AnyTransferSyntax -PresentationContext39 = OphthalmicTomographyImageStorage\AnyTransferSyntax -PresentationContext40 = PhotoacousticImageStorage\AnyTransferSyntax -PresentationContext41 = PositronEmissionTomographyImageStorage\AnyTransferSyntax -PresentationContext42 = RTImageStorage\AnyTransferSyntax -PresentationContext43 = SecondaryCaptureImageStorage\AnyTransferSyntax -PresentationContext44 = UltrasoundImageStorage\AnyTransferSyntax -PresentationContext45 = UltrasoundMultiframeImageStorage\AnyTransferSyntax -PresentationContext46 = VLEndoscopicImageStorage\AnyTransferSyntax -PresentationContext47 = VLMicroscopicImageStorage\AnyTransferSyntax -PresentationContext48 = VLPhotographicImageStorage\AnyTransferSyntax -PresentationContext49 = VLSlideCoordinatesMicroscopicImageStorage\AnyTransferSyntax -PresentationContext50 = VLWholeSlideMicroscopyImageStorage\AnyTransferSyntax -PresentationContext51 = VideoEndoscopicImageStorage\AnyTransferSyntax -PresentationContext52 = VideoMicroscopicImageStorage\AnyTransferSyntax -PresentationContext53 = VideoPhotographicImageStorage\AnyTransferSyntax -PresentationContext54 = WideFieldOphthalmicPhotography3DCoordinatesImageStorage\AnyTransferSyntax -PresentationContext55 = WideFieldOphthalmicPhotographyStereographicProjectionImageStorage\AnyTransferSyntax -PresentationContext56 = XRay3DAngiographicImageStorage\AnyTransferSyntax -PresentationContext57 = XRay3DCraniofacialImageStorage\AnyTransferSyntax -PresentationContext58 = XRayAngiographicImageStorage\AnyTransferSyntax -PresentationContext59 = XRayRadiofluoroscopicImageStorage\AnyTransferSyntax +PresentationContext7 = ConfocalMicroscopyImageStorage\AnyTransferSyntax +PresentationContext8 = ConfocalMicroscopyTiledPyramidalImageStorage\AnyTransferSyntax +PresentationContext9 = CornealTopographyMapStorage\AnyTransferSyntax +PresentationContext10 = DermoscopicPhotographyImageStorage\AnyTransferSyntax +PresentationContext11 = DigitalIntraOralXRayImageStorageForPresentation\AnyTransferSyntax +PresentationContext12 = DigitalIntraOralXRayImageStorageForProcessing\AnyTransferSyntax +PresentationContext13 = DigitalMammographyXRayImageStorageForPresentation\AnyTransferSyntax +PresentationContext14 = DigitalMammographyXRayImageStorageForProcessing\AnyTransferSyntax +PresentationContext15 = DigitalXRayImageStorageForPresentation\AnyTransferSyntax +PresentationContext16 = DigitalXRayImageStorageForProcessing\AnyTransferSyntax +PresentationContext17 = EnhancedContinuousRTImageStorage\AnyTransferSyntax +PresentationContext18 = EnhancedCTImageStorage\AnyTransferSyntax +PresentationContext19 = EnhancedMRColorImageStorage\AnyTransferSyntax +PresentationContext20 = EnhancedMRImageStorage\AnyTransferSyntax +PresentationContext21 = EnhancedPETImageStorage\AnyTransferSyntax +PresentationContext22 = EnhancedRTImageStorage\AnyTransferSyntax +PresentationContext23 = EnhancedUSVolumeStorage\AnyTransferSyntax +PresentationContext24 = EnhancedXAImageStorage\AnyTransferSyntax +PresentationContext25 = EnhancedXRFImageStorage\AnyTransferSyntax +PresentationContext26 = IntravascularOpticalCoherenceTomographyImageStorageForPresentation\AnyTransferSyntax +PresentationContext27 = IntravascularOpticalCoherenceTomographyImageStorageForProcessing\AnyTransferSyntax +PresentationContext28 = LegacyConvertedEnhancedCTImageStorage\AnyTransferSyntax +PresentationContext29 = LegacyConvertedEnhancedMRImageStorage\AnyTransferSyntax +PresentationContext30 = LegacyConvertedEnhancedPETImageStorage\AnyTransferSyntax +PresentationContext31 = MRImageStorage\AnyTransferSyntax +PresentationContext32 = MultiframeGrayscaleByteSecondaryCaptureImageStorage\AnyTransferSyntax +PresentationContext33 = MultiframeGrayscaleWordSecondaryCaptureImageStorage\AnyTransferSyntax +PresentationContext34 = MultiframeSingleBitSecondaryCaptureImageStorage\AnyTransferSyntax +PresentationContext35 = MultiframeTrueColorSecondaryCaptureImageStorage\AnyTransferSyntax +PresentationContext36 = NuclearMedicineImageStorage\AnyTransferSyntax +PresentationContext37 = OphthalmicOpticalCoherenceTomographyEnFaceImageStorage\AnyTransferSyntax +PresentationContext38 = OphthalmicPhotography16BitImageStorage\AnyTransferSyntax +PresentationContext39 = OphthalmicPhotography8BitImageStorage\AnyTransferSyntax +PresentationContext40 = OphthalmicThicknessMapStorage\AnyTransferSyntax +PresentationContext41 = OphthalmicTomographyImageStorage\AnyTransferSyntax +PresentationContext42 = PhotoacousticImageStorage\AnyTransferSyntax +PresentationContext43 = PositronEmissionTomographyImageStorage\AnyTransferSyntax +PresentationContext44 = RTImageStorage\AnyTransferSyntax +PresentationContext45 = SecondaryCaptureImageStorage\AnyTransferSyntax +PresentationContext46 = UltrasoundImageStorage\AnyTransferSyntax +PresentationContext47 = UltrasoundMultiframeImageStorage\AnyTransferSyntax +PresentationContext48 = VLEndoscopicImageStorage\AnyTransferSyntax +PresentationContext49 = VLMicroscopicImageStorage\AnyTransferSyntax +PresentationContext50 = VLPhotographicImageStorage\AnyTransferSyntax +PresentationContext51 = VLSlideCoordinatesMicroscopicImageStorage\AnyTransferSyntax +PresentationContext52 = VLWholeSlideMicroscopyImageStorage\AnyTransferSyntax +PresentationContext53 = VideoEndoscopicImageStorage\AnyTransferSyntax +PresentationContext54 = VideoMicroscopicImageStorage\AnyTransferSyntax +PresentationContext55 = VideoPhotographicImageStorage\AnyTransferSyntax +PresentationContext56 = WideFieldOphthalmicPhotography3DCoordinatesImageStorage\AnyTransferSyntax +PresentationContext57 = WideFieldOphthalmicPhotographyStereographicProjectionImageStorage\AnyTransferSyntax +PresentationContext58 = XRay3DAngiographicImageStorage\AnyTransferSyntax +PresentationContext59 = XRay3DCraniofacialImageStorage\AnyTransferSyntax +PresentationContext60 = XRayAngiographicImageStorage\AnyTransferSyntax +PresentationContext61 = XRayRadiofluoroscopicImageStorage\AnyTransferSyntax # # the following presentation contexts are for non-image SOP classes # (including some that do not fit into the PATIENT-STUDY-SERIES-INSTANCE model) # -PresentationContext60 = AcquisitionContextSRStorage\UncompressedOrZlib -PresentationContext61 = AdvancedBlendingPresentationStateStorage\UncompressedOrZlib -PresentationContext62 = AmbulatoryECGWaveformStorage\UncompressedOrZlib -PresentationContext63 = ArterialPulseWaveformStorage\UncompressedOrZlib -PresentationContext64 = AutorefractionMeasurementsStorage\UncompressedOrZlib -PresentationContext65 = BasicStructuredDisplayStorage\UncompressedOrZlib -PresentationContext66 = BasicTextSRStorage\UncompressedOrZlib -PresentationContext67 = BasicVoiceAudioWaveformStorage\UncompressedOrZlib -PresentationContext68 = BlendingSoftcopyPresentationStateStorage\UncompressedOrZlib -PresentationContext69 = BodyPositionWaveformStorage\UncompressedOrZlib -PresentationContext70 = CArmPhotonElectronRadiationRecordStorage\UncompressedOrZlib -PresentationContext71 = CArmPhotonElectronRadiationStorage\UncompressedOrZlib -PresentationContext72 = CTDefinedProcedureProtocolStorage\UncompressedOrZlib -PresentationContext73 = CTPerformedProcedureProtocolStorage\UncompressedOrZlib -PresentationContext74 = CardiacElectrophysiologyWaveformStorage\UncompressedOrZlib -PresentationContext75 = ChestCADSRStorage\UncompressedOrZlib -PresentationContext76 = ColonCADSRStorage\UncompressedOrZlib -PresentationContext77 = ColorPaletteStorage\UncompressedOrZlib -PresentationContext78 = ColorSoftcopyPresentationStateStorage\UncompressedOrZlib -PresentationContext79 = CompositingPlanarMPRVolumetricPresentationStateStorage\UncompressedOrZlib -PresentationContext80 = Comprehensive3DSRStorage\UncompressedOrZlib -PresentationContext81 = ComprehensiveSRStorage\UncompressedOrZlib -PresentationContext82 = ContentAssessmentResultsStorage\UncompressedOrZlib -PresentationContext83 = DeformableSpatialRegistrationStorage\UncompressedOrZlib -PresentationContext84 = ElectromyogramWaveformStorage\UncompressedOrZlib -PresentationContext85 = ElectrooculogramWaveformStorage\UncompressedOrZlib -PresentationContext86 = EncapsulatedCDAStorage\UncompressedOrZlib -PresentationContext87 = EncapsulatedMTLStorage\UncompressedOrZlib -PresentationContext88 = EncapsulatedOBJStorage\UncompressedOrZlib -PresentationContext89 = EncapsulatedPDFStorage\UncompressedOrZlib -PresentationContext90 = EncapsulatedSTLStorage\UncompressedOrZlib -PresentationContext91 = EnhancedSRStorage\UncompressedOrZlib -PresentationContext92 = EnhancedXRayRadiationDoseSRStorage\UncompressedOrZlib -PresentationContext93 = ExtensibleSRStorage\UncompressedOrZlib -PresentationContext94 = General32BitECGWaveformStorage\UncompressedOrZlib -PresentationContext95 = GeneralAudioWaveformStorage\UncompressedOrZlib -PresentationContext96 = GeneralECGWaveformStorage\UncompressedOrZlib -PresentationContext97 = GenericImplantTemplateStorage\UncompressedOrZlib -PresentationContext98 = GrayscalePlanarMPRVolumetricPresentationStateStorage\UncompressedOrZlib -PresentationContext99 = GrayscaleSoftcopyPresentationStateStorage\UncompressedOrZlib -PresentationContext100 = HangingProtocolStorage\UncompressedOrZlib -PresentationContext101 = HemodynamicWaveformStorage\UncompressedOrZlib -PresentationContext102 = ImplantAssemblyTemplateStorage\UncompressedOrZlib -PresentationContext103 = ImplantTemplateGroupStorage\UncompressedOrZlib -PresentationContext104 = ImplantationPlanSRStorage\UncompressedOrZlib -PresentationContext105 = IntraocularLensCalculationsStorage\UncompressedOrZlib -PresentationContext106 = InventoryStorage\UncompressedOrZlib -PresentationContext107 = KeratometryMeasurementsStorage\UncompressedOrZlib -PresentationContext108 = KeyObjectSelectionDocumentStorage\UncompressedOrZlib -PresentationContext109 = LensometryMeasurementsStorage\UncompressedOrZlib -PresentationContext110 = MRSpectroscopyStorage\UncompressedOrZlib -PresentationContext111 = MacularGridThicknessAndVolumeReportStorage\UncompressedOrZlib -PresentationContext112 = MammographyCADSRStorage\UncompressedOrZlib -PresentationContext113 = MicroscopyBulkSimpleAnnotationsStorage\UncompressedOrZlib -PresentationContext114 = MultichannelRespiratoryWaveformStorage\UncompressedOrZlib -PresentationContext115 = MultipleVolumeRenderingVolumetricPresentationStateStorage\UncompressedOrZlib -PresentationContext116 = OphthalmicAxialMeasurementsStorage\UncompressedOrZlib -PresentationContext117 = OphthalmicOpticalCoherenceTomographyBscanVolumeAnalysisStorage\UncompressedOrZlib -PresentationContext118 = OphthalmicVisualFieldStaticPerimetryMeasurementsStorage\UncompressedOrZlib -PresentationContext119 = ParametricMapStorage\UncompressedOrZlib -PresentationContext120 = PatientRadiationDoseSRStorage\UncompressedOrZlib -PresentationContext121 = PerformedImagingAgentAdministrationSRStorage\UncompressedOrZlib -PresentationContext122 = PlannedImagingAgentAdministrationSRStorage\UncompressedOrZlib -PresentationContext123 = ProcedureLogStorage\UncompressedOrZlib -PresentationContext124 = ProtocolApprovalStorage\UncompressedOrZlib -PresentationContext125 = PseudoColorSoftcopyPresentationStateStorage\UncompressedOrZlib -PresentationContext126 = RTBeamsDeliveryInstructionStorage\UncompressedOrZlib -PresentationContext127 = RTBeamsTreatmentRecordStorage\UncompressedOrZlib -PresentationContext128 = RTBrachyApplicationSetupDeliveryInstructionStorage\UncompressedOrZlib -PresentationContext129 = RTBrachyTreatmentRecordStorage\UncompressedOrZlib -PresentationContext130 = RTDoseStorage\UncompressedOrZlib -PresentationContext131 = RTIonBeamsTreatmentRecordStorage\UncompressedOrZlib -PresentationContext132 = RTIonPlanStorage\UncompressedOrZlib -PresentationContext133 = RTPatientPositionAcquisitionInstructionStorage\UncompressedOrZlib -PresentationContext134 = RTPhysicianIntentStorage\UncompressedOrZlib -PresentationContext135 = RTPlanStorage\UncompressedOrZlib -PresentationContext136 = RTRadiationRecordSetStorage\UncompressedOrZlib -PresentationContext137 = RTRadiationSalvageRecordStorage\UncompressedOrZlib -PresentationContext138 = RTRadiationSetDeliveryInstructionStorage\UncompressedOrZlib -PresentationContext139 = RTRadiationSetStorage\UncompressedOrZlib -PresentationContext140 = RTSegmentAnnotationStorage\UncompressedOrZlib -PresentationContext141 = RTStructureSetStorage\UncompressedOrZlib -PresentationContext142 = RTTreatmentPreparationStorage\UncompressedOrZlib -PresentationContext143 = RTTreatmentSummaryRecordStorage\UncompressedOrZlib -PresentationContext144 = RadiopharmaceuticalRadiationDoseSRStorage\UncompressedOrZlib -PresentationContext145 = RawDataStorage\UncompressedOrZlib -PresentationContext146 = RealWorldValueMappingStorage\UncompressedOrZlib -PresentationContext147 = RespiratoryWaveformStorage\UncompressedOrZlib -PresentationContext148 = RoboticArmRadiationStorage\UncompressedOrZlib -PresentationContext149 = RoboticRadiationRecordStorage\UncompressedOrZlib -PresentationContext150 = RoutineScalpElectroencephalogramWaveformStorage\UncompressedOrZlib -PresentationContext151 = SegmentationStorage\UncompressedOrZlib -PresentationContext152 = SegmentedVolumeRenderingVolumetricPresentationStateStorage\UncompressedOrZlib -PresentationContext153 = SimplifiedAdultEchoSRStorage\UncompressedOrZlib -PresentationContext154 = SleepElectroencephalogramWaveformStorage\UncompressedOrZlib -PresentationContext155 = SpatialFiducialsStorage\UncompressedOrZlib -PresentationContext156 = SpatialRegistrationStorage\UncompressedOrZlib -PresentationContext157 = SpectaclePrescriptionReportStorage\UncompressedOrZlib -PresentationContext158 = StereometricRelationshipStorage\UncompressedOrZlib -PresentationContext159 = SubjectiveRefractionMeasurementsStorage\UncompressedOrZlib -PresentationContext160 = SurfaceScanMeshStorage\UncompressedOrZlib -PresentationContext161 = SurfaceScanPointCloudStorage\UncompressedOrZlib -PresentationContext162 = SurfaceSegmentationStorage\UncompressedOrZlib -PresentationContext163 = TomotherapeuticRadiationRecordStorage\UncompressedOrZlib -PresentationContext164 = TomotherapeuticRadiationStorage\UncompressedOrZlib -PresentationContext165 = TractographyResultsStorage\UncompressedOrZlib -PresentationContext166 = TwelveLeadECGWaveformStorage\UncompressedOrZlib -PresentationContext167 = VariableModalityLUTSoftcopyPresentationStateStorage\UncompressedOrZlib -PresentationContext168 = VisualAcuityMeasurementsStorage\UncompressedOrZlib -PresentationContext169 = VolumeRenderingVolumetricPresentationStateStorage\UncompressedOrZlib -PresentationContext170 = XADefinedProcedureProtocolStorage\UncompressedOrZlib -PresentationContext171 = XAPerformedProcedureProtocolStorage\UncompressedOrZlib -PresentationContext172 = XAXRFGrayscaleSoftcopyPresentationStateStorage\UncompressedOrZlib -PresentationContext173 = XRayRadiationDoseSRStorage\UncompressedOrZlib +PresentationContext62 = AcquisitionContextSRStorage\UncompressedOrZlib +PresentationContext63 = AdvancedBlendingPresentationStateStorage\UncompressedOrZlib +PresentationContext64 = AmbulatoryECGWaveformStorage\UncompressedOrZlib +PresentationContext65 = ArterialPulseWaveformStorage\UncompressedOrZlib +PresentationContext66 = AutorefractionMeasurementsStorage\UncompressedOrZlib +PresentationContext67 = BasicStructuredDisplayStorage\UncompressedOrZlib +PresentationContext68 = BasicTextSRStorage\UncompressedOrZlib +PresentationContext69 = BasicVoiceAudioWaveformStorage\UncompressedOrZlib +PresentationContext70 = BlendingSoftcopyPresentationStateStorage\UncompressedOrZlib +PresentationContext71 = BodyPositionWaveformStorage\UncompressedOrZlib +PresentationContext72 = CArmPhotonElectronRadiationRecordStorage\UncompressedOrZlib +PresentationContext73 = CArmPhotonElectronRadiationStorage\UncompressedOrZlib +PresentationContext74 = CTDefinedProcedureProtocolStorage\UncompressedOrZlib +PresentationContext75 = CTPerformedProcedureProtocolStorage\UncompressedOrZlib +PresentationContext76 = CardiacElectrophysiologyWaveformStorage\UncompressedOrZlib +PresentationContext77 = ChestCADSRStorage\UncompressedOrZlib +PresentationContext78 = ColonCADSRStorage\UncompressedOrZlib +PresentationContext79 = ColorPaletteStorage\UncompressedOrZlib +PresentationContext80 = ColorSoftcopyPresentationStateStorage\UncompressedOrZlib +PresentationContext81 = CompositingPlanarMPRVolumetricPresentationStateStorage\UncompressedOrZlib +PresentationContext82 = Comprehensive3DSRStorage\UncompressedOrZlib +PresentationContext83 = ComprehensiveSRStorage\UncompressedOrZlib +PresentationContext84 = ContentAssessmentResultsStorage\UncompressedOrZlib +PresentationContext85 = DeformableSpatialRegistrationStorage\UncompressedOrZlib +PresentationContext86 = ElectromyogramWaveformStorage\UncompressedOrZlib +PresentationContext87 = ElectrooculogramWaveformStorage\UncompressedOrZlib +PresentationContext88 = EncapsulatedCDAStorage\UncompressedOrZlib +PresentationContext89 = EncapsulatedMTLStorage\UncompressedOrZlib +PresentationContext90 = EncapsulatedOBJStorage\UncompressedOrZlib +PresentationContext91 = EncapsulatedPDFStorage\UncompressedOrZlib +PresentationContext92 = EncapsulatedSTLStorage\UncompressedOrZlib +PresentationContext93 = EnhancedSRStorage\UncompressedOrZlib +PresentationContext94 = EnhancedXRayRadiationDoseSRStorage\UncompressedOrZlib +PresentationContext95 = ExtensibleSRStorage\UncompressedOrZlib +PresentationContext96 = General32BitECGWaveformStorage\UncompressedOrZlib +PresentationContext97 = GeneralAudioWaveformStorage\UncompressedOrZlib +PresentationContext98 = GeneralECGWaveformStorage\UncompressedOrZlib +PresentationContext99 = GenericImplantTemplateStorage\UncompressedOrZlib +PresentationContext100 = GrayscalePlanarMPRVolumetricPresentationStateStorage\UncompressedOrZlib +PresentationContext101 = GrayscaleSoftcopyPresentationStateStorage\UncompressedOrZlib +PresentationContext102 = HangingProtocolStorage\UncompressedOrZlib +PresentationContext103 = HemodynamicWaveformStorage\UncompressedOrZlib +PresentationContext104 = ImplantAssemblyTemplateStorage\UncompressedOrZlib +PresentationContext105 = ImplantTemplateGroupStorage\UncompressedOrZlib +PresentationContext106 = ImplantationPlanSRStorage\UncompressedOrZlib +PresentationContext107 = IntraocularLensCalculationsStorage\UncompressedOrZlib +PresentationContext108 = InventoryStorage\UncompressedOrZlib +PresentationContext109 = KeratometryMeasurementsStorage\UncompressedOrZlib +PresentationContext110 = KeyObjectSelectionDocumentStorage\UncompressedOrZlib +PresentationContext111 = LensometryMeasurementsStorage\UncompressedOrZlib +PresentationContext112 = MRSpectroscopyStorage\UncompressedOrZlib +PresentationContext113 = MacularGridThicknessAndVolumeReportStorage\UncompressedOrZlib +PresentationContext114 = MammographyCADSRStorage\UncompressedOrZlib +PresentationContext115 = MicroscopyBulkSimpleAnnotationsStorage\UncompressedOrZlib +PresentationContext116 = MultichannelRespiratoryWaveformStorage\UncompressedOrZlib +PresentationContext117 = MultipleVolumeRenderingVolumetricPresentationStateStorage\UncompressedOrZlib +PresentationContext118 = OphthalmicAxialMeasurementsStorage\UncompressedOrZlib +PresentationContext119 = OphthalmicOpticalCoherenceTomographyBscanVolumeAnalysisStorage\UncompressedOrZlib +PresentationContext120 = OphthalmicVisualFieldStaticPerimetryMeasurementsStorage\UncompressedOrZlib +PresentationContext121 = ParametricMapStorage\UncompressedOrZlib +PresentationContext122 = PatientRadiationDoseSRStorage\UncompressedOrZlib +PresentationContext123 = PerformedImagingAgentAdministrationSRStorage\UncompressedOrZlib +PresentationContext124 = PlannedImagingAgentAdministrationSRStorage\UncompressedOrZlib +PresentationContext125 = ProcedureLogStorage\UncompressedOrZlib +PresentationContext126 = ProtocolApprovalStorage\UncompressedOrZlib +PresentationContext127 = PseudoColorSoftcopyPresentationStateStorage\UncompressedOrZlib +PresentationContext128 = RTBeamsDeliveryInstructionStorage\UncompressedOrZlib +PresentationContext129 = RTBeamsTreatmentRecordStorage\UncompressedOrZlib +PresentationContext130 = RTBrachyApplicationSetupDeliveryInstructionStorage\UncompressedOrZlib +PresentationContext131 = RTBrachyTreatmentRecordStorage\UncompressedOrZlib +PresentationContext132 = RTDoseStorage\UncompressedOrZlib +PresentationContext133 = RTIonBeamsTreatmentRecordStorage\UncompressedOrZlib +PresentationContext134 = RTIonPlanStorage\UncompressedOrZlib +PresentationContext135 = RTPatientPositionAcquisitionInstructionStorage\UncompressedOrZlib +PresentationContext136 = RTPhysicianIntentStorage\UncompressedOrZlib +PresentationContext137 = RTPlanStorage\UncompressedOrZlib +PresentationContext138 = RTRadiationRecordSetStorage\UncompressedOrZlib +PresentationContext139 = RTRadiationSalvageRecordStorage\UncompressedOrZlib +PresentationContext140 = RTRadiationSetDeliveryInstructionStorage\UncompressedOrZlib +PresentationContext141 = RTRadiationSetStorage\UncompressedOrZlib +PresentationContext142 = RTSegmentAnnotationStorage\UncompressedOrZlib +PresentationContext143 = RTStructureSetStorage\UncompressedOrZlib +PresentationContext144 = RTTreatmentPreparationStorage\UncompressedOrZlib +PresentationContext145 = RTTreatmentSummaryRecordStorage\UncompressedOrZlib +PresentationContext146 = RadiopharmaceuticalRadiationDoseSRStorage\UncompressedOrZlib +PresentationContext147 = RawDataStorage\UncompressedOrZlib +PresentationContext148 = RealWorldValueMappingStorage\UncompressedOrZlib +PresentationContext149 = RespiratoryWaveformStorage\UncompressedOrZlib +PresentationContext150 = RoboticArmRadiationStorage\UncompressedOrZlib +PresentationContext151 = RoboticRadiationRecordStorage\UncompressedOrZlib +PresentationContext152 = RoutineScalpElectroencephalogramWaveformStorage\UncompressedOrZlib +PresentationContext153 = SegmentationStorage\UncompressedOrZlib +PresentationContext154 = SegmentedVolumeRenderingVolumetricPresentationStateStorage\UncompressedOrZlib +PresentationContext155 = SimplifiedAdultEchoSRStorage\UncompressedOrZlib +PresentationContext156 = SleepElectroencephalogramWaveformStorage\UncompressedOrZlib +PresentationContext157 = SpatialFiducialsStorage\UncompressedOrZlib +PresentationContext158 = SpatialRegistrationStorage\UncompressedOrZlib +PresentationContext159 = SpectaclePrescriptionReportStorage\UncompressedOrZlib +PresentationContext160 = StereometricRelationshipStorage\UncompressedOrZlib +PresentationContext161 = SubjectiveRefractionMeasurementsStorage\UncompressedOrZlib +PresentationContext162 = SurfaceScanMeshStorage\UncompressedOrZlib +PresentationContext163 = SurfaceScanPointCloudStorage\UncompressedOrZlib +PresentationContext164 = SurfaceSegmentationStorage\UncompressedOrZlib +PresentationContext165 = TomotherapeuticRadiationRecordStorage\UncompressedOrZlib +PresentationContext166 = TomotherapeuticRadiationStorage\UncompressedOrZlib +PresentationContext167 = TractographyResultsStorage\UncompressedOrZlib +PresentationContext168 = TwelveLeadECGWaveformStorage\UncompressedOrZlib +PresentationContext169 = VariableModalityLUTSoftcopyPresentationStateStorage\UncompressedOrZlib +PresentationContext170 = VisualAcuityMeasurementsStorage\UncompressedOrZlib +PresentationContext171 = VolumeRenderingVolumetricPresentationStateStorage\UncompressedOrZlib +PresentationContext172 = XADefinedProcedureProtocolStorage\UncompressedOrZlib +PresentationContext173 = XAPerformedProcedureProtocolStorage\UncompressedOrZlib +PresentationContext174 = XAXRFGrayscaleSoftcopyPresentationStateStorage\UncompressedOrZlib +PresentationContext175 = XRayRadiationDoseSRStorage\UncompressedOrZlib # ============================================================================ [[Profiles]] diff --git a/dcmnet/etc/storescu.cfg b/dcmnet/etc/storescu.cfg index c2034eaa5f..51b71800df 100644 --- a/dcmnet/etc/storescu.cfg +++ b/dcmnet/etc/storescu.cfg @@ -1,5 +1,5 @@ # -# Copyright (C) 2003-2023, OFFIS e.V. +# Copyright (C) 2003-2024, OFFIS e.V. # All rights reserved. See COPYRIGHT file for details. # # This software and supporting documentation were developed by @@ -279,6 +279,8 @@ PresentationContext128 = VideoPhotographicImageStorage\MPEG2 # - ColorPaletteStorage # - CompositingPlanarMPRVolumetricPresentationStateStorage # - Comprehensive3DSRStorage +# - ConfocalMicroscopyImageStorage +# - ConfocalMicroscopyTiledPyramidalImageStorage # - ContentAssessmentResultsStorage # - CornealTopographyMapStorage # - CTDefinedProcedureProtocolStorage diff --git a/dcmqrdb/docs/dcmqrscp.man b/dcmqrdb/docs/dcmqrscp.man index 44c98079f9..ab91653709 100644 --- a/dcmqrdb/docs/dcmqrscp.man +++ b/dcmqrdb/docs/dcmqrscp.man @@ -945,6 +945,8 @@ OphthalmicOpticalCoherenceTomogr.EnFaceImageStorage 1.2.840.10008.5.1.4.1.1.77. OphthalmicOpticalCoh.Tomogr.BscanVolumeAnalysisStor. 1.2.840.10008.5.1.4.1.1.77.1.5.8 VLWholeSlideMicroscopyImageStorage 1.2.840.10008.5.1.4.1.1.77.1.6 DermoscopicPhotographyImageStorage 1.2.840.10008.5.1.4.1.1.77.1.7 +ConfocalMicroscopyImageStorage 1.2.840.10008.5.1.4.1.1.77.1.8 +ConfocalMicroscopyTiledPyramidalImageStorage 1.2.840.10008.5.1.4.1.1.77.1.9 RETIRED_VLMultiframeImageStorage 1.2.840.10008.5.1.4.1.1.77.2 LensometryMeasurementsStorage 1.2.840.10008.5.1.4.1.1.78.1 AutorefractionMeasurementsStorage 1.2.840.10008.5.1.4.1.1.78.2 diff --git a/dcmqrdb/etc/dcmqrprf.cfg b/dcmqrdb/etc/dcmqrprf.cfg index 96badec3dc..19c8e06c9e 100644 --- a/dcmqrdb/etc/dcmqrprf.cfg +++ b/dcmqrdb/etc/dcmqrprf.cfg @@ -1,5 +1,5 @@ # -# Copyright (C) 2017-2023, OFFIS e.V. +# Copyright (C) 2017-2024, OFFIS e.V. # All rights reserved. See COPYRIGHT file for details. # # This software and supporting documentation were developed by @@ -139,220 +139,223 @@ PresentationContext3 = BreastProjectionXRayImageStorageForProcessing\AnyTransf PresentationContext4 = BreastTomosynthesisImageStorage\AnyTransferSyntax PresentationContext5 = CTImageStorage\AnyTransferSyntax PresentationContext6 = ComputedRadiographyImageStorage\AnyTransferSyntax -PresentationContext7 = CornealTopographyMapStorage\AnyTransferSyntax -PresentationContext8 = DermoscopicPhotographyImageStorage\AnyTransferSyntax -PresentationContext9 = DigitalIntraOralXRayImageStorageForPresentation\AnyTransferSyntax -PresentationContext10 = DigitalIntraOralXRayImageStorageForProcessing\AnyTransferSyntax -PresentationContext11 = DigitalMammographyXRayImageStorageForPresentation\AnyTransferSyntax -PresentationContext12 = DigitalMammographyXRayImageStorageForProcessing\AnyTransferSyntax -PresentationContext13 = DigitalXRayImageStorageForPresentation\AnyTransferSyntax -PresentationContext14 = DigitalXRayImageStorageForProcessing\AnyTransferSyntax -PresentationContext15 = EnhancedContinuousRTImageStorage\AnyTransferSyntax -PresentationContext16 = EnhancedCTImageStorage\AnyTransferSyntax -PresentationContext17 = EnhancedMRColorImageStorage\AnyTransferSyntax -PresentationContext18 = EnhancedMRImageStorage\AnyTransferSyntax -PresentationContext19 = EnhancedPETImageStorage\AnyTransferSyntax -PresentationContext20 = EnhancedRTImageStorage\AnyTransferSyntax -PresentationContext21 = EnhancedUSVolumeStorage\AnyTransferSyntax -PresentationContext22 = EnhancedXAImageStorage\AnyTransferSyntax -PresentationContext23 = EnhancedXRFImageStorage\AnyTransferSyntax -PresentationContext24 = IntravascularOpticalCoherenceTomographyImageStorageForPresentation\AnyTransferSyntax -PresentationContext25 = IntravascularOpticalCoherenceTomographyImageStorageForProcessing\AnyTransferSyntax -PresentationContext26 = LegacyConvertedEnhancedCTImageStorage\AnyTransferSyntax -PresentationContext27 = LegacyConvertedEnhancedMRImageStorage\AnyTransferSyntax -PresentationContext28 = LegacyConvertedEnhancedPETImageStorage\AnyTransferSyntax -PresentationContext29 = MRImageStorage\AnyTransferSyntax -PresentationContext30 = MultiframeGrayscaleByteSecondaryCaptureImageStorage\AnyTransferSyntax -PresentationContext31 = MultiframeGrayscaleWordSecondaryCaptureImageStorage\AnyTransferSyntax -PresentationContext32 = MultiframeSingleBitSecondaryCaptureImageStorage\AnyTransferSyntax -PresentationContext33 = MultiframeTrueColorSecondaryCaptureImageStorage\AnyTransferSyntax -PresentationContext34 = NuclearMedicineImageStorage\AnyTransferSyntax -PresentationContext35 = OphthalmicOpticalCoherenceTomographyEnFaceImageStorage\AnyTransferSyntax -PresentationContext36 = OphthalmicPhotography16BitImageStorage\AnyTransferSyntax -PresentationContext37 = OphthalmicPhotography8BitImageStorage\AnyTransferSyntax -PresentationContext38 = OphthalmicThicknessMapStorage\AnyTransferSyntax -PresentationContext39 = OphthalmicTomographyImageStorage\AnyTransferSyntax -PresentationContext40 = PhotoacousticImageStorage\AnyTransferSyntax -PresentationContext41 = PositronEmissionTomographyImageStorage\AnyTransferSyntax -PresentationContext42 = RTImageStorage\AnyTransferSyntax -PresentationContext43 = SecondaryCaptureImageStorage\AnyTransferSyntax -PresentationContext44 = UltrasoundImageStorage\AnyTransferSyntax -PresentationContext45 = UltrasoundMultiframeImageStorage\AnyTransferSyntax -PresentationContext46 = VLEndoscopicImageStorage\AnyTransferSyntax -PresentationContext47 = VLMicroscopicImageStorage\AnyTransferSyntax -PresentationContext48 = VLPhotographicImageStorage\AnyTransferSyntax -PresentationContext49 = VLSlideCoordinatesMicroscopicImageStorage\AnyTransferSyntax -PresentationContext50 = VLWholeSlideMicroscopyImageStorage\AnyTransferSyntax -PresentationContext51 = VideoEndoscopicImageStorage\AnyTransferSyntax -PresentationContext52 = VideoMicroscopicImageStorage\AnyTransferSyntax -PresentationContext53 = VideoPhotographicImageStorage\AnyTransferSyntax -PresentationContext54 = WideFieldOphthalmicPhotography3DCoordinatesImageStorage\AnyTransferSyntax -PresentationContext55 = WideFieldOphthalmicPhotographyStereographicProjectionImageStorage\AnyTransferSyntax -PresentationContext56 = XRay3DAngiographicImageStorage\AnyTransferSyntax -PresentationContext57 = XRay3DCraniofacialImageStorage\AnyTransferSyntax -PresentationContext58 = XRayAngiographicImageStorage\AnyTransferSyntax -PresentationContext59 = XRayRadiofluoroscopicImageStorage\AnyTransferSyntax +PresentationContext7 = ConfocalMicroscopyImageStorage\AnyTransferSyntax +PresentationContext8 = ConfocalMicroscopyTiledPyramidalImageStorage\AnyTransferSyntax +PresentationContext9 = CornealTopographyMapStorage\AnyTransferSyntax +PresentationContext10 = DermoscopicPhotographyImageStorage\AnyTransferSyntax +PresentationContext11 = DigitalIntraOralXRayImageStorageForPresentation\AnyTransferSyntax +PresentationContext12 = DigitalIntraOralXRayImageStorageForProcessing\AnyTransferSyntax +PresentationContext13 = DigitalMammographyXRayImageStorageForPresentation\AnyTransferSyntax +PresentationContext14 = DigitalMammographyXRayImageStorageForProcessing\AnyTransferSyntax +PresentationContext15 = DigitalXRayImageStorageForPresentation\AnyTransferSyntax +PresentationContext16 = DigitalXRayImageStorageForProcessing\AnyTransferSyntax +PresentationContext17 = EnhancedContinuousRTImageStorage\AnyTransferSyntax +PresentationContext18 = EnhancedCTImageStorage\AnyTransferSyntax +PresentationContext19 = EnhancedMRColorImageStorage\AnyTransferSyntax +PresentationContext20 = EnhancedMRImageStorage\AnyTransferSyntax +PresentationContext21 = EnhancedPETImageStorage\AnyTransferSyntax +PresentationContext22 = EnhancedRTImageStorage\AnyTransferSyntax +PresentationContext23 = EnhancedUSVolumeStorage\AnyTransferSyntax +PresentationContext24 = EnhancedXAImageStorage\AnyTransferSyntax +PresentationContext25 = EnhancedXRFImageStorage\AnyTransferSyntax +PresentationContext26 = IntravascularOpticalCoherenceTomographyImageStorageForPresentation\AnyTransferSyntax +PresentationContext27 = IntravascularOpticalCoherenceTomographyImageStorageForProcessing\AnyTransferSyntax +PresentationContext28 = LegacyConvertedEnhancedCTImageStorage\AnyTransferSyntax +PresentationContext29 = LegacyConvertedEnhancedMRImageStorage\AnyTransferSyntax +PresentationContext30 = LegacyConvertedEnhancedPETImageStorage\AnyTransferSyntax +PresentationContext31 = MRImageStorage\AnyTransferSyntax +PresentationContext32 = MultiframeGrayscaleByteSecondaryCaptureImageStorage\AnyTransferSyntax +PresentationContext33 = MultiframeGrayscaleWordSecondaryCaptureImageStorage\AnyTransferSyntax +PresentationContext34 = MultiframeSingleBitSecondaryCaptureImageStorage\AnyTransferSyntax +PresentationContext35 = MultiframeTrueColorSecondaryCaptureImageStorage\AnyTransferSyntax +PresentationContext36 = NuclearMedicineImageStorage\AnyTransferSyntax +PresentationContext37 = OphthalmicOpticalCoherenceTomographyEnFaceImageStorage\AnyTransferSyntax +PresentationContext38 = OphthalmicPhotography16BitImageStorage\AnyTransferSyntax +PresentationContext39 = OphthalmicPhotography8BitImageStorage\AnyTransferSyntax +PresentationContext40 = OphthalmicThicknessMapStorage\AnyTransferSyntax +PresentationContext41 = OphthalmicTomographyImageStorage\AnyTransferSyntax +PresentationContext42 = PhotoacousticImageStorage\AnyTransferSyntax +PresentationContext43 = PositronEmissionTomographyImageStorage\AnyTransferSyntax +PresentationContext44 = RTImageStorage\AnyTransferSyntax +PresentationContext45 = SecondaryCaptureImageStorage\AnyTransferSyntax +PresentationContext46 = UltrasoundImageStorage\AnyTransferSyntax +PresentationContext47 = UltrasoundMultiframeImageStorage\AnyTransferSyntax +PresentationContext48 = VLEndoscopicImageStorage\AnyTransferSyntax +PresentationContext49 = VLMicroscopicImageStorage\AnyTransferSyntax +PresentationContext50 = VLPhotographicImageStorage\AnyTransferSyntax +PresentationContext51 = VLSlideCoordinatesMicroscopicImageStorage\AnyTransferSyntax +PresentationContext52 = VLWholeSlideMicroscopyImageStorage\AnyTransferSyntax +PresentationContext53 = VideoEndoscopicImageStorage\AnyTransferSyntax +PresentationContext54 = VideoMicroscopicImageStorage\AnyTransferSyntax +PresentationContext55 = VideoPhotographicImageStorage\AnyTransferSyntax +PresentationContext56 = WideFieldOphthalmicPhotography3DCoordinatesImageStorage\AnyTransferSyntax +PresentationContext57 = WideFieldOphthalmicPhotographyStereographicProjectionImageStorage\AnyTransferSyntax +PresentationContext58 = XRay3DAngiographicImageStorage\AnyTransferSyntax +PresentationContext59 = XRay3DCraniofacialImageStorage\AnyTransferSyntax +PresentationContext60 = XRayAngiographicImageStorage\AnyTransferSyntax +PresentationContext61 = XRayRadiofluoroscopicImageStorage\AnyTransferSyntax # # retired image SOP classes # -PresentationContext60 = RETIRED_HardcopyColorImageStorage\AnyTransferSyntax -PresentationContext61 = RETIRED_HardcopyGrayscaleImageStorage\AnyTransferSyntax -PresentationContext62 = RETIRED_NuclearMedicineImageStorage\AnyTransferSyntax -PresentationContext63 = RETIRED_UltrasoundImageStorage\AnyTransferSyntax -PresentationContext64 = RETIRED_UltrasoundMultiframeImageStorage\AnyTransferSyntax -PresentationContext65 = RETIRED_VLImageStorage\AnyTransferSyntax -PresentationContext66 = RETIRED_VLMultiframeImageStorage\AnyTransferSyntax -PresentationContext67 = RETIRED_XRayAngiographicBiPlaneImageStorage\AnyTransferSyntax +PresentationContext62 = RETIRED_HardcopyColorImageStorage\AnyTransferSyntax +PresentationContext63 = RETIRED_HardcopyGrayscaleImageStorage\AnyTransferSyntax +PresentationContext64 = RETIRED_NuclearMedicineImageStorage\AnyTransferSyntax +PresentationContext65 = RETIRED_UltrasoundImageStorage\AnyTransferSyntax +PresentationContext66 = RETIRED_UltrasoundMultiframeImageStorage\AnyTransferSyntax +PresentationContext67 = RETIRED_VLImageStorage\AnyTransferSyntax +PresentationContext68 = RETIRED_VLMultiframeImageStorage\AnyTransferSyntax +PresentationContext69 = RETIRED_XRayAngiographicBiPlaneImageStorage\AnyTransferSyntax # # the following presentation contexts are for non-image SOP classes -# -PresentationContext68 = AcquisitionContextSRStorage\UncompressedOrZlib -PresentationContext69 = AdvancedBlendingPresentationStateStorage\UncompressedOrZlib -PresentationContext70 = AmbulatoryECGWaveformStorage\UncompressedOrZlib -PresentationContext71 = ArterialPulseWaveformStorage\UncompressedOrZlib -PresentationContext72 = AutorefractionMeasurementsStorage\UncompressedOrZlib -PresentationContext73 = BasicStructuredDisplayStorage\UncompressedOrZlib -PresentationContext74 = BasicTextSRStorage\UncompressedOrZlib -PresentationContext75 = BasicVoiceAudioWaveformStorage\UncompressedOrZlib -PresentationContext76 = BlendingSoftcopyPresentationStateStorage\UncompressedOrZlib -PresentationContext77 = BodyPositionWaveformStorage\UncompressedOrZlib -PresentationContext78 = CArmPhotonElectronRadiationRecordStorage\UncompressedOrZlib -PresentationContext79 = CArmPhotonElectronRadiationStorage\UncompressedOrZlib -PresentationContext80 = CTDefinedProcedureProtocolStorage\UncompressedOrZlib -PresentationContext81 = CTPerformedProcedureProtocolStorage\UncompressedOrZlib -PresentationContext82 = CardiacElectrophysiologyWaveformStorage\UncompressedOrZlib -PresentationContext83 = ChestCADSRStorage\UncompressedOrZlib -PresentationContext84 = ColonCADSRStorage\UncompressedOrZlib -PresentationContext85 = ColorPaletteStorage\UncompressedOrZlib -PresentationContext86 = ColorSoftcopyPresentationStateStorage\UncompressedOrZlib -PresentationContext87 = CompositingPlanarMPRVolumetricPresentationStateStorage\UncompressedOrZlib -PresentationContext88 = Comprehensive3DSRStorage\UncompressedOrZlib -PresentationContext89 = ComprehensiveSRStorage\UncompressedOrZlib -PresentationContext90 = ContentAssessmentResultsStorage\UncompressedOrZlib -PresentationContext91 = DeformableSpatialRegistrationStorage\UncompressedOrZlib -PresentationContext92 = ElectromyogramWaveformStorage\UncompressedOrZlib -PresentationContext93 = ElectrooculogramWaveformStorage\UncompressedOrZlib -PresentationContext94 = EncapsulatedCDAStorage\UncompressedOrZlib -PresentationContext95 = EncapsulatedMTLStorage\UncompressedOrZlib -PresentationContext96 = EncapsulatedOBJStorage\UncompressedOrZlib -PresentationContext97 = EncapsulatedPDFStorage\UncompressedOrZlib -PresentationContext98 = EncapsulatedSTLStorage\UncompressedOrZlib -PresentationContext99 = EnhancedSRStorage\UncompressedOrZlib -PresentationContext100 = EnhancedXRayRadiationDoseSRStorage\UncompressedOrZlib -PresentationContext101 = ExtensibleSRStorage\UncompressedOrZlib -PresentationContext102 = General32BitECGWaveformStorage\UncompressedOrZlib -PresentationContext103 = GeneralAudioWaveformStorage\UncompressedOrZlib -PresentationContext104 = GeneralECGWaveformStorage\UncompressedOrZlib -PresentationContext105 = GenericImplantTemplateStorage\UncompressedOrZlib -PresentationContext106 = GrayscalePlanarMPRVolumetricPresentationStateStorage\UncompressedOrZlib -PresentationContext107 = GrayscaleSoftcopyPresentationStateStorage\UncompressedOrZlib -PresentationContext108 = HangingProtocolStorage\UncompressedOrZlib -PresentationContext109 = HemodynamicWaveformStorage\UncompressedOrZlib -PresentationContext110 = ImplantAssemblyTemplateStorage\UncompressedOrZlib -PresentationContext111 = ImplantTemplateGroupStorage\UncompressedOrZlib -PresentationContext112 = ImplantationPlanSRStorage\UncompressedOrZlib -PresentationContext113 = IntraocularLensCalculationsStorage\UncompressedOrZlib -PresentationContext114 = InventoryStorage\UncompressedOrZlib -PresentationContext115 = KeratometryMeasurementsStorage\UncompressedOrZlib -PresentationContext116 = KeyObjectSelectionDocumentStorage\UncompressedOrZlib -PresentationContext117 = LensometryMeasurementsStorage\UncompressedOrZlib -PresentationContext118 = MRSpectroscopyStorage\UncompressedOrZlib -PresentationContext119 = MacularGridThicknessAndVolumeReportStorage\UncompressedOrZlib -PresentationContext120 = MammographyCADSRStorage\UncompressedOrZlib -PresentationContext121 = MicroscopyBulkSimpleAnnotationsStorage\UncompressedOrZlib -PresentationContext122 = MultichannelRespiratoryWaveformStorage\UncompressedOrZlib -PresentationContext123 = MultipleVolumeRenderingVolumetricPresentationStateStorage\UncompressedOrZlib -PresentationContext124 = OphthalmicAxialMeasurementsStorage\UncompressedOrZlib -PresentationContext125 = OphthalmicOpticalCoherenceTomographyBscanVolumeAnalysisStorage\UncompressedOrZlib -PresentationContext126 = OphthalmicVisualFieldStaticPerimetryMeasurementsStorage\UncompressedOrZlib -PresentationContext127 = ParametricMapStorage\UncompressedOrZlib -PresentationContext128 = PatientRadiationDoseSRStorage\UncompressedOrZlib -PresentationContext129 = PerformedImagingAgentAdministrationSRStorage\UncompressedOrZlib -PresentationContext130 = PlannedImagingAgentAdministrationSRStorage\UncompressedOrZlib -PresentationContext131 = ProcedureLogStorage\UncompressedOrZlib -PresentationContext132 = ProtocolApprovalStorage\UncompressedOrZlib -PresentationContext133 = PseudoColorSoftcopyPresentationStateStorage\UncompressedOrZlib -PresentationContext134 = RTBeamsDeliveryInstructionStorage\UncompressedOrZlib -PresentationContext135 = RTBeamsTreatmentRecordStorage\UncompressedOrZlib -PresentationContext136 = RTBrachyApplicationSetupDeliveryInstructionStorage\UncompressedOrZlib -PresentationContext137 = RTBrachyTreatmentRecordStorage\UncompressedOrZlib -PresentationContext138 = RTDoseStorage\UncompressedOrZlib -PresentationContext139 = RTIonBeamsTreatmentRecordStorage\UncompressedOrZlib -PresentationContext140 = RTIonPlanStorage\UncompressedOrZlib -PresentationContext141 = RTPatientPositionAcquisitionInstructionStorage\UncompressedOrZlib -PresentationContext142 = RTPhysicianIntentStorage\UncompressedOrZlib -PresentationContext143 = RTPlanStorage\UncompressedOrZlib -PresentationContext144 = RTRadiationRecordSetStorage\UncompressedOrZlib -PresentationContext145 = RTRadiationSalvageRecordStorage\UncompressedOrZlib -PresentationContext146 = RTRadiationSetDeliveryInstructionStorage\UncompressedOrZlib -PresentationContext147 = RTRadiationSetStorage\UncompressedOrZlib -PresentationContext148 = RTSegmentAnnotationStorage\UncompressedOrZlib -PresentationContext149 = RTStructureSetStorage\UncompressedOrZlib -PresentationContext150 = RTTreatmentPreparationStorage\UncompressedOrZlib -PresentationContext151 = RTTreatmentSummaryRecordStorage\UncompressedOrZlib -PresentationContext152 = RadiopharmaceuticalRadiationDoseSRStorage\UncompressedOrZlib -PresentationContext153 = RawDataStorage\UncompressedOrZlib -PresentationContext154 = RealWorldValueMappingStorage\UncompressedOrZlib -PresentationContext155 = RespiratoryWaveformStorage\UncompressedOrZlib -PresentationContext156 = RoboticArmRadiationStorage\UncompressedOrZlib -PresentationContext157 = RoboticRadiationRecordStorage\UncompressedOrZlib -PresentationContext158 = RoutineScalpElectroencephalogramWaveformStorage\UncompressedOrZlib -PresentationContext159 = SegmentationStorage\UncompressedOrZlib -PresentationContext160 = SegmentedVolumeRenderingVolumetricPresentationStateStorage\UncompressedOrZlib -PresentationContext161 = SimplifiedAdultEchoSRStorage\UncompressedOrZlib -PresentationContext162 = SleepElectroencephalogramWaveformStorage\UncompressedOrZlib -PresentationContext163 = SpatialFiducialsStorage\UncompressedOrZlib -PresentationContext164 = SpatialRegistrationStorage\UncompressedOrZlib -PresentationContext165 = SpectaclePrescriptionReportStorage\UncompressedOrZlib -PresentationContext166 = StereometricRelationshipStorage\UncompressedOrZlib -PresentationContext167 = SubjectiveRefractionMeasurementsStorage\UncompressedOrZlib -PresentationContext168 = SurfaceScanMeshStorage\UncompressedOrZlib -PresentationContext169 = SurfaceScanPointCloudStorage\UncompressedOrZlib -PresentationContext170 = SurfaceSegmentationStorage\UncompressedOrZlib -PresentationContext171 = TomotherapeuticRadiationRecordStorage\UncompressedOrZlib -PresentationContext172 = TomotherapeuticRadiationStorage\UncompressedOrZlib -PresentationContext173 = TractographyResultsStorage\UncompressedOrZlib -PresentationContext174 = TwelveLeadECGWaveformStorage\UncompressedOrZlib -PresentationContext175 = VariableModalityLUTSoftcopyPresentationStateStorage\UncompressedOrZlib -PresentationContext176 = VisualAcuityMeasurementsStorage\UncompressedOrZlib -PresentationContext177 = VolumeRenderingVolumetricPresentationStateStorage\UncompressedOrZlib -PresentationContext178 = XADefinedProcedureProtocolStorage\UncompressedOrZlib -PresentationContext179 = XAPerformedProcedureProtocolStorage\UncompressedOrZlib -PresentationContext180 = XAXRFGrayscaleSoftcopyPresentationStateStorage\UncompressedOrZlib -PresentationContext181 = XRayRadiationDoseSRStorage\UncompressedOrZlib +# (including some that do not fit into the PATIENT-STUDY-SERIES-INSTANCE model) +# +PresentationContext70 = AcquisitionContextSRStorage\UncompressedOrZlib +PresentationContext71 = AdvancedBlendingPresentationStateStorage\UncompressedOrZlib +PresentationContext72 = AmbulatoryECGWaveformStorage\UncompressedOrZlib +PresentationContext73 = ArterialPulseWaveformStorage\UncompressedOrZlib +PresentationContext74 = AutorefractionMeasurementsStorage\UncompressedOrZlib +PresentationContext75 = BasicStructuredDisplayStorage\UncompressedOrZlib +PresentationContext76 = BasicTextSRStorage\UncompressedOrZlib +PresentationContext77 = BasicVoiceAudioWaveformStorage\UncompressedOrZlib +PresentationContext78 = BlendingSoftcopyPresentationStateStorage\UncompressedOrZlib +PresentationContext79 = BodyPositionWaveformStorage\UncompressedOrZlib +PresentationContext80 = CArmPhotonElectronRadiationRecordStorage\UncompressedOrZlib +PresentationContext81 = CArmPhotonElectronRadiationStorage\UncompressedOrZlib +PresentationContext82 = CTDefinedProcedureProtocolStorage\UncompressedOrZlib +PresentationContext83 = CTPerformedProcedureProtocolStorage\UncompressedOrZlib +PresentationContext84 = CardiacElectrophysiologyWaveformStorage\UncompressedOrZlib +PresentationContext85 = ChestCADSRStorage\UncompressedOrZlib +PresentationContext86 = ColonCADSRStorage\UncompressedOrZlib +PresentationContext87 = ColorPaletteStorage\UncompressedOrZlib +PresentationContext88 = ColorSoftcopyPresentationStateStorage\UncompressedOrZlib +PresentationContext89 = CompositingPlanarMPRVolumetricPresentationStateStorage\UncompressedOrZlib +PresentationContext90 = Comprehensive3DSRStorage\UncompressedOrZlib +PresentationContext91 = ComprehensiveSRStorage\UncompressedOrZlib +PresentationContext92 = ContentAssessmentResultsStorage\UncompressedOrZlib +PresentationContext93 = DeformableSpatialRegistrationStorage\UncompressedOrZlib +PresentationContext94 = ElectromyogramWaveformStorage\UncompressedOrZlib +PresentationContext95 = ElectrooculogramWaveformStorage\UncompressedOrZlib +PresentationContext96 = EncapsulatedCDAStorage\UncompressedOrZlib +PresentationContext97 = EncapsulatedMTLStorage\UncompressedOrZlib +PresentationContext98 = EncapsulatedOBJStorage\UncompressedOrZlib +PresentationContext99 = EncapsulatedPDFStorage\UncompressedOrZlib +PresentationContext100 = EncapsulatedSTLStorage\UncompressedOrZlib +PresentationContext101 = EnhancedSRStorage\UncompressedOrZlib +PresentationContext102 = EnhancedXRayRadiationDoseSRStorage\UncompressedOrZlib +PresentationContext103 = ExtensibleSRStorage\UncompressedOrZlib +PresentationContext104 = General32BitECGWaveformStorage\UncompressedOrZlib +PresentationContext105 = GeneralAudioWaveformStorage\UncompressedOrZlib +PresentationContext106 = GeneralECGWaveformStorage\UncompressedOrZlib +PresentationContext107 = GenericImplantTemplateStorage\UncompressedOrZlib +PresentationContext108 = GrayscalePlanarMPRVolumetricPresentationStateStorage\UncompressedOrZlib +PresentationContext109 = GrayscaleSoftcopyPresentationStateStorage\UncompressedOrZlib +PresentationContext110 = HangingProtocolStorage\UncompressedOrZlib +PresentationContext111 = HemodynamicWaveformStorage\UncompressedOrZlib +PresentationContext112 = ImplantAssemblyTemplateStorage\UncompressedOrZlib +PresentationContext113 = ImplantTemplateGroupStorage\UncompressedOrZlib +PresentationContext114 = ImplantationPlanSRStorage\UncompressedOrZlib +PresentationContext115 = IntraocularLensCalculationsStorage\UncompressedOrZlib +PresentationContext116 = InventoryStorage\UncompressedOrZlib +PresentationContext117 = KeratometryMeasurementsStorage\UncompressedOrZlib +PresentationContext118 = KeyObjectSelectionDocumentStorage\UncompressedOrZlib +PresentationContext119 = LensometryMeasurementsStorage\UncompressedOrZlib +PresentationContext120 = MRSpectroscopyStorage\UncompressedOrZlib +PresentationContext121 = MacularGridThicknessAndVolumeReportStorage\UncompressedOrZlib +PresentationContext122 = MammographyCADSRStorage\UncompressedOrZlib +PresentationContext123 = MicroscopyBulkSimpleAnnotationsStorage\UncompressedOrZlib +PresentationContext124 = MultichannelRespiratoryWaveformStorage\UncompressedOrZlib +PresentationContext125 = MultipleVolumeRenderingVolumetricPresentationStateStorage\UncompressedOrZlib +PresentationContext126 = OphthalmicAxialMeasurementsStorage\UncompressedOrZlib +PresentationContext127 = OphthalmicOpticalCoherenceTomographyBscanVolumeAnalysisStorage\UncompressedOrZlib +PresentationContext128 = OphthalmicVisualFieldStaticPerimetryMeasurementsStorage\UncompressedOrZlib +PresentationContext129 = ParametricMapStorage\UncompressedOrZlib +PresentationContext130 = PatientRadiationDoseSRStorage\UncompressedOrZlib +PresentationContext131 = PerformedImagingAgentAdministrationSRStorage\UncompressedOrZlib +PresentationContext132 = PlannedImagingAgentAdministrationSRStorage\UncompressedOrZlib +PresentationContext133 = ProcedureLogStorage\UncompressedOrZlib +PresentationContext134 = ProtocolApprovalStorage\UncompressedOrZlib +PresentationContext135 = PseudoColorSoftcopyPresentationStateStorage\UncompressedOrZlib +PresentationContext136 = RTBeamsDeliveryInstructionStorage\UncompressedOrZlib +PresentationContext137 = RTBeamsTreatmentRecordStorage\UncompressedOrZlib +PresentationContext138 = RTBrachyApplicationSetupDeliveryInstructionStorage\UncompressedOrZlib +PresentationContext139 = RTBrachyTreatmentRecordStorage\UncompressedOrZlib +PresentationContext140 = RTDoseStorage\UncompressedOrZlib +PresentationContext141 = RTIonBeamsTreatmentRecordStorage\UncompressedOrZlib +PresentationContext142 = RTIonPlanStorage\UncompressedOrZlib +PresentationContext143 = RTPatientPositionAcquisitionInstructionStorage\UncompressedOrZlib +PresentationContext144 = RTPhysicianIntentStorage\UncompressedOrZlib +PresentationContext145 = RTPlanStorage\UncompressedOrZlib +PresentationContext146 = RTRadiationRecordSetStorage\UncompressedOrZlib +PresentationContext147 = RTRadiationSalvageRecordStorage\UncompressedOrZlib +PresentationContext148 = RTRadiationSetDeliveryInstructionStorage\UncompressedOrZlib +PresentationContext149 = RTRadiationSetStorage\UncompressedOrZlib +PresentationContext150 = RTSegmentAnnotationStorage\UncompressedOrZlib +PresentationContext151 = RTStructureSetStorage\UncompressedOrZlib +PresentationContext152 = RTTreatmentPreparationStorage\UncompressedOrZlib +PresentationContext153 = RTTreatmentSummaryRecordStorage\UncompressedOrZlib +PresentationContext154 = RadiopharmaceuticalRadiationDoseSRStorage\UncompressedOrZlib +PresentationContext155 = RawDataStorage\UncompressedOrZlib +PresentationContext156 = RealWorldValueMappingStorage\UncompressedOrZlib +PresentationContext157 = RespiratoryWaveformStorage\UncompressedOrZlib +PresentationContext158 = RoboticArmRadiationStorage\UncompressedOrZlib +PresentationContext159 = RoboticRadiationRecordStorage\UncompressedOrZlib +PresentationContext160 = RoutineScalpElectroencephalogramWaveformStorage\UncompressedOrZlib +PresentationContext161 = SegmentationStorage\UncompressedOrZlib +PresentationContext162 = SegmentedVolumeRenderingVolumetricPresentationStateStorage\UncompressedOrZlib +PresentationContext163 = SimplifiedAdultEchoSRStorage\UncompressedOrZlib +PresentationContext164 = SleepElectroencephalogramWaveformStorage\UncompressedOrZlib +PresentationContext165 = SpatialFiducialsStorage\UncompressedOrZlib +PresentationContext166 = SpatialRegistrationStorage\UncompressedOrZlib +PresentationContext167 = SpectaclePrescriptionReportStorage\UncompressedOrZlib +PresentationContext168 = StereometricRelationshipStorage\UncompressedOrZlib +PresentationContext169 = SubjectiveRefractionMeasurementsStorage\UncompressedOrZlib +PresentationContext170 = SurfaceScanMeshStorage\UncompressedOrZlib +PresentationContext171 = SurfaceScanPointCloudStorage\UncompressedOrZlib +PresentationContext172 = SurfaceSegmentationStorage\UncompressedOrZlib +PresentationContext173 = TomotherapeuticRadiationRecordStorage\UncompressedOrZlib +PresentationContext174 = TomotherapeuticRadiationStorage\UncompressedOrZlib +PresentationContext175 = TractographyResultsStorage\UncompressedOrZlib +PresentationContext176 = TwelveLeadECGWaveformStorage\UncompressedOrZlib +PresentationContext177 = VariableModalityLUTSoftcopyPresentationStateStorage\UncompressedOrZlib +PresentationContext178 = VisualAcuityMeasurementsStorage\UncompressedOrZlib +PresentationContext179 = VolumeRenderingVolumetricPresentationStateStorage\UncompressedOrZlib +PresentationContext180 = XADefinedProcedureProtocolStorage\UncompressedOrZlib +PresentationContext181 = XAPerformedProcedureProtocolStorage\UncompressedOrZlib +PresentationContext182 = XAXRFGrayscaleSoftcopyPresentationStateStorage\UncompressedOrZlib +PresentationContext183 = XRayRadiationDoseSRStorage\UncompressedOrZlib # # retired non-image SOP classes # -PresentationContext182 = RETIRED_StandaloneCurveStorage\UncompressedOrZlib -PresentationContext183 = RETIRED_StandaloneModalityLUTStorage\UncompressedOrZlib -PresentationContext184 = RETIRED_StandaloneOverlayStorage\UncompressedOrZlib -PresentationContext185 = RETIRED_StandalonePETCurveStorage\UncompressedOrZlib -PresentationContext186 = RETIRED_StandaloneVOILUTStorage\UncompressedOrZlib -PresentationContext187 = RETIRED_StoredPrintStorage\UncompressedOrZlib +PresentationContext184 = RETIRED_StandaloneCurveStorage\UncompressedOrZlib +PresentationContext185 = RETIRED_StandaloneModalityLUTStorage\UncompressedOrZlib +PresentationContext186 = RETIRED_StandaloneOverlayStorage\UncompressedOrZlib +PresentationContext187 = RETIRED_StandalonePETCurveStorage\UncompressedOrZlib +PresentationContext188 = RETIRED_StandaloneVOILUTStorage\UncompressedOrZlib +PresentationContext189 = RETIRED_StoredPrintStorage\UncompressedOrZlib # # draft non-image SOP classes # -PresentationContext188 = DRAFT_RTBeamsDeliveryInstructionStorage\UncompressedOrZlib -PresentationContext189 = DRAFT_SRAudioStorage\UncompressedOrZlib -PresentationContext190 = DRAFT_SRComprehensiveStorage\UncompressedOrZlib -PresentationContext191 = DRAFT_SRDetailStorage\UncompressedOrZlib -PresentationContext192 = DRAFT_SRTextStorage\UncompressedOrZlib -PresentationContext193 = DRAFT_WaveformStorage\UncompressedOrZlib +PresentationContext190 = DRAFT_RTBeamsDeliveryInstructionStorage\UncompressedOrZlib +PresentationContext191 = DRAFT_SRAudioStorage\UncompressedOrZlib +PresentationContext192 = DRAFT_SRComprehensiveStorage\UncompressedOrZlib +PresentationContext193 = DRAFT_SRDetailStorage\UncompressedOrZlib +PresentationContext194 = DRAFT_SRTextStorage\UncompressedOrZlib +PresentationContext195 = DRAFT_WaveformStorage\UncompressedOrZlib # # DICOS Storage # -PresentationContext194 = DICOS_CTImageStorage\AnyTransferSyntax -PresentationContext195 = DICOS_DigitalXRayImageStorageForPresentation\AnyTransferSyntax -PresentationContext196 = DICOS_DigitalXRayImageStorageForProcessing\AnyTransferSyntax -PresentationContext197 = DICOS_2DAITStorage\AnyTransferSyntax -PresentationContext198 = DICOS_3DAITStorage\AnyTransferSyntax -PresentationContext199 = DICOS_QuadrupoleResonanceStorage\UncompressedOrZlib -PresentationContext200 = DICOS_ThreatDetectionReportStorage\UncompressedOrZlib +PresentationContext196 = DICOS_CTImageStorage\AnyTransferSyntax +PresentationContext197 = DICOS_DigitalXRayImageStorageForPresentation\AnyTransferSyntax +PresentationContext198 = DICOS_DigitalXRayImageStorageForProcessing\AnyTransferSyntax +PresentationContext199 = DICOS_2DAITStorage\AnyTransferSyntax +PresentationContext200 = DICOS_3DAITStorage\AnyTransferSyntax +PresentationContext201 = DICOS_QuadrupoleResonanceStorage\UncompressedOrZlib +PresentationContext202 = DICOS_ThreatDetectionReportStorage\UncompressedOrZlib # # DICONDE Storage # -PresentationContext201 = DICONDE_EddyCurrentImageStorage\AnyTransferSyntax -PresentationContext202 = DICONDE_EddyCurrentMultiframeImageStorage\AnyTransferSyntax +PresentationContext203 = DICONDE_EddyCurrentImageStorage\AnyTransferSyntax +PresentationContext204 = DICONDE_EddyCurrentMultiframeImageStorage\AnyTransferSyntax # ---------------------------------------------------------------------------- @@ -517,6 +520,8 @@ PresentationContext128 = VideoPhotographicImageStorage\MPEG2 # - CArmPhotonElectronRadiationStorage # - CompositingPlanarMPRVolumetricPresentationStateStorage # - Comprehensive3DSRStorage +# - ConfocalMicroscopyImageStorage +# - ConfocalMicroscopyTiledPyramidalImageStorage # - ContentAssessmentResultsStorage # - CornealTopographyMapStorage # - CTPerformedProcedureProtocolStorage @@ -639,202 +644,204 @@ Role2 = BreastProjectionXRayImageStorageForProcessing\BOTH Role3 = BreastTomosynthesisImageStorage\BOTH Role4 = CTImageStorage\BOTH Role5 = ComputedRadiographyImageStorage\BOTH -Role6 = CornealTopographyMapStorage\BOTH -Role7 = DermoscopicPhotographyImageStorage\BOTH -Role8 = DigitalIntraOralXRayImageStorageForPresentation\BOTH -Role9 = DigitalIntraOralXRayImageStorageForProcessing\BOTH -Role10 = DigitalMammographyXRayImageStorageForPresentation\BOTH -Role11 = DigitalMammographyXRayImageStorageForProcessing\BOTH -Role12 = DigitalXRayImageStorageForPresentation\BOTH -Role13 = DigitalXRayImageStorageForProcessing\BOTH -Role14 = EnhancedContinuousRTImageStorage\BOTH -Role15 = EnhancedCTImageStorage\BOTH -Role16 = EnhancedMRColorImageStorage\BOTH -Role17 = EnhancedMRImageStorage\BOTH -Role18 = EnhancedPETImageStorage\BOTH -Role19 = EnhancedRTImageStorage\BOTH -Role20 = EnhancedUSVolumeStorage\BOTH -Role21 = EnhancedXAImageStorage\BOTH -Role22 = EnhancedXRFImageStorage\BOTH -Role23 = IntravascularOpticalCoherenceTomographyImageStorageForPresentation\BOTH -Role24 = IntravascularOpticalCoherenceTomographyImageStorageForProcessing\BOTH -Role25 = LegacyConvertedEnhancedCTImageStorage\BOTH -Role26 = LegacyConvertedEnhancedMRImageStorage\BOTH -Role27 = LegacyConvertedEnhancedPETImageStorage\BOTH -Role28 = MRImageStorage\BOTH -Role29 = MultiframeGrayscaleByteSecondaryCaptureImageStorage\BOTH -Role30 = MultiframeGrayscaleWordSecondaryCaptureImageStorage\BOTH -Role31 = MultiframeSingleBitSecondaryCaptureImageStorage\BOTH -Role32 = MultiframeTrueColorSecondaryCaptureImageStorage\BOTH -Role33 = NuclearMedicineImageStorage\BOTH -Role34 = OphthalmicOpticalCoherenceTomographyEnFaceImageStorage\BOTH -Role35 = OphthalmicPhotography16BitImageStorage\BOTH -Role36 = OphthalmicPhotography8BitImageStorage\BOTH -Role37 = OphthalmicThicknessMapStorage\BOTH -Role38 = OphthalmicTomographyImageStorage\BOTH -Role39 = PhotoacousticImageStorage\BOTH -Role40 = PositronEmissionTomographyImageStorage\BOTH -Role41 = RTImageStorage\BOTH -Role42 = SecondaryCaptureImageStorage\BOTH -Role43 = UltrasoundImageStorage\BOTH -Role44 = UltrasoundMultiframeImageStorage\BOTH -Role45 = VLEndoscopicImageStorage\BOTH -Role46 = VLMicroscopicImageStorage\BOTH -Role47 = VLPhotographicImageStorage\BOTH -Role48 = VLSlideCoordinatesMicroscopicImageStorage\BOTH -Role49 = VLWholeSlideMicroscopyImageStorage\BOTH -Role50 = VideoEndoscopicImageStorage\BOTH -Role51 = VideoMicroscopicImageStorage\BOTH -Role52 = VideoPhotographicImageStorage\BOTH -Role53 = WideFieldOphthalmicPhotography3DCoordinatesImageStorage\BOTH -Role54 = WideFieldOphthalmicPhotographyStereographicProjectionImageStorage\BOTH -Role55 = XRay3DAngiographicImageStorage\BOTH -Role56 = XRay3DCraniofacialImageStorage\BOTH -Role57 = XRayAngiographicImageStorage\BOTH -Role58 = XRayRadiofluoroscopicImageStorage\BOTH -Role59 = RETIRED_HardcopyColorImageStorage\BOTH -Role60 = RETIRED_HardcopyGrayscaleImageStorage\BOTH -Role61 = RETIRED_NuclearMedicineImageStorage\BOTH -Role62 = RETIRED_UltrasoundImageStorage\BOTH -Role63 = RETIRED_UltrasoundMultiframeImageStorage\BOTH -Role64 = RETIRED_VLImageStorage\BOTH -Role65 = RETIRED_VLMultiframeImageStorage\BOTH -Role66 = RETIRED_XRayAngiographicBiPlaneImageStorage\BOTH -Role67 = AcquisitionContextSRStorage\BOTH -Role68 = AdvancedBlendingPresentationStateStorage\BOTH -Role69 = AmbulatoryECGWaveformStorage\BOTH -Role70 = ArterialPulseWaveformStorage\BOTH -Role71 = AutorefractionMeasurementsStorage\BOTH -Role72 = BasicStructuredDisplayStorage\BOTH -Role73 = BasicTextSRStorage\BOTH -Role74 = BasicVoiceAudioWaveformStorage\BOTH -Role75 = BlendingSoftcopyPresentationStateStorage\BOTH -Role76 = BodyPositionWaveformStorage\BOTH -Role77 = CArmPhotonElectronRadiationRecordStorage\BOTH -Role78 = CArmPhotonElectronRadiationStorage\BOTH -Role79 = CTDefinedProcedureProtocolStorage\BOTH -Role80 = CTPerformedProcedureProtocolStorage\BOTH -Role81 = CardiacElectrophysiologyWaveformStorage\BOTH -Role82 = ChestCADSRStorage\BOTH -Role83 = ColonCADSRStorage\BOTH -Role84 = ColorPaletteStorage\BOTH -Role85 = ColorSoftcopyPresentationStateStorage\BOTH -Role86 = CompositingPlanarMPRVolumetricPresentationStateStorage\BOTH -Role87 = Comprehensive3DSRStorage\BOTH -Role88 = ComprehensiveSRStorage\BOTH -Role89 = ContentAssessmentResultsStorage\BOTH -Role90 = DeformableSpatialRegistrationStorage\BOTH -Role91 = ElectromyogramWaveformStorage\BOTH -Role92 = ElectrooculogramWaveformStorage\BOTH -Role93 = EncapsulatedCDAStorage\BOTH -Role94 = EncapsulatedMTLStorage\BOTH -Role95 = EncapsulatedOBJStorage\BOTH -Role96 = EncapsulatedPDFStorage\BOTH -Role97 = EncapsulatedSTLStorage\BOTH -Role98 = EnhancedSRStorage\BOTH -Role99 = EnhancedXRayRadiationDoseSRStorage\BOTH -Role100 = ExtensibleSRStorage\BOTH -Role101 = General32BitECGWaveformStorage\BOTH -Role102 = GeneralAudioWaveformStorage\BOTH -Role103 = GeneralECGWaveformStorage\BOTH -Role104 = GenericImplantTemplateStorage\BOTH -Role105 = GrayscalePlanarMPRVolumetricPresentationStateStorage\BOTH -Role106 = GrayscaleSoftcopyPresentationStateStorage\BOTH -Role107 = HangingProtocolStorage\BOTH -Role108 = HemodynamicWaveformStorage\BOTH -Role109 = ImplantAssemblyTemplateStorage\BOTH -Role110 = ImplantTemplateGroupStorage\BOTH -Role111 = ImplantationPlanSRStorage\BOTH -Role112 = IntraocularLensCalculationsStorage\BOTH -Role113 = InventoryStorage\BOTH -Role114 = KeratometryMeasurementsStorage\BOTH -Role115 = KeyObjectSelectionDocumentStorage\BOTH -Role116 = LensometryMeasurementsStorage\BOTH -Role117 = MRSpectroscopyStorage\BOTH -Role118 = MacularGridThicknessAndVolumeReportStorage\BOTH -Role119 = MammographyCADSRStorage\BOTH -Role120 = MicroscopyBulkSimpleAnnotationsStorage\BOTH -Role121 = MultichannelRespiratoryWaveformStorage\BOTH -Role122 = MultipleVolumeRenderingVolumetricPresentationStateStorage\BOTH -Role123 = OphthalmicAxialMeasurementsStorage\BOTH -Role124 = OphthalmicOpticalCoherenceTomographyBscanVolumeAnalysisStorage\BOTH -Role125 = OphthalmicVisualFieldStaticPerimetryMeasurementsStorage\BOTH -Role126 = ParametricMapStorage\BOTH -Role127 = PatientRadiationDoseSRStorage\BOTH -Role128 = PerformedImagingAgentAdministrationSRStorage\BOTH -Role129 = PlannedImagingAgentAdministrationSRStorage\BOTH -Role130 = ProcedureLogStorage\BOTH -Role131 = ProtocolApprovalStorage\BOTH -Role132 = PseudoColorSoftcopyPresentationStateStorage\BOTH -Role133 = RTBeamsDeliveryInstructionStorage\BOTH -Role134 = RTBeamsTreatmentRecordStorage\BOTH -Role135 = RTBrachyApplicationSetupDeliveryInstructionStorage\BOTH -Role136 = RTBrachyTreatmentRecordStorage\BOTH -Role137 = RTDoseStorage\BOTH -Role138 = RTIonBeamsTreatmentRecordStorage\BOTH -Role139 = RTIonPlanStorage\BOTH -Role140 = RTPatientPositionAcquisitionInstructionStorage\BOTH -Role141 = RTPhysicianIntentStorage\BOTH -Role142 = RTPlanStorage\BOTH -Role143 = RTRadiationRecordSetStorage\BOTH -Role144 = RTRadiationSalvageRecordStorage\BOTH -Role145 = RTRadiationSetDeliveryInstructionStorage\BOTH -Role146 = RTRadiationSetStorage\BOTH -Role147 = RTSegmentAnnotationStorage\BOTH -Role148 = RTStructureSetStorage\BOTH -Role149 = RTTreatmentPreparationStorage\BOTH -Role150 = RTTreatmentSummaryRecordStorage\BOTH -Role151 = RadiopharmaceuticalRadiationDoseSRStorage\BOTH -Role152 = RawDataStorage\BOTH -Role153 = RealWorldValueMappingStorage\BOTH -Role154 = RespiratoryWaveformStorage\BOTH -Role155 = RoboticArmRadiationStorage\BOTH -Role156 = RoboticRadiationRecordStorage\BOTH -Role157 = RoutineScalpElectroencephalogramWaveformStorage\BOTH -Role158 = SegmentationStorage\BOTH -Role159 = SegmentedVolumeRenderingVolumetricPresentationStateStorage\BOTH -Role160 = SimplifiedAdultEchoSRStorage\BOTH -Role161 = SleepElectroencephalogramWaveformStorage\BOTH -Role162 = SpatialFiducialsStorage\BOTH -Role163 = SpatialRegistrationStorage\BOTH -Role164 = SpectaclePrescriptionReportStorage\BOTH -Role165 = StereometricRelationshipStorage\BOTH -Role166 = SubjectiveRefractionMeasurementsStorage\BOTH -Role167 = SurfaceScanMeshStorage\BOTH -Role168 = SurfaceScanPointCloudStorage\BOTH -Role169 = SurfaceSegmentationStorage\BOTH -Role170 = TomotherapeuticRadiationRecordStorage\BOTH -Role171 = TomotherapeuticRadiationStorage\BOTH -Role172 = TractographyResultsStorage\BOTH -Role173 = TwelveLeadECGWaveformStorage\BOTH -Role174 = VariableModalityLUTSoftcopyPresentationStateStorage\BOTH -Role175 = VisualAcuityMeasurementsStorage\BOTH -Role176 = VolumeRenderingVolumetricPresentationStateStorage\BOTH -Role177 = XADefinedProcedureProtocolStorage\BOTH -Role178 = XAPerformedProcedureProtocolStorage\BOTH -Role179 = XAXRFGrayscaleSoftcopyPresentationStateStorage\BOTH -Role180 = XRayRadiationDoseSRStorage\BOTH -Role181 = RETIRED_StandaloneCurveStorage\BOTH -Role182 = RETIRED_StandaloneModalityLUTStorage\BOTH -Role183 = RETIRED_StandaloneOverlayStorage\BOTH -Role184 = RETIRED_StandalonePETCurveStorage\BOTH -Role185 = RETIRED_StandaloneVOILUTStorage\BOTH -Role186 = RETIRED_StoredPrintStorage\BOTH -Role187 = DRAFT_RTBeamsDeliveryInstructionStorage\BOTH -Role188 = DRAFT_SRAudioStorage\BOTH -Role189 = DRAFT_SRComprehensiveStorage\BOTH -Role190 = DRAFT_SRDetailStorage\BOTH -Role191 = DRAFT_SRTextStorage\BOTH -Role192 = DRAFT_WaveformStorage\BOTH -Role193 = DICOS_CTImageStorage\BOTH -Role194 = DICOS_DigitalXRayImageStorageForPresentation\BOTH -Role195 = DICOS_DigitalXRayImageStorageForProcessing\BOTH -Role196 = DICOS_2DAITStorage\BOTH -Role197 = DICOS_3DAITStorage\BOTH -Role198 = DICOS_QuadrupoleResonanceStorage\BOTH -Role199 = DICOS_ThreatDetectionReportStorage\BOTH -Role200 = DICONDE_EddyCurrentImageStorage\BOTH -Role201 = DICONDE_EddyCurrentMultiframeImageStorage\BOTH +Role6 = ConfocalMicroscopyImageStorage\BOTH +Role7 = ConfocalMicroscopyTiledPyramidalImageStorage\BOTH +Role8 = CornealTopographyMapStorage\BOTH +Role9 = DermoscopicPhotographyImageStorage\BOTH +Role10 = DigitalIntraOralXRayImageStorageForPresentation\BOTH +Role11 = DigitalIntraOralXRayImageStorageForProcessing\BOTH +Role12 = DigitalMammographyXRayImageStorageForPresentation\BOTH +Role13 = DigitalMammographyXRayImageStorageForProcessing\BOTH +Role14 = DigitalXRayImageStorageForPresentation\BOTH +Role15 = DigitalXRayImageStorageForProcessing\BOTH +Role16 = EnhancedContinuousRTImageStorage\BOTH +Role17 = EnhancedCTImageStorage\BOTH +Role18 = EnhancedMRColorImageStorage\BOTH +Role19 = EnhancedMRImageStorage\BOTH +Role20 = EnhancedPETImageStorage\BOTH +Role21 = EnhancedRTImageStorage\BOTH +Role22 = EnhancedUSVolumeStorage\BOTH +Role23 = EnhancedXAImageStorage\BOTH +Role24 = EnhancedXRFImageStorage\BOTH +Role25 = IntravascularOpticalCoherenceTomographyImageStorageForPresentation\BOTH +Role26 = IntravascularOpticalCoherenceTomographyImageStorageForProcessing\BOTH +Role27 = LegacyConvertedEnhancedCTImageStorage\BOTH +Role28 = LegacyConvertedEnhancedMRImageStorage\BOTH +Role29 = LegacyConvertedEnhancedPETImageStorage\BOTH +Role30 = MRImageStorage\BOTH +Role31 = MultiframeGrayscaleByteSecondaryCaptureImageStorage\BOTH +Role32 = MultiframeGrayscaleWordSecondaryCaptureImageStorage\BOTH +Role33 = MultiframeSingleBitSecondaryCaptureImageStorage\BOTH +Role34 = MultiframeTrueColorSecondaryCaptureImageStorage\BOTH +Role35 = NuclearMedicineImageStorage\BOTH +Role36 = OphthalmicOpticalCoherenceTomographyEnFaceImageStorage\BOTH +Role37 = OphthalmicPhotography16BitImageStorage\BOTH +Role38 = OphthalmicPhotography8BitImageStorage\BOTH +Role39 = OphthalmicThicknessMapStorage\BOTH +Role40 = OphthalmicTomographyImageStorage\BOTH +Role41 = PhotoacousticImageStorage\BOTH +Role42 = PositronEmissionTomographyImageStorage\BOTH +Role43 = RTImageStorage\BOTH +Role44 = SecondaryCaptureImageStorage\BOTH +Role45 = UltrasoundImageStorage\BOTH +Role46 = UltrasoundMultiframeImageStorage\BOTH +Role47 = VLEndoscopicImageStorage\BOTH +Role48 = VLMicroscopicImageStorage\BOTH +Role49 = VLPhotographicImageStorage\BOTH +Role50 = VLSlideCoordinatesMicroscopicImageStorage\BOTH +Role51 = VLWholeSlideMicroscopyImageStorage\BOTH +Role52 = VideoEndoscopicImageStorage\BOTH +Role53 = VideoMicroscopicImageStorage\BOTH +Role54 = VideoPhotographicImageStorage\BOTH +Role55 = WideFieldOphthalmicPhotography3DCoordinatesImageStorage\BOTH +Role56 = WideFieldOphthalmicPhotographyStereographicProjectionImageStorage\BOTH +Role57 = XRay3DAngiographicImageStorage\BOTH +Role58 = XRay3DCraniofacialImageStorage\BOTH +Role59 = XRayAngiographicImageStorage\BOTH +Role60 = XRayRadiofluoroscopicImageStorage\BOTH +Role61 = RETIRED_HardcopyColorImageStorage\BOTH +Role62 = RETIRED_HardcopyGrayscaleImageStorage\BOTH +Role63 = RETIRED_NuclearMedicineImageStorage\BOTH +Role64 = RETIRED_UltrasoundImageStorage\BOTH +Role65 = RETIRED_UltrasoundMultiframeImageStorage\BOTH +Role66 = RETIRED_VLImageStorage\BOTH +Role67 = RETIRED_VLMultiframeImageStorage\BOTH +Role68 = RETIRED_XRayAngiographicBiPlaneImageStorage\BOTH +Role69 = AcquisitionContextSRStorage\BOTH +Role70 = AdvancedBlendingPresentationStateStorage\BOTH +Role71 = AmbulatoryECGWaveformStorage\BOTH +Role72 = ArterialPulseWaveformStorage\BOTH +Role73 = AutorefractionMeasurementsStorage\BOTH +Role74 = BasicStructuredDisplayStorage\BOTH +Role75 = BasicTextSRStorage\BOTH +Role76 = BasicVoiceAudioWaveformStorage\BOTH +Role77 = BlendingSoftcopyPresentationStateStorage\BOTH +Role78 = BodyPositionWaveformStorage\BOTH +Role79 = CArmPhotonElectronRadiationRecordStorage\BOTH +Role80 = CArmPhotonElectronRadiationStorage\BOTH +Role81 = CTDefinedProcedureProtocolStorage\BOTH +Role82 = CTPerformedProcedureProtocolStorage\BOTH +Role83 = CardiacElectrophysiologyWaveformStorage\BOTH +Role84 = ChestCADSRStorage\BOTH +Role85 = ColonCADSRStorage\BOTH +Role86 = ColorPaletteStorage\BOTH +Role87 = ColorSoftcopyPresentationStateStorage\BOTH +Role88 = CompositingPlanarMPRVolumetricPresentationStateStorage\BOTH +Role89 = Comprehensive3DSRStorage\BOTH +Role90 = ComprehensiveSRStorage\BOTH +Role91 = ContentAssessmentResultsStorage\BOTH +Role92 = DeformableSpatialRegistrationStorage\BOTH +Role93 = ElectromyogramWaveformStorage\BOTH +Role94 = ElectrooculogramWaveformStorage\BOTH +Role95 = EncapsulatedCDAStorage\BOTH +Role96 = EncapsulatedMTLStorage\BOTH +Role97 = EncapsulatedOBJStorage\BOTH +Role98 = EncapsulatedPDFStorage\BOTH +Role99 = EncapsulatedSTLStorage\BOTH +Role100 = EnhancedSRStorage\BOTH +Role101 = EnhancedXRayRadiationDoseSRStorage\BOTH +Role102 = ExtensibleSRStorage\BOTH +Role103 = General32BitECGWaveformStorage\BOTH +Role104 = GeneralAudioWaveformStorage\BOTH +Role105 = GeneralECGWaveformStorage\BOTH +Role106 = GenericImplantTemplateStorage\BOTH +Role107 = GrayscalePlanarMPRVolumetricPresentationStateStorage\BOTH +Role108 = GrayscaleSoftcopyPresentationStateStorage\BOTH +Role109 = HangingProtocolStorage\BOTH +Role110 = HemodynamicWaveformStorage\BOTH +Role111 = ImplantAssemblyTemplateStorage\BOTH +Role112 = ImplantTemplateGroupStorage\BOTH +Role113 = ImplantationPlanSRStorage\BOTH +Role114 = IntraocularLensCalculationsStorage\BOTH +Role115 = InventoryStorage\BOTH +Role116 = KeratometryMeasurementsStorage\BOTH +Role117 = KeyObjectSelectionDocumentStorage\BOTH +Role118 = LensometryMeasurementsStorage\BOTH +Role119 = MRSpectroscopyStorage\BOTH +Role120 = MacularGridThicknessAndVolumeReportStorage\BOTH +Role121 = MammographyCADSRStorage\BOTH +Role122 = MicroscopyBulkSimpleAnnotationsStorage\BOTH +Role123 = MultichannelRespiratoryWaveformStorage\BOTH +Role124 = MultipleVolumeRenderingVolumetricPresentationStateStorage\BOTH +Role125 = OphthalmicAxialMeasurementsStorage\BOTH +Role126 = OphthalmicOpticalCoherenceTomographyBscanVolumeAnalysisStorage\BOTH +Role127 = OphthalmicVisualFieldStaticPerimetryMeasurementsStorage\BOTH +Role128 = ParametricMapStorage\BOTH +Role129 = PatientRadiationDoseSRStorage\BOTH +Role130 = PerformedImagingAgentAdministrationSRStorage\BOTH +Role131 = PlannedImagingAgentAdministrationSRStorage\BOTH +Role132 = ProcedureLogStorage\BOTH +Role133 = ProtocolApprovalStorage\BOTH +Role134 = PseudoColorSoftcopyPresentationStateStorage\BOTH +Role135 = RTBeamsDeliveryInstructionStorage\BOTH +Role136 = RTBeamsTreatmentRecordStorage\BOTH +Role137 = RTBrachyApplicationSetupDeliveryInstructionStorage\BOTH +Role138 = RTBrachyTreatmentRecordStorage\BOTH +Role139 = RTDoseStorage\BOTH +Role140 = RTIonBeamsTreatmentRecordStorage\BOTH +Role141 = RTIonPlanStorage\BOTH +Role142 = RTPatientPositionAcquisitionInstructionStorage\BOTH +Role143 = RTPhysicianIntentStorage\BOTH +Role144 = RTPlanStorage\BOTH +Role145 = RTRadiationRecordSetStorage\BOTH +Role146 = RTRadiationSalvageRecordStorage\BOTH +Role147 = RTRadiationSetDeliveryInstructionStorage\BOTH +Role148 = RTRadiationSetStorage\BOTH +Role149 = RTSegmentAnnotationStorage\BOTH +Role150 = RTStructureSetStorage\BOTH +Role151 = RTTreatmentPreparationStorage\BOTH +Role152 = RTTreatmentSummaryRecordStorage\BOTH +Role153 = RadiopharmaceuticalRadiationDoseSRStorage\BOTH +Role154 = RawDataStorage\BOTH +Role155 = RealWorldValueMappingStorage\BOTH +Role156 = RespiratoryWaveformStorage\BOTH +Role157 = RoboticArmRadiationStorage\BOTH +Role158 = RoboticRadiationRecordStorage\BOTH +Role159 = RoutineScalpElectroencephalogramWaveformStorage\BOTH +Role160 = SegmentationStorage\BOTH +Role161 = SegmentedVolumeRenderingVolumetricPresentationStateStorage\BOTH +Role162 = SimplifiedAdultEchoSRStorage\BOTH +Role163 = SleepElectroencephalogramWaveformStorage\BOTH +Role164 = SpatialFiducialsStorage\BOTH +Role165 = SpatialRegistrationStorage\BOTH +Role166 = SpectaclePrescriptionReportStorage\BOTH +Role167 = StereometricRelationshipStorage\BOTH +Role168 = SubjectiveRefractionMeasurementsStorage\BOTH +Role169 = SurfaceScanMeshStorage\BOTH +Role170 = SurfaceScanPointCloudStorage\BOTH +Role171 = SurfaceSegmentationStorage\BOTH +Role172 = TomotherapeuticRadiationRecordStorage\BOTH +Role173 = TomotherapeuticRadiationStorage\BOTH +Role174 = TractographyResultsStorage\BOTH +Role175 = TwelveLeadECGWaveformStorage\BOTH +Role176 = VariableModalityLUTSoftcopyPresentationStateStorage\BOTH +Role177 = VisualAcuityMeasurementsStorage\BOTH +Role178 = VolumeRenderingVolumetricPresentationStateStorage\BOTH +Role179 = XADefinedProcedureProtocolStorage\BOTH +Role180 = XAPerformedProcedureProtocolStorage\BOTH +Role181 = XAXRFGrayscaleSoftcopyPresentationStateStorage\BOTH +Role182 = XRayRadiationDoseSRStorage\BOTH +Role183 = RETIRED_StandaloneCurveStorage\BOTH +Role184 = RETIRED_StandaloneModalityLUTStorage\BOTH +Role185 = RETIRED_StandaloneOverlayStorage\BOTH +Role186 = RETIRED_StandalonePETCurveStorage\BOTH +Role187 = RETIRED_StandaloneVOILUTStorage\BOTH +Role188 = RETIRED_StoredPrintStorage\BOTH +Role189 = DRAFT_RTBeamsDeliveryInstructionStorage\BOTH +Role190 = DRAFT_SRAudioStorage\BOTH +Role191 = DRAFT_SRComprehensiveStorage\BOTH +Role192 = DRAFT_SRDetailStorage\BOTH +Role193 = DRAFT_SRTextStorage\BOTH +Role194 = DRAFT_WaveformStorage\BOTH +Role195 = DICOS_CTImageStorage\BOTH +Role196 = DICOS_DigitalXRayImageStorageForPresentation\BOTH +Role197 = DICOS_DigitalXRayImageStorageForProcessing\BOTH +Role198 = DICOS_2DAITStorage\BOTH +Role199 = DICOS_3DAITStorage\BOTH +Role200 = DICOS_QuadrupoleResonanceStorage\BOTH +Role201 = DICOS_ThreatDetectionReportStorage\BOTH +Role202 = DICONDE_EddyCurrentImageStorage\BOTH +Role203 = DICONDE_EddyCurrentMultiframeImageStorage\BOTH # ============================================================================ [[Profiles]]