1 | /********************************************************************\
|
---|
2 |
|
---|
3 | Class interfacing to FAD board
|
---|
4 |
|
---|
5 | \********************************************************************/
|
---|
6 |
|
---|
7 | #include "FADBoard.h"
|
---|
8 | using namespace std;
|
---|
9 |
|
---|
10 | //
|
---|
11 | // Constructor
|
---|
12 | //
|
---|
13 | FADBoard::FADBoard(string Server, unsigned short ServerPort, class FAD *Parent, unsigned int Num) {
|
---|
14 |
|
---|
15 | int Ret;
|
---|
16 |
|
---|
17 | // Initialization
|
---|
18 | m = Parent;
|
---|
19 | Active = false;
|
---|
20 | Continue = true;
|
---|
21 | CommOK = false;
|
---|
22 | ACalib.Time = -1;
|
---|
23 | Status.Update.tv_sec = -1;
|
---|
24 | Port = ServerPort;
|
---|
25 | Status.Frequency = 0;
|
---|
26 | Status.Rate = 0;
|
---|
27 | Status.BoardID = 0;
|
---|
28 |
|
---|
29 | Name = new char [Server.size()+1]; // Name in permanent memory for DIM service
|
---|
30 | strcpy(Name, Server.c_str());
|
---|
31 |
|
---|
32 | // Initialise mutex for synchronization
|
---|
33 | pthread_mutexattr_t Attr;
|
---|
34 |
|
---|
35 | if ((Ret = pthread_mutexattr_init(&Attr)) != 0) {
|
---|
36 | m->Message(m->ERROR, "pthread_mutex_init() failed in FADBoard constructor (%s)", strerror(Ret));
|
---|
37 | }
|
---|
38 | if ((Ret = pthread_mutexattr_settype(&Attr, PTHREAD_MUTEX_ERRORCHECK)) != 0) {
|
---|
39 | m->Message(m->ERROR, "pthread_mutex_settype() failed in FADBoard constructor (%s)", strerror(Ret));
|
---|
40 | }
|
---|
41 | if ((Ret = pthread_mutex_init(&Mutex, &Attr)) != 0) {
|
---|
42 | m->Message(m->FATAL, "pthread_mutex_init() failed in FADBoard constructor (%s)", strerror(Ret));
|
---|
43 | }
|
---|
44 |
|
---|
45 | // Initialise condition variable for synchronization
|
---|
46 | if ((Ret = pthread_cond_init(&CondVar, NULL)) != 0) {
|
---|
47 | m->Message(m->FATAL, "pthread_cond_init() failed in FADBoard constructor (%s)", strerror(Ret));
|
---|
48 | }
|
---|
49 |
|
---|
50 | // Construct DIM service name prefix
|
---|
51 | stringstream ID;
|
---|
52 | ID << SERVER_NAME"/Board" << setfill('0') << setw(2) << Num << "/";
|
---|
53 |
|
---|
54 | DIM_Name = new DimService((ID.str()+"Server").c_str(), Name);
|
---|
55 | DIM_Status = new DimService((ID.str()+"Status").c_str(), (char *) "");
|
---|
56 | DIM_ID = new DimService((ID.str()+"BoardID").c_str(), (char *) "S", NULL, 0);
|
---|
57 | DIM_Rate = new DimService((ID.str()+"RateHz").c_str(), Status.Rate);
|
---|
58 | DIM_Frequency = new DimService((ID.str()+"Frequency").c_str(), Status.Frequency);
|
---|
59 | DIM_TriggerNum = new DimService((ID.str()+"TriggerNum").c_str(), (char *) "I", &Status.TriggerNum, sizeof(Status.TriggerNum));
|
---|
60 | DIM_Temp = new DimService((ID.str()+"Temperature").c_str(), (char *) "F", NULL, 0);
|
---|
61 | DIM_DAC = new DimService((ID.str()+"DAC").c_str(), (char *) "S", NULL, 0);
|
---|
62 | DIM_ROI = new DimService((ID.str()+"ROI").c_str(), (char *) "S", NULL, 0);
|
---|
63 | DIM_ACalData = new DimService((ID.str()+"ACalData").c_str(), (char *) "F", NULL, 0);
|
---|
64 |
|
---|
65 | // Create thread that connects and receives data
|
---|
66 | SetStatus("Trying to connect...");
|
---|
67 |
|
---|
68 | if ((Ret = pthread_create(&Thread, NULL, (void * (*)(void *)) LaunchThread, (void *) this)) != 0) {
|
---|
69 | m->Message(m->FATAL, "pthread_create() failed in FADBoard() (%s)", strerror(Ret));
|
---|
70 | }
|
---|
71 |
|
---|
72 | // Start thread to connect to other sockets
|
---|
73 | DimThread::start();
|
---|
74 | }
|
---|
75 |
|
---|
76 | //
|
---|
77 | // Destructor
|
---|
78 | //
|
---|
79 | FADBoard::~FADBoard() {
|
---|
80 |
|
---|
81 | int Ret;
|
---|
82 |
|
---|
83 | // Cancel thread (if it did not quit already) and wait for it to quit
|
---|
84 | if ((Ret = pthread_cancel(Thread)) != 0 && Ret != ESRCH) {
|
---|
85 | m->Message(m->ERROR, "pthread_cancel() failed in ~FADBoard() (%s)", strerror(Ret));
|
---|
86 | }
|
---|
87 | if ((Ret = pthread_join(Thread, NULL)) != 0) {
|
---|
88 | m->Message(m->ERROR, "pthread_join() failed in ~FADBoard (%s)", strerror(Ret));
|
---|
89 | }
|
---|
90 |
|
---|
91 | // Delete condition variable
|
---|
92 | if ((Ret = pthread_cond_destroy(&CondVar)) != 0) {
|
---|
93 | m->Message(m->ERROR, "pthread_cond_destroy() failed for %s in ~FADBoard (%s)", Name, strerror(Ret));
|
---|
94 | }
|
---|
95 |
|
---|
96 | // Delete mutex
|
---|
97 | if ((Ret = pthread_mutex_destroy(&Mutex)) != 0) {
|
---|
98 | m->Message(m->ERROR, "pthread_mutex_destroy() failed for %s in ~FADBoard (%s)", Name, strerror(Ret));
|
---|
99 | }
|
---|
100 |
|
---|
101 | delete DIM_Name;
|
---|
102 | delete DIM_Status;
|
---|
103 | delete DIM_ID;
|
---|
104 | delete DIM_Rate;
|
---|
105 | delete DIM_Frequency;
|
---|
106 | delete DIM_TriggerNum;
|
---|
107 | delete DIM_Temp;
|
---|
108 | delete DIM_DAC;
|
---|
109 | delete DIM_ROI;
|
---|
110 | delete DIM_ACalData;
|
---|
111 | delete[] Name;
|
---|
112 | }
|
---|
113 |
|
---|
114 |
|
---|
115 | //
|
---|
116 | // Send data to board
|
---|
117 | //
|
---|
118 | void FADBoard::Send(const void *Data, size_t Bytes) {
|
---|
119 |
|
---|
120 | // Do not send if not active or communication problem
|
---|
121 | if (!Active || !CommOK) return;
|
---|
122 |
|
---|
123 | // Write data
|
---|
124 | ssize_t Result = write(Socket, Data, Bytes);
|
---|
125 |
|
---|
126 | // Check result
|
---|
127 | if (Result == -1) m->PrintMessage("Error: Could not write to socket (%s)\n", strerror(errno));
|
---|
128 | else if ((size_t) Result < Bytes) m->PrintMessage("Error: Could only write %d bytes out of %d to socket\n", Result, Bytes);
|
---|
129 | }
|
---|
130 |
|
---|
131 | void FADBoard::Send(unsigned short Data) {
|
---|
132 |
|
---|
133 | unsigned short Buffer = htons(Data);
|
---|
134 |
|
---|
135 | Send(&Buffer, sizeof(unsigned short));
|
---|
136 | }
|
---|
137 |
|
---|
138 |
|
---|
139 | //
|
---|
140 | // Get board status (mutex protected to avoid concurrent access in ReadLoop)
|
---|
141 | //
|
---|
142 | struct FADBoard::BoardStatus FADBoard::GetStatus() {
|
---|
143 |
|
---|
144 | int Ret;
|
---|
145 | struct BoardStatus S;
|
---|
146 |
|
---|
147 | // Lock
|
---|
148 | if ((Ret = pthread_mutex_lock(&Mutex)) != 0) {
|
---|
149 | m->Message(m->FATAL, "pthread_mutex_lock() failed in ReadLoop() (%s)", strerror(Ret));
|
---|
150 | }
|
---|
151 |
|
---|
152 | S = Status;
|
---|
153 |
|
---|
154 | // Unlock
|
---|
155 | if ((Ret = pthread_mutex_unlock(&Mutex)) != 0) {
|
---|
156 | m->Message(m->FATAL, "pthread_mutex_unlock() failed in Unlock() (%s)", strerror(Ret));
|
---|
157 | }
|
---|
158 |
|
---|
159 | return S;
|
---|
160 | }
|
---|
161 |
|
---|
162 |
|
---|
163 | //
|
---|
164 | // Perform amplitude calibration in steps
|
---|
165 | //
|
---|
166 | // The steps are intended to assure that up to date data is available
|
---|
167 | void FADBoard::AmplitudeCalibration() {
|
---|
168 |
|
---|
169 | vector<unsigned short> ROICmd;
|
---|
170 | unsigned short DACCmd[] = {htons(CMD_Write | (BADDR_DAC + 1)), 0, htons(CMD_Write | (BADDR_DAC + 2)), 0, htons(CMD_Write | (BADDR_DAC + 3)), 0, htons(CMD_Execute) };
|
---|
171 | string Message = string("ACALIBDONE")+Name+"\n";
|
---|
172 |
|
---|
173 | switch (State) {
|
---|
174 | // ====== Part A: Check if amplitude calibration should start and initialise =====
|
---|
175 | case standbye:
|
---|
176 | if (m->Mode != m->acalib) break;
|
---|
177 |
|
---|
178 | // Invalidate current calibration
|
---|
179 | ACalib.Time = -1;
|
---|
180 | Count = 0;
|
---|
181 |
|
---|
182 | // Save initial board status, set all ROIs to 1024 and set DAC values (no triggers while setting ROI)
|
---|
183 | InitialStatus = GetStatus();
|
---|
184 |
|
---|
185 | for (unsigned int i=0; i<NChips*NChannels; i++) {
|
---|
186 | ROICmd.push_back(htons(CMD_Write | (BADDR_ROI + i)));
|
---|
187 | ROICmd.push_back(htons(NBins));
|
---|
188 | }
|
---|
189 | ROICmd.push_back(htons(CMD_Execute));
|
---|
190 | Send(&ROICmd[0], ROICmd.size()*sizeof(unsigned short));
|
---|
191 |
|
---|
192 | DACCmd[1] = htons(0);
|
---|
193 | DACCmd[3] = htons(0);
|
---|
194 | DACCmd[5] = htons(0);
|
---|
195 | Send(DACCmd, sizeof(DACCmd));
|
---|
196 |
|
---|
197 | // Clear sum vector and set state to accumulate
|
---|
198 | memset(Sum, 0, sizeof(Sum));
|
---|
199 | State = baseline;
|
---|
200 | SetStatus("Starting calilbration");
|
---|
201 | break;
|
---|
202 |
|
---|
203 | // ====== Part B: Baseline calibration =====
|
---|
204 | case baseline:
|
---|
205 | // Check for stopping
|
---|
206 | if (m->Mode != m->acalib) {
|
---|
207 | State = cleanup;
|
---|
208 | break;
|
---|
209 | }
|
---|
210 |
|
---|
211 | // Average
|
---|
212 | for (unsigned int Chip=0; Chip<NChips; Chip++) {
|
---|
213 | for (unsigned int Chan=0; Chan<NChannels; Chan++) {
|
---|
214 | for (int i=0; i<Status.ROI[Chip][Chan]; i++) {
|
---|
215 | Sum[Chip][Chan][(i+Status.TriggerCell[Chip]) % NBins] += Data[Chip][Chan][i];
|
---|
216 | }
|
---|
217 | }
|
---|
218 | }
|
---|
219 | Count++;
|
---|
220 |
|
---|
221 | // Determine baseline if integration finished
|
---|
222 | if (Count < m->NumEventsRequested) break;
|
---|
223 |
|
---|
224 | for (unsigned int i=0; i<NChips; i++) {
|
---|
225 | for (unsigned int j=0; j<NChannels; j++) {
|
---|
226 | for (unsigned int k=0; k<NBins; k++) {
|
---|
227 | ACalib.Baseline[i][j][k] = Sum[i][j][k] / m->NumEventsRequested;
|
---|
228 | }
|
---|
229 | }
|
---|
230 | }
|
---|
231 |
|
---|
232 | // Set new DAC values and start accumulation
|
---|
233 | DACCmd[1] = htons(50000);
|
---|
234 | DACCmd[3] = htons(50000);
|
---|
235 | DACCmd[5] = htons(50000);
|
---|
236 | Send(DACCmd, sizeof(DACCmd));
|
---|
237 |
|
---|
238 | // Clear sum vector and set state to accumulate
|
---|
239 | memset(Sum, 0, sizeof(Sum));
|
---|
240 | Count = 0;
|
---|
241 | State = gain;
|
---|
242 | break;
|
---|
243 |
|
---|
244 | // ====== Part C: Gain calibration =====
|
---|
245 | case gain:
|
---|
246 | // Check for stopping
|
---|
247 | if (m->Mode != m->acalib) {
|
---|
248 | State = cleanup;
|
---|
249 | break;
|
---|
250 | }
|
---|
251 |
|
---|
252 | // Average
|
---|
253 | for (unsigned int Chip=0; Chip<NChips; Chip++) {
|
---|
254 | for (unsigned int Chan=0; Chan<NChannels; Chan++) {
|
---|
255 | for (int i=0; i<Status.ROI[Chip][Chan]; i++) {
|
---|
256 | Sum[Chip][Chan][(i+Status.TriggerCell[Chip]) % NBins] += Data[Chip][Chan][i];
|
---|
257 | }
|
---|
258 | }
|
---|
259 | }
|
---|
260 | Count++;
|
---|
261 |
|
---|
262 | // Determine gain if integration finished
|
---|
263 | if (Count < m->NumEventsRequested) break;
|
---|
264 |
|
---|
265 | for (unsigned int i=0; i<NChips; i++) {
|
---|
266 | for (unsigned int j=0; j<NChannels; j++) {
|
---|
267 | for (unsigned int k=0; k<NBins; k++) {
|
---|
268 | ACalib.Gain[i][j][k] = (Sum[i][j][k] / m->NumEventsRequested) - ACalib.Baseline[i][j][k];
|
---|
269 | }
|
---|
270 | }
|
---|
271 | }
|
---|
272 |
|
---|
273 | // Set new DAC values and start accumulation
|
---|
274 | DACCmd[1] = htons(0);
|
---|
275 | DACCmd[3] = htons(0);
|
---|
276 | DACCmd[5] = htons(0);
|
---|
277 | Send(DACCmd, sizeof(DACCmd));
|
---|
278 |
|
---|
279 | // Clear sum vector and set state to accumulate
|
---|
280 | memset(Sum, 0, sizeof(Sum));
|
---|
281 | Count = 0;
|
---|
282 | State = secondary;
|
---|
283 | break;
|
---|
284 |
|
---|
285 | // ====== Part D: Secondary calibration =====
|
---|
286 | case secondary:
|
---|
287 | // Check for stopping
|
---|
288 | if (m->Mode != m->acalib) {
|
---|
289 | State = cleanup;
|
---|
290 | break;
|
---|
291 | }
|
---|
292 |
|
---|
293 | // Average
|
---|
294 | for (unsigned int Chip=0; Chip<NChips; Chip++) {
|
---|
295 | for (unsigned int Chan=0; Chan<NChannels; Chan++) {
|
---|
296 | for (int i=0; i<Status.ROI[Chip][Chan]; i++) {
|
---|
297 | Sum[Chip][Chan][i] = Data[Chip][Chan][i] - ACalib.Baseline[Chip][Chan][(i-Status.TriggerCell[Chip]) % NBins];
|
---|
298 | }
|
---|
299 | }
|
---|
300 | }
|
---|
301 | Count++;
|
---|
302 |
|
---|
303 | // Determine secondary baseline if integration finished
|
---|
304 | if (Count < m->NumEventsRequested) break;
|
---|
305 |
|
---|
306 | for (unsigned int i=0; i<NChips; i++) {
|
---|
307 | for (unsigned int j=0; j<NChannels; j++) {
|
---|
308 | for (unsigned int k=0; k<NBins; k++) {
|
---|
309 | ACalib.Secondary[i][j][k] = Sum[i][j][k] / (double) m->NumEventsRequested;
|
---|
310 | }
|
---|
311 | }
|
---|
312 | }
|
---|
313 |
|
---|
314 | // Store calibration time and temperature
|
---|
315 | ACalib.DNA = Status.DNA;
|
---|
316 | ACalib.Frequency = Status.Frequency;
|
---|
317 | ACalib.Time = time(NULL);
|
---|
318 | ACalib.Temp = 0;
|
---|
319 | for (unsigned int i=0; i<NTemp; i++) ACalib.Temp += Status.Temp[i] / NTemp;
|
---|
320 |
|
---|
321 | // Inform event thread that calibration is finished for this board
|
---|
322 | if (write(m->Pipe[1], Message.data(), Message.size()) == -1) {
|
---|
323 | m->Message(m->ERROR, "write() to Pipe[1] failed in class FADBoard::AmplitudeCalibration (%s)", strerror(errno));
|
---|
324 | }
|
---|
325 |
|
---|
326 | SetStatus("Finished calibration");
|
---|
327 | State = cleanup;
|
---|
328 | break;
|
---|
329 |
|
---|
330 | // ====== Part E: Write back original ROI and DAC settings =====
|
---|
331 | case cleanup:
|
---|
332 | // ROI values
|
---|
333 |
|
---|
334 | ROICmd.clear();
|
---|
335 | for (unsigned int i=0; i<NChips*NChannels; i++) {
|
---|
336 | ROICmd.push_back(htons(CMD_Write | (BADDR_ROI + i)));
|
---|
337 | ROICmd.push_back(htons(InitialStatus.ROI[i/NChannels][i%NChannels]));
|
---|
338 | }
|
---|
339 | ROICmd.push_back(htons(CMD_Execute));
|
---|
340 | Send(&ROICmd[0], ROICmd.size()*sizeof(unsigned short));
|
---|
341 |
|
---|
342 | // DAC values
|
---|
343 | DACCmd[1] = htons(InitialStatus.DAC[1]);
|
---|
344 | DACCmd[3] = htons(InitialStatus.DAC[2]);
|
---|
345 | DACCmd[5] = htons(InitialStatus.DAC[3]);
|
---|
346 | Send(DACCmd, sizeof(DACCmd));
|
---|
347 |
|
---|
348 | // Update DIM service with calibration information
|
---|
349 | for (unsigned int i=0; i<NChips; i++) {
|
---|
350 | for (unsigned int j=0; j<NChannels; j++) {
|
---|
351 | for (unsigned int k=0; k<NBins; k++) {
|
---|
352 | ACalData[0][i][j][k] = ACalib.Baseline[i][j][k];
|
---|
353 | ACalData[1][i][j][k] = ACalib.Gain[i][j][k];
|
---|
354 | ACalData[2][i][j][k] = ACalib.Secondary[i][j][k];
|
---|
355 | }
|
---|
356 | }
|
---|
357 | }
|
---|
358 | DIM_ACalData->updateService(ACalData, 3*NChips*NChannels*NBins*sizeof(float));
|
---|
359 |
|
---|
360 | State = wait;
|
---|
361 | break;
|
---|
362 |
|
---|
363 | // ====== Wait for Mode not being idle =====
|
---|
364 | case wait:
|
---|
365 | if (m->Mode == m->idle) State = standbye;
|
---|
366 | break;
|
---|
367 | }
|
---|
368 | }
|
---|
369 |
|
---|
370 | //
|
---|
371 | // Connect to board and read data
|
---|
372 | //
|
---|
373 | void FADBoard::ReadLoop() {
|
---|
374 |
|
---|
375 | char Buffer[READ_BUFFER_SIZE];
|
---|
376 | unsigned int Pos = 0, Count = 0;
|
---|
377 | const PEVNT_HEADER *Header = (PEVNT_HEADER *) Buffer;
|
---|
378 | ssize_t Result;
|
---|
379 | struct sockaddr_in SocketAddress;
|
---|
380 | struct BoardStatus PrevStatus;
|
---|
381 | int Ret;
|
---|
382 |
|
---|
383 | // Resolve hostname
|
---|
384 | struct hostent *Host = gethostbyname(Name);
|
---|
385 | if (Host == 0) {
|
---|
386 | SetStatus("Could not resolve host name '%s'", Name);
|
---|
387 | return;
|
---|
388 | }
|
---|
389 |
|
---|
390 | SocketAddress.sin_family = PF_INET;
|
---|
391 | SocketAddress.sin_port = htons(Port);
|
---|
392 | SocketAddress.sin_addr = *(struct in_addr*) Host->h_addr;
|
---|
393 |
|
---|
394 | // Open socket descriptor
|
---|
395 | if ((Socket = socket(PF_INET, SOCK_STREAM, 0)) == -1) {
|
---|
396 | m->Message(m->ERROR, "Could not open socket for %s (%s)\n", Name, strerror(errno));
|
---|
397 | return;
|
---|
398 | }
|
---|
399 |
|
---|
400 | // Connect to server
|
---|
401 | if (connect(Socket, (struct sockaddr *) &SocketAddress, sizeof(SocketAddress)) == -1) {
|
---|
402 | SetStatus("Could not connect to port %hu (%s)", Port, strerror(errno));
|
---|
403 | }
|
---|
404 | else {
|
---|
405 | CommOK = true;
|
---|
406 | Active = true;
|
---|
407 | SetStatus("Connected");
|
---|
408 | }
|
---|
409 |
|
---|
410 | // Use not zero so that comparing Status and PrevStatus at first test will likely show differences
|
---|
411 | memset(&PrevStatus, 0xee, sizeof(PrevStatus));
|
---|
412 |
|
---|
413 | // Leave loop if program termination requested or board communication not OK
|
---|
414 | while (!m->ExitRequest && CommOK) {
|
---|
415 | // Read data from socket
|
---|
416 | Result = read(Socket, Buffer + Pos, sizeof(Buffer)-Pos);
|
---|
417 |
|
---|
418 | // Check result of read
|
---|
419 | if (Result == -1) {
|
---|
420 | m->Message(m->ERROR, "Could not read from socket for %s, exiting read loop (%s)\n", Name, strerror(errno));
|
---|
421 | CommOK = false;
|
---|
422 | break;
|
---|
423 | }
|
---|
424 | else if (Result == 0) {
|
---|
425 | SetStatus("Server not existing anymore, exiting read loop");
|
---|
426 | CommOK = false;
|
---|
427 | break;
|
---|
428 | }
|
---|
429 |
|
---|
430 | // If not active, discard incoming data
|
---|
431 | if (!Active) continue;
|
---|
432 |
|
---|
433 | // Advance write pointer
|
---|
434 | Pos += Result;
|
---|
435 |
|
---|
436 | // Check if internal buffer full
|
---|
437 | if (Pos == sizeof(Buffer)) {
|
---|
438 | SetStatus("Internal buffer full, deleting all data in buffer");
|
---|
439 | Pos = 0;
|
---|
440 | continue;
|
---|
441 | }
|
---|
442 |
|
---|
443 | // Check if buffer starts with start_package_flag, remove data if not
|
---|
444 | unsigned int Temp = 0;
|
---|
445 | while (ntohs(*((unsigned short *) (Buffer+Temp))) != 0xfb01 && Temp<Pos) Temp++;
|
---|
446 | if (Temp != 0) {
|
---|
447 | memmove(Buffer, Buffer+Temp, Pos-Temp);
|
---|
448 | Pos -= Temp;
|
---|
449 | SetStatus("Removed %d bytes because of start_package_flag not found", Temp);
|
---|
450 | continue;
|
---|
451 | }
|
---|
452 |
|
---|
453 | // Wait until the buffer contains at least enough bytes to potentially hold a PEVNT_HEADER
|
---|
454 | if (Pos < sizeof(PEVNT_HEADER)) continue;
|
---|
455 |
|
---|
456 | unsigned int Length = ntohs(Header->package_length)*2*sizeof(char);
|
---|
457 | if (Pos < Length) continue;
|
---|
458 |
|
---|
459 | // Extract data if event end package flag correct
|
---|
460 | if (ntohs(*(unsigned short *) (Buffer+Length-sizeof(unsigned short))) == 0x04FE) {
|
---|
461 |
|
---|
462 | // Prepare pointers to channel data (channels stored in order 0,9,18,27 - 1,10,19,28 - ... - 8,17,26,35)
|
---|
463 | PCHANNEL *Channel[NChips*NChannels], *Pnt=(PCHANNEL *) (Header+1);
|
---|
464 | for(unsigned int i=0; i<NChips*NChannels; i++) {
|
---|
465 | Channel[i] = Pnt;
|
---|
466 | Pnt = (PCHANNEL *) ((short *) (Channel[i] + 1) + ntohs(Channel[i]->roi));
|
---|
467 | }
|
---|
468 |
|
---|
469 | // Wait until event thread processed the previous data and lock to avoid concurrent access in GetStatus()
|
---|
470 | Lock();
|
---|
471 | while (!Continue) {
|
---|
472 | struct timespec Wakeup;
|
---|
473 | Wakeup.tv_sec = time(NULL)+MAX_WAIT_FOR_CONDITION;
|
---|
474 | Wakeup.tv_nsec = 0;
|
---|
475 | if ((Ret = pthread_cond_timedwait(&CondVar, &Mutex, &Wakeup)) != 0) {
|
---|
476 | if (Ret == ETIMEDOUT) SetStatus("Board %s timed out (%d s) waiting for condition\n", Name, MAX_WAIT_FOR_CONDITION);
|
---|
477 | else m->Message(m->ERROR, "pthread_cond_wait() failed (%s)", strerror(Ret));
|
---|
478 | }
|
---|
479 | }
|
---|
480 | gettimeofday(&Status.Update, NULL);
|
---|
481 |
|
---|
482 | // Extract board and trigger information
|
---|
483 | Status.BoardID = ntohs(Header->board_id);
|
---|
484 | Status.FirmwareRevision = ntohs(Header->version_no);
|
---|
485 | Status.BoardTime = ntohl(Header->time);
|
---|
486 | Status.EventCounter = ntohl(Header->fad_evt_counter);
|
---|
487 | Status.TriggerNum = ntohl(Header->trigger_id);
|
---|
488 | Status.Runnumber = ntohl(Header->runnumber);
|
---|
489 | Status.TriggerType = ntohs(Header->trigger_type);
|
---|
490 | Status.TriggerCRC = ntohs(Header->trigger_crc);
|
---|
491 | Status.DNA = Header->DNA;
|
---|
492 |
|
---|
493 | // Extract frequency related information
|
---|
494 | Status.Frequency = ntohl(Header->REFCLK_frequency)/1.0e3*2.048;
|
---|
495 | Status.PhaseShift = Header->adc_clock_phase_shift;
|
---|
496 | for (unsigned int i=0; i<NChips; i++) {
|
---|
497 | if ((ntohs(Header->PLLLCK)>>12 & (1<<i)) != 0) Status.Lock[i] = true;
|
---|
498 | else Status.Lock[i] = false;
|
---|
499 | }
|
---|
500 |
|
---|
501 | // Extract Firmware status info
|
---|
502 | Status.denable = (bool) ( ntohs(Header->PLLLCK) & (1<<11) );
|
---|
503 | Status.dwrite = (bool) ( ntohs(Header->PLLLCK) & (1<<10) );
|
---|
504 | Status.DCM_lock = (bool) ( ntohs(Header->PLLLCK) & (1<<7) );
|
---|
505 | Status.DCM_ready = (bool) ( ntohs(Header->PLLLCK) & (1<<6) );
|
---|
506 | Status.spi_clk = (bool) ( ntohs(Header->PLLLCK) & (1<<5) );
|
---|
507 | Status.RefClk_low = (bool) ( ntohs(Header->PLLLCK) & (1<<8) );
|
---|
508 |
|
---|
509 | // Extract temperatures (MSB indicates if temperature is positive or negative)
|
---|
510 | for (unsigned int i=0; i<NTemp; i++) {
|
---|
511 | if ((ntohs(Header->drs_temperature[i]) & 0x8000) == 0) Status.Temp[i] = float(ntohs(Header->drs_temperature[i]) >> 3)/16;
|
---|
512 | else Status.Temp[i] = float(0xE000 | (ntohs(Header->drs_temperature[i])) >> 3)/16;
|
---|
513 | }
|
---|
514 |
|
---|
515 | // Extract DAC channels
|
---|
516 | for (unsigned int i=0; i<NDAC; i++) Status.DAC[i] = ntohs(Header->dac[i]);
|
---|
517 |
|
---|
518 | short Buf;
|
---|
519 | for (unsigned int Chip=0; Chip<NChips; Chip++) {
|
---|
520 | // Extract trigger cells
|
---|
521 | Status.TriggerCell[Chip] = (int) ntohs(Channel[Chip]->start_cell);
|
---|
522 |
|
---|
523 | for (unsigned int Chan=0; Chan<NChannels; Chan++) {
|
---|
524 | // Extract ROI
|
---|
525 | Status.ROI[Chip][Chan] = ntohs(Channel[Chip+NChips*Chan]->roi);
|
---|
526 |
|
---|
527 | // Extract ADC data (stored in 12 bit signed twis complement with out-of-range-bit and leading zeroes)
|
---|
528 | for (int i=0; i<Status.ROI[Chip][Chan]; i++) {
|
---|
529 | Buf = (Channel[Chip+NChips*Chan]->adc_data[i]);
|
---|
530 | (Buf <<= 4) >>= 4; //delete the sign-bit by shifting left and shift back
|
---|
531 | Data[Chip][Chan][i] = Buf;
|
---|
532 | }
|
---|
533 | }
|
---|
534 | }
|
---|
535 |
|
---|
536 | // Prepare predicate for condition variable
|
---|
537 | Continue = false;
|
---|
538 | Count++;
|
---|
539 | Unlock();
|
---|
540 |
|
---|
541 | // Amplitude calibration (will check if Mode is acalib)
|
---|
542 | AmplitudeCalibration();
|
---|
543 |
|
---|
544 | // Update DIM services if necessary
|
---|
545 | if (Status.Update.tv_sec - PrevStatus.Update.tv_sec > m->EventUpdateDelay) {
|
---|
546 |
|
---|
547 | // Determine event rate
|
---|
548 | Status.Rate =
|
---|
549 | Count / (double(Status.Update.tv_sec-PrevStatus.Update.tv_sec) + (Status.Update.tv_usec-PrevStatus.Update.tv_usec)/1000000.0);
|
---|
550 | Count = 0;
|
---|
551 |
|
---|
552 | if (PrevStatus.Frequency != Status.Frequency) DIM_Frequency->updateService();
|
---|
553 | if (PrevStatus.TriggerNum != Status.TriggerNum) DIM_TriggerNum->updateService();
|
---|
554 | if (PrevStatus.Rate != Status.Rate) DIM_Rate->updateService();
|
---|
555 |
|
---|
556 | if (memcmp(PrevStatus.Temp, Status.Temp, sizeof(Status.Temp)) != 0) {
|
---|
557 | DIM_Temp->updateService(Status.Temp, sizeof(Status.Temp));
|
---|
558 | }
|
---|
559 | if (memcmp(PrevStatus.DAC, Status.DAC, sizeof(Status.DAC)) != 0) {
|
---|
560 | DIM_DAC->updateService(Status.DAC, sizeof(Status.DAC));
|
---|
561 | }
|
---|
562 | if (memcmp(PrevStatus.ROI, Status.ROI, sizeof(Status.ROI)) != 0) {
|
---|
563 | DIM_ROI->updateService(Status.ROI, sizeof(Status.ROI));
|
---|
564 | }
|
---|
565 | if (PrevStatus.BoardID != Status.BoardID) {
|
---|
566 | DIM_ID->updateService(&Status.BoardID, sizeof(Status.BoardID));
|
---|
567 | }
|
---|
568 |
|
---|
569 | PrevStatus = Status;
|
---|
570 | }
|
---|
571 |
|
---|
572 | // Inform event thread of new data
|
---|
573 | string Message = string("EVENT")+Name+"\n";
|
---|
574 | if (write(m->Pipe[1], Message.data(), Message.size()) == -1) {
|
---|
575 | m->Message(m->ERROR, "write() to Pipe[1] failed in class FADBoard (%s)", strerror(errno));
|
---|
576 | break;
|
---|
577 | }
|
---|
578 | }
|
---|
579 | else SetStatus("End package flag incorrect, removing corrupt event");
|
---|
580 |
|
---|
581 | // Remove event data from internal buffer
|
---|
582 | memmove(Buffer, Buffer+Length, Pos-Length);
|
---|
583 | Pos = Pos-Length;
|
---|
584 | } // while()
|
---|
585 |
|
---|
586 | // Set inactive and close socket descriptor
|
---|
587 | Active = false;
|
---|
588 |
|
---|
589 | if (close(Socket) == -1) {
|
---|
590 | m->Message(m->ERROR, "Could not close socket descriptor for board %s (%s)", Name, strerror(errno));
|
---|
591 | }
|
---|
592 |
|
---|
593 | }
|
---|
594 |
|
---|
595 | //
|
---|
596 | // Install cleanup handler and launch read thread inside class
|
---|
597 | //
|
---|
598 | void FADBoard::LaunchThread(class FADBoard *m) {
|
---|
599 |
|
---|
600 | pthread_cleanup_push((void (*)(void *)) FADBoard::ThreadCleanup, (void *) m);
|
---|
601 | m->ReadLoop();
|
---|
602 | pthread_cleanup_pop(0);
|
---|
603 | }
|
---|
604 |
|
---|
605 |
|
---|
606 | //
|
---|
607 | // Set status message
|
---|
608 | //
|
---|
609 | void FADBoard::SetStatus(const char *Format, ...) {
|
---|
610 |
|
---|
611 | int Ret;
|
---|
612 |
|
---|
613 | // Assemble message
|
---|
614 | va_list ArgumentPointer;
|
---|
615 | va_start(ArgumentPointer, Format);
|
---|
616 | Lock();
|
---|
617 | Ret = vsnprintf(Status.Message, sizeof(Status.Message), Format, ArgumentPointer);
|
---|
618 | Unlock();
|
---|
619 | va_end(ArgumentPointer);
|
---|
620 |
|
---|
621 | if (Ret == -1) m->Message(m->FATAL, "snprintf() in FADBoard::SetStatus() failed (%s)", strerror(errno));
|
---|
622 |
|
---|
623 | // Update status service
|
---|
624 | DIM_Status->updateService(Status.Message);
|
---|
625 | }
|
---|
626 |
|
---|
627 |
|
---|
628 | //
|
---|
629 | // Lock and unlock mutex
|
---|
630 | //
|
---|
631 | void FADBoard::Lock() {
|
---|
632 |
|
---|
633 | int Ret;
|
---|
634 |
|
---|
635 | if ((Ret = pthread_mutex_lock(&Mutex)) != 0) {
|
---|
636 | m->Message(m->FATAL, "pthread_mutex_lock() failed in class FADBoard (%s)", strerror(Ret));
|
---|
637 | }
|
---|
638 | }
|
---|
639 |
|
---|
640 | void FADBoard::Unlock() {
|
---|
641 |
|
---|
642 | int Ret;
|
---|
643 |
|
---|
644 | if ((Ret = pthread_mutex_unlock(&Mutex)) != 0) {
|
---|
645 | m->Message(m->FATAL, "pthread_mutex_unlock() failed in class FADBoard (%s)", strerror(Ret));
|
---|
646 | }
|
---|
647 | }
|
---|
648 |
|
---|
649 | // Ensure that mutex is unlocked when before cancelling thread
|
---|
650 | void FADBoard::ThreadCleanup(class FADBoard *This) {
|
---|
651 |
|
---|
652 | int Ret;
|
---|
653 |
|
---|
654 | if ((Ret = pthread_mutex_trylock(&This->Mutex)) != 0) {
|
---|
655 | if (Ret != EBUSY) This->m->Message(This->m->FATAL, "pthread_mutex_trylock() failed in FADBoard::ThreadCleanup (%s)", strerror(Ret));
|
---|
656 | }
|
---|
657 | This->Unlock();
|
---|
658 | }
|
---|
659 |
|
---|
660 | //
|
---|
661 | // Open other sockets
|
---|
662 | //
|
---|
663 | // Error reporting is limited as this function is expected to be removed when firmware allows single socket
|
---|
664 | //
|
---|
665 | void FADBoard::threadHandler() {
|
---|
666 |
|
---|
667 | int List[] = {5001, 5002, 5003, 5004, 5005, 5006, 5007};
|
---|
668 | int Socket[sizeof(List)/sizeof(int)], MaxSocketNum, Ret;
|
---|
669 | fd_set DescriptorList;
|
---|
670 | char Buffer[1000000];
|
---|
671 |
|
---|
672 | // Resolve hostname
|
---|
673 | struct hostent *Host = gethostbyname(Name);
|
---|
674 | if (Host == 0) return;
|
---|
675 |
|
---|
676 | // Connect to server
|
---|
677 | struct sockaddr_in SocketAddress;
|
---|
678 | SocketAddress.sin_family = PF_INET;
|
---|
679 | SocketAddress.sin_addr = *(struct in_addr*) Host->h_addr;
|
---|
680 |
|
---|
681 | for (unsigned int i=0; i<sizeof(List)/sizeof(int); i++) {
|
---|
682 | // Open socket descriptor
|
---|
683 | if ((Socket[i] = socket(PF_INET, SOCK_STREAM, 0)) == -1) {
|
---|
684 | m->Message(m->ERROR, "OtherSockets: Could not open socket for port %d (%s)\n", List[i], strerror(errno));
|
---|
685 | return;
|
---|
686 | }
|
---|
687 | MaxSocketNum = *max_element(Socket, Socket+sizeof(List)/sizeof(int));
|
---|
688 |
|
---|
689 | // Connect to server
|
---|
690 | SocketAddress.sin_port = htons((unsigned short) List[i]);
|
---|
691 | if (connect(Socket[i], (struct sockaddr *) &SocketAddress, sizeof(SocketAddress)) == -1) return;
|
---|
692 | }
|
---|
693 |
|
---|
694 | while(true) {
|
---|
695 | // Wait for data from sockets
|
---|
696 | FD_ZERO(&DescriptorList);
|
---|
697 | for (unsigned int i=0; i<sizeof(List)/sizeof(int); i++) FD_SET(Socket[i], &DescriptorList);
|
---|
698 | if (select(MaxSocketNum+1, &DescriptorList, NULL, NULL, NULL) == -1) {
|
---|
699 | m->Message(m->ERROR, "OtherSockets: Error with select() (%s)\n", strerror(errno));
|
---|
700 | break;
|
---|
701 | }
|
---|
702 |
|
---|
703 | // Data from socket
|
---|
704 | for (unsigned int i=0; i<sizeof(List)/sizeof(int); i++) if (FD_ISSET(Socket[i], &DescriptorList)) {
|
---|
705 | Ret = read(Socket[i], Buffer, sizeof(Buffer));
|
---|
706 | if (Ret == -1) m->Message(m->ERROR, "OtherSockets: Error reading from port %d (%s)\n", List[i], strerror(errno));
|
---|
707 | }
|
---|
708 | }
|
---|
709 |
|
---|
710 | // Close all sockets
|
---|
711 | for (unsigned int i=0; i<sizeof(List)/sizeof(int); i++) {
|
---|
712 | if ((Socket[i] != -1) && (close(Socket[i]) == -1)) {
|
---|
713 | m->Message(m->ERROR, "OtherSockets: Could not close socket of port %d (%s)", List[i], strerror(errno));
|
---|
714 | }
|
---|
715 | }
|
---|
716 | }
|
---|