Skip to content

Commit 1489c72

Browse files
committed
Finished up basic class comments
1 parent 3098b86 commit 1489c72

File tree

11 files changed

+15
-1
lines changed

11 files changed

+15
-1
lines changed

src/main/matlab/+symphonyui/+builtin/+daqs/HekaDaqController.m

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
classdef HekaDaqController < symphonyui.core.DaqController
2+
% Manages a Heka/Instrutech DAQ interface (ITC-16, ITC-18, or ITC-1600).
23

34
methods
45

src/main/matlab/+symphonyui/+builtin/+daqs/HekaSimulationDaqController.m

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
classdef HekaSimulationDaqController < symphonyui.builtin.daqs.SimulationDaqController
2-
2+
% Manages a simulated Heka/Instrutech DAQ interface (requires no attached hardware).
3+
34
methods
45

56
function obj = HekaSimulationDaqController()

src/main/matlab/+symphonyui/+builtin/+devices/AxopatchDevice.m

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
classdef AxopatchDevice < symphonyui.core.Device
2+
% Represents an Axopatch device.
23

34
properties (Constant)
45
% These constants should directly reference Symphony.ExternalDevices but we cannot import the assembly before

src/main/matlab/+symphonyui/+builtin/+devices/CalibratedDevice.m

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
classdef CalibratedDevice < symphonyui.core.Device
2+
% Represents a UnitConvertingDevice with an associated lookup table (LUT).
23

34
properties
45
measurementConversionTarget

src/main/matlab/+symphonyui/+builtin/+devices/MultiClampDevice.m

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
classdef MultiClampDevice < symphonyui.core.Device
2+
% Represents a MultiClamp 700[A,B] device.
23

34
methods
45

src/main/matlab/+symphonyui/+builtin/+devices/UnitConvertingDevice.m

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
classdef UnitConvertingDevice < symphonyui.core.Device
2+
% Represents a generic device (LED, valve, temperature controller, etc.).
23

34
properties
45
measurementConversionTarget

src/main/matlab/+symphonyui/+builtin/+figures/CustomFigure.m

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
classdef CustomFigure < symphonyui.core.FigureHandler
2+
% Delegates to a specified callback function to handle creating and updating the controls of the figure.
23

34
properties
45
userData

src/main/matlab/+symphonyui/+builtin/+figures/MeanResponseFigure.m

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
classdef MeanResponseFigure < symphonyui.core.FigureHandler
2+
% Plots the mean response of a specified device for all epochs run.
23

34
properties (SetAccess = private)
45
device

src/main/matlab/+symphonyui/+builtin/+figures/ResponseFigure.m

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
classdef ResponseFigure < symphonyui.core.FigureHandler
2+
% Plots the response of a specified device in the most recent epoch.
23

34
properties (SetAccess = private)
45
device

src/main/matlab/+symphonyui/+builtin/+figures/ResponseStatisticsFigure.m

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
classdef ResponseStatisticsFigure < symphonyui.core.FigureHandler
2+
% Plots statistics calculated from the response of a specified device for each epoch run.
23

34
properties (SetAccess = private)
45
device

0 commit comments

Comments
 (0)