-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathPresets_ULV_Gensight.j
38 lines (31 loc) · 1.3 KB
/
Presets_ULV_Gensight.j
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/*
This file is part of FrACT10, a vision test battery.
Copyright © 2024 Michael Bach, bach@uni-freiburg.de, <https://michaelbach.de>
Presets_ULV_Gensight.j (a helper for Presets)
Settings for the cinical study "ULV" by Gensight
*/
@import "Settings.j"
@implementation Presets_ULV_Gensight: CPObject
+ (void) apply {//console.info("Preset_ULV_Gensight>apply")
[Settings setDefaults];
// general pane
[Settings setResponseInfoAtStart: NO]; [Settings setEnableTouchControls: NO];
[Settings setDistanceInCM: 100];
[Settings setNAlternativesIndex: kNAlternativesIndex4];
[Settings setNTrials04: 32];
[Settings setNTrials08: 24];
[Settings setAuditoryFeedback4trial: kAuditoryFeedback4trialAlways];
[Settings setTimeoutResponseSeconds: 60]; [Settings setTimeoutDisplaySeconds: 60];
[Settings setTestOnFive: kTestAcuityLett];
[Settings setResults2clipboard: kResults2ClipFullHistory];
// acuity pane
[Settings setMaxDisplayedAcuity: 2.5];
[Settings setAcuityStartingLogMAR: 1.5];
[Settings setAcuityFormatLogMAR: YES];
[Settings setShowCI95: YES];
[Settings setAcuityFormatDecimal: NO];
[Settings setCrowdingType: 1]; //flanking bars
[Settings setCrowdingDistanceCalculationType: 3];//like ETDRS
[Settings setPresetName: "ULV@Gensight"];
}
@end