R/0PRecordingParams.R

#' 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())
)
moritzlindner/PatchR documentation built on April 30, 2024, 1:40 a.m.