-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProtocolInitialize.m
61 lines (47 loc) · 1.38 KB
/
ProtocolInitialize.m
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
57
58
function protocol = ProtocolInitialize(xfilename,quiet)
% ProtocolInitialize initializes a protocol data structure
%
% protocol = ProtocolInitialize
%
% protocol = ProtocolInitialize(xfilename)
%
% protocol = ProtocolInitialize(xfilename,'quiet') suppresses any text
% output (important e.g. when called from a Visual Basic program).
% part of Spikes
%
% 2000-09 Matteo Carandini
% 2006-08 MC updated and extended so one can declare an xfile
% To see what is in a Protocol, do load('Z:\Data\trodes\CATZ009\19\1\Protocol');
if nargin<2
quiet = 'loud';
end
if nargin< 1
xfilename = [];
end
protocol.xfile = '';
protocol.adapt.flag = 0;
protocol.nstim = [];
protocol.npfilestimuli = [];
protocol.npars = [];
protocol.pars = [];
protocol.parnames = {};
protocol.pardefs = {};
protocol.animal = '';
protocol.iseries = [];
protocol.iexp = [];
protocol.nrepeats = 0;
protocol.seqnums = 0;
% These are not key attributes of the Protocol file:
% protocol.blankstims = [];
% protocol.blankpars = [];
% protocol.activepars = [];
% protocol.description = [];
if isempty(xfilename)
return
end
% read the xfile
x = XFileLoad( xfilename, quiet );
protocol.xfile = x.name;
protocol.parnames = x.parnames;
protocol.pardefs = x.pardefs;
protocol.npars = x.npars;