Skip to content

Instantly share code, notes, and snippets.

@karchie
Created July 16, 2013 21:33
Show Gist options
  • Save karchie/6015358 to your computer and use it in GitHub Desktop.
Save karchie/6015358 to your computer and use it in GitHub Desktop.
This element should be added to the dicom-import-session.xml (replacing any existing sessionDataFactoryClasses element) to disable XNAT from creating PET-MR sessions. Studies with both PET and MR data will map to PET sessions instead.
<bean name="sessionDataFactoryClasses" class="java.util.ArrayList">
<constructor-arg>
<list>
<value type="java.lang.Class">
org.nrg.dcm.xnat.SOPMapXnatImagesessiondataBeanFactory
</value>
<value type="java.lang.Class">
org.nrg.dcm.xnat.ModalityMapXnatImagesessiondataBeanFactory
</value>
</list>
</constructor-arg>
</bean>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment