Skip to content

Commit b331aa3

Browse files
committed
fix missing Abstract Keyword in Stf Generator Base Classes
1 parent 05a56c8 commit b331aa3

File tree

4 files changed

+5
-6
lines changed

4 files changed

+5
-6
lines changed

matRad/steering/matRad_ExternalStfGeneratorRayBixelAbstract.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
classdef matRad_ExternalStfGeneratorRayBixelAbstract < matRad_StfGeneratorBase
1+
classdef (Abstract) matRad_ExternalStfGeneratorRayBixelAbstract < matRad_StfGeneratorBase
22
% matRad_PhotonStfGeneratorRayBixelAbstract: Abstract Superclass for
33
% external beam stf generators using the ray-bixel mechanism
44
%

matRad/steering/matRad_ParticleStfGeneratorRayBixelAbstract.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
classdef matRad_ParticleStfGeneratorRayBixelAbstract < matRad_ExternalStfGeneratorRayBixelAbstract
1+
classdef (Abstract) matRad_ParticleStfGeneratorRayBixelAbstract < matRad_ExternalStfGeneratorRayBixelAbstract
22
% matRad_ParticleStfGeneratorRayBixelAbstract: Abstract Superclass for
33
% Particle Stf Generators using the ray-bixel mechanism
44
%

matRad/steering/matRad_PhotonStfGeneratorRayBixelAbstract.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
classdef matRad_PhotonStfGeneratorRayBixelAbstract < matRad_ExternalStfGeneratorRayBixelAbstract
1+
classdef (Abstract) matRad_PhotonStfGeneratorRayBixelAbstract < matRad_ExternalStfGeneratorRayBixelAbstract
22
% matRad_PhotonStfGeneratorRayBixelAbstract: Abstract Superclass for Photon
33
% Stf Generators using the ray-bixel mechanism
44
%

matRad/steering/matRad_StfGeneratorBase.m

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
classdef matRad_StfGeneratorBase < handle
1+
classdef (Abstract) matRad_StfGeneratorBase < handle
22
% matRad_StfGeneratorBase: Abstract Superclass for Steering information
33
% generators. Steering information is used to guide the dose calculation
44
%
@@ -418,7 +418,7 @@ function createPatientGeometry(this)
418418
matRad_cfg.dispError('Invalid path array!');
419419
end
420420

421-
optionalPaths = horzcat(fileparts(mfilename("fullpath")),optionalPaths)
421+
optionalPaths = horzcat(fileparts(mfilename("fullpath")),optionalPaths);
422422
end
423423

424424
if nargin < 1
@@ -429,7 +429,6 @@ function createPatientGeometry(this)
429429
end
430430
end
431431

432-
433432
%Get available, valid classes through call to matRad helper function
434433
%for finding subclasses
435434
availableStfGenerators = matRad_findSubclasses(mfilename('class'),'folders',optionalPaths,'includeAbstract',false);

0 commit comments

Comments
 (0)