Skip to content

Commit b02a06c

Browse files
committed
update setParameters
1 parent 38b65c7 commit b02a06c

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

setParameters.m

100644100755
Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,20 +11,22 @@
1111
% setParamters.m file is
1212
% change that if you want the data to be saved somewhere else
1313
cfg.dir.output = fullfile( ...
14-
fileparts(mfilename('fullpath')), 'output');
14+
fileparts(mfilename('fullpath')),'output');
1515

1616
%% Debug mode settings
1717

1818
cfg.debug.do = false; % To test the script out of the scanner, skip PTB sync
1919
cfg.debug.smallWin = false; % To test on a part of the screen, change to 1
2020
cfg.debug.transpWin = false; % To test with trasparent full size screen
2121

22+
cfg.skipSyncTests = 0;
23+
2224
cfg.verbose = 1;
2325

2426
%% Engine parameters
2527

2628
cfg.testingDevice = 'mri';
27-
cfg.eyeTracker.do = false;
29+
cfg.eyeTracker.do = true;
2830
cfg.audio.do = false;
2931

3032
cfg = setMonitor(cfg);
@@ -34,6 +36,7 @@
3436

3537
% MRI settings
3638
cfg = setMRI(cfg);
39+
cfg.suffix.acquisition = '0p75mmEvTr2p18';
3740

3841
cfg.pacedByTriggers.do = false;
3942

@@ -52,7 +55,7 @@
5255
cfg.design.motionDirections = [0 0 180 180];
5356
cfg.design.names = {'static'; 'motion'};
5457

55-
cfg.design.nbRepetitions = 8;
58+
cfg.design.nbRepetitions = 12;
5659
cfg.design.nbEventsPerBlock = 12; % DO NOT CHANGE
5760

5861
%% Timing
@@ -63,7 +66,7 @@
6366
% IBI
6467
% block length = (cfg.eventDuration + cfg.ISI) * cfg.design.nbEventsPerBlock
6568

66-
cfg.timing.eventDuration = 0.6; % second
69+
cfg.timing.eventDuration = 0.79; % second
6770

6871
% Time between blocs in secs
6972
cfg.timing.IBI = 0;

0 commit comments

Comments
 (0)