matRad_exportDicomRTPlan

Purpose ^

matRad function to export resultGUI to dicom.

Synopsis ^

function obj = matRad_exportDicomRTPlan(obj)

Description ^

 matRad function to export resultGUI to dicom.
 
 call
   matRad_exportDicomRTDoses(resultGUI,ct,pln,fieldnames)

 input
   resultGUI:      matRad resultGUI struct with different beams. Note that
                   the summation (called plan) of the beams is named 
                   without subscripts, e.g. physical_Dose.
   ct:             matRad ct struct

 output
   resultGUI:      matRad resultGUI struct with different beams. Note that
                   the summation (called plan) of the beams is named 
                   without subscripts, e.g. physical_Dose.

 References
   -

 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

 Copyright 2015 the matRad development team. 
 
 This file is part of the matRad project. It is subject to the license 
 terms in the LICENSE file found in the top-level directory of this 
 distribution and at https://github.com/e0404/matRad/LICENSES.txt. No part 
 of the matRad project, including this file, may be copied, modified, 
 propagated, or distributed except according to the terms contained in the 
 LICENSE file.

 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

Cross-reference information ^

This function calls: This function is called by:

Source code ^

0001 function obj = matRad_exportDicomRTPlan(obj)
0002 % matRad function to export resultGUI to dicom.
0003 %
0004 % call
0005 %   matRad_exportDicomRTDoses(resultGUI,ct,pln,fieldnames)
0006 %
0007 % input
0008 %   resultGUI:      matRad resultGUI struct with different beams. Note that
0009 %                   the summation (called plan) of the beams is named
0010 %                   without subscripts, e.g. physical_Dose.
0011 %   ct:             matRad ct struct
0012 %
0013 % output
0014 %   resultGUI:      matRad resultGUI struct with different beams. Note that
0015 %                   the summation (called plan) of the beams is named
0016 %                   without subscripts, e.g. physical_Dose.
0017 %
0018 % References
0019 %   -
0020 %
0021 % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
0022 %
0023 % Copyright 2015 the matRad development team.
0024 %
0025 % This file is part of the matRad project. It is subject to the license
0026 % terms in the LICENSE file found in the top-level directory of this
0027 % distribution and at https://github.com/e0404/matRad/LICENSES.txt. No part
0028 % of the matRad project, including this file, may be copied, modified,
0029 % propagated, or distributed except according to the terms contained in the
0030 % LICENSE file.
0031 %
0032 % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
0033 
0034 matRad_cfg = MatRad_Config.instance();
0035 matRad_cfg.dispWarning('RTPlan export is not yet implemented...\n');            
0036 
0037 end

| Generated by m2html © 2005