forked from restrepd-zz/dropc
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdropcReinforceAppropriately_hf_old.m
executable file
·215 lines (148 loc) · 7.97 KB
/
dropcReinforceAppropriately_hf_old.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
function handles=dropcReinforceAppropriately_hf(handles)
%Turns all valves off
do_dt_punish=0;
if handles.dropcProg.typeOfOdor==handles.dropcProg.splusOdor
%S+
if handles.dropcData.trialScore(handles.dropcData.trialIndex)==1
%Hit
handles.dropcDigOut.draqPortStatus=handles.dropcDraqOut.hit+handles.dropcDraqOut.draq_trigger;
dropcUpdateDraqPort(handles);
start_toc=toc;
while toc-start_toc<0.2
end
if rand(1)<=handles.dropcProg.fracReinforcement(1)
%Turn on (or not) opto stimulus during reinforcement
opto_on=0;
% handles.dropcData.epochOptoOn(handles.dropcData.epochIndex+1)=0;
%Send out light pulse
if (handles.dropcProg.whenOptoOn==3)
dataValue=uint8(0);
putvalue(handles.dio.Line(9:12),dataValue);
opto_on=1;
% handles.dropcData.epochOptoOn(handles.dropcData.epochIndex+1)=1;
end
%Notify draq
if opto_on==0
handles.dropcDigOut.draqPortStatus=handles.dropcDraqOut.final_valve;
else
handles.dropcDigOut.draqPortStatus=handles.dropcDraqOut.final_valve+handles.dropcDraqOut.opto_on;
end
dropcUpdateDraqPort(handles);
%Reinforce on
handles.dropcData.epochIndex=handles.dropcData.epochIndex+1;
handles.dropcData.epochEvent(handles.dropcData.epochIndex)=4;
handles.dropcData.epochTime(handles.dropcData.epochIndex)=toc;
handles.dropcData.epochTypeOfOdor(handles.dropcData.epochIndex)=handles.dropcProg.typeOfOdor;
handles.dropcData.epochTrial(handles.dropcData.epochIndex)=handles.dropcData.trialIndex;
dropcReinforceNow(handles);
%Reinforce off
handles.dropcData.epochIndex=handles.dropcData.epochIndex+1;
handles.dropcData.epochEvent(handles.dropcData.epochIndex)=5;
handles.dropcData.epochTime(handles.dropcData.epochIndex)=toc;
handles.dropcData.epochTypeOfOdor(handles.dropcData.epochIndex)=handles.dropcProg.typeOfOdor;
handles.dropcData.epochTrial(handles.dropcData.epochIndex)=handles.dropcData.trialIndex;
handles.dropcData.isReinforced(handles.dropcData.trialIndex)=1;
else
handles.dropcData.isReinforced(handles.dropcData.trialIndex)=0;
end
else
%Miss
handles.dropcDigOut.draqPortStatus=handles.dropcDraqOut.miss+handles.dropcDraqOut.draq_trigger;
dropcUpdateDraqPort(handles);
start_toc=toc;
while toc-start_toc<0.2
end
handles.dropcData.isReinforced(handles.dropcData.trialIndex)=0;
end
end
if handles.dropcProg.typeOfOdor==handles.dropcProg.sminusOdor
%S-
if (handles.dropcProg.go_nogo==1)
%This is a go_nogo
if handles.dropcData.trialScore(handles.dropcData.trialIndex)==0
%Correct Rejection
handles.dropcDigOut.draqPortStatus=handles.dropcDraqOut.correct_rejection+handles.dropcDraqOut.draq_trigger;
dropcUpdateDraqPort(handles);
start_toc=toc;
while toc-start_toc<0.2
end
if rand(1)<=handles.dropcProg.fracReinforcement(2)
%Reinforce on
handles.dropcData.epochIndex=handles.dropcData.epochIndex+1;
handles.dropcData.epochEvent(handles.dropcData.epochIndex)=4;
handles.dropcData.epochTime(handles.dropcData.epochIndex)=toc;
handles.dropcData.epochTypeOfOdor(handles.dropcData.epochIndex)=handles.dropcProg.typeOfOdor;
handles.dropcData.epochTrial(handles.dropcData.epochIndex)=handles.dropcData.trialIndex;
dropcReinforceNow(handles);
%Reinforce off
handles.dropcData.epochIndex=handles.dropcData.epochIndex+1;
handles.dropcData.epochEvent(handles.dropcData.epochIndex)=5;
handles.dropcData.epochTime(handles.dropcData.epochIndex)=toc;
handles.dropcData.epochTypeOfOdor(handles.dropcData.epochIndex)=handles.dropcProg.typeOfOdor;
handles.dropcData.epochTrial(handles.dropcData.epochIndex)=handles.dropcData.trialIndex;
handles.dropcData.isReinforced(handles.dropcData.trialIndex)=1;
else
handles.dropcData.isReinforced(handles.dropcData.trialIndex)=0;
end
else
%False Alarm
handles.dropcDigOut.draqPortStatus=handles.dropcDraqOut.false_alarm+handles.dropcDraqOut.draq_trigger;
dropcUpdateDraqPort(handles);
start_toc=toc;
while toc-start_toc<0.2
end
if handles.dropcProg.dt_punish>0
do_dt_punish=1;
end
handles.dropcData.isReinforced(handles.dropcData.trialIndex)=0;
end
else
%This is a go_go
if handles.dropcData.trialScore(handles.dropcData.trialIndex)==0
%Correct Rejection
handles.dropcDigOut.draqPortStatus=handles.dropcDraqOut.correct_rejection+handles.dropcDraqOut.draq_trigger;
dropcUpdateDraqPort(handles);
start_toc=toc;
while toc-start_toc<0.2
end
handles.dropcData.isReinforced(handles.dropcData.trialIndex)=0;
else
%False Alarm
handles.dropcDigOut.draqPortStatus=handles.dropcDraqOut.false_alarm+handles.dropcDraqOut.draq_trigger;
dropcUpdateDraqPort(handles);
start_toc=toc;
while toc-start_toc<0.2
end
handles.dropcData.isReinforced(handles.dropcData.trialIndex)=0;
if rand(1)<=handles.dropcProg.fracReinforcement(2)
%Reinforce on
handles.dropcData.epochIndex=handles.dropcData.epochIndex+1;
handles.dropcData.epochEvent(handles.dropcData.epochIndex)=4;
handles.dropcData.epochTime(handles.dropcData.epochIndex)=toc;
handles.dropcData.epochTypeOfOdor(handles.dropcData.epochIndex)=handles.dropcProg.typeOfOdor;
handles.dropcData.epochTrial(handles.dropcData.epochIndex)=handles.dropcData.trialIndex;
dropcReinforceNow(handles);
%Reinforce off
handles.dropcData.epochIndex=handles.dropcData.epochIndex+1;
handles.dropcData.epochEvent(handles.dropcData.epochIndex)=5;
handles.dropcData.epochTime(handles.dropcData.epochIndex)=toc;
handles.dropcData.epochTypeOfOdor(handles.dropcData.epochIndex)=handles.dropcProg.typeOfOdor;
handles.dropcData.epochTrial(handles.dropcData.epochIndex)=handles.dropcData.trialIndex;
handles.dropcData.isReinforced(handles.dropcData.trialIndex)=1;
else
handles.dropcData.isReinforced(handles.dropcData.trialIndex)=0;
end
end
end
end% end of S-
%Extremely important. If you do not do this you do not transfer all
%trials to the draq computer
dropcStartDraq(handles)
%This turns all off
handles.dropcDigOut.draqPortStatus=uint8(0);
dropcUpdateDraqPort(handles);
if do_dt_punish==1
start_toc=toc;
while toc-start_toc<handles.dropcProg.dt_punish
end
end