Skip to content

Commit 6a79476

Browse files
committed
mh fix
1 parent d91b235 commit 6a79476

File tree

4 files changed

+11
-10
lines changed

4 files changed

+11
-10
lines changed

setParameters.m

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,8 @@
4040

4141
%% Experiment Design
4242

43-
cfg.design.localizer = 'MT_MST';
43+
% cfg.design.localizer = 'MT_MST';
4444

45-
% cfg.design.motionType = 'translation';
4645
% cfg.design.motionType = 'radial';
4746
cfg.design.motionType = 'translation';
4847

@@ -110,9 +109,9 @@
110109
% Number of dots per visual angle square.
111110
cfg.dot.density = 1;
112111
% Dot life time in seconds
113-
cfg.dot.lifeTime = 10;
112+
cfg.dot.lifeTime = .15;
114113
% proportion of dots killed per frame
115-
cfg.dot.proportionKilledPerFrame = 0;
114+
cfg.dot.proportionKilledPerFrame = 0.005;
116115
% Dot Size (dot width) in visual angles.
117116
cfg.dot.size = .2;
118117
cfg.dot.color = cfg.color.white;

subfun/saveResponsesAndTriggers.m

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
% (C) Copyright 2020 CPP visual motion localizer developpers
2+
13
function saveResponsesAndTriggers(responseEvents, cfg, logFile, triggerString)
24

35
if isfield(responseEvents(1), 'onset') && ~isempty(responseEvents(1).onset)

visualLocTranslational.m

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,11 @@
3434

3535
[el] = eyeTracker('Calibration', cfg);
3636

37-
if isfield(cfg.design, 'localizer') && strcmpi(cfg.design.localizer, 'MT_MST')
38-
[cfg] = expDesignMtMst(cfg);
39-
else
40-
[cfg] = expDesign(cfg);
41-
end
37+
% if isfield(cfg.design, 'localizer') && strcmpi(cfg.design.localizer, 'MT_MST')
38+
% [cfg] = expDesignMtMst(cfg);
39+
% else
40+
[cfg] = expDesign(cfg);
41+
% end
4242

4343
% Prepare for the output logfiles with all
4444
logFile.extraColumns = cfg.extraColumns;

0 commit comments

Comments
 (0)