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 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
|
#
# These are comments
#
cov {
#
# Output files
#
outfile test-cov.fif
logfile test-cov.log
#
# Rejection values
#
gradReject 10000e-13
magReject 4e-12
eegReject 80e-6
eogReject 150e-6
keepsamplemean
#
# What to include in the covariance matrix?
#
def {
name "Left Auditory"
event 1
tmin -0.2
tmax 0.0
basemin -0.1
basemax 0
}
def {
name "Right Auditory"
event 2
ignore 0
tmin -0.2
tmax 0.0
basemin -0.1
basemax 0
}
def {
name "Left visual"
event 3
ignore 0
tmin -0.2
tmax 0.0
basemin -0.1
basemax 0
}
def {
name "Right visual"
event 4
ignore 0
tmin -0.2
tmax 0.0
basemin -0.1
basemax 0
}
}
|