#' S4 class storing Recording parameters inside \linkS4class{PRecording} and A \linkS4class{PCollection} objects
#'
#' Usually not required to be manipulated by the user
#' @importFrom methods setClass new
PRecordingParams <- setClass(
Class = "PRecordingParams",
slots = list(
Traces = "character",
RecMode = "character",
ProtocolName = "character",
RPip = "numeric",
RSeal = "numeric",
URest = "numeric",
Cs = "numeric",
Rs = "numeric",
Experiment = "character",
Series = "character",
Created = "POSIXct",
Filename = "character",
Type = "character",
Version = "character",
DataScaler = "numeric",
Unit_from_file = "numeric",
TrYOffset = "numeric",
TrYRange = "numeric"
),
prototype = list("Created" = Sys.time())
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.