-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathPresets_Hyper_TUDo.j
36 lines (29 loc) · 1.14 KB
/
Presets_Hyper_TUDo.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
/*
This file is part of FrACT10, a vision test battery.
Copyright © 2024 Michael Bach, bach@uni-freiburg.de, <https://michaelbach.de>
Presets_Hyper_TUDo.j (a helper for Presets)
Settings for a hyperacuity project at Universität Dortmung
*/
@import "Settings.j"
@implementation Presets_Hyper_TUDo: CPObject
+ (void) apply {
[Settings setDefaults];
// General pane
[Settings setTimeoutResponseSeconds: 600]; [Settings setTimeoutDisplaySeconds: 90];
[Settings setDistanceInCM: 147]; [Settings setCalBarLengthInMM: 134];
[Settings setResponseInfoAtStart: NO];
[Settings setTestOnFive: kTestNone];
[Settings setResults2clipboard: kResults2ClipFullHistory];
[Settings setResults2clipboardSilent: YES];
// Acuity pane
[Settings setVernierType: kVernierType3bars];
[Settings setVernierWidth: 1.5]; [Settings setVernierLength: 40]; [Settings setVernierGap: 0.2];
[Settings setShowCI95: YES];
// Gamma pane
[Settings setGammaValue: 2.2];
// Misc pane
[Settings setWindowBackgroundColor: [CPColor whiteColor]];
[Settings setSoundTrialNoIndex: 1];
[Settings setPresetName: "Hyper@TUDo"];
}
@end