You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: OpenEphys.ProbeInterface.NET/ContactAnnotations.cs
+1-1
Original file line number
Diff line number
Diff line change
@@ -15,7 +15,7 @@ public class ContactAnnotations
15
15
/// <summary>
16
16
/// Initializes a new instance of the <see cref="ContactAnnotations"/> class.
17
17
/// </summary>
18
-
/// <param name="contactAnnotations"></param>
18
+
/// <param name="contactAnnotations">Array of strings containing annotations for each contact. Size of the array should match the number of contacts, but they can be empty strings.</param>
Copy file name to clipboardExpand all lines: OpenEphys.ProbeInterface.NET/Probe.cs
+14-14
Original file line number
Diff line number
Diff line change
@@ -113,18 +113,18 @@ public class Probe
113
113
/// <summary>
114
114
/// Public constructor, defined as the default Json constructor.
115
115
/// </summary>
116
-
/// <param name="ndim"></param>
117
-
/// <param name="si_units"></param>
118
-
/// <param name="annotations"></param>
119
-
/// <param name="contact_annotations"></param>
120
-
/// <param name="contact_positions"></param>
121
-
/// <param name="contact_plane_axes"></param>
122
-
/// <param name="contact_shapes"></param>
123
-
/// <param name="contact_shape_params"></param>
124
-
/// <param name="probe_planar_contour"></param>
125
-
/// <param name="device_channel_indices"></param>
126
-
/// <param name="contact_ids"></param>
127
-
/// <param name="shank_ids"></param>
116
+
/// <param name="ndim">Number of dimensions to use while plotting the contacts [<see cref="ProbeNdim.Two"/> or <see cref="ProbeNdim.Three"/>].</param>
117
+
/// <param name="si_units">Real-world units to use while plotting the contacts [<see cref="ProbeSiUnits.mm"/> or <see cref="ProbeSiUnits.um"/>].</param>
118
+
/// <param name="annotations">Annotations for the probe.</param>
119
+
/// <param name="contact_annotations">Annotations for each contact as an array of strings.</param>
120
+
/// <param name="contact_positions">Center position of each contact in a two-dimensional array of floats. For more info, see <see cref="ContactPositions"/>.</param>
121
+
/// <param name="contact_plane_axes">Plane axes of each contact in a three-dimensional array of floats. For more info, see <see cref="ContactPlaneAxes"/>.</param>
122
+
/// <param name="contact_shapes">Array of shapes for each contact.</param>
123
+
/// <param name="contact_shape_params">Array of shape parameters for the each contact.</param>
124
+
/// <param name="probe_planar_contour">Two-dimensional array of floats (X and Y positions) defining a closed shape for a probe contour.</param>
125
+
/// <param name="device_channel_indices">Array of integers containing the device channel indices for each contact. For more info, see <see cref="DeviceChannelIndices"/>.</param>
126
+
/// <param name="contact_ids">Array of strings containing the contact ID for each contact. For more info, see <see cref="ContactIds"/>.</param>
127
+
/// <param name="shank_ids">Array of strings containing the shank ID for each contact. For more info, see <see cref="ShankIds"/>.</param>
@@ -34,7 +34,7 @@ public ProbeAnnotations(string name, string manufacturer)
34
34
/// <summary>
35
35
/// Copy constructor that copies data from an existing <see cref="ProbeAnnotations"/> object.
36
36
/// </summary>
37
-
/// <param name="probeAnnotations"></param>
37
+
/// <param name="probeAnnotations">Existing <see cref="ProbeAnnotations"/> object, containing a <see cref="Name"/> and a <see cref="Manufacturer"/>.</param>
0 commit comments