Directory task/

Directory Created:
2006-09-08 10:01
Total Files:
52
Deleted Files:
6
Lines of Code:
8291

[root]/task
        directory in repo displays (21 files, 57 lines)
        directory in repo trackers (1 files, 65 lines)
            directory in repo ASL (3 files, 180 lines)
            directory in repo Eyelink (12 files, 533 lines)

Lines of Code

task/ Lines of Code

Developers

Author Changes Lines of Code Lines per Change
Totals 570 (100.0%) 17412 (100.0%) 30.5
justin 505 (88.6%) 12479 (71.7%) 24.7
dep 49 (8.6%) 4336 (24.9%) 88.4
shani 3 (0.5%) 529 (3.0%) 176.3
eli 5 (0.9%) 27 (0.2%) 5.4
leila 1 (0.2%) 23 (0.1%) 23.0
tsliu 1 (0.2%) 6 (0.0%) 6.0
ds 2 (0.4%) 5 (0.0%) 2.5
mjaz1 1 (0.2%) 3 (0.0%) 3.0
frakkopesto 2 (0.4%) 3 (0.0%) 1.5
chrissaid 1 (0.2%) 1 (0.0%) 1.0

Most Recent Commits

justin 2012-04-27 17:05 Rev.: 1026

Adding a few more statistical tests and print-outs

29 lines of code changed in 1 file:

  • task: mglCheckEyepos.m (+29)
justin 2012-04-26 22:22 Rev.: 1023

computing anova p-values

2 lines of code changed in 1 file:

  • task: mglCheckEyepos.m (+2 -2)
justin 2012-04-26 22:13 Rev.: 1022

Function to do a check of eye position

174 lines of code changed in 1 file:

  • task: mglCheckEyepos.m (new 174)
justin 2012-04-16 13:50 Rev.: 1021

Removing taskTemplateParameters which appears to be superseded by taskTemplate.m

0 lines of code changed in 1 file:

  • task: taskTemplateParameters.m (del)
justin 2012-02-25 15:03 Rev.: 1019

mglEyelinkEDFRead gets better handling of left/right eye files. Before it was hard-coded to always read the right eye and would fail on files that had left eye recorded. Now, it saves both of them to the intermediate data structure and then sorts it out in the m file. NOTE if both is set it arbitrarily sets the "gaze" field to the left eye and returns both gazeLeft and gazeRight. Seems like it would be better to have the gaze field return like an average of the two eye positions, but I don't have a test file to work on this.

Also fixed various small error handling checking in the commands and added better help info.

34 lines of code changed in 1 file:

  • task: getTaskEyeTraces.m (+34 -7)
justin 2012-02-08 22:03 Rev.: 1017

Adding ability to specify a comma delimited list of variable names that will return the concatenation of stimvols for the variables

25 lines of code changed in 1 file:

  • task: getStimvolFromVarname.m (+25 -1)
justin 2012-02-06 23:07 Rev.: 1016

Change set allows shifting, scaling and cropping of task screen through setting parameters in mglEditScreenParams

83 lines of code changed in 3 files:

  • task: initScreen.m (+44 -1), mglEditScreenParams.m (+33 -2), mglValidateScreenParams.m (+6)
justin 2012-01-31 17:14 Rev.: 1010

small change to help for saveData

1 lines of code changed in 1 file:

  • task: mglEditScreenParams.m (+1 -1)
justin 2012-01-03 21:13 Rev.: 1008

Minor change adds verbose setting

8 lines of code changed in 1 file:

  • task: makeTraces.m (+8 -6)
justin 2011-12-20 13:22 Rev.: 1003

Adding a field responseTimeRaw which is the time of a response relative to the beginning of the experiment.

7 lines of code changed in 1 file:

  • task: getTaskParameters.m (+7)
justin 2011-12-13 17:24 Rev.: 1002

Now computes reactionTimes relative to the start of the first segment the observer was allowed to respond (by looking in getResponse).

22 lines of code changed in 1 file:

  • task: getTaskParameters.m (+22)
justin 2011-11-25 14:52 Rev.: 1001

If you set digio to only read either up or down state tickScreen was not handling things correctly and would crash out. Fixed.

3 lines of code changed in 1 file:

  • task: tickScreen.m (+3 -1)
justin 2011-10-25 16:23 Rev.: 987

Better warning for when mglDigIO is not compiled

6 lines of code changed in 1 file:

  • task: initScreen.m (+6 -2)
justin 2011-10-25 15:54 Rev.: 986

Adding check for display directory
Also previous checkin fixed another problem with calling matlab's opengl info function whcih was causing initScreen to not be able to run twice (essentially you can't use the function opengl once the screen is open since even if you want to just get info about the monitors it crums your openGL context

3 lines of code changed in 1 file:

  • task: initScreen.m (+3)
justin 2011-10-25 15:34 Rev.: 985

Adding better warning for mismatched displayName when loading screen params

26 lines of code changed in 1 file:

  • task: initScreen.m (+26 -3)
justin 2011-10-14 15:26 Rev.: 976

Minor change - adding a message saying we are simulating vertical blank if that is the case.

1 lines of code changed in 1 file:

  • task: initScreen.m (+1 -1)
justin 2011-10-13 21:00 Rev.: 975

Last commit introduced a weird little bug. If you check the opengl info using the matlab call opengl after the screen is open, it seems to bust opengl calls. That is, nothing draws to the screen. Thank you Mathworks! So, now we check the openGL (To find the display card info so that we can warn about the problem with Radeon HD 5xxx display cards) before the screen is open. Also put a check in mglDescribeDisplays to not call opengl if the screen is open.

10 lines of code changed in 1 file:

  • task: initScreen.m (+10 -3)
justin 2011-10-13 17:14 Rev.: 973

This change set adds functionality to spoof the vertical refresh waiting that should be done with mglFLush. Apparently there is some bug in the Radeon HD 5xxx series cards such that it doesn't seem to wait for the vertical blank signal. To deal with this, I added a function mglFlushAndWait which now waits for the appropriate amount of time. Also in mglEditScreenParams you can now set 'simulateVerticalBlank' and it will use this new function rather than mglFlush. If initScreen detects that you are using the Radeon HD 5xxxx series card it will give you a warning that you may want to set this.

139 lines of code changed in 4 files:

  • task: initScreen.m (+17 -2), mglEditScreenParams.m (+8 -2), mglValidateScreenParams.m (+3 -2), tickScreen.m (+111 -107)
dep 2011-08-18 01:59 Rev.: 964

Added the option to remove blinks detected with the Eyelink algorithm.

20 lines of code changed in 1 file:

  • task: getTaskEyeTraces.m (+20 -2)
justin 2011-08-05 11:55 Rev.: 963

Passing empty task to tickScreen to avoid crashing when you hit ESC from this routine

4 lines of code changed in 1 file:

  • task: eyeCalibDisp.m (+4 -4)

(276 more)

Generated by StatSVN 0.4.1