Advertisement
Guest User

Untitled

a guest
Aug 1st, 2015
214
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.94 KB | None | 0 0
  1.   #region dense updates
  2.             public List<long> timeStamps = new List<long>();
  3.             public List<float> optiFrameTime;
  4.             public List<float[]> _motorAngles;
  5.             public List<float[]> _smoothAngles;
  6.             public List<float[]> _setPointAngles;
  7.             public List<MyFrameOfMocapData> mocapFrames = new List<MyFrameOfMocapData>();
  8.             #endregion
  9.  
  10.             #region sparse updates
  11.             public ListRunLenEnc<sbyte[][]> grids = new ListRunLenEnc<sbyte[][]>();
  12.             public ListRunLenEnc<bool> triggerPresses = new ListRunLenEnc<bool>();
  13.             public ListRunLenEnc<int[]> targets = new ListRunLenEnc<int[]>();
  14.             public ListRunLenEnc<int> HARPlevels = new ListRunLenEnc<int>();
  15.             public ListRunLenEnc<ExperimentMode> experimentModes = new ListRunLenEnc<ExperimentMode>();
  16.             public ListRunLenEnc<bool> resets = new ListRunLenEnc<bool>();
  17.             #endregion
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement