예제 #1
0
 public OutputData(float sst, GNGTrialTypes st, float rst, InputAction ra, int tn, InputControl c)
 {
     stimStartTime = sst;
     stimType      = st;
     respStartTime = rst;
     respAction    = ra;
     trialNumber   = tn;
     control       = c;
 }
예제 #2
0
 public OutputData(float sst, GNGTrialTypes st, int tn)
 {
     stimStartTime = sst;
     stimType      = st;
     respStartTime = 0.0f;
     respAction    = new InputAction();
     trialNumber   = tn;
     control       = respAction.activeControl;
 }
예제 #3
0
 public TrialData(GNGTrialTypes t, int tn)
 {
     startTime   = Time.realtimeSinceStartup;
     trialType   = t;
     trialNumber = tn;
 }