source: trunk/FACT++/src/ratecontrol.cc@ 17050

Last change on this file since 17050 was 17026, checked in by tbretz, 11 years ago
Directly use the calibrated currents from the feedback.
File size: 30.9 KB
Line 
1#include <valarray>
2
3#include "Dim.h"
4#include "Event.h"
5#include "Shell.h"
6#include "StateMachineDim.h"
7#include "Connection.h"
8#include "Configuration.h"
9#include "Console.h"
10#include "externals/PixelMap.h"
11
12#include "tools.h"
13
14#include "LocalControl.h"
15
16#include "HeadersFTM.h"
17#include "HeadersDrive.h"
18#include "HeadersRateScan.h"
19#include "HeadersRateControl.h"
20
21namespace ba = boost::asio;
22namespace bs = boost::system;
23namespace dummy = ba::placeholders;
24
25using namespace std;
26
27// ------------------------------------------------------------------------
28
29#include "DimDescriptionService.h"
30#include "DimState.h"
31
32// ------------------------------------------------------------------------
33
34class StateMachineRateControl : public StateMachineDim//, public DimInfoHandler
35{
36private:
37 struct config
38 {
39 uint16_t fCalibrationType;
40 uint16_t fTargetRate;
41 uint16_t fMinThreshold;
42 uint16_t fAverageTime;
43 uint16_t fRequiredEvents;
44 };
45
46 map<string, config> fRunTypes;
47
48 PixelMap fMap;
49
50 bool fPhysTriggerEnabled;
51 bool fTriggerOn;
52
53 vector<bool> fBlock;
54
55 DimVersion fDim;
56 DimDescribedState fDimFTM;
57 DimDescribedState fDimRS;
58 DimDescribedState fDimDrive;
59
60 DimDescribedService fDimThreshold;
61
62 float fTargetRate;
63 float fTriggerRate;
64
65 uint16_t fThresholdMin;
66 uint16_t fThresholdReference;
67
68 uint16_t fAverageTime;
69 uint16_t fRequiredEvents;
70
71 list<pair<Time,float>> fCurrentsMed;
72 list<pair<Time,float>> fCurrentsDev;
73 list<pair<Time,vector<float>>> fCurrentsVec;
74
75 bool fVerbose;
76 bool fCalibrateByCurrent;
77
78 uint64_t fCounter;
79
80 Time fCalibrationTimeStart;
81
82 bool CheckEventSize(const EventImp &evt, size_t size)
83 {
84 if (size_t(evt.GetSize())==size)
85 return true;
86
87 if (evt.GetSize()==0)
88 return false;
89
90 ostringstream msg;
91 msg << evt.GetName() << " - Received event has " << evt.GetSize() << " bytes, but expected " << size << ".";
92 Fatal(msg);
93 return false;
94 }
95
96 vector<uint32_t> fThresholds;
97
98 void PrintThresholds(const FTM::DimStaticData &sdata)
99 {
100 if (!fVerbose)
101 return;
102
103 if (fThresholds.empty())
104 return;
105
106 if (GetCurrentState()<=RateControl::State::kConnected)
107 return;
108
109 Out() << "Min. DAC=" << fThresholdMin << endl;
110
111 for (int j=0; j<10; j++)
112 {
113 for (int k=0; k<4; k++)
114 {
115 for (int i=0; i<4; i++)
116 {
117 const int p = i + k*4 + j*16;
118
119 if (fThresholds[p]!=fThresholdMin)
120 Out() << setw(3) << fThresholds[p];
121 else
122 Out() << " - ";
123
124 if (fThresholds[p]!=sdata.fThreshold[p])
125 Out() << "!";
126 else
127 Out() << " ";
128 }
129
130 Out() << " ";
131 }
132 Out() << endl;
133 }
134 Out() << endl;
135 }
136
137 // RETUNR VALUE
138 bool Step(int idx, float step)
139 {
140 uint32_t diff = fThresholds[idx]+int16_t(truncf(step));
141 if (diff<fThresholdMin)
142 diff=fThresholdMin;
143 if (diff>0xffff)
144 diff = 0xffff;
145
146 if (diff==fThresholds[idx])
147 return false;
148
149 if (fVerbose)
150 {
151 Out() << "Apply: Patch " << setw(3) << idx << " [" << idx/40 << "|" << (idx/4)%10 << "|" << idx%4 << "]";
152 Out() << (step>0 ? " += " : " -= ");
153 Out() << fabs(step) << " (old=" << fThresholds[idx] << ", new=" << diff << ")" << endl;
154 }
155
156 fThresholds[idx] = diff;
157 fBlock[idx/4] = true;
158
159 return true;
160 }
161
162 void ProcessPatches(const FTM::DimTriggerRates &sdata)
163 {
164
165 // Caluclate Median and deviation
166 vector<float> medb(sdata.fBoardRate, sdata.fBoardRate+40);
167 vector<float> medp(sdata.fPatchRate, sdata.fPatchRate+160);
168
169 sort(medb.begin(), medb.end());
170 sort(medp.begin(), medp.end());
171
172 vector<float> devb(40);
173 for (int i=0; i<40; i++)
174 devb[i] = fabs(sdata.fBoardRate[i]-medb[i]);
175
176 vector<float> devp(160);
177 for (int i=0; i<160; i++)
178 devp[i] = fabs(sdata.fPatchRate[i]-medp[i]);
179
180 sort(devb.begin(), devb.end());
181 sort(devp.begin(), devp.end());
182
183 const double mb = (medb[19]+medb[20])/2;
184 const double mp = (medp[79]+medp[80])/2;
185
186 const double db = devb[27];
187 const double dp = devp[109];
188
189 // If any is zero there is something wrong
190 if (mb==0 || mp==0 || db==0 || dp==0)
191 return;
192
193 if (fVerbose)
194 Out() << Tools::Form("Boards: Med=%3.1f +- %3.1f Hz Patches: Med=%3.1f +- %3.1f Hz", mb, db, mp, dp) << endl;
195
196 bool changed = false;
197
198 for (int i=0; i<40; i++)
199 {
200 if (fBlock[i])
201 {
202 fBlock[i] = false;
203 continue;
204 }
205
206 int maxi = -1;
207
208 const float dif = fabs(sdata.fBoardRate[i]-mb)/db;
209 if (dif>3)
210 {
211 if (fVerbose)
212 Out() << "Board " << setw(3) << i << ": " << dif << " dev away from med" << endl;
213
214 float max = sdata.fPatchRate[i*4];
215 maxi = 0;
216
217 for (int j=1; j<4; j++)
218 if (sdata.fPatchRate[i*4+j]>max)
219 {
220 max = sdata.fPatchRate[i*4+j];
221 maxi = j;
222 }
223 }
224
225 for (int j=0; j<4; j++)
226 {
227 // For the noise pixel correct down to median+3*deviation
228 if (maxi==j)
229 {
230 // This is the step which has to be performed to go from
231 // a NSB rate of sdata.fPatchRate[i*4+j]
232
233
234 const float step = (log10(sdata.fPatchRate[i*4+j])-log10(mp+3.5*dp))/0.039;
235 // * (dif-5)/dif
236 changed |= Step(i*4+j, step);
237 continue;
238 }
239
240 // For pixels below the median correct also back to median+3*deviation
241 if (sdata.fPatchRate[i*4+j]<mp)
242 {
243 const float step = (log10(sdata.fPatchRate[i*4+j])-log10(mp+3.5*dp))/0.039;
244 changed |= Step(i*4+j, step);
245 continue;
246 }
247
248 const float step = -1.5*(log10(mp+dp)-log10(mp))/0.039;
249 changed |= Step(i*4+j, step);
250 }
251 }
252
253 if (changed)
254 Dim::SendCommandNB("FTM_CONTROL/SET_SELECTED_THRESHOLDS", fThresholds);
255 }
256
257 int ProcessCamera(const FTM::DimTriggerRates &sdata)
258 {
259 if (fCounter++==0)
260 return GetCurrentState();
261
262 // Caluclate Median and deviation
263 vector<float> medb(sdata.fBoardRate, sdata.fBoardRate+40);
264
265 sort(medb.begin(), medb.end());
266
267 vector<float> devb(40);
268 for (int i=0; i<40; i++)
269 devb[i] = fabs(sdata.fBoardRate[i]-medb[i]);
270
271 sort(devb.begin(), devb.end());
272
273 double mb = (medb[19]+medb[20])/2;
274 double db = devb[27];
275
276 // If any is zero there is something wrong
277 if (mb==0 || db==0)
278 {
279 Warn("The median or the deviation of all board rates is zero... cannot calibrate.");
280 return GetCurrentState();
281 }
282
283 double avg = 0;
284 int num = 0;
285
286 for (int i=0; i<40; i++)
287 {
288 if ( fabs(sdata.fBoardRate[i]-mb)<2.5*db)
289 {
290 avg += sdata.fBoardRate[i];
291 num++;
292 }
293 }
294
295 fTriggerRate = avg/num * 40;
296
297 if (fVerbose)
298 {
299 Out() << "Board: Median=" << mb << " Dev=" << db << endl;
300 Out() << "Camera: " << fTriggerRate << " (" << sdata.fTriggerRate << ", n=" << num << ")" << endl;
301 Out() << "Target: " << fTargetRate << endl;
302 }
303
304 if (sdata.fTriggerRate<fTriggerRate)
305 fTriggerRate = sdata.fTriggerRate;
306
307 // ----------------------
308
309 /*
310 if (avg>0 && avg<fTargetRate)
311 {
312 // I am assuming here (and at other places) the the answer from the FTM when setting
313 // the new threshold always arrives faster than the next rate update.
314 fThresholdMin = fThresholds[0];
315 Out() << "Setting fThresholdMin to " << fThresholds[0] << endl;
316 }
317 */
318
319 if (fTriggerRate>0 && fTriggerRate<fTargetRate)
320 {
321 fThresholds.assign(160, fThresholdMin);
322
323 const RateControl::DimThreshold data = { fThresholdMin, fCalibrationTimeStart.Mjd(), Time().Mjd() };
324 fDimThreshold.setQuality(0);
325 fDimThreshold.Update(data);
326
327 ostringstream out;
328 out << setprecision(3);
329 out << "Measured rate " << fTriggerRate << "Hz below target rate " << fTargetRate << "... mininum threshold set to " << fThresholdMin;
330 Info(out);
331
332 fTriggerOn = false;
333 fPhysTriggerEnabled = false;
334 return RateControl::State::kGlobalThresholdSet;
335 }
336
337 // This is a step towards a threshold at which the NSB rate is equal the target rate
338 // +1 to avoid getting a step of 0
339 const float step = (log10(fTriggerRate)-log10(fTargetRate))/0.039 + 1;
340
341 const uint16_t diff = fThresholdMin+int16_t(truncf(step));
342 if (diff<=fThresholdMin)
343 {
344 const RateControl::DimThreshold data = { fThresholdMin, fCalibrationTimeStart.Mjd(), Time().Mjd() };
345 fDimThreshold.setQuality(1);
346 fDimThreshold.Update(data);
347
348 ostringstream out;
349 out << setprecision(3);
350 out << "Next step would be 0... mininum threshold set to " << fThresholdMin;
351 Info(out);
352
353 fTriggerOn = false;
354 fPhysTriggerEnabled = false;
355 return RateControl::State::kGlobalThresholdSet;
356 }
357
358 if (fVerbose)
359 {
360 //Out() << idx/40 << "|" << (idx/4)%10 << "|" << idx%4;
361 Out() << fThresholdMin;
362 Out() << (step>0 ? " += " : " -= ");
363 Out() << step << " (" << diff << ")" << endl;
364 }
365
366 const uint32_t val[2] = { -1, diff };
367 Dim::SendCommandNB("FTM_CONTROL/SET_THRESHOLD", val);
368
369 fThresholdMin = diff;
370
371 return GetCurrentState();
372 }
373
374 int HandleStaticData(const EventImp &evt)
375 {
376 if (!CheckEventSize(evt, sizeof(FTM::DimStaticData)))
377 return GetCurrentState();
378
379 const FTM::DimStaticData &sdata = *static_cast<const FTM::DimStaticData*>(evt.GetData());
380 fPhysTriggerEnabled = sdata.HasTrigger();
381 fTriggerOn = (evt.GetQoS()&FTM::kFtmStates)==FTM::kFtmRunning;
382
383 Out() << "\n" << evt.GetTime() << ": " << (bool)fTriggerOn << " " << (bool)fPhysTriggerEnabled << endl;
384 PrintThresholds(sdata);
385
386 if (GetCurrentState()==RateControl::State::kSettingGlobalThreshold && fCalibrateByCurrent)
387 {
388 if (fThresholds.empty())
389 return RateControl::State::kSettingGlobalThreshold;
390
391 if (!std::equal(sdata.fThreshold, sdata.fThreshold+160, fThresholds.begin()))
392 return RateControl::State::kSettingGlobalThreshold;
393
394 return RateControl::State::kGlobalThresholdSet;
395 }
396
397 fThresholds.assign(sdata.fThreshold, sdata.fThreshold+160);
398
399 return GetCurrentState();
400 }
401
402 int HandleTriggerRates(const EventImp &evt)
403 {
404 fTriggerOn = (evt.GetQoS()&FTM::kFtmStates)==FTM::kFtmRunning;
405
406 if (fThresholds.empty())
407 return GetCurrentState();
408
409 if (GetCurrentState()<=RateControl::State::kConnected ||
410 GetCurrentState()==RateControl::State::kGlobalThresholdSet)
411 return GetCurrentState();
412
413 if (!CheckEventSize(evt, sizeof(FTM::DimTriggerRates)))
414 return GetCurrentState();
415
416 const FTM::DimTriggerRates &sdata = *static_cast<const FTM::DimTriggerRates*>(evt.GetData());
417
418 if (GetCurrentState()==RateControl::State::kSettingGlobalThreshold && !fCalibrateByCurrent)
419 return ProcessCamera(sdata);
420
421 if (GetCurrentState()==RateControl::State::kInProgress)
422 ProcessPatches(sdata);
423
424 return GetCurrentState();
425 }
426
427 int HandleCalibratedCurrents(const EventImp &evt)
428 {
429 // Check if received event is valid
430 if (!CheckEventSize(evt, (2*416+8)*4))
431 return GetCurrentState();
432
433 // Record only currents when the drive is tracking to avoid
434 // bias from the movement
435 if (fDimDrive.state()<Drive::State::kTracking)
436 return GetCurrentState();
437
438 // Get time and median current (FIXME: check N?)
439 const Time &time = evt.GetTime();
440 const float med = evt.Get<float>(416*4+4+4);
441 const float dev = evt.Get<float>(416*4+4+4+4);
442 const float *cur = evt.Ptr<float>();
443
444 // Keep all median currents of the past 10 seconds
445 fCurrentsMed.emplace_back(time, med);
446 fCurrentsDev.emplace_back(time, dev);
447 fCurrentsVec.emplace_back(time, vector<float>(cur, cur+320));
448 while (!fCurrentsMed.empty())
449 {
450 if (time-fCurrentsMed.front().first<boost::posix_time::seconds(fAverageTime))
451 break;
452
453 fCurrentsMed.pop_front();
454 fCurrentsDev.pop_front();
455 fCurrentsVec.pop_front();
456 }
457
458 // If we are not doing a calibration no further action necessary
459 if (!fCalibrateByCurrent)
460 return GetCurrentState();
461
462 // We are not setting thresholds at all
463 if (GetCurrentState()!=RateControl::State::kSettingGlobalThreshold)
464 return GetCurrentState();
465
466 // Target thresholds have been assigned already
467 if (!fThresholds.empty())
468 return GetCurrentState();
469
470 // We want at least 8 values for averaging
471 if (fCurrentsMed.size()<fRequiredEvents)
472 return GetCurrentState();
473
474 // Calculate avera and rms of median
475 double avg = 0;
476 double rms = 0;
477 for (auto it=fCurrentsMed.begin(); it!=fCurrentsMed.end(); it++)
478 {
479 avg += it->second;
480 rms += it->second*it->second;
481 }
482 avg /= fCurrentsMed.size();
483 rms /= fCurrentsMed.size();
484 rms = sqrt(rms-avg*avg);
485
486 double avg_dev = 0;
487 for (auto it=fCurrentsDev.begin(); it!=fCurrentsDev.end(); it++)
488 avg_dev += it->second;
489 avg_dev /= fCurrentsMed.size();
490
491 // One could recalculate the median of all pixels including the
492 // correction for the three crazy pixels, but that is three out
493 // of 320. The effect on the median should be negligible anyhow.
494 vector<double> vec(160);
495 for (auto it=fCurrentsVec.begin(); it!=fCurrentsVec.end(); it++)
496 for (int i=0; i<320; i++)
497 {
498 const PixelMapEntry &hv = fMap.hv(i);
499 if (hv)
500 vec[hv.hw()/9] += it->second[i]*hv.count();
501 }
502
503 //fThresholdMin = max(uint16_t(36.0833*pow(avg, 0.638393)+184.037), fThresholdReference);
504 //fThresholdMin = max(uint16_t(42.4*pow(avg, 0.642)+182), fThresholdReference);
505 //fThresholdMin = max(uint16_t(41.6*pow(avg+1, 0.642)+175), fThresholdReference);
506 //fThresholdMin = max(uint16_t(42.3*pow(avg, 0.655)+190), fThresholdReference);
507 fThresholdMin = max(uint16_t(46.6*pow(avg, 0.627)+187), fThresholdReference);
508 //fThresholdMin = max(uint16_t(41.6*pow(avg, 0.642)+175), fThresholdReference);
509 fThresholds.assign(160, fThresholdMin);
510
511 int counter = 1;
512
513 double avg2 = 0;
514 for (int i=0; i<160; i++)
515 {
516 vec[i] /= fCurrentsVec.size()*9;
517
518 avg2 += vec[i];
519
520 if (vec[i]>avg+3.5*avg_dev)
521 {
522 fThresholds[i] = max(uint16_t(40.5*pow(vec[i], 0.642)+164), fThresholdMin);
523
524 counter++;
525 }
526 }
527 avg2 /= 160;
528
529
530 Dim::SendCommandNB("FTM_CONTROL/SET_ALL_THRESHOLDS", fThresholds);
531
532
533 const RateControl::DimThreshold data = { fThresholdMin, fCalibrationTimeStart.Mjd(), Time().Mjd() };
534 fDimThreshold.setQuality(2);
535 fDimThreshold.Update(data);
536
537 //Info("Sent a total of "+to_string(counter)+" commands for threshold setting");
538
539 ostringstream out;
540 out << setprecision(3);
541 out << "Measured average current " << avg << "uA +- " << rms << "uA [N=" << fCurrentsMed.size() << "]... mininum threshold set to " << fThresholdMin;
542 Info(out);
543 Info("Set "+to_string(counter)+" individual thresholds.");
544
545 fTriggerOn = false;
546 fPhysTriggerEnabled = false;
547
548 return RateControl::State::kSettingGlobalThreshold;
549 }
550
551 int Calibrate()
552 {
553 if (!fPhysTriggerEnabled)
554 {
555 Info("Physics trigger not enabled... CALIBRATE command ignored.");
556
557 fTriggerOn = false;
558 fPhysTriggerEnabled = false;
559 return RateControl::State::kGlobalThresholdSet;
560 }
561
562 const int32_t val[2] = { -1, fThresholdReference };
563 Dim::SendCommandNB("FTM_CONTROL/SET_THRESHOLD", val);
564
565 fThresholds.assign(160, fThresholdReference);
566
567 fThresholdMin = fThresholdReference;
568 fTriggerRate = -1;
569 fCounter = 0;
570 fBlock.assign(160, false);
571
572 fCalibrateByCurrent = false;
573 fCalibrationTimeStart = Time();
574
575 ostringstream out;
576 out << "Rate calibration started at a threshold of " << fThresholdReference << " with a target rate of " << fTargetRate << " Hz";
577 Info(out);
578
579 return RateControl::State::kSettingGlobalThreshold;
580 }
581
582 int CalibrateByCurrent()
583 {
584 if (!fPhysTriggerEnabled)
585 {
586 Info("Physics trigger not enabled... CALIBRATE command ignored.");
587
588 fTriggerOn = false;
589 fPhysTriggerEnabled = false;
590 return RateControl::State::kGlobalThresholdSet;
591 }
592
593 if (fDimDrive.state()<Drive::State::kMoving)
594 Warn("Drive not even moving...");
595
596 fCounter = 0;
597 fCalibrateByCurrent = true;
598 fCalibrationTimeStart = Time();
599 fBlock.assign(160, false);
600
601 fThresholds.clear();
602
603 ostringstream out;
604 out << "Rate calibration by current with min. threshold of " << fThresholdReference << ".";
605 Info(out);
606
607 return RateControl::State::kSettingGlobalThreshold;
608 }
609
610 int CalibrateRun(const EventImp &evt)
611 {
612 const string name = evt.GetText();
613
614 auto it = fRunTypes.find(name);
615 if (it==fRunTypes.end())
616 {
617 Info("CalibrateRun - Run-type '"+name+"' not found... trying 'default'.");
618
619 it = fRunTypes.find("default");
620 if (it==fRunTypes.end())
621 {
622 Error("CalibrateRun - Run-type 'default' not found.");
623 return GetCurrentState();
624 }
625 }
626
627 const config &conf = it->second;
628
629 switch (conf.fCalibrationType)
630 {
631 case 0:
632 Info("No calibration requested.");
633 fTriggerOn = false;
634 fPhysTriggerEnabled = false;
635 return RateControl::State::kGlobalThresholdSet;
636 break;
637
638 case 1:
639 fThresholdReference = conf.fMinThreshold;
640 fTargetRate = conf.fTargetRate;
641 return Calibrate();
642
643 case 2:
644 fThresholdReference = conf.fMinThreshold;
645 fAverageTime = conf.fAverageTime;
646 fRequiredEvents = conf.fRequiredEvents;
647 return CalibrateByCurrent();
648 }
649
650 Error("CalibrateRun - Calibration type "+to_string(conf.fCalibrationType)+" unknown.");
651 return GetCurrentState();
652 }
653
654 int StopRC()
655 {
656 Info("Stop received.");
657 return RateControl::State::kConnected;
658 }
659
660 int SetMinThreshold(const EventImp &evt)
661 {
662 if (!CheckEventSize(evt, 4))
663 return kSM_FatalError;
664
665 // FIXME: Check missing
666
667 fThresholdReference = evt.GetUShort();
668
669 return GetCurrentState();
670 }
671
672 int SetTargetRate(const EventImp &evt)
673 {
674 if (!CheckEventSize(evt, 4))
675 return kSM_FatalError;
676
677 fTargetRate = evt.GetFloat();
678
679 return GetCurrentState();
680 }
681
682 int Print() const
683 {
684 Out() << fDim << endl;
685 Out() << fDimFTM << endl;
686 Out() << fDimRS << endl;
687 Out() << fDimDrive << endl;
688
689 return GetCurrentState();
690 }
691
692 int SetVerbosity(const EventImp &evt)
693 {
694 if (!CheckEventSize(evt, 1))
695 return kSM_FatalError;
696
697 fVerbose = evt.GetBool();
698
699 return GetCurrentState();
700 }
701
702 int Execute()
703 {
704 if (!fDim.online())
705 return RateControl::State::kDimNetworkNA;
706
707 // All subsystems are not connected
708 if (fDimFTM.state()<FTM::State::kConnected || fDimDrive.state()<Drive::State::kConnected)
709 return RateControl::State::kDisconnected;
710
711 // Do not allow any action while a ratescan is configured or in progress
712 if (fDimRS.state()>=RateScan::State::kConfiguring)
713 return RateControl::State::kConnected;
714
715 switch (GetCurrentState())
716 {
717 case RateControl::State::kSettingGlobalThreshold:
718 return RateControl::State::kSettingGlobalThreshold;
719
720 case RateControl::State::kGlobalThresholdSet:
721
722 // Wait for the trigger to get switched on before starting control loop
723 if (fTriggerOn && fPhysTriggerEnabled)
724 return RateControl::State::kInProgress;
725
726 return RateControl::State::kGlobalThresholdSet;
727
728 case RateControl::State::kInProgress:
729
730 // Go back to connected when the trigger has been switched off
731 if (!fTriggerOn || !fPhysTriggerEnabled)
732 return RateControl::State::kConnected;
733
734 return RateControl::State::kInProgress;
735 }
736
737 return RateControl::State::kConnected;
738 }
739
740public:
741 StateMachineRateControl(ostream &out=cout) : StateMachineDim(out, "RATE_CONTROL"),
742 fPhysTriggerEnabled(false), fTriggerOn(false), fBlock(40),
743 fDimFTM("FTM_CONTROL"),
744 fDimRS("RATE_SCAN"),
745 fDimDrive("DRIVE_CONTROL"),
746 fDimThreshold("RATE_CONTROL/THRESHOLD", "S:1;D:1;D:1",
747 "Resulting threshold after calibration"
748 "|threshold[dac]:Resulting threshold from calibration"
749 "|begin[mjd]:Start time of calibration"
750 "|end[mjd]:End time of calibration")
751 {
752 // ba::io_service::work is a kind of keep_alive for the loop.
753 // It prevents the io_service to go to stopped state, which
754 // would prevent any consecutive calls to run()
755 // or poll() to do nothing. reset() could also revoke to the
756 // previous state but this might introduce some overhead of
757 // deletion and creation of threads and more.
758
759 fDim.Subscribe(*this);
760 fDimFTM.Subscribe(*this);
761 fDimRS.Subscribe(*this);
762 fDimDrive.Subscribe(*this);
763
764 Subscribe("FTM_CONTROL/TRIGGER_RATES")
765 (bind(&StateMachineRateControl::HandleTriggerRates, this, placeholders::_1));
766 Subscribe("FTM_CONTROL/STATIC_DATA")
767 (bind(&StateMachineRateControl::HandleStaticData, this, placeholders::_1));
768 Subscribe("FEEDBACK/CALIBRATED_CURRENTS")
769 (bind(&StateMachineRateControl::HandleCalibratedCurrents, this, placeholders::_1));
770
771 // State names
772 AddStateName(RateControl::State::kDimNetworkNA, "DimNetworkNotAvailable",
773 "The Dim DNS is not reachable.");
774
775 AddStateName(RateControl::State::kDisconnected, "Disconnected",
776 "The Dim DNS is reachable, but the required subsystems are not available.");
777
778 AddStateName(RateControl::State::kConnected, "Connected",
779 "All needed subsystems are connected to their hardware, no action is performed.");
780
781 AddStateName(RateControl::State::kSettingGlobalThreshold, "Calibrating",
782 "A global minimum thrshold is currently determined.");
783
784 AddStateName(RateControl::State::kGlobalThresholdSet, "GlobalThresholdSet",
785 "A global threshold has ben set, waiting for the trigger to be switched on.");
786
787 AddStateName(RateControl::State::kInProgress, "InProgress",
788 "Rate control in progress.");
789
790 AddEvent("CALIBRATE")
791 (bind(&StateMachineRateControl::Calibrate, this))
792 ("Start a search for a reasonable minimum global threshold");
793
794 AddEvent("CALIBRATE_BY_CURRENT")
795 (bind(&StateMachineRateControl::CalibrateByCurrent, this))
796 ("Set the global threshold from the median current");
797
798 AddEvent("CALIBRATE_RUN", "C")
799 (bind(&StateMachineRateControl::CalibrateRun, this, placeholders::_1))
800 ("Start a threshold calibration as defined in the setup for this run-type, state change to InProgress is delayed until trigger enabled");
801
802 AddEvent("STOP", RateControl::State::kSettingGlobalThreshold, RateControl::State::kGlobalThresholdSet, RateControl::State::kInProgress)
803 (bind(&StateMachineRateControl::StopRC, this))
804 ("Stop a calibration or ratescan in progress");
805
806 AddEvent("SET_MIN_THRESHOLD", "I:1")
807 (bind(&StateMachineRateControl::SetMinThreshold, this, placeholders::_1))
808 ("Set a minimum threshold at which th rate control starts calibrating");
809
810 AddEvent("SET_TARGET_RATE", "F:1")
811 (bind(&StateMachineRateControl::SetTargetRate, this, placeholders::_1))
812 ("Set a target trigger rate for the calibration");
813
814 AddEvent("PRINT")
815 (bind(&StateMachineRateControl::Print, this))
816 ("Print current status");
817
818 AddEvent("SET_VERBOSE", "B")
819 (bind(&StateMachineRateControl::SetVerbosity, this, placeholders::_1))
820 ("set verbosity state"
821 "|verbosity[bool]:disable or enable verbosity for received data (yes/no), except dynamic data");
822
823 }
824
825 bool GetConfig(Configuration &conf, const string &name, const string &sub, uint16_t &rc)
826 {
827 if (conf.HasDef(name, sub))
828 {
829 rc = conf.GetDef<uint16_t>(name, sub);
830 return true;
831 }
832
833 Error("Neither "+name+"default nor "+name+sub+" found.");
834 return false;
835 }
836
837 int EvalOptions(Configuration &conf)
838 {
839 fVerbose = !conf.Get<bool>("quiet");
840
841 if (!fMap.Read(conf.Get<string>("pixel-map-file")))
842 {
843 Error("Reading mapping table from "+conf.Get<string>("pixel-map-file")+" failed.");
844 return 1;
845 }
846
847 fThresholdReference = 300;
848 fThresholdMin = 300;
849 fTargetRate = 75;
850
851 fAverageTime = 10;
852 fRequiredEvents = 8;
853
854 // ---------- Setup run types ---------
855 const vector<string> types = conf.Vec<string>("run-type");
856 if (types.empty())
857 Warn("No run-types defined.");
858 else
859 Message("Defining run-types");
860
861 for (auto it=types.begin(); it!=types.end(); it++)
862 {
863 Message(" -> "+ *it);
864
865 if (fRunTypes.count(*it)>0)
866 {
867 Error("Run-type "+*it+" defined twice.");
868 return 1;
869 }
870
871 config &c = fRunTypes[*it];
872 if (!GetConfig(conf, "calibration-type.", *it, c.fCalibrationType) ||
873 !GetConfig(conf, "target-rate.", *it, c.fTargetRate) ||
874 !GetConfig(conf, "min-threshold.", *it, c.fMinThreshold) ||
875 !GetConfig(conf, "average-time.", *it, c.fAverageTime) ||
876 !GetConfig(conf, "required-events.", *it, c.fRequiredEvents))
877 return 2;
878 }
879
880 return -1;
881 }
882};
883
884// ------------------------------------------------------------------------
885
886#include "Main.h"
887
888template<class T>
889int RunShell(Configuration &conf)
890{
891 return Main::execute<T, StateMachineRateControl>(conf);
892}
893
894void SetupConfiguration(Configuration &conf)
895{
896 po::options_description control("Rate control options");
897 control.add_options()
898 ("quiet,q", po_bool(), "Disable printing more informations during rate control.")
899 ("pixel-map-file", var<string>()->required(), "Pixel mapping file. Used here to get the default reference voltage.")
900 //("max-wait", var<uint16_t>(150), "The maximum number of seconds to wait to get the anticipated resolution for a point.")
901 // ("resolution", var<double>(0.05) , "The minimum resolution required for a single data point.")
902 ;
903
904 conf.AddOptions(control);
905
906 po::options_description runtype("Run type configuration");
907 runtype.add_options()
908 ("run-type", vars<string>(), "Name of run-types (replace the * in the following configuration by the case-sensitive names defined here)")
909 ("calibration-type.*", var<uint16_t>(), "Calibration type (0: none, 1: by rate, 2: by current)")
910 ("target-rate.*", var<uint16_t>(), "Target rate for calibration by rate")
911 ("min-threshold.*", var<uint16_t>(), "Minimum threshold which can be applied in a calibration")
912 ("average-time.*", var<uint16_t>(), "Time in seconds to average the currents for a calibration by current.")
913 ("required-events.*", var<uint16_t>(), "Number of required current events to start a calibration by current.");
914 ;
915
916 conf.AddOptions(runtype);
917}
918
919/*
920 Extract usage clause(s) [if any] for SYNOPSIS.
921 Translators: "Usage" and "or" here are patterns (regular expressions) which
922 are used to match the usage synopsis in program output. An example from cp
923 (GNU coreutils) which contains both strings:
924 Usage: cp [OPTION]... [-T] SOURCE DEST
925 or: cp [OPTION]... SOURCE... DIRECTORY
926 or: cp [OPTION]... -t DIRECTORY SOURCE...
927 */
928void PrintUsage()
929{
930 cout <<
931 "The ratecontrol program is a keep the rate reasonable low.\n"
932 "\n"
933 "Usage: ratecontrol [-c type] [OPTIONS]\n"
934 " or: ratecontrol [OPTIONS]\n";
935 cout << endl;
936}
937
938void PrintHelp()
939{
940 Main::PrintHelp<StateMachineRateControl>();
941
942 /* Additional help text which is printed after the configuration
943 options goes here */
944
945 /*
946 cout << "bla bla bla" << endl << endl;
947 cout << endl;
948 cout << "Environment:" << endl;
949 cout << "environment" << endl;
950 cout << endl;
951 cout << "Examples:" << endl;
952 cout << "test exam" << endl;
953 cout << endl;
954 cout << "Files:" << endl;
955 cout << "files" << endl;
956 cout << endl;
957 */
958}
959
960int main(int argc, const char* argv[])
961{
962 Configuration conf(argv[0]);
963 conf.SetPrintUsage(PrintUsage);
964 Main::SetupConfiguration(conf);
965 SetupConfiguration(conf);
966
967 if (!conf.DoParse(argc, argv, PrintHelp))
968 return 127;
969
970 if (!conf.Has("console"))
971 return RunShell<LocalStream>(conf);
972
973 if (conf.Get<int>("console")==0)
974 return RunShell<LocalShell>(conf);
975 else
976 return RunShell<LocalConsole>(conf);
977
978 return 0;
979}
Note: See TracBrowser for help on using the repository browser.