| 1 | #ifndef FACT_FactGui
|
|---|
| 2 | #define FACT_FactGui
|
|---|
| 3 |
|
|---|
| 4 | #include "MainWindow.h"
|
|---|
| 5 |
|
|---|
| 6 | #include <iomanip>
|
|---|
| 7 | #include <valarray>
|
|---|
| 8 |
|
|---|
| 9 | #include <boost/bind.hpp>
|
|---|
| 10 |
|
|---|
| 11 | #include <QTimer>
|
|---|
| 12 | #include <QStandardItemModel>
|
|---|
| 13 |
|
|---|
| 14 | #include "CheckBoxDelegate.h"
|
|---|
| 15 |
|
|---|
| 16 | #include "src/Dim.h"
|
|---|
| 17 | #include "src/Converter.h"
|
|---|
| 18 | #include "src/HeadersFTM.h"
|
|---|
| 19 | #include "src/HeadersFAD.h"
|
|---|
| 20 | #include "src/DimNetwork.h"
|
|---|
| 21 | #include "src/tools.h"
|
|---|
| 22 |
|
|---|
| 23 | #include "TROOT.h"
|
|---|
| 24 | #include "TSystem.h"
|
|---|
| 25 | #include "TGraph.h"
|
|---|
| 26 | #include "TH1.h"
|
|---|
| 27 | #include "TStyle.h"
|
|---|
| 28 | #include "TMarker.h"
|
|---|
| 29 | #include "TColor.h"
|
|---|
| 30 |
|
|---|
| 31 | using namespace std;
|
|---|
| 32 |
|
|---|
| 33 | // #########################################################################
|
|---|
| 34 |
|
|---|
| 35 | class Camera : public TObject
|
|---|
| 36 | {
|
|---|
| 37 | typedef pair<double,double> Position;
|
|---|
| 38 | typedef vector<Position> Positions;
|
|---|
| 39 |
|
|---|
| 40 | Positions fGeom;
|
|---|
| 41 |
|
|---|
| 42 | void CreatePalette()
|
|---|
| 43 | {
|
|---|
| 44 | /*
|
|---|
| 45 | double ss[5] = {0., 0.10, 0.45, 0.75, 1.00};
|
|---|
| 46 | double rr[5] = {0., 0.35, 0.85, 1.00, 1.00};
|
|---|
| 47 | double gg[5] = {0., 0.10, 0.20, 0.73, 1.00};
|
|---|
| 48 | double bb[5] = {0., 0.03, 0.06, 0.00, 1.00};
|
|---|
| 49 | */
|
|---|
| 50 | double ss[5] = {0.00, 0.25, 0.50, 0.75, 1.00};
|
|---|
| 51 | double rr[5] = {0.15, 0.00, 0.00, 1.00, 0.85};
|
|---|
| 52 | double gg[5] = {0.15, 0.00, 1.00, 0.00, 0.85};
|
|---|
| 53 | double bb[5] = {0.15, 1.00, 0.00, 0.00, 0.85};
|
|---|
| 54 |
|
|---|
| 55 | const Int_t nn = 1440;
|
|---|
| 56 |
|
|---|
| 57 | Int_t idx = TColor::CreateGradientColorTable(5, ss, rr, gg, bb, nn);
|
|---|
| 58 | for (int i=0; i<nn; i++)
|
|---|
| 59 | fPalette.push_back(idx++);
|
|---|
| 60 | }
|
|---|
| 61 |
|
|---|
| 62 | void CreateGeometry()
|
|---|
| 63 | {
|
|---|
| 64 | const double gsSin60 = sqrt(3.)/2;
|
|---|
| 65 |
|
|---|
| 66 | const int rings = 23;
|
|---|
| 67 |
|
|---|
| 68 | // add the first pixel to the list
|
|---|
| 69 |
|
|---|
| 70 | fGeom.push_back(make_pair(0, -0.5));
|
|---|
| 71 |
|
|---|
| 72 | for (int ring=1; ring<=rings; ring++)
|
|---|
| 73 | {
|
|---|
| 74 | for (int s=0; s<6; s++)
|
|---|
| 75 | {
|
|---|
| 76 | for (int i=1; i<=ring; i++)
|
|---|
| 77 | {
|
|---|
| 78 | double xx, yy;
|
|---|
| 79 | switch (s)
|
|---|
| 80 | {
|
|---|
| 81 | case 0: // Direction South East
|
|---|
| 82 | xx = (ring+i)*0.5;
|
|---|
| 83 | yy = (-ring+i)*gsSin60;
|
|---|
| 84 | break;
|
|---|
| 85 |
|
|---|
| 86 | case 1: // Direction North East
|
|---|
| 87 | xx = ring-i*0.5;
|
|---|
| 88 | yy = i*gsSin60;
|
|---|
| 89 | break;
|
|---|
| 90 |
|
|---|
| 91 | case 2: // Direction North
|
|---|
| 92 | xx = ring*0.5-i;
|
|---|
| 93 | yy = ring*gsSin60;
|
|---|
| 94 | break;
|
|---|
| 95 |
|
|---|
| 96 | case 3: // Direction North West
|
|---|
| 97 | xx = -(ring+i)*0.5;
|
|---|
| 98 | yy = (ring-i)*gsSin60;
|
|---|
| 99 | break;
|
|---|
| 100 |
|
|---|
| 101 | case 4: // Direction South West
|
|---|
| 102 | xx = 0.5*i-ring;
|
|---|
| 103 | yy = -i*gsSin60;
|
|---|
| 104 | break;
|
|---|
| 105 |
|
|---|
| 106 | case 5: // Direction South
|
|---|
| 107 | xx = i-ring*0.5;
|
|---|
| 108 | yy = -ring*gsSin60;
|
|---|
| 109 | break;
|
|---|
| 110 | }
|
|---|
| 111 |
|
|---|
| 112 | if (xx*xx + yy*yy - xx > 395.75)
|
|---|
| 113 | continue;
|
|---|
| 114 |
|
|---|
| 115 | fGeom.push_back(make_pair(yy, xx-0.5));
|
|---|
| 116 | }
|
|---|
| 117 | }
|
|---|
| 118 | }
|
|---|
| 119 | }
|
|---|
| 120 |
|
|---|
| 121 | valarray<double> fData;
|
|---|
| 122 | vector<bool> fBold;
|
|---|
| 123 | vector<bool> fEnable;
|
|---|
| 124 |
|
|---|
| 125 | int fWhite;
|
|---|
| 126 |
|
|---|
| 127 | public:
|
|---|
| 128 | Camera() : fData(1440), fBold(1440), fEnable(1440), fWhite(-1)
|
|---|
| 129 | {
|
|---|
| 130 | CreatePalette();
|
|---|
| 131 | CreateGeometry();
|
|---|
| 132 |
|
|---|
| 133 | for (int i=0; i<1440; i++)
|
|---|
| 134 | {
|
|---|
| 135 | fData[i] = i;
|
|---|
| 136 | fBold[i]=false;
|
|---|
| 137 | fEnable[i]=true;
|
|---|
| 138 | }
|
|---|
| 139 | }
|
|---|
| 140 |
|
|---|
| 141 | void Reset() { fBold.assign(1440, false); }
|
|---|
| 142 |
|
|---|
| 143 | void SetBold(int idx) { fBold[idx]=true; }
|
|---|
| 144 | void SetWhite(int idx) { fWhite=idx; }
|
|---|
| 145 | void SetEnable(int idx, bool b) { fEnable[idx]=b; }
|
|---|
| 146 | void Toggle(int idx) { fEnable[idx]=!fEnable[idx]; }
|
|---|
| 147 | double GetData(int idx) const { return fData[idx]; }
|
|---|
| 148 |
|
|---|
| 149 | const char *GetName() const { return "Camera"; }
|
|---|
| 150 |
|
|---|
| 151 | vector<Int_t> fPalette;
|
|---|
| 152 |
|
|---|
| 153 | void Paint(const Position &p)
|
|---|
| 154 | {
|
|---|
| 155 | static const Double_t fgCos60 = 0.5; // TMath::Cos(60/TMath::RadToDeg());
|
|---|
| 156 | static const Double_t fgSin60 = sqrt(3.)/2; // TMath::Sin(60/TMath::RadToDeg());
|
|---|
| 157 |
|
|---|
| 158 | static const Double_t fgDy[6] = { fgCos60, 0., -fgCos60, -fgCos60, 0., fgCos60 };
|
|---|
| 159 | static const Double_t fgDx[6] = { fgSin60/3, fgSin60*2/3, fgSin60/3, -fgSin60/3, -fgSin60*2/3, -fgSin60/3 };
|
|---|
| 160 |
|
|---|
| 161 | //
|
|---|
| 162 | // calculate the positions of the pixel corners
|
|---|
| 163 | //
|
|---|
| 164 | Double_t x[7], y[7];
|
|---|
| 165 | for (Int_t i=0; i<7; i++)
|
|---|
| 166 | {
|
|---|
| 167 | x[i] = p.first + fgDx[i%6];
|
|---|
| 168 | y[i] = p.second + fgDy[i%6];
|
|---|
| 169 | }
|
|---|
| 170 |
|
|---|
| 171 | gPad->PaintFillArea(6, x, y);
|
|---|
| 172 | gPad->PaintPolyLine(7, x, y);
|
|---|
| 173 |
|
|---|
| 174 | }
|
|---|
| 175 |
|
|---|
| 176 | double align(double min, double val, double max) const
|
|---|
| 177 | {
|
|---|
| 178 | if (val<min)
|
|---|
| 179 | return min;
|
|---|
| 180 | if (val>max)
|
|---|
| 181 | return max;
|
|---|
| 182 | return val;
|
|---|
| 183 | }
|
|---|
| 184 |
|
|---|
| 185 | void Paint(Option_t *)
|
|---|
| 186 | {
|
|---|
| 187 | gStyle->SetPalette(fPalette.size(), fPalette.data());
|
|---|
| 188 |
|
|---|
| 189 | const double r = double(gPad->GetWw())/gPad->GetWh();
|
|---|
| 190 | const double max = 20.5; // 20.5 rings in x and y
|
|---|
| 191 |
|
|---|
| 192 | if (r>1)
|
|---|
| 193 | gPad->Range(-r*max, -max, r*max, max);
|
|---|
| 194 | else
|
|---|
| 195 | gPad->Range(-max, -max/r, max, max/r);
|
|---|
| 196 |
|
|---|
| 197 | Double_t x1, x2, y1, y2;
|
|---|
| 198 | gPad->GetRange(x1, x2, y1, y2);
|
|---|
| 199 |
|
|---|
| 200 | double dmin = fData[0];
|
|---|
| 201 | double dmax = fData[0];
|
|---|
| 202 |
|
|---|
| 203 | for (unsigned int i=0; i<fData.size(); i++)
|
|---|
| 204 | {
|
|---|
| 205 | if (!fEnable[i])
|
|---|
| 206 | continue;
|
|---|
| 207 |
|
|---|
| 208 | if (fData[i]>dmax)
|
|---|
| 209 | dmax = fData[i];
|
|---|
| 210 | if (fData[i]<dmin)
|
|---|
| 211 | dmin = fData[i];
|
|---|
| 212 | }
|
|---|
| 213 |
|
|---|
| 214 | const double min = dmin;
|
|---|
| 215 | const double scale = dmax==dmin ? 1 : dmax-dmin;
|
|---|
| 216 |
|
|---|
| 217 | TAttFill fill(0, 1001);
|
|---|
| 218 | TAttLine line;
|
|---|
| 219 |
|
|---|
| 220 | int cnt=0;
|
|---|
| 221 | for (Positions::iterator p=fGeom.begin(); p!=fGeom.end(); p++, cnt++)
|
|---|
| 222 | {
|
|---|
| 223 | if (fBold[cnt])
|
|---|
| 224 | continue;
|
|---|
| 225 |
|
|---|
| 226 | const double val = align(dmin, fData[cnt], dmax);
|
|---|
| 227 |
|
|---|
| 228 | const int col = (val-min)/scale*(fPalette.size()-1);
|
|---|
| 229 |
|
|---|
| 230 | if (fEnable[cnt])
|
|---|
| 231 | fill.SetFillColor(gStyle->GetColorPalette(col));
|
|---|
| 232 | else
|
|---|
| 233 | fill.SetFillColor(kWhite);
|
|---|
| 234 |
|
|---|
| 235 | fill.Modify();
|
|---|
| 236 |
|
|---|
| 237 | Paint(*p);
|
|---|
| 238 | }
|
|---|
| 239 |
|
|---|
| 240 | line.SetLineWidth(2);
|
|---|
| 241 | line.Modify();
|
|---|
| 242 |
|
|---|
| 243 | cnt = 0;
|
|---|
| 244 | for (Positions::iterator p=fGeom.begin(); p!=fGeom.end(); p++, cnt++)
|
|---|
| 245 | {
|
|---|
| 246 | if (!fBold[cnt])
|
|---|
| 247 | continue;
|
|---|
| 248 |
|
|---|
| 249 | const double val = align(dmin, fData[cnt], dmax);
|
|---|
| 250 |
|
|---|
| 251 | const int col = (val-min)/scale*(fPalette.size()-1);
|
|---|
| 252 |
|
|---|
| 253 | if (fEnable[cnt])
|
|---|
| 254 | fill.SetFillColor(gStyle->GetColorPalette(col));
|
|---|
| 255 | else
|
|---|
| 256 | fill.SetFillColor(kWhite);
|
|---|
| 257 | fill.Modify();
|
|---|
| 258 |
|
|---|
| 259 | Paint(*p);
|
|---|
| 260 | }
|
|---|
| 261 |
|
|---|
| 262 | TMarker m(0,0,kStar);
|
|---|
| 263 | m.DrawMarker(0, 0);
|
|---|
| 264 |
|
|---|
| 265 | if (fWhite<0)
|
|---|
| 266 | return;
|
|---|
| 267 |
|
|---|
| 268 | const Position &p = fGeom[fWhite];
|
|---|
| 269 |
|
|---|
| 270 | line.SetLineColor(kWhite);
|
|---|
| 271 | line.Modify();
|
|---|
| 272 |
|
|---|
| 273 | const double val = align(dmin, fData[fWhite], dmax);
|
|---|
| 274 |
|
|---|
| 275 | const int col = (val-min)/scale*(fPalette.size()-1);
|
|---|
| 276 |
|
|---|
| 277 | if (fEnable[fWhite])
|
|---|
| 278 | fill.SetFillColor(gStyle->GetColorPalette(col));
|
|---|
| 279 | else
|
|---|
| 280 | fill.SetFillColor(kWhite);
|
|---|
| 281 | fill.Modify();
|
|---|
| 282 |
|
|---|
| 283 | Paint(p);
|
|---|
| 284 | }
|
|---|
| 285 |
|
|---|
| 286 | int GetIdx(float px, float py) const
|
|---|
| 287 | {
|
|---|
| 288 | static const double sqrt3 = sqrt(3);
|
|---|
| 289 |
|
|---|
| 290 | int idx = 0;
|
|---|
| 291 | for (Positions::const_iterator p=fGeom.begin(); p!=fGeom.end(); p++, idx++)
|
|---|
| 292 | {
|
|---|
| 293 | const Double_t dy = py - p->second;
|
|---|
| 294 | if (fabs(dy)>0.5)
|
|---|
| 295 | continue;
|
|---|
| 296 |
|
|---|
| 297 | const Double_t dx = px - p->first;
|
|---|
| 298 |
|
|---|
| 299 | if (TMath::Abs(dy + dx*sqrt3) > 1)
|
|---|
| 300 | continue;
|
|---|
| 301 |
|
|---|
| 302 | if (TMath::Abs(dy - dx*sqrt3) > 1)
|
|---|
| 303 | continue;
|
|---|
| 304 |
|
|---|
| 305 | return idx;
|
|---|
| 306 | }
|
|---|
| 307 | return -1;
|
|---|
| 308 | }
|
|---|
| 309 |
|
|---|
| 310 | char *GetObjectInfo(Int_t px, Int_t py) const
|
|---|
| 311 | {
|
|---|
| 312 | static stringstream stream;
|
|---|
| 313 | static string str;
|
|---|
| 314 |
|
|---|
| 315 | const float x = gPad->AbsPixeltoX(px);
|
|---|
| 316 | const float y = gPad->AbsPixeltoY(py);
|
|---|
| 317 |
|
|---|
| 318 | const int idx = GetIdx(x, y);
|
|---|
| 319 |
|
|---|
| 320 | stream.seekp(0);
|
|---|
| 321 | if (idx>=0)
|
|---|
| 322 | {
|
|---|
| 323 | stream << "Pixel=" << idx << " Data=" << fData[idx] << '\0';
|
|---|
| 324 | }
|
|---|
| 325 |
|
|---|
| 326 | str = stream.str();
|
|---|
| 327 | return const_cast<char*>(str.c_str());
|
|---|
| 328 | }
|
|---|
| 329 |
|
|---|
| 330 | Int_t DistancetoPrimitive(Int_t px, Int_t py)
|
|---|
| 331 | {
|
|---|
| 332 | const float x = gPad->AbsPixeltoX(px);
|
|---|
| 333 | const float y = gPad->AbsPixeltoY(py);
|
|---|
| 334 |
|
|---|
| 335 | return GetIdx(x, y)>=0 ? 0 : 99999;
|
|---|
| 336 | }
|
|---|
| 337 |
|
|---|
| 338 | void SetData(const valarray<double> &data)
|
|---|
| 339 | {
|
|---|
| 340 | fData = data;
|
|---|
| 341 | }
|
|---|
| 342 | };
|
|---|
| 343 |
|
|---|
| 344 | // #########################################################################
|
|---|
| 345 |
|
|---|
| 346 |
|
|---|
| 347 | class FactGui : public MainWindow, public DimNetwork
|
|---|
| 348 | {
|
|---|
| 349 | private:
|
|---|
| 350 | class FunctionEvent : public QEvent
|
|---|
| 351 | {
|
|---|
| 352 | public:
|
|---|
| 353 | boost::function<void(const QEvent &)> fFunction;
|
|---|
| 354 |
|
|---|
| 355 | FunctionEvent(const boost::function<void(const QEvent &)> &f)
|
|---|
| 356 | : QEvent((QEvent::Type)QEvent::registerEventType()),
|
|---|
| 357 | fFunction(f) { }
|
|---|
| 358 |
|
|---|
| 359 | bool Exec() { fFunction(*this); return true; }
|
|---|
| 360 | };
|
|---|
| 361 |
|
|---|
| 362 | valarray<int8_t> fFtuStatus;
|
|---|
| 363 |
|
|---|
| 364 | vector<int> fPixelMapHW; // Software -> Hardware
|
|---|
| 365 | vector<int> fPatchMapHW; // Software -> Hardware
|
|---|
| 366 | vector<int> fPatchHW; // Maps the software(!) pixel id to the hardware(!) patch id
|
|---|
| 367 |
|
|---|
| 368 | bool fInChoosePatch; // FIXME. Find a better solution
|
|---|
| 369 |
|
|---|
| 370 | DimStampedInfo fDimDNS;
|
|---|
| 371 |
|
|---|
| 372 | DimStampedInfo fDimLoggerStats;
|
|---|
| 373 | DimStampedInfo fDimLoggerFilenameNight;
|
|---|
| 374 | DimStampedInfo fDimLoggerFilenameRun;
|
|---|
| 375 | DimStampedInfo fDimLoggerNumSubs;
|
|---|
| 376 |
|
|---|
| 377 | DimStampedInfo fDimFtmPassport;
|
|---|
| 378 | DimStampedInfo fDimFtmTriggerCounter;
|
|---|
| 379 | DimStampedInfo fDimFtmError;
|
|---|
| 380 | DimStampedInfo fDimFtmFtuList;
|
|---|
| 381 | DimStampedInfo fDimFtmStaticData;
|
|---|
| 382 | DimStampedInfo fDimFtmDynamicData;
|
|---|
| 383 | DimStampedInfo fDimFtmCounter;
|
|---|
| 384 |
|
|---|
| 385 | DimStampedInfo fDimFadFiles;
|
|---|
| 386 | DimStampedInfo fDimFadRuns;
|
|---|
| 387 | DimStampedInfo fDimFadEvents;
|
|---|
| 388 | DimStampedInfo fDimFadCurrentEvent;
|
|---|
| 389 | DimStampedInfo fDimFadEventData;
|
|---|
| 390 | DimStampedInfo fDimFadConnections;
|
|---|
| 391 | DimStampedInfo fDimFadFwVersion;
|
|---|
| 392 | DimStampedInfo fDimFadPllLock;
|
|---|
| 393 | DimStampedInfo fDimFadStatistics;
|
|---|
| 394 |
|
|---|
| 395 | map<string, DimInfo*> fServices;
|
|---|
| 396 |
|
|---|
| 397 | // ========================== LED Colors ================================
|
|---|
| 398 |
|
|---|
| 399 | enum LedColor_t
|
|---|
| 400 | {
|
|---|
| 401 | kLedRed,
|
|---|
| 402 | kLedGreen,
|
|---|
| 403 | kLedYellow,
|
|---|
| 404 | kLedOrange,
|
|---|
| 405 | kLedGray
|
|---|
| 406 | };
|
|---|
| 407 |
|
|---|
| 408 | void SetLedColor(QPushButton *button, LedColor_t col, const Time &t)
|
|---|
| 409 | {
|
|---|
| 410 | switch (col)
|
|---|
| 411 | {
|
|---|
| 412 | case kLedRed:
|
|---|
| 413 | button->setIcon(QIcon(":/Resources/icons/red circle 1.png"));
|
|---|
| 414 | break;
|
|---|
| 415 |
|
|---|
| 416 | case kLedGreen:
|
|---|
| 417 | button->setIcon(QIcon(":/Resources/icons/green circle 1.png"));
|
|---|
| 418 | break;
|
|---|
| 419 |
|
|---|
| 420 | case kLedYellow:
|
|---|
| 421 | button->setIcon(QIcon(":/Resources/icons/yellow circle 1.png"));
|
|---|
| 422 | break;
|
|---|
| 423 |
|
|---|
| 424 | case kLedOrange:
|
|---|
| 425 | button->setIcon(QIcon(":/Resources/icons/orange circle 1.png"));
|
|---|
| 426 | break;
|
|---|
| 427 |
|
|---|
| 428 | case kLedGray:
|
|---|
| 429 | button->setIcon(QIcon(":/Resources/icons/gray circle 1.png"));
|
|---|
| 430 | break;
|
|---|
| 431 | }
|
|---|
| 432 |
|
|---|
| 433 | //button->setToolTip("Last change: "+QDateTime::currentDateTimeUtc().toString()+" UTC");
|
|---|
| 434 | button->setToolTip(("Last change: "+t.GetAsStr()+" UTC").c_str());
|
|---|
| 435 | }
|
|---|
| 436 |
|
|---|
| 437 | // ===================== Services and Commands ==========================
|
|---|
| 438 |
|
|---|
| 439 | QStandardItem *AddServiceItem(const std::string &server, const std::string &service, bool iscmd)
|
|---|
| 440 | {
|
|---|
| 441 | QListView *servers = iscmd ? fDimCmdServers : fDimSvcServers;
|
|---|
| 442 | QListView *services = iscmd ? fDimCmdCommands : fDimSvcServices;
|
|---|
| 443 | QListView *description = iscmd ? fDimCmdDescription : fDimSvcDescription;
|
|---|
| 444 |
|
|---|
| 445 | QStandardItemModel *m = dynamic_cast<QStandardItemModel*>(servers->model());
|
|---|
| 446 | if (!m)
|
|---|
| 447 | {
|
|---|
| 448 | m = new QStandardItemModel(this);
|
|---|
| 449 | servers->setModel(m);
|
|---|
| 450 | services->setModel(m);
|
|---|
| 451 | description->setModel(m);
|
|---|
| 452 | }
|
|---|
| 453 |
|
|---|
| 454 | QList<QStandardItem*> l = m->findItems(server.c_str());
|
|---|
| 455 |
|
|---|
| 456 | if (l.size()>1)
|
|---|
| 457 | {
|
|---|
| 458 | cout << "hae" << endl;
|
|---|
| 459 | return 0;
|
|---|
| 460 | }
|
|---|
| 461 |
|
|---|
| 462 | QStandardItem *col = l.size()==0 ? NULL : l[0];
|
|---|
| 463 |
|
|---|
| 464 | if (!col)
|
|---|
| 465 | {
|
|---|
| 466 | col = new QStandardItem(server.c_str());
|
|---|
| 467 | m->appendRow(col);
|
|---|
| 468 |
|
|---|
| 469 | if (!services->rootIndex().isValid())
|
|---|
| 470 | {
|
|---|
| 471 | services->setRootIndex(col->index());
|
|---|
| 472 | servers->setCurrentIndex(col->index());
|
|---|
| 473 | }
|
|---|
| 474 | }
|
|---|
| 475 |
|
|---|
| 476 | QStandardItem *item = 0;
|
|---|
| 477 | for (int i=0; i<col->rowCount(); i++)
|
|---|
| 478 | {
|
|---|
| 479 | QStandardItem *coli = col->child(i);
|
|---|
| 480 | if (coli->text().toStdString()==service)
|
|---|
| 481 | return coli;
|
|---|
| 482 | }
|
|---|
| 483 |
|
|---|
| 484 | item = new QStandardItem(service.c_str());
|
|---|
| 485 | col->appendRow(item);
|
|---|
| 486 | col->sortChildren(0);
|
|---|
| 487 |
|
|---|
| 488 | if (!description->rootIndex().isValid())
|
|---|
| 489 | {
|
|---|
| 490 | description->setRootIndex(item->index());
|
|---|
| 491 | services->setCurrentIndex(item->index());
|
|---|
| 492 | }
|
|---|
| 493 |
|
|---|
| 494 | if (!iscmd)
|
|---|
| 495 | item->setCheckable(true);
|
|---|
| 496 |
|
|---|
| 497 | return item;
|
|---|
| 498 | }
|
|---|
| 499 |
|
|---|
| 500 | void AddDescription(QStandardItem *item, const vector<Description> &vec)
|
|---|
| 501 | {
|
|---|
| 502 | if (!item)
|
|---|
| 503 | return;
|
|---|
| 504 | if (vec.size()==0)
|
|---|
| 505 | return;
|
|---|
| 506 |
|
|---|
| 507 | item->setToolTip(vec[0].comment.c_str());
|
|---|
| 508 |
|
|---|
| 509 | const string str = Description::GetHtmlDescription(vec);
|
|---|
| 510 |
|
|---|
| 511 | QStandardItem *desc = new QStandardItem(str.c_str());
|
|---|
| 512 | desc->setSelectable(false);
|
|---|
| 513 | item->setChild(0, 0, desc);
|
|---|
| 514 | }
|
|---|
| 515 |
|
|---|
| 516 | void AddServer(const std::string &s)
|
|---|
| 517 | {
|
|---|
| 518 | DimNetwork::AddServer(s);
|
|---|
| 519 |
|
|---|
| 520 | QApplication::postEvent(this,
|
|---|
| 521 | new FunctionEvent(boost::bind(&FactGui::handleAddServer, this, s)));
|
|---|
| 522 | }
|
|---|
| 523 |
|
|---|
| 524 | void RemoveServer(const std::string &s)
|
|---|
| 525 | {
|
|---|
| 526 | UnsubscribeServer(s);
|
|---|
| 527 |
|
|---|
| 528 | DimNetwork::RemoveServer(s);
|
|---|
| 529 |
|
|---|
| 530 | QApplication::postEvent(this,
|
|---|
| 531 | new FunctionEvent(boost::bind(&FactGui::handleRemoveServer, this, s)));
|
|---|
| 532 | }
|
|---|
| 533 |
|
|---|
| 534 | void RemoveAllServers()
|
|---|
| 535 | {
|
|---|
| 536 | UnsubscribeAllServers();
|
|---|
| 537 |
|
|---|
| 538 | vector<string> v = GetServerList();
|
|---|
| 539 | for (vector<string>::iterator i=v.begin(); i<v.end(); i++)
|
|---|
| 540 | QApplication::postEvent(this,
|
|---|
| 541 | new FunctionEvent(boost::bind(&FactGui::handleStateOffline, this, *i)));
|
|---|
| 542 |
|
|---|
| 543 | DimNetwork::RemoveAllServers();
|
|---|
| 544 |
|
|---|
| 545 | QApplication::postEvent(this,
|
|---|
| 546 | new FunctionEvent(boost::bind(&FactGui::handleRemoveAllServers, this)));
|
|---|
| 547 | }
|
|---|
| 548 |
|
|---|
| 549 | void AddService(const std::string &server, const std::string &service, const std::string &fmt, bool iscmd)
|
|---|
| 550 | {
|
|---|
| 551 | QApplication::postEvent(this,
|
|---|
| 552 | new FunctionEvent(boost::bind(&FactGui::handleAddService, this, server, service, fmt, iscmd)));
|
|---|
| 553 | }
|
|---|
| 554 |
|
|---|
| 555 | void RemoveService(const std::string &server, const std::string &service, bool iscmd)
|
|---|
| 556 | {
|
|---|
| 557 | if (fServices.find(server+'/'+service)!=fServices.end())
|
|---|
| 558 | UnsubscribeService(server+'/'+service);
|
|---|
| 559 |
|
|---|
| 560 | QApplication::postEvent(this,
|
|---|
| 561 | new FunctionEvent(boost::bind(&FactGui::handleRemoveService, this, server, service, iscmd)));
|
|---|
| 562 | }
|
|---|
| 563 |
|
|---|
| 564 | void RemoveAllServices(const std::string &server)
|
|---|
| 565 | {
|
|---|
| 566 | UnsubscribeServer(server);
|
|---|
| 567 |
|
|---|
| 568 | QApplication::postEvent(this,
|
|---|
| 569 | new FunctionEvent(boost::bind(&FactGui::handleRemoveAllServices, this, server)));
|
|---|
| 570 | }
|
|---|
| 571 |
|
|---|
| 572 | void AddDescription(const std::string &server, const std::string &service, const vector<Description> &vec)
|
|---|
| 573 | {
|
|---|
| 574 | QApplication::postEvent(this,
|
|---|
| 575 | new FunctionEvent(boost::bind(&FactGui::handleAddDescription, this, server, service, vec)));
|
|---|
| 576 | }
|
|---|
| 577 |
|
|---|
| 578 | // ======================================================================
|
|---|
| 579 |
|
|---|
| 580 | void handleAddServer(const std::string &server)
|
|---|
| 581 | {
|
|---|
| 582 | const State s = GetState(server, GetCurrentState(server));
|
|---|
| 583 | handleStateChanged(Time(), server, s);
|
|---|
| 584 | }
|
|---|
| 585 |
|
|---|
| 586 | void handleRemoveServer(const string &server)
|
|---|
| 587 | {
|
|---|
| 588 | handleStateOffline(server);
|
|---|
| 589 | handleRemoveAllServices(server);
|
|---|
| 590 | }
|
|---|
| 591 |
|
|---|
| 592 | void handleRemoveAllServers()
|
|---|
| 593 | {
|
|---|
| 594 | QStandardItemModel *m = 0;
|
|---|
| 595 | if ((m=dynamic_cast<QStandardItemModel*>(fDimCmdServers->model())))
|
|---|
| 596 | m->removeRows(0, m->rowCount());
|
|---|
| 597 |
|
|---|
| 598 | if ((m = dynamic_cast<QStandardItemModel*>(fDimSvcServers->model())))
|
|---|
| 599 | m->removeRows(0, m->rowCount());
|
|---|
| 600 | }
|
|---|
| 601 |
|
|---|
| 602 | void handleAddService(const std::string &server, const std::string &service, const std::string &/*fmt*/, bool iscmd)
|
|---|
| 603 | {
|
|---|
| 604 | QStandardItem *item = AddServiceItem(server, service, iscmd);
|
|---|
| 605 | const vector<Description> v = GetDescription(server, service);
|
|---|
| 606 | AddDescription(item, v);
|
|---|
| 607 | }
|
|---|
| 608 |
|
|---|
| 609 | void handleRemoveService(const std::string &server, const std::string &service, bool iscmd)
|
|---|
| 610 | {
|
|---|
| 611 | QListView *servers = iscmd ? fDimCmdServers : fDimSvcServers;
|
|---|
| 612 |
|
|---|
| 613 | QStandardItemModel *m = dynamic_cast<QStandardItemModel*>(servers->model());
|
|---|
| 614 | if (!m)
|
|---|
| 615 | return;
|
|---|
| 616 |
|
|---|
| 617 | QList<QStandardItem*> l = m->findItems(server.c_str());
|
|---|
| 618 | if (l.size()!=1)
|
|---|
| 619 | return;
|
|---|
| 620 |
|
|---|
| 621 | for (int i=0; i<l[0]->rowCount(); i++)
|
|---|
| 622 | {
|
|---|
| 623 | QStandardItem *row = l[0]->child(i);
|
|---|
| 624 | if (row->text().toStdString()==service)
|
|---|
| 625 | {
|
|---|
| 626 | l[0]->removeRow(row->index().row());
|
|---|
| 627 | return;
|
|---|
| 628 | }
|
|---|
| 629 | }
|
|---|
| 630 | }
|
|---|
| 631 |
|
|---|
| 632 | void handleRemoveAllServices(const std::string &server)
|
|---|
| 633 | {
|
|---|
| 634 | QStandardItemModel *m = 0;
|
|---|
| 635 | if ((m=dynamic_cast<QStandardItemModel*>(fDimCmdServers->model())))
|
|---|
| 636 | {
|
|---|
| 637 | QList<QStandardItem*> l = m->findItems(server.c_str());
|
|---|
| 638 | if (l.size()==1)
|
|---|
| 639 | m->removeRow(l[0]->index().row());
|
|---|
| 640 | }
|
|---|
| 641 |
|
|---|
| 642 | if ((m = dynamic_cast<QStandardItemModel*>(fDimSvcServers->model())))
|
|---|
| 643 | {
|
|---|
| 644 | QList<QStandardItem*> l = m->findItems(server.c_str());
|
|---|
| 645 | if (l.size()==1)
|
|---|
| 646 | m->removeRow(l[0]->index().row());
|
|---|
| 647 | }
|
|---|
| 648 | }
|
|---|
| 649 |
|
|---|
| 650 | void handleAddDescription(const std::string &server, const std::string &service, const vector<Description> &vec)
|
|---|
| 651 | {
|
|---|
| 652 | const bool iscmd = IsCommand(server, service)==true;
|
|---|
| 653 |
|
|---|
| 654 | QStandardItem *item = AddServiceItem(server, service, iscmd);
|
|---|
| 655 | AddDescription(item, vec);
|
|---|
| 656 | }
|
|---|
| 657 |
|
|---|
| 658 | // ======================================================================
|
|---|
| 659 |
|
|---|
| 660 | void SubscribeService(const string &service)
|
|---|
| 661 | {
|
|---|
| 662 | if (fServices.find(service)!=fServices.end())
|
|---|
| 663 | {
|
|---|
| 664 | cout << "ERROR - We are already subscribed to " << service << endl;
|
|---|
| 665 | return;
|
|---|
| 666 | }
|
|---|
| 667 |
|
|---|
| 668 | fServices[service] = new DimStampedInfo(service.c_str(), (void*)NULL, 0, this);
|
|---|
| 669 | }
|
|---|
| 670 |
|
|---|
| 671 | void UnsubscribeService(const string &service)
|
|---|
| 672 | {
|
|---|
| 673 | const map<string,DimInfo*>::iterator i=fServices.find(service);
|
|---|
| 674 |
|
|---|
| 675 | if (i==fServices.end())
|
|---|
| 676 | {
|
|---|
| 677 | cout << "ERROR - We are not subscribed to " << service << endl;
|
|---|
| 678 | return;
|
|---|
| 679 | }
|
|---|
| 680 |
|
|---|
| 681 | delete i->second;
|
|---|
| 682 |
|
|---|
| 683 | fServices.erase(i);
|
|---|
| 684 | }
|
|---|
| 685 |
|
|---|
| 686 | void UnsubscribeServer(const string &server)
|
|---|
| 687 | {
|
|---|
| 688 | for (map<string,DimInfo*>::iterator i=fServices.begin();
|
|---|
| 689 | i!=fServices.end(); i++)
|
|---|
| 690 | if (i->first.substr(0, server.length()+1)==server+'/')
|
|---|
| 691 | {
|
|---|
| 692 | delete i->second;
|
|---|
| 693 | fServices.erase(i);
|
|---|
| 694 | }
|
|---|
| 695 | }
|
|---|
| 696 |
|
|---|
| 697 | void UnsubscribeAllServers()
|
|---|
| 698 | {
|
|---|
| 699 | for (map<string,DimInfo*>::iterator i=fServices.begin();
|
|---|
| 700 | i!=fServices.end(); i++)
|
|---|
| 701 | delete i->second;
|
|---|
| 702 |
|
|---|
| 703 | fServices.clear();
|
|---|
| 704 | }
|
|---|
| 705 |
|
|---|
| 706 | // ======================================================================
|
|---|
| 707 |
|
|---|
| 708 | struct DimData
|
|---|
| 709 | {
|
|---|
| 710 | const int qos;
|
|---|
| 711 | const string name;
|
|---|
| 712 | const string format;
|
|---|
| 713 | const vector<char> data;
|
|---|
| 714 | const Time time;
|
|---|
| 715 |
|
|---|
| 716 | Time extract(DimInfo *inf) const
|
|---|
| 717 | {
|
|---|
| 718 | // Must be called in exactly this order!
|
|---|
| 719 | const int tsec = inf->getTimestamp();
|
|---|
| 720 | const int tms = inf->getTimestampMillisecs();
|
|---|
| 721 |
|
|---|
| 722 | return Time(tsec, tms*1000);
|
|---|
| 723 | }
|
|---|
| 724 |
|
|---|
| 725 | // DimInfo *info; // this is ONLY for a fast check of the type of the DimData!!
|
|---|
| 726 |
|
|---|
| 727 | DimData(DimInfo *inf) :
|
|---|
| 728 | qos(inf->getQuality()),
|
|---|
| 729 | name(inf->getName()),
|
|---|
| 730 | format(inf->getFormat()),
|
|---|
| 731 | data(inf->getString(), inf->getString()+inf->getSize()),
|
|---|
| 732 | time(extract(inf))/*,
|
|---|
| 733 | info(inf)*/
|
|---|
| 734 | {
|
|---|
| 735 | }
|
|---|
| 736 |
|
|---|
| 737 | template<typename T>
|
|---|
| 738 | T get(uint32_t offset=0) const { return *reinterpret_cast<const T*>(data.data()+offset); }
|
|---|
| 739 |
|
|---|
| 740 | template<typename T>
|
|---|
| 741 | const T *ptr(uint32_t offset=0) const { return reinterpret_cast<const T*>(data.data()+offset); }
|
|---|
| 742 |
|
|---|
| 743 | template<typename T>
|
|---|
| 744 | const T &ref(uint32_t offset=0) const { return *reinterpret_cast<const T*>(data.data()+offset); }
|
|---|
| 745 |
|
|---|
| 746 | // vector<char> vec(int b) const { return vector<char>(data.begin()+b, data.end()); }
|
|---|
| 747 | // string str(unsigned int b) const { return b>=data.size()?string():string(data.data()+b, data.size()-b); }
|
|---|
| 748 | const char *c_str() const { return (char*)data.data(); }
|
|---|
| 749 | /*
|
|---|
| 750 | vector<boost::any> any() const
|
|---|
| 751 | {
|
|---|
| 752 | const Converter conv(format);
|
|---|
| 753 | conv.Print();
|
|---|
| 754 | return conv.GetAny(data.data(), data.size());
|
|---|
| 755 | }*/
|
|---|
| 756 | size_t size() const { return data.size(); }
|
|---|
| 757 | };
|
|---|
| 758 |
|
|---|
| 759 | // ======================= DNS ==========================================
|
|---|
| 760 |
|
|---|
| 761 | void handleDimDNS(const DimData &d)
|
|---|
| 762 | {
|
|---|
| 763 | const int version = d.size()!=4 ? 0 : d.get<uint32_t>();
|
|---|
| 764 |
|
|---|
| 765 | ostringstream str;
|
|---|
| 766 | str << "V" << version/100 << 'r' << version%100;
|
|---|
| 767 |
|
|---|
| 768 | SetLedColor(fStatusDNSLed, version==0 ? kLedRed : kLedGreen, Time());
|
|---|
| 769 |
|
|---|
| 770 | fStatusDNSLabel->setText(version==0?"Offline":str.str().c_str());
|
|---|
| 771 | fStatusDNSLabel->setToolTip(version==0?"No connection to DIM DNS.":"Connection to DIM DNS established.");
|
|---|
| 772 | }
|
|---|
| 773 |
|
|---|
| 774 |
|
|---|
| 775 | // ======================= Logger =======================================
|
|---|
| 776 |
|
|---|
| 777 | void handleLoggerStats(const DimData &d)
|
|---|
| 778 | {
|
|---|
| 779 | const bool connected = d.size()!=0;
|
|---|
| 780 |
|
|---|
| 781 | fLoggerET->setEnabled(connected);
|
|---|
| 782 | fLoggerRate->setEnabled(connected);
|
|---|
| 783 | fLoggerWritten->setEnabled(connected);
|
|---|
| 784 | fLoggerFreeSpace->setEnabled(connected);
|
|---|
| 785 | fLoggerSpaceLeft->setEnabled(connected);
|
|---|
| 786 |
|
|---|
| 787 | if (!connected)
|
|---|
| 788 | return;
|
|---|
| 789 |
|
|---|
| 790 | const uint64_t *vals = d.ptr<uint64_t>();
|
|---|
| 791 |
|
|---|
| 792 | const size_t written = vals[0];
|
|---|
| 793 | const size_t space = vals[1];
|
|---|
| 794 | const size_t rate = vals[2];
|
|---|
| 795 |
|
|---|
| 796 | fLoggerFreeSpace->setSuffix(" MB");
|
|---|
| 797 | fLoggerFreeSpace->setDecimals(0);
|
|---|
| 798 | fLoggerFreeSpace->setValue(space*1e-6);
|
|---|
| 799 |
|
|---|
| 800 | if (space> 1000000) // > 1GB
|
|---|
| 801 | {
|
|---|
| 802 | fLoggerFreeSpace->setSuffix(" GB");
|
|---|
| 803 | fLoggerFreeSpace->setDecimals(2);
|
|---|
| 804 | fLoggerFreeSpace->setValue(space*1e-9);
|
|---|
| 805 | }
|
|---|
| 806 | if (space>= 3000000) // >= 3GB
|
|---|
| 807 | {
|
|---|
| 808 | fLoggerFreeSpace->setSuffix(" GB");
|
|---|
| 809 | fLoggerFreeSpace->setDecimals(1);
|
|---|
| 810 | fLoggerFreeSpace->setValue(space*1e-9);
|
|---|
| 811 | }
|
|---|
| 812 | if (space>=100000000) // >= 100GB
|
|---|
| 813 | {
|
|---|
| 814 | fLoggerFreeSpace->setSuffix(" GB");
|
|---|
| 815 | fLoggerFreeSpace->setDecimals(0);
|
|---|
| 816 | fLoggerFreeSpace->setValue(space*1e-9);
|
|---|
| 817 | }
|
|---|
| 818 |
|
|---|
| 819 | fLoggerET->setTime(QTime().addSecs(rate>0?space/rate:0));
|
|---|
| 820 | fLoggerRate->setValue(rate*1e-3); // kB/s
|
|---|
| 821 | fLoggerWritten->setValue(written*1e-6);
|
|---|
| 822 |
|
|---|
| 823 | fLoggerRate->setSuffix(" kB/s");
|
|---|
| 824 | fLoggerRate->setDecimals(2);
|
|---|
| 825 | fLoggerRate->setValue(rate*1e-3);
|
|---|
| 826 | if (rate> 2000) // > 2kB/s
|
|---|
| 827 | {
|
|---|
| 828 | fLoggerRate->setSuffix(" kB/s");
|
|---|
| 829 | fLoggerRate->setDecimals(1);
|
|---|
| 830 | fLoggerRate->setValue(rate*1e-3);
|
|---|
| 831 | }
|
|---|
| 832 | if (rate>=100000) // >100kB/s
|
|---|
| 833 | {
|
|---|
| 834 | fLoggerRate->setSuffix(" kB/s");
|
|---|
| 835 | fLoggerRate->setDecimals(0);
|
|---|
| 836 | fLoggerRate->setValue(rate*1e-3);
|
|---|
| 837 | }
|
|---|
| 838 | if (rate>=1000000) // >100kB/s
|
|---|
| 839 | {
|
|---|
| 840 | fLoggerRate->setSuffix(" MB/s");
|
|---|
| 841 | fLoggerRate->setDecimals(2);
|
|---|
| 842 | fLoggerRate->setValue(rate*1e-6);
|
|---|
| 843 | }
|
|---|
| 844 | if (rate>=10000000) // >1MB/s
|
|---|
| 845 | {
|
|---|
| 846 | fLoggerRate->setSuffix(" MB/s");
|
|---|
| 847 | fLoggerRate->setDecimals(1);
|
|---|
| 848 | fLoggerRate->setValue(rate*1e-6);
|
|---|
| 849 | }
|
|---|
| 850 | if (rate>=100000000) // >10MB/s
|
|---|
| 851 | {
|
|---|
| 852 | fLoggerRate->setSuffix(" MB/s");
|
|---|
| 853 | fLoggerRate->setDecimals(0);
|
|---|
| 854 | fLoggerRate->setValue(rate*1e-6);
|
|---|
| 855 | }
|
|---|
| 856 |
|
|---|
| 857 | if (space/1000000>static_cast<size_t>(fLoggerSpaceLeft->maximum()))
|
|---|
| 858 | fLoggerSpaceLeft->setValue(fLoggerSpaceLeft->maximum()); // GB
|
|---|
| 859 | else
|
|---|
| 860 | fLoggerSpaceLeft->setValue(space/1000000); // MB
|
|---|
| 861 | }
|
|---|
| 862 |
|
|---|
| 863 | void handleLoggerFilenameNight(const DimData &d)
|
|---|
| 864 | {
|
|---|
| 865 | const bool connected = d.size()!=0;
|
|---|
| 866 |
|
|---|
| 867 | fLoggerFilenameNight->setEnabled(connected);
|
|---|
| 868 | if (!connected)
|
|---|
| 869 | return;
|
|---|
| 870 |
|
|---|
| 871 | fLoggerFilenameNight->setText(d.c_str()+4);
|
|---|
| 872 |
|
|---|
| 873 | const uint32_t files = d.get<uint32_t>();
|
|---|
| 874 |
|
|---|
| 875 | SetLedColor(fLoggerLedLog, files&1 ? kLedGreen : kLedGray, d.time);
|
|---|
| 876 | SetLedColor(fLoggerLedRep, files&2 ? kLedGreen : kLedGray, d.time);
|
|---|
| 877 | SetLedColor(fLoggerLedFits, files&4 ? kLedGreen : kLedGray, d.time);
|
|---|
| 878 | }
|
|---|
| 879 |
|
|---|
| 880 | void handleLoggerFilenameRun(const DimData &d)
|
|---|
| 881 | {
|
|---|
| 882 | const bool connected = d.size()!=0;
|
|---|
| 883 |
|
|---|
| 884 | fLoggerFilenameRun->setEnabled(connected);
|
|---|
| 885 | if (!connected)
|
|---|
| 886 | return;
|
|---|
| 887 |
|
|---|
| 888 | fLoggerFilenameRun->setText(d.c_str()+4);
|
|---|
| 889 |
|
|---|
| 890 | const uint32_t files = d.get<uint32_t>();
|
|---|
| 891 |
|
|---|
| 892 | SetLedColor(fLoggerLedLog, files&1 ? kLedGreen : kLedGray, d.time);
|
|---|
| 893 | SetLedColor(fLoggerLedRep, files&2 ? kLedGreen : kLedGray, d.time);
|
|---|
| 894 | SetLedColor(fLoggerLedFits, files&4 ? kLedGreen : kLedGray, d.time);
|
|---|
| 895 | }
|
|---|
| 896 |
|
|---|
| 897 | void handleLoggerNumSubs(const DimData &d)
|
|---|
| 898 | {
|
|---|
| 899 | const bool connected = d.size()!=0;
|
|---|
| 900 |
|
|---|
| 901 | fLoggerSubscriptions->setEnabled(connected);
|
|---|
| 902 | fLoggerOpenFiles->setEnabled(connected);
|
|---|
| 903 | if (!connected)
|
|---|
| 904 | return;
|
|---|
| 905 |
|
|---|
| 906 | const uint32_t *vals = d.ptr<uint32_t>();
|
|---|
| 907 |
|
|---|
| 908 | fLoggerSubscriptions->setValue(vals[0]);
|
|---|
| 909 | fLoggerOpenFiles->setValue(vals[1]);
|
|---|
| 910 | }
|
|---|
| 911 |
|
|---|
| 912 |
|
|---|
| 913 | // ===================== All ============================================
|
|---|
| 914 |
|
|---|
| 915 | bool CheckSize(const DimData &d, size_t sz) const
|
|---|
| 916 | {
|
|---|
| 917 | if (d.size()==0)
|
|---|
| 918 | return false;
|
|---|
| 919 |
|
|---|
| 920 | if (d.size()!=sz)
|
|---|
| 921 | {
|
|---|
| 922 | cout << "Size mismatch in " << d.name << ": Found=" << d.size() << " Expected=" << sz << endl;
|
|---|
| 923 | return false;
|
|---|
| 924 | }
|
|---|
| 925 |
|
|---|
| 926 | return true;
|
|---|
| 927 | }
|
|---|
| 928 |
|
|---|
| 929 | // ===================== FAD ============================================
|
|---|
| 930 |
|
|---|
| 931 | void handleFadFiles(const DimData &d)
|
|---|
| 932 | {
|
|---|
| 933 | if (!CheckSize(d, 8))
|
|---|
| 934 | return;
|
|---|
| 935 |
|
|---|
| 936 | fEvtBuilderOpenFiles->setValue(d.get<uint64_t>());
|
|---|
| 937 | }
|
|---|
| 938 |
|
|---|
| 939 | void handleFadRuns(const DimData &d)
|
|---|
| 940 | {
|
|---|
| 941 | if (!CheckSize(d, 4))
|
|---|
| 942 | return;
|
|---|
| 943 |
|
|---|
| 944 | fEvtsRunMax->setValue(d.get<uint32_t>());
|
|---|
| 945 | }
|
|---|
| 946 |
|
|---|
| 947 | void handleFadEvents(const DimData &d)
|
|---|
| 948 | {
|
|---|
| 949 | if (!CheckSize(d, 8))
|
|---|
| 950 | return;
|
|---|
| 951 |
|
|---|
| 952 | const uint32_t *ptr = d.ptr<uint32_t>();
|
|---|
| 953 |
|
|---|
| 954 | fEvtsSuccessCurRun->setValue(ptr[0]);
|
|---|
| 955 | fEvtsSuccessTotal->setValue(ptr[1]);
|
|---|
| 956 | }
|
|---|
| 957 |
|
|---|
| 958 | void handleFadCurrentEvent(const DimData &d)
|
|---|
| 959 | {
|
|---|
| 960 | if (!CheckSize(d, 4))
|
|---|
| 961 | return;
|
|---|
| 962 |
|
|---|
| 963 | fEvtsEventId->setValue(d.get<uint32_t>());
|
|---|
| 964 | }
|
|---|
| 965 |
|
|---|
| 966 | struct DimEventData
|
|---|
| 967 | {
|
|---|
| 968 | uint16_t Roi ; // #slices per pixel (same for all pixels and tmarks)
|
|---|
| 969 | uint32_t EventNum ; // EventNumber as from FTM
|
|---|
| 970 | uint16_t TriggerType ; // Trigger Type from FTM
|
|---|
| 971 |
|
|---|
| 972 | uint32_t PCTime ; // when did event start to arrive at PC
|
|---|
| 973 | uint32_t BoardTime; //
|
|---|
| 974 |
|
|---|
| 975 | int16_t StartPix; // First Channel per Pixel (Pixels sorted according Software ID) ; -1 if not filled
|
|---|
| 976 | int16_t StartTM; // First Channel for TimeMark (sorted Hardware ID) ; -1 if not filled
|
|---|
| 977 |
|
|---|
| 978 | uint16_t Adc_Data[]; // final length defined by malloc ....
|
|---|
| 979 |
|
|---|
| 980 | } __attribute__((__packed__));;
|
|---|
| 981 |
|
|---|
| 982 | void handleFadEventData(const DimData &d)
|
|---|
| 983 | {
|
|---|
| 984 | if (d.size()==0)
|
|---|
| 985 | return;
|
|---|
| 986 |
|
|---|
| 987 | #ifdef HAVE_ROOT
|
|---|
| 988 | const DimEventData &dat = d.ref<DimEventData>();
|
|---|
| 989 |
|
|---|
| 990 | if (d.size()<sizeof(DimEventData))
|
|---|
| 991 | {
|
|---|
| 992 | cout << "Size mismatch in " << d.name << ": Found=" << d.size() << " Expected=" << sizeof(DimEventData) << endl;
|
|---|
| 993 | return;
|
|---|
| 994 | }
|
|---|
| 995 |
|
|---|
| 996 | if (d.size()!=dat.Roi*2+sizeof(DimEventData))
|
|---|
| 997 | {
|
|---|
| 998 | cout << "Size mismatch in " << d.name << ": Found=" << d.size() << " Expected=" << dat.Roi*2+sizeof(DimEventData) << endl;
|
|---|
| 999 | return;
|
|---|
| 1000 | }
|
|---|
| 1001 |
|
|---|
| 1002 | TCanvas *c = fAdcDataCanv->GetCanvas();
|
|---|
| 1003 |
|
|---|
| 1004 | TH1 *h = dynamic_cast<TH1*>(c->FindObject("EventData"));
|
|---|
| 1005 | if (h && h->GetNbinsX()!=dat.Roi)
|
|---|
| 1006 | {
|
|---|
| 1007 | delete h;
|
|---|
| 1008 | h = 0;
|
|---|
| 1009 | }
|
|---|
| 1010 |
|
|---|
| 1011 | if (!h)
|
|---|
| 1012 | {
|
|---|
| 1013 | c->cd();
|
|---|
| 1014 |
|
|---|
| 1015 | TH1D hist("EventData", "", dat.Roi, -0.5, dat.Roi-0.5);
|
|---|
| 1016 | hist.SetStats(kFALSE);
|
|---|
| 1017 | //hist->SetBit(TH1::kNoTitle);
|
|---|
| 1018 | hist.SetMarkerStyle(kFullDotMedium);
|
|---|
| 1019 | hist.SetYTitle("Voltage [mV]");
|
|---|
| 1020 | hist.GetXaxis()->CenterTitle();
|
|---|
| 1021 | hist.GetYaxis()->CenterTitle();
|
|---|
| 1022 | hist.SetMinimum(-1026);
|
|---|
| 1023 | hist.SetMaximum(1025);
|
|---|
| 1024 | h = hist.DrawCopy("P");
|
|---|
| 1025 | h->SetDirectory(0);
|
|---|
| 1026 | }
|
|---|
| 1027 |
|
|---|
| 1028 | ostringstream str;
|
|---|
| 1029 | str << "ADC Pipeline (start=" << dat.StartTM << ")";
|
|---|
| 1030 | h->SetXTitle(str.str().c_str());
|
|---|
| 1031 |
|
|---|
| 1032 | //str.str("");
|
|---|
| 1033 | //str << "Crate=" << crate << " Board=" << board << " Channel=" << channel << " [" << d.time() << "]" << endl;
|
|---|
| 1034 | //hist->SetTitle(str.str().c_str());
|
|---|
| 1035 |
|
|---|
| 1036 | for (int i=0; i<dat.Roi; i++)
|
|---|
| 1037 | h->SetBinContent(i+1, dat.Adc_Data[i]*0.5-1024);
|
|---|
| 1038 |
|
|---|
| 1039 | c->Modified();
|
|---|
| 1040 | c->Update();
|
|---|
| 1041 | #endif
|
|---|
| 1042 | }
|
|---|
| 1043 |
|
|---|
| 1044 | vector<uint8_t> fFadConnections;
|
|---|
| 1045 |
|
|---|
| 1046 | void handleFadConnections(const DimData &d)
|
|---|
| 1047 | {
|
|---|
| 1048 | if (!CheckSize(d, 41))
|
|---|
| 1049 | return;
|
|---|
| 1050 |
|
|---|
| 1051 | const uint8_t *ptr = d.ptr<uint8_t>();
|
|---|
| 1052 |
|
|---|
| 1053 | for (int i=0; i<40; i++)
|
|---|
| 1054 | {
|
|---|
| 1055 | switch (ptr[i])
|
|---|
| 1056 | {
|
|---|
| 1057 | case 0: SetLedColor(fFadLED[i], kLedGray, d.time); break;
|
|---|
| 1058 | case 9: SetLedColor(fFadLED[i], kLedGreen, d.time); break;
|
|---|
| 1059 | default: SetLedColor(fFadLED[i], kLedOrange, d.time);
|
|---|
| 1060 | }
|
|---|
| 1061 | }
|
|---|
| 1062 |
|
|---|
| 1063 | SetLedColor(fFadLEDEventBuilder, ptr[40]==0?kLedRed:kLedGreen, d.time);
|
|---|
| 1064 |
|
|---|
| 1065 | fFadConnections.assign(ptr, ptr+40);
|
|---|
| 1066 | }
|
|---|
| 1067 |
|
|---|
| 1068 | template<typename T>
|
|---|
| 1069 | bool CheckConsistency(const T *v)
|
|---|
| 1070 | {
|
|---|
| 1071 | for (int i=1; i<40; i++)
|
|---|
| 1072 | if (fFadConnections[i]==9 && v[i]!=v[0])
|
|---|
| 1073 | return false;
|
|---|
| 1074 |
|
|---|
| 1075 | return true;
|
|---|
| 1076 | }
|
|---|
| 1077 |
|
|---|
| 1078 | template<typename T>
|
|---|
| 1079 | T GetFirst(const T *v)
|
|---|
| 1080 | {
|
|---|
| 1081 | for (int i=0; i<40; i++)
|
|---|
| 1082 | if (fFadConnections[i]==9)
|
|---|
| 1083 | return v[i];
|
|---|
| 1084 |
|
|---|
| 1085 | return T();
|
|---|
| 1086 | }
|
|---|
| 1087 |
|
|---|
| 1088 | void handleFadFwVersion(const DimData &d)
|
|---|
| 1089 | {
|
|---|
| 1090 | if (!CheckSize(d, 43*sizeof(float)))
|
|---|
| 1091 | return;
|
|---|
| 1092 |
|
|---|
| 1093 | const float *ptr = d.ptr<float>();
|
|---|
| 1094 | fFadFwVersion->setValue(ptr[1]);
|
|---|
| 1095 |
|
|---|
| 1096 | ostringstream tip;
|
|---|
| 1097 | tip << "<table border='1'><tr><th colspan='11'>" << Time().GetAsStr() << "</th></tr><tr><th></th>";
|
|---|
| 1098 | for (int b=0; b<10; b++)
|
|---|
| 1099 | tip << "<th>" << b << "</th>";
|
|---|
| 1100 | tip << "</tr>";
|
|---|
| 1101 |
|
|---|
| 1102 | for (int c=0; c<4; c++)
|
|---|
| 1103 | {
|
|---|
| 1104 | tip << "<tr><th>" << c << "</th>";
|
|---|
| 1105 | for (int b=0; b<10; b++)
|
|---|
| 1106 | tip << "<td>" << ptr[c*10+b+3] << "</td>";
|
|---|
| 1107 | tip << "</tr>";
|
|---|
| 1108 | }
|
|---|
| 1109 | tip << "</table>";
|
|---|
| 1110 |
|
|---|
| 1111 | fFadFwVersion->setToolTip(tip.str().c_str());
|
|---|
| 1112 |
|
|---|
| 1113 | SetLedColor(fFadLedFwVersion, d.qos?kLedGreen:kLedOrange, d.time);
|
|---|
| 1114 | }
|
|---|
| 1115 |
|
|---|
| 1116 | void handleFadPllLock(const DimData &d)
|
|---|
| 1117 | {
|
|---|
| 1118 | if (!CheckSize(d, 43*sizeof(uint8_t)))
|
|---|
| 1119 | return;
|
|---|
| 1120 |
|
|---|
| 1121 | SetLedColor(fFadLedPllLock, d.qos?kLedGreen:kLedOrange, d.time);
|
|---|
| 1122 |
|
|---|
| 1123 | const uint8_t *ptr = d.ptr<uint8_t>();
|
|---|
| 1124 |
|
|---|
| 1125 | ostringstream tip;
|
|---|
| 1126 | tip << "<table border='1'><tr><th colspan='11'>" << Time().GetAsStr() << "</th></tr><tr><th></th>";
|
|---|
| 1127 | for (int b=0; b<10; b++)
|
|---|
| 1128 | tip << "<th>" << b << "</th>";
|
|---|
| 1129 | tip << "</tr>";
|
|---|
| 1130 |
|
|---|
| 1131 | for (int c=0; c<4; c++)
|
|---|
| 1132 | {
|
|---|
| 1133 | tip << "<tr><th>" << c << "</th>";
|
|---|
| 1134 | for (int b=0; b<10; b++)
|
|---|
| 1135 | {
|
|---|
| 1136 | tip << "<td>"
|
|---|
| 1137 | << (int)(ptr[c*10+b+3]&8)
|
|---|
| 1138 | << (int)(ptr[c*10+b+3]&4)
|
|---|
| 1139 | << (int)(ptr[c*10+b+3]&2)
|
|---|
| 1140 | << (int)(ptr[c*10+b+3]&1)
|
|---|
| 1141 | << "</td>";
|
|---|
| 1142 | }
|
|---|
| 1143 | tip << "</tr>";
|
|---|
| 1144 | }
|
|---|
| 1145 | tip << "</table>";
|
|---|
| 1146 |
|
|---|
| 1147 | fFadLedPllLock->setToolTip(tip.str().c_str());
|
|---|
| 1148 | }
|
|---|
| 1149 |
|
|---|
| 1150 | void handleFadStatistics(const DimData &d)
|
|---|
| 1151 | {
|
|---|
| 1152 | if (!CheckSize(d, 8*sizeof(int64_t)))
|
|---|
| 1153 | return;
|
|---|
| 1154 |
|
|---|
| 1155 | const int64_t *stat = d.ptr<int64_t>();
|
|---|
| 1156 |
|
|---|
| 1157 | fFadBufferMax->setValue(stat[0]/1000000);
|
|---|
| 1158 | fFadBuffer->setMaximum(stat[0]);
|
|---|
| 1159 | fFadBuffer->setValue(stat[5]);
|
|---|
| 1160 |
|
|---|
| 1161 | fFadEvtWait->setValue(stat[1]);
|
|---|
| 1162 | fFadEvtSkip->setValue(stat[2]);
|
|---|
| 1163 | fFadEvtDel->setValue(stat[3]);
|
|---|
| 1164 | fFadEvtTot->setValue(stat[4]);
|
|---|
| 1165 | fFadEvtRead->setValue(stat[6]/1024.);
|
|---|
| 1166 | fFadEvtConn->setValue(stat[7]);
|
|---|
| 1167 | }
|
|---|
| 1168 |
|
|---|
| 1169 |
|
|---|
| 1170 | // ===================== FTM ============================================
|
|---|
| 1171 |
|
|---|
| 1172 | double fTimeStamp1;
|
|---|
| 1173 |
|
|---|
| 1174 | void handleFtmTriggerCounter(const DimData &d)
|
|---|
| 1175 | {
|
|---|
| 1176 | if (!CheckSize(d, sizeof(FTM::DimTriggerCounter)))
|
|---|
| 1177 | return;
|
|---|
| 1178 |
|
|---|
| 1179 | const FTM::DimTriggerCounter &sdata = d.ref<FTM::DimTriggerCounter>();
|
|---|
| 1180 |
|
|---|
| 1181 | fFtmTime->setText(QString::number(sdata.fTimeStamp/1000000., 'f', 6)+ " s");
|
|---|
| 1182 | fTriggerCounter->setText(QString::number(sdata.fTriggerCounter));
|
|---|
| 1183 |
|
|---|
| 1184 | if (sdata.fTimeStamp>0)
|
|---|
| 1185 | fTriggerCounterRate->setValue(1000000.*sdata.fTriggerCounter/sdata.fTimeStamp);
|
|---|
| 1186 | else
|
|---|
| 1187 | fTriggerCounterRate->setValue(0);
|
|---|
| 1188 |
|
|---|
| 1189 |
|
|---|
| 1190 | // ----------------------------------------------
|
|---|
| 1191 | #ifdef HAVE_ROOT
|
|---|
| 1192 |
|
|---|
| 1193 | if (fTriggerCounter0<0)
|
|---|
| 1194 | {
|
|---|
| 1195 | fTriggerCounter0 = sdata.fTriggerCounter;
|
|---|
| 1196 | fTimeStamp1 = sdata.fTimeStamp;
|
|---|
| 1197 | return;
|
|---|
| 1198 | }
|
|---|
| 1199 |
|
|---|
| 1200 | TCanvas *c = fFtmRateCanv->GetCanvas();
|
|---|
| 1201 |
|
|---|
| 1202 | TH1 *h = (TH1*)c->FindObject("TimeFrame");
|
|---|
| 1203 |
|
|---|
| 1204 | const double rate = sdata.fTriggerCounter-fTriggerCounter0;
|
|---|
| 1205 | const double tdiff = sdata.fTimeStamp -fTimeStamp1;
|
|---|
| 1206 |
|
|---|
| 1207 | fTriggerCounter0 = sdata.fTriggerCounter;
|
|---|
| 1208 | fTimeStamp1 = sdata.fTimeStamp;
|
|---|
| 1209 |
|
|---|
| 1210 | if (rate<0 && tdiff<=0)
|
|---|
| 1211 | {
|
|---|
| 1212 | fGraphFtmRate.Set(0);
|
|---|
| 1213 |
|
|---|
| 1214 | const double tm = Time().RootTime();
|
|---|
| 1215 |
|
|---|
| 1216 | h->SetBins(1, tm, tm+60);
|
|---|
| 1217 | h->GetXaxis()->SetTimeFormat("%M'%S\"");
|
|---|
| 1218 | h->GetXaxis()->SetTitle("Time");
|
|---|
| 1219 |
|
|---|
| 1220 | c->Modified();
|
|---|
| 1221 | c->Update();
|
|---|
| 1222 | return;
|
|---|
| 1223 | }
|
|---|
| 1224 |
|
|---|
| 1225 | if (rate<0)
|
|---|
| 1226 | return;
|
|---|
| 1227 |
|
|---|
| 1228 | // const double avgrate = sdata.fTimeStamp>0 ? double(sdata.fTriggerCounter)/sdata.fTimeStamp*1000000 : 1;
|
|---|
| 1229 |
|
|---|
| 1230 | const double t1 = h->GetXaxis()->GetXmax();
|
|---|
| 1231 | const double t0 = h->GetXaxis()->GetXmin();
|
|---|
| 1232 |
|
|---|
| 1233 | h->SetBins(h->GetNbinsX()+1, t0, t0+sdata.fTimeStamp/1000000.+1);
|
|---|
| 1234 | fGraphFtmRate.SetPoint(fGraphFtmRate.GetN(),
|
|---|
| 1235 | t0+sdata.fTimeStamp/1000000., 1000000*rate/tdiff);
|
|---|
| 1236 |
|
|---|
| 1237 | if (t1-t0>60)
|
|---|
| 1238 | {
|
|---|
| 1239 | h->GetXaxis()->SetTimeFormat("%Hh%M'");
|
|---|
| 1240 | h->GetXaxis()->SetTitle("Time");
|
|---|
| 1241 | }
|
|---|
| 1242 |
|
|---|
| 1243 | h->SetMinimum(0);
|
|---|
| 1244 | // h->SetMaximum(2*avgrate);
|
|---|
| 1245 |
|
|---|
| 1246 | c->Modified();
|
|---|
| 1247 | c->Update();
|
|---|
| 1248 | #endif
|
|---|
| 1249 | // ----------------------------------------------
|
|---|
| 1250 | }
|
|---|
| 1251 |
|
|---|
| 1252 | void handleFtmCounter(const DimData &d)
|
|---|
| 1253 | {
|
|---|
| 1254 | if (!CheckSize(d, sizeof(uint32_t)*6))
|
|---|
| 1255 | return;
|
|---|
| 1256 |
|
|---|
| 1257 | const uint32_t *sdata = d.ptr<uint32_t>();
|
|---|
| 1258 |
|
|---|
| 1259 | fFtmCounterH->setValue(sdata[0]);
|
|---|
| 1260 | fFtmCounterS->setValue(sdata[1]);
|
|---|
| 1261 | fFtmCounterD->setValue(sdata[2]);
|
|---|
| 1262 | fFtmCounterF->setValue(sdata[3]);
|
|---|
| 1263 | fFtmCounterE->setValue(sdata[4]);
|
|---|
| 1264 | fFtmCounterR->setValue(sdata[5]);
|
|---|
| 1265 | }
|
|---|
| 1266 |
|
|---|
| 1267 | int64_t fTriggerCounter0;
|
|---|
| 1268 | int64_t fTimeStamp0;
|
|---|
| 1269 |
|
|---|
| 1270 | void handleFtmDynamicData(const DimData &d)
|
|---|
| 1271 | {
|
|---|
| 1272 | if (!CheckSize(d, sizeof(FTM::DimDynamicData)))
|
|---|
| 1273 | return;
|
|---|
| 1274 |
|
|---|
| 1275 | const FTM::DimDynamicData &sdata = d.ref<FTM::DimDynamicData>();
|
|---|
| 1276 |
|
|---|
| 1277 | fOnTime->setText(QString::number(sdata.fOnTimeCounter/1000000., 'f', 6)+" s");
|
|---|
| 1278 |
|
|---|
| 1279 | if (sdata.fTimeStamp>0)
|
|---|
| 1280 | fOnTimeRel->setValue(100.*sdata.fOnTimeCounter/sdata.fTimeStamp);
|
|---|
| 1281 | else
|
|---|
| 1282 | fOnTimeRel->setValue(0);
|
|---|
| 1283 |
|
|---|
| 1284 | fFtmTemp0->setValue(sdata.fTempSensor[0]*0.1);
|
|---|
| 1285 | fFtmTemp1->setValue(sdata.fTempSensor[1]*0.1);
|
|---|
| 1286 | fFtmTemp2->setValue(sdata.fTempSensor[2]*0.1);
|
|---|
| 1287 | fFtmTemp3->setValue(sdata.fTempSensor[3]*0.1);
|
|---|
| 1288 |
|
|---|
| 1289 |
|
|---|
| 1290 | #ifdef HAVE_ROOT
|
|---|
| 1291 |
|
|---|
| 1292 | // ----------------------------------------------
|
|---|
| 1293 |
|
|---|
| 1294 | if (fTimeStamp0<0)
|
|---|
| 1295 | {
|
|---|
| 1296 | fTimeStamp0 = sdata.fTimeStamp;
|
|---|
| 1297 | return;
|
|---|
| 1298 | }
|
|---|
| 1299 |
|
|---|
| 1300 | TCanvas *c = fFtmRateCanv->GetCanvas();
|
|---|
| 1301 |
|
|---|
| 1302 | TH1 *h = (TH1*)c->FindObject("TimeFrame");
|
|---|
| 1303 |
|
|---|
| 1304 | const double tdiff = sdata.fTimeStamp-fTimeStamp0;
|
|---|
| 1305 | fTimeStamp0 = sdata.fTimeStamp;
|
|---|
| 1306 |
|
|---|
| 1307 | if (tdiff<0)
|
|---|
| 1308 | {
|
|---|
| 1309 | for (int i=0; i<160; i++)
|
|---|
| 1310 | fGraphPatchRate[i].Set(0);
|
|---|
| 1311 | for (int i=0; i<40; i++)
|
|---|
| 1312 | fGraphBoardRate[i].Set(0);
|
|---|
| 1313 |
|
|---|
| 1314 | return;
|
|---|
| 1315 | }
|
|---|
| 1316 |
|
|---|
| 1317 | //const double t1 = h->GetXaxis()->GetXmax();
|
|---|
| 1318 | const double t0 = h->GetXaxis()->GetXmin();
|
|---|
| 1319 |
|
|---|
| 1320 | for (int i=0; i<160; i++)
|
|---|
| 1321 | fGraphPatchRate[i].SetPoint(fGraphPatchRate[i].GetN(),
|
|---|
| 1322 | t0+sdata.fTimeStamp/1000000., float(sdata.fRatePatch[i])*2/fFtmStaticData.fPrescaling[i]);
|
|---|
| 1323 | for (int i=0; i<40; i++)
|
|---|
| 1324 | fGraphBoardRate[i].SetPoint(fGraphBoardRate[i].GetN(),
|
|---|
| 1325 | t0+sdata.fTimeStamp/1000000., float(sdata.fRateBoard[i])*2/fFtmStaticData.fPrescaling[i]);
|
|---|
| 1326 |
|
|---|
| 1327 | c->Modified();
|
|---|
| 1328 | c->Update();
|
|---|
| 1329 |
|
|---|
| 1330 | //fGraphFtmRate.ComputeRange(x[0], x[1], x[2], x[3]);
|
|---|
| 1331 |
|
|---|
| 1332 | // ----------------------------------------------
|
|---|
| 1333 |
|
|---|
| 1334 | if (fThresholdIdx->value()>=0)
|
|---|
| 1335 | {
|
|---|
| 1336 | const int isw = fThresholdIdx->value();
|
|---|
| 1337 | const int ihw = fPatchMapHW[isw];
|
|---|
| 1338 | fPatchRate->setValue(sdata.fRatePatch[ihw]);
|
|---|
| 1339 | }
|
|---|
| 1340 |
|
|---|
| 1341 | valarray<double> dat(0., 1440);
|
|---|
| 1342 |
|
|---|
| 1343 | // fPatch converts from software id to software patch id
|
|---|
| 1344 | for (int i=0; i<1440; i++)
|
|---|
| 1345 | {
|
|---|
| 1346 | const int ihw = fPatchHW[i];
|
|---|
| 1347 | // const int isw = fPatch[i];
|
|---|
| 1348 | // const int ihw = fPatchMapHW[isw];
|
|---|
| 1349 | dat[i] = sdata.fRatePatch[ihw];
|
|---|
| 1350 | }
|
|---|
| 1351 |
|
|---|
| 1352 | c = fRatesCanv->GetCanvas();
|
|---|
| 1353 | Camera *cam = (Camera*)c->FindObject("Camera");
|
|---|
| 1354 |
|
|---|
| 1355 | cam->SetData(dat);
|
|---|
| 1356 |
|
|---|
| 1357 | c->Modified();
|
|---|
| 1358 | c->Update();
|
|---|
| 1359 |
|
|---|
| 1360 | // ----------------------------------------------
|
|---|
| 1361 | #endif
|
|---|
| 1362 | }
|
|---|
| 1363 |
|
|---|
| 1364 | void DisplayRates()
|
|---|
| 1365 | {
|
|---|
| 1366 | #ifdef HAVE_ROOT
|
|---|
| 1367 | TCanvas *c = fFtmRateCanv->GetCanvas();
|
|---|
| 1368 |
|
|---|
| 1369 | while (c->FindObject("PatchRate"))
|
|---|
| 1370 | c->GetListOfPrimitives()->Remove(c->FindObject("PatchRate"));
|
|---|
| 1371 |
|
|---|
| 1372 | while (c->FindObject("BoardRate"))
|
|---|
| 1373 | c->GetListOfPrimitives()->Remove(c->FindObject("BoardRate"));
|
|---|
| 1374 |
|
|---|
| 1375 | c->cd();
|
|---|
| 1376 |
|
|---|
| 1377 | if (fRatePatch1->value()>=0)
|
|---|
| 1378 | {
|
|---|
| 1379 | fGraphPatchRate[fRatePatch1->value()].SetLineColor(kRed);
|
|---|
| 1380 | fGraphPatchRate[fRatePatch1->value()].SetMarkerColor(kRed);
|
|---|
| 1381 | fGraphPatchRate[fRatePatch1->value()].Draw("PL");
|
|---|
| 1382 | }
|
|---|
| 1383 | if (fRatePatch2->value()>=0)
|
|---|
| 1384 | {
|
|---|
| 1385 | fGraphPatchRate[fRatePatch2->value()].SetLineColor(kGreen);
|
|---|
| 1386 | fGraphPatchRate[fRatePatch2->value()].SetMarkerColor(kGreen);
|
|---|
| 1387 | fGraphPatchRate[fRatePatch2->value()].Draw("PL");
|
|---|
| 1388 | }
|
|---|
| 1389 | if (fRateBoard1->value()>=0)
|
|---|
| 1390 | {
|
|---|
| 1391 | fGraphBoardRate[fRateBoard1->value()].SetLineColor(kMagenta);
|
|---|
| 1392 | fGraphBoardRate[fRateBoard1->value()].SetMarkerColor(kMagenta);
|
|---|
| 1393 | fGraphBoardRate[fRateBoard1->value()].Draw("PL");
|
|---|
| 1394 | }
|
|---|
| 1395 | if (fRateBoard2->value()>=0)
|
|---|
| 1396 | {
|
|---|
| 1397 | fGraphBoardRate[fRateBoard2->value()].SetLineColor(kCyan);
|
|---|
| 1398 | fGraphBoardRate[fRateBoard2->value()].SetMarkerColor(kCyan);
|
|---|
| 1399 | fGraphBoardRate[fRateBoard2->value()].Draw("PL");
|
|---|
| 1400 | }
|
|---|
| 1401 | #endif
|
|---|
| 1402 | }
|
|---|
| 1403 |
|
|---|
| 1404 | void on_fRatePatch1_valueChanged(int)
|
|---|
| 1405 | {
|
|---|
| 1406 | DisplayRates();
|
|---|
| 1407 | }
|
|---|
| 1408 |
|
|---|
| 1409 | void on_fRatePatch2_valueChanged(int)
|
|---|
| 1410 | {
|
|---|
| 1411 | DisplayRates();
|
|---|
| 1412 | }
|
|---|
| 1413 |
|
|---|
| 1414 | void on_fRateBoard1_valueChanged(int)
|
|---|
| 1415 | {
|
|---|
| 1416 | DisplayRates();
|
|---|
| 1417 | }
|
|---|
| 1418 |
|
|---|
| 1419 | void on_fRateBoard2_valueChanged(int)
|
|---|
| 1420 | {
|
|---|
| 1421 | DisplayRates();
|
|---|
| 1422 | }
|
|---|
| 1423 |
|
|---|
| 1424 | FTM::DimStaticData fFtmStaticData;
|
|---|
| 1425 |
|
|---|
| 1426 | void SetFtuLed(int idx, int counter, const Time &t)
|
|---|
| 1427 | {
|
|---|
| 1428 | if (counter==0 || counter>3)
|
|---|
| 1429 | counter = 3;
|
|---|
| 1430 |
|
|---|
| 1431 | if (counter<0)
|
|---|
| 1432 | counter = 0;
|
|---|
| 1433 |
|
|---|
| 1434 | const LedColor_t col[4] = { kLedGray, kLedGreen, kLedOrange, kLedRed };
|
|---|
| 1435 |
|
|---|
| 1436 | SetLedColor(fFtuLED[idx], col[counter], t);
|
|---|
| 1437 |
|
|---|
| 1438 | fFtuStatus[idx] = counter;
|
|---|
| 1439 | }
|
|---|
| 1440 |
|
|---|
| 1441 | void SetFtuStatusLed(const Time &t)
|
|---|
| 1442 | {
|
|---|
| 1443 | const int max = fFtuStatus.max();
|
|---|
| 1444 |
|
|---|
| 1445 | switch (max)
|
|---|
| 1446 | {
|
|---|
| 1447 | case 0:
|
|---|
| 1448 | SetLedColor(fStatusFTULed, kLedGray, t);
|
|---|
| 1449 | fStatusFTULabel->setText("All disabled");
|
|---|
| 1450 | fStatusFTULabel->setToolTip("All FTUs are disabled");
|
|---|
| 1451 | break;
|
|---|
| 1452 |
|
|---|
| 1453 | case 1:
|
|---|
| 1454 | SetLedColor(fStatusFTULed, kLedGreen, t);
|
|---|
| 1455 | fStatusFTULabel->setToolTip("Communication with FTU is smooth.");
|
|---|
| 1456 | fStatusFTULabel->setText("ok");
|
|---|
| 1457 | break;
|
|---|
| 1458 |
|
|---|
| 1459 | case 2:
|
|---|
| 1460 | SetLedColor(fStatusFTULed, kLedOrange, t);
|
|---|
| 1461 | fStatusFTULabel->setText("Warning");
|
|---|
| 1462 | fStatusFTULabel->setToolTip("At least one FTU didn't answer immediately");
|
|---|
| 1463 | break;
|
|---|
| 1464 |
|
|---|
| 1465 | case 3:
|
|---|
| 1466 | SetLedColor(fStatusFTULed, kLedRed, t);
|
|---|
| 1467 | fStatusFTULabel->setToolTip("At least one FTU didn't answer!");
|
|---|
| 1468 | fStatusFTULabel->setText("ERROR");
|
|---|
| 1469 | break;
|
|---|
| 1470 | }
|
|---|
| 1471 |
|
|---|
| 1472 | const int cnt = count(&fFtuStatus[0], &fFtuStatus[40], 0);
|
|---|
| 1473 | fFtuAllOn->setEnabled(cnt!=0);
|
|---|
| 1474 | fFtuAllOff->setEnabled(cnt!=40);
|
|---|
| 1475 | }
|
|---|
| 1476 |
|
|---|
| 1477 | void handleFtmStaticData(const DimData &d)
|
|---|
| 1478 | {
|
|---|
| 1479 | if (!CheckSize(d, sizeof(FTM::DimStaticData)))
|
|---|
| 1480 | return;
|
|---|
| 1481 |
|
|---|
| 1482 | const FTM::DimStaticData &sdata = d.ref<FTM::DimStaticData>();
|
|---|
| 1483 |
|
|---|
| 1484 | fTriggerInterval->setValue(sdata.fTriggerInterval);
|
|---|
| 1485 | fPhysicsCoincidence->setValue(sdata.fMultiplicityPhysics);
|
|---|
| 1486 | fCalibCoincidence->setValue(sdata.fMultiplicityCalib);
|
|---|
| 1487 | fPhysicsWindow->setValue(sdata.fWindowPhysics);
|
|---|
| 1488 | fCalibWindow->setValue(sdata.fWindowCalib);
|
|---|
| 1489 |
|
|---|
| 1490 | fTriggerDelay->setValue(sdata.fDelayTrigger);
|
|---|
| 1491 | fTimeMarkerDelay->setValue(sdata.fDelayTimeMarker);
|
|---|
| 1492 | fDeadTime->setValue(sdata.fDeadTime);
|
|---|
| 1493 |
|
|---|
| 1494 | fClockCondR0->setValue(sdata.fClockConditioner[0]);
|
|---|
| 1495 | fClockCondR1->setValue(sdata.fClockConditioner[1]);
|
|---|
| 1496 | fClockCondR8->setValue(sdata.fClockConditioner[2]);
|
|---|
| 1497 | fClockCondR9->setValue(sdata.fClockConditioner[3]);
|
|---|
| 1498 | fClockCondR11->setValue(sdata.fClockConditioner[4]);
|
|---|
| 1499 | fClockCondR13->setValue(sdata.fClockConditioner[5]);
|
|---|
| 1500 | fClockCondR14->setValue(sdata.fClockConditioner[6]);
|
|---|
| 1501 | fClockCondR15->setValue(sdata.fClockConditioner[7]);
|
|---|
| 1502 |
|
|---|
| 1503 | //fClockCondFreq->setEditText("");
|
|---|
| 1504 | fClockCondFreq->setCurrentIndex(0);
|
|---|
| 1505 |
|
|---|
| 1506 | fTriggerSeqPed->setValue(sdata.fTriggerSeqPed);
|
|---|
| 1507 | fTriggerSeqLPint->setValue(sdata.fTriggerSeqLPint);
|
|---|
| 1508 | fTriggerSeqLPext->setValue(sdata.fTriggerSeqLPext);
|
|---|
| 1509 |
|
|---|
| 1510 | fEnableTrigger->setChecked(sdata.HasTrigger());
|
|---|
| 1511 | fEnableVeto->setChecked(sdata.HasVeto());
|
|---|
| 1512 | fEnableExt1->setChecked(sdata.HasExt1());
|
|---|
| 1513 | fEnableExt2->setChecked(sdata.HasExt2());
|
|---|
| 1514 | fEnableClockCond->setChecked(sdata.HasClockConditioner());
|
|---|
| 1515 |
|
|---|
| 1516 | for (int i=0; i<40; i++)
|
|---|
| 1517 | {
|
|---|
| 1518 | if (!sdata.IsActive(i))
|
|---|
| 1519 | SetFtuLed(i, -1, d.time);
|
|---|
| 1520 | else
|
|---|
| 1521 | {
|
|---|
| 1522 | if (fFtuStatus[i]==0)
|
|---|
| 1523 | SetFtuLed(i, 1, d.time);
|
|---|
| 1524 | }
|
|---|
| 1525 | fFtuLED[i]->setChecked(false);
|
|---|
| 1526 | }
|
|---|
| 1527 | SetFtuStatusLed(d.time);
|
|---|
| 1528 |
|
|---|
| 1529 | #ifdef HAVE_ROOT
|
|---|
| 1530 | Camera *cam = (Camera*)fRatesCanv->GetCanvas()->FindObject("Camera");
|
|---|
| 1531 | for (int isw=0; isw<1440; isw++)
|
|---|
| 1532 | {
|
|---|
| 1533 | const int ihw = fPixelMapHW[isw];
|
|---|
| 1534 | cam->SetEnable(isw, sdata.IsEnabled(ihw));
|
|---|
| 1535 | }
|
|---|
| 1536 |
|
|---|
| 1537 | fRatesCanv->GetCanvas()->Modified();
|
|---|
| 1538 | fRatesCanv->GetCanvas()->Update();
|
|---|
| 1539 | #endif
|
|---|
| 1540 |
|
|---|
| 1541 | {
|
|---|
| 1542 | const int isw = fPixelIdx->value();
|
|---|
| 1543 | const int ihw = fPixelMapHW[isw];
|
|---|
| 1544 | const bool on = sdata.IsEnabled(ihw);
|
|---|
| 1545 | fPixelEnable->setChecked(on);
|
|---|
| 1546 | }
|
|---|
| 1547 |
|
|---|
| 1548 | if (fThresholdIdx->value()>=0)
|
|---|
| 1549 | {
|
|---|
| 1550 | const int isw = fThresholdIdx->value();
|
|---|
| 1551 | const int ihw = fPatchMapHW[isw];
|
|---|
| 1552 | fThresholdVal->setValue(sdata.fThreshold[ihw]);
|
|---|
| 1553 | }
|
|---|
| 1554 |
|
|---|
| 1555 | fPrescalingVal->setValue(sdata.fPrescaling[0]);
|
|---|
| 1556 |
|
|---|
| 1557 | fFtmStaticData = sdata;
|
|---|
| 1558 | }
|
|---|
| 1559 |
|
|---|
| 1560 | void handleFtmPassport(const DimData &d)
|
|---|
| 1561 | {
|
|---|
| 1562 | if (!CheckSize(d, sizeof(FTM::DimPassport)))
|
|---|
| 1563 | return;
|
|---|
| 1564 |
|
|---|
| 1565 | const FTM::DimPassport &sdata = d.ref<FTM::DimPassport>();
|
|---|
| 1566 |
|
|---|
| 1567 | stringstream str1, str2;
|
|---|
| 1568 | str1 << hex << "0x" << setfill('0') << setw(16) << sdata.fBoardId;
|
|---|
| 1569 | str2 << sdata.fFirmwareId;
|
|---|
| 1570 |
|
|---|
| 1571 | fFtmBoardId->setText(str1.str().c_str());
|
|---|
| 1572 | fFtmFirmwareId->setText(str2.str().c_str());
|
|---|
| 1573 | }
|
|---|
| 1574 |
|
|---|
| 1575 | void handleFtmFtuList(const DimData &d)
|
|---|
| 1576 | {
|
|---|
| 1577 | if (!CheckSize(d, sizeof(FTM::DimFtuList)))
|
|---|
| 1578 | return;
|
|---|
| 1579 |
|
|---|
| 1580 | fFtuPing->setChecked(false);
|
|---|
| 1581 |
|
|---|
| 1582 | const FTM::DimFtuList &sdata = d.ref<FTM::DimFtuList>();
|
|---|
| 1583 |
|
|---|
| 1584 | stringstream str;
|
|---|
| 1585 | str << "<table width='100%'>" << setfill('0');
|
|---|
| 1586 | str << "<tr><th>Num</th><th></th><th>Addr</th><th></th><th>DNA</th></tr>";
|
|---|
| 1587 | for (int i=0; i<40; i++)
|
|---|
| 1588 | {
|
|---|
| 1589 | str << "<tr>";
|
|---|
| 1590 | str << "<td align='center'>" << dec << i << hex << "</td>";
|
|---|
| 1591 | str << "<td align='center'>:</td>";
|
|---|
| 1592 | str << "<td align='center'>0x" << setw(2) << (int)sdata.fAddr[i] << "</td>";
|
|---|
| 1593 | str << "<td align='center'>:</td>";
|
|---|
| 1594 | str << "<td align='center'>0x" << setw(16) << sdata.fDNA[i] << "</td>";
|
|---|
| 1595 | str << "</tr>";
|
|---|
| 1596 | }
|
|---|
| 1597 | str << "</table>";
|
|---|
| 1598 |
|
|---|
| 1599 | fFtuDNA->setText(str.str().c_str());
|
|---|
| 1600 |
|
|---|
| 1601 | fFtuAnswersTotal->setValue(sdata.fNumBoards);
|
|---|
| 1602 | fFtuAnswersCrate0->setValue(sdata.fNumBoardsCrate[0]);
|
|---|
| 1603 | fFtuAnswersCrate1->setValue(sdata.fNumBoardsCrate[1]);
|
|---|
| 1604 | fFtuAnswersCrate2->setValue(sdata.fNumBoardsCrate[2]);
|
|---|
| 1605 | fFtuAnswersCrate3->setValue(sdata.fNumBoardsCrate[3]);
|
|---|
| 1606 |
|
|---|
| 1607 | for (int i=0; i<40; i++)
|
|---|
| 1608 | SetFtuLed(i, sdata.IsActive(i) ? sdata.fPing[i] : -1, d.time);
|
|---|
| 1609 |
|
|---|
| 1610 | SetFtuStatusLed(d.time);
|
|---|
| 1611 | }
|
|---|
| 1612 |
|
|---|
| 1613 | void handleFtmError(const DimData &d)
|
|---|
| 1614 | {
|
|---|
| 1615 | if (!CheckSize(d, sizeof(FTM::DimError)))
|
|---|
| 1616 | return;
|
|---|
| 1617 |
|
|---|
| 1618 | const FTM::DimError &sdata = d.ref<FTM::DimError>();
|
|---|
| 1619 |
|
|---|
| 1620 | SetFtuLed(sdata.fError.fDestAddress , sdata.fError.fNumCalls, d.time);
|
|---|
| 1621 | SetFtuStatusLed(d.time);
|
|---|
| 1622 |
|
|---|
| 1623 | // FIXME: Write to special window!
|
|---|
| 1624 | //Out() << "Error:" << endl;
|
|---|
| 1625 | //Out() << sdata.fError << endl;
|
|---|
| 1626 | }
|
|---|
| 1627 |
|
|---|
| 1628 | // ====================== MessageImp ====================================
|
|---|
| 1629 |
|
|---|
| 1630 | bool fChatOnline;
|
|---|
| 1631 |
|
|---|
| 1632 | void handleStateChanged(const Time &time, const std::string &server,
|
|---|
| 1633 | const State &s)
|
|---|
| 1634 | {
|
|---|
| 1635 | // FIXME: Prefix tooltip with time
|
|---|
| 1636 | if (server=="FTM_CONTROL")
|
|---|
| 1637 | {
|
|---|
| 1638 | // FIXME: Enable FTU page!!!
|
|---|
| 1639 | fStatusFTMLabel->setText(s.name.c_str());
|
|---|
| 1640 | fStatusFTMLabel->setToolTip(s.comment.c_str());
|
|---|
| 1641 |
|
|---|
| 1642 | bool enable = false;
|
|---|
| 1643 |
|
|---|
| 1644 | if (s.index<FTM::kDisconnected) // No Dim connection
|
|---|
| 1645 | SetLedColor(fStatusFTMLed, kLedGray, time);
|
|---|
| 1646 | if (s.index==FTM::kDisconnected) // Dim connection / FTM disconnected
|
|---|
| 1647 | SetLedColor(fStatusFTMLed, kLedYellow, time);
|
|---|
| 1648 | if (s.index==FTM::kConnected || s.index==FTM::kIdle || s.index==FTM::kTakingData) // Dim connection / FTM connected
|
|---|
| 1649 | SetLedColor(fStatusFTMLed, kLedGreen, time);
|
|---|
| 1650 |
|
|---|
| 1651 | if (s.index==FTM::kConnected || s.index==FTM::kIdle) // Dim connection / FTM connected
|
|---|
| 1652 | enable = true;
|
|---|
| 1653 |
|
|---|
| 1654 | fTriggerWidget->setEnabled(enable);
|
|---|
| 1655 | fFtuWidget->setEnabled(enable);
|
|---|
| 1656 | fRatesWidget->setEnabled(enable);
|
|---|
| 1657 |
|
|---|
| 1658 | if (!enable)
|
|---|
| 1659 | {
|
|---|
| 1660 | SetLedColor(fStatusFTULed, kLedGray, time);
|
|---|
| 1661 | fStatusFTULabel->setText("Offline");
|
|---|
| 1662 | fStatusFTULabel->setToolTip("FTM is not online.");
|
|---|
| 1663 | }
|
|---|
| 1664 | }
|
|---|
| 1665 |
|
|---|
| 1666 | if (server=="FAD_CONTROL")
|
|---|
| 1667 | {
|
|---|
| 1668 | fStatusFADLabel->setText(s.name.c_str());
|
|---|
| 1669 | fStatusFADLabel->setToolTip(s.comment.c_str());
|
|---|
| 1670 |
|
|---|
| 1671 | bool enable = false;
|
|---|
| 1672 |
|
|---|
| 1673 | if (s.index<FAD::kDisconnected) // No Dim connection
|
|---|
| 1674 | SetLedColor(fStatusFADLed, kLedGray, time);
|
|---|
| 1675 | if (s.index==FAD::kOffline) // Dim connection / FTM disconnected
|
|---|
| 1676 | SetLedColor(fStatusFADLed, kLedRed, time);
|
|---|
| 1677 | if (s.index==FAD::kDisconnected) // Dim connection / FTM disconnected
|
|---|
| 1678 | SetLedColor(fStatusFADLed, kLedOrange, time);
|
|---|
| 1679 | if (s.index==FAD::kConnecting) // Dim connection / FTM disconnected
|
|---|
| 1680 | {
|
|---|
| 1681 | SetLedColor(fStatusFADLed, kLedYellow, time);
|
|---|
| 1682 | // FIXME FIXME FIXME: The LEDs are not displayed when disabled!
|
|---|
| 1683 | enable = true;
|
|---|
| 1684 | }
|
|---|
| 1685 | if (s.index>=FAD::kConnected) // Dim connection / FTM connected
|
|---|
| 1686 | {
|
|---|
| 1687 | SetLedColor(fStatusFADLed, kLedGreen, time);
|
|---|
| 1688 | enable = true;
|
|---|
| 1689 | }
|
|---|
| 1690 |
|
|---|
| 1691 | fFadWidget->setEnabled(enable);
|
|---|
| 1692 | }
|
|---|
| 1693 |
|
|---|
| 1694 | if (server=="FSC_CONTROL")
|
|---|
| 1695 | {
|
|---|
| 1696 | fStatusFSCLabel->setText(s.name.c_str());
|
|---|
| 1697 | fStatusFSCLabel->setToolTip(s.comment.c_str());
|
|---|
| 1698 |
|
|---|
| 1699 | bool enable = false;
|
|---|
| 1700 |
|
|---|
| 1701 | if (s.index<1) // No Dim connection
|
|---|
| 1702 | SetLedColor(fStatusFSCLed, kLedGray, time);
|
|---|
| 1703 | if (s.index==1) // Dim connection / FTM disconnected
|
|---|
| 1704 | SetLedColor(fStatusFSCLed, kLedRed, time);
|
|---|
| 1705 | if (s.index>=2) // Dim connection / FTM disconnected
|
|---|
| 1706 | {
|
|---|
| 1707 | SetLedColor(fStatusFSCLed, kLedGreen, time);
|
|---|
| 1708 | enable = true;
|
|---|
| 1709 | }
|
|---|
| 1710 |
|
|---|
| 1711 | //fFscWidget->setEnabled(enable);
|
|---|
| 1712 | }
|
|---|
| 1713 |
|
|---|
| 1714 | if (server=="DATA_LOGGER")
|
|---|
| 1715 | {
|
|---|
| 1716 | fStatusLoggerLabel->setText(s.name.c_str());
|
|---|
| 1717 | fStatusLoggerLabel->setToolTip(s.comment.c_str());
|
|---|
| 1718 |
|
|---|
| 1719 | bool enable = true;
|
|---|
| 1720 |
|
|---|
| 1721 | if (s.index<=30) // Ready/Waiting
|
|---|
| 1722 | SetLedColor(fStatusLoggerLed, kLedYellow, time);
|
|---|
| 1723 | if (s.index<-1) // Offline
|
|---|
| 1724 | {
|
|---|
| 1725 | SetLedColor(fStatusLoggerLed, kLedGray, time);
|
|---|
| 1726 | enable = false;
|
|---|
| 1727 | }
|
|---|
| 1728 | if (s.index>=0x100) // Error
|
|---|
| 1729 | SetLedColor(fStatusLoggerLed, kLedRed, time);
|
|---|
| 1730 | if (s.index==40) // Logging
|
|---|
| 1731 | SetLedColor(fStatusLoggerLed, kLedGreen, time);
|
|---|
| 1732 |
|
|---|
| 1733 | fLoggerWidget->setEnabled(enable);
|
|---|
| 1734 | }
|
|---|
| 1735 |
|
|---|
| 1736 | if (server=="CHAT")
|
|---|
| 1737 | {
|
|---|
| 1738 | fStatusChatLabel->setText(s.name.c_str());
|
|---|
| 1739 |
|
|---|
| 1740 | fChatOnline = s.index==0;
|
|---|
| 1741 |
|
|---|
| 1742 | SetLedColor(fStatusChatLed, fChatOnline ? kLedGreen : kLedGray, time);
|
|---|
| 1743 |
|
|---|
| 1744 | fChatSend->setEnabled(fChatOnline);
|
|---|
| 1745 | fChatMessage->setEnabled(fChatOnline);
|
|---|
| 1746 | }
|
|---|
| 1747 |
|
|---|
| 1748 | if (server=="SCHEDULER")
|
|---|
| 1749 | {
|
|---|
| 1750 | fStatusSchedulerLabel->setText(s.name.c_str());
|
|---|
| 1751 |
|
|---|
| 1752 | SetLedColor(fStatusSchedulerLed, s.index>=0 ? kLedGreen : kLedRed, time);
|
|---|
| 1753 | }
|
|---|
| 1754 | }
|
|---|
| 1755 |
|
|---|
| 1756 | void handleStateOffline(const string &server)
|
|---|
| 1757 | {
|
|---|
| 1758 | handleStateChanged(Time(), server, State(-2, "Offline", "No connection via DIM."));
|
|---|
| 1759 | }
|
|---|
| 1760 |
|
|---|
| 1761 | void on_fTabWidget_currentChanged(int which)
|
|---|
| 1762 | {
|
|---|
| 1763 | if (fTabWidget->tabText(which)=="Chat")
|
|---|
| 1764 | fTabWidget->setTabIcon(which, QIcon());
|
|---|
| 1765 | }
|
|---|
| 1766 |
|
|---|
| 1767 | void handleWrite(const Time &time, const string &text, int qos)
|
|---|
| 1768 | {
|
|---|
| 1769 | stringstream out;
|
|---|
| 1770 |
|
|---|
| 1771 | if (text.substr(0, 6)=="CHAT: ")
|
|---|
| 1772 | {
|
|---|
| 1773 | if (qos==MessageImp::kDebug)
|
|---|
| 1774 | return;
|
|---|
| 1775 |
|
|---|
| 1776 | out << "<font size='-1' color='navy'>[<B>";
|
|---|
| 1777 | out << Time::fmt("%H:%M:%S") << time << "</B>]</FONT> ";
|
|---|
| 1778 | out << text.substr(6);
|
|---|
| 1779 | fChatText->append(out.str().c_str());
|
|---|
| 1780 |
|
|---|
| 1781 | if (fTabWidget->tabText(fTabWidget->currentIndex())=="Chat")
|
|---|
| 1782 | return;
|
|---|
| 1783 |
|
|---|
| 1784 | static int num = 0;
|
|---|
| 1785 | if (num++<2)
|
|---|
| 1786 | return;
|
|---|
| 1787 |
|
|---|
| 1788 | for (int i=0; i<fTabWidget->count(); i++)
|
|---|
| 1789 | if (fTabWidget->tabText(i)=="Chat")
|
|---|
| 1790 | {
|
|---|
| 1791 | fTabWidget->setTabIcon(i, QIcon(":/Resources/icons/warning 3.png"));
|
|---|
| 1792 | break;
|
|---|
| 1793 | }
|
|---|
| 1794 |
|
|---|
| 1795 | return;
|
|---|
| 1796 | }
|
|---|
| 1797 |
|
|---|
| 1798 |
|
|---|
| 1799 | out << "<font style='font-family:monospace' color='";
|
|---|
| 1800 |
|
|---|
| 1801 | switch (qos)
|
|---|
| 1802 | {
|
|---|
| 1803 | case kMessage: out << "black"; break;
|
|---|
| 1804 | case kInfo: out << "green"; break;
|
|---|
| 1805 | case kWarn: out << "#FF6600"; break;
|
|---|
| 1806 | case kError: out << "maroon"; break;
|
|---|
| 1807 | case kFatal: out << "maroon"; break;
|
|---|
| 1808 | case kDebug: out << "navy"; break;
|
|---|
| 1809 | default: out << "navy"; break;
|
|---|
| 1810 | }
|
|---|
| 1811 | out << "'>" << time.GetAsStr() << " - " << text << "</font>";
|
|---|
| 1812 |
|
|---|
| 1813 | fLogText->append(out.str().c_str());
|
|---|
| 1814 |
|
|---|
| 1815 | if (qos>=kWarn)
|
|---|
| 1816 | fTextEdit->append(out.str().c_str());
|
|---|
| 1817 | }
|
|---|
| 1818 |
|
|---|
| 1819 | void IndicateStateChange(const Time &time, const std::string &server)
|
|---|
| 1820 | {
|
|---|
| 1821 | const State s = GetState(server, GetCurrentState(server));
|
|---|
| 1822 |
|
|---|
| 1823 | QApplication::postEvent(this,
|
|---|
| 1824 | new FunctionEvent(boost::bind(&FactGui::handleStateChanged, this, time, server, s)));
|
|---|
| 1825 | }
|
|---|
| 1826 |
|
|---|
| 1827 | int Write(const Time &time, const string &txt, int qos)
|
|---|
| 1828 | {
|
|---|
| 1829 | QApplication::postEvent(this,
|
|---|
| 1830 | new FunctionEvent(boost::bind(&FactGui::handleWrite, this, time, txt, qos)));
|
|---|
| 1831 |
|
|---|
| 1832 | return 0;
|
|---|
| 1833 | }
|
|---|
| 1834 |
|
|---|
| 1835 | // ====================== Dim infoHandler================================
|
|---|
| 1836 |
|
|---|
| 1837 | void handleDimService(const string &txt)
|
|---|
| 1838 | {
|
|---|
| 1839 | fDimSvcText->append(txt.c_str());
|
|---|
| 1840 | }
|
|---|
| 1841 |
|
|---|
| 1842 | void infoHandlerService(DimInfo &info)
|
|---|
| 1843 | {
|
|---|
| 1844 | const string fmt = string(info.getFormat()).empty() ? "C" : info.getFormat();
|
|---|
| 1845 |
|
|---|
| 1846 | stringstream dummy;
|
|---|
| 1847 | const Converter conv(dummy, fmt, false);
|
|---|
| 1848 |
|
|---|
| 1849 | const Time tm(info.getTimestamp(), info.getTimestampMillisecs()*1000);
|
|---|
| 1850 |
|
|---|
| 1851 | stringstream out;
|
|---|
| 1852 | out << "<font size'-1' color='navy'>[" << Time::fmt("%H:%M:%S.%f") << tm << "]</font> <B>" << info.getName() << "</B> - ";
|
|---|
| 1853 |
|
|---|
| 1854 | bool iserr = true;
|
|---|
| 1855 | if (!conv)
|
|---|
| 1856 | {
|
|---|
| 1857 | out << "Compilation of format string '" << fmt << "' failed!";
|
|---|
| 1858 | }
|
|---|
| 1859 | else
|
|---|
| 1860 | {
|
|---|
| 1861 | try
|
|---|
| 1862 | {
|
|---|
| 1863 | const string dat = conv.GetString(info.getData(), info.getSize());
|
|---|
| 1864 | out << dat;
|
|---|
| 1865 | iserr = false;
|
|---|
| 1866 | }
|
|---|
| 1867 | catch (const runtime_error &e)
|
|---|
| 1868 | {
|
|---|
| 1869 | out << "Conversion to string failed!<pre>" << e.what() << "</pre>";
|
|---|
| 1870 | }
|
|---|
| 1871 | }
|
|---|
| 1872 |
|
|---|
| 1873 | // srand(hash<string>()(string(info.getName())));
|
|---|
| 1874 | // int bg = rand()&0xffffff;
|
|---|
| 1875 |
|
|---|
| 1876 | int bg = hash<string>()(string(info.getName()));
|
|---|
| 1877 |
|
|---|
| 1878 | // allow only light colors
|
|---|
| 1879 | bg = ~(bg&0x1f1f1f)&0xffffff;
|
|---|
| 1880 |
|
|---|
| 1881 | if (iserr)
|
|---|
| 1882 | bg = 0xffffff;
|
|---|
| 1883 |
|
|---|
| 1884 | stringstream bgcol;
|
|---|
| 1885 | bgcol << hex << setfill('0') << setw(6) << bg;
|
|---|
| 1886 |
|
|---|
| 1887 | const string col = iserr ? "red" : "black";
|
|---|
| 1888 | const string str = "<table width='100%' bgcolor=#"+bgcol.str()+"><tr><td><font color='"+col+"'>"+out.str()+"</font></td></tr></table>";
|
|---|
| 1889 |
|
|---|
| 1890 | QApplication::postEvent(this,
|
|---|
| 1891 | new FunctionEvent(boost::bind(&FactGui::handleDimService, this, str)));
|
|---|
| 1892 | }
|
|---|
| 1893 |
|
|---|
| 1894 | void CallInfoHandler(void (FactGui::*handler)(const DimData&), const DimData &d)
|
|---|
| 1895 | {
|
|---|
| 1896 | fInHandler = true;
|
|---|
| 1897 | (this->*handler)(d);
|
|---|
| 1898 | fInHandler = false;
|
|---|
| 1899 | }
|
|---|
| 1900 |
|
|---|
| 1901 | /*
|
|---|
| 1902 | void CallInfoHandler(const boost::function<void()> &func)
|
|---|
| 1903 | {
|
|---|
| 1904 | // This ensures that newly received values are not sent back to the emitter
|
|---|
| 1905 | // because changing the value emits the valueChanged signal (or similar)
|
|---|
| 1906 | fInHandler = true;
|
|---|
| 1907 | func();
|
|---|
| 1908 | fInHandler = false;
|
|---|
| 1909 | }*/
|
|---|
| 1910 |
|
|---|
| 1911 | void PostInfoHandler(void (FactGui::*handler)(const DimData&))
|
|---|
| 1912 | {
|
|---|
| 1913 | //const boost::function<void()> f = boost::bind(handler, this, DimData(getInfo()));
|
|---|
| 1914 |
|
|---|
| 1915 | FunctionEvent *evt = new FunctionEvent(boost::bind(&FactGui::CallInfoHandler, this, handler, DimData(getInfo())));
|
|---|
| 1916 | // FunctionEvent *evt = new FunctionEvent(boost::bind(&FactGui::CallInfoHandler, this, f));
|
|---|
| 1917 | // FunctionEvent *evt = new FunctionEvent(boost::bind(handler, this, DimData(getInfo()))));
|
|---|
| 1918 |
|
|---|
| 1919 | QApplication::postEvent(this, evt);
|
|---|
| 1920 | }
|
|---|
| 1921 |
|
|---|
| 1922 | void infoHandler()
|
|---|
| 1923 | {
|
|---|
| 1924 | // Initialize the time-stamp (what a weird workaround...)
|
|---|
| 1925 | if (getInfo())
|
|---|
| 1926 | getInfo()->getTimestamp();
|
|---|
| 1927 |
|
|---|
| 1928 | if (getInfo()==&fDimDNS)
|
|---|
| 1929 | return PostInfoHandler(&FactGui::handleDimDNS);
|
|---|
| 1930 | #ifdef DEBUG_DIM
|
|---|
| 1931 | cout << "HandleDimInfo " << getInfo()->getName() << endl;
|
|---|
| 1932 | #endif
|
|---|
| 1933 | if (getInfo()==&fDimLoggerStats)
|
|---|
| 1934 | return PostInfoHandler(&FactGui::handleLoggerStats);
|
|---|
| 1935 |
|
|---|
| 1936 | if (getInfo()==&fDimFadFiles)
|
|---|
| 1937 | return PostInfoHandler(&FactGui::handleFadFiles);
|
|---|
| 1938 |
|
|---|
| 1939 | if (getInfo()==&fDimFadConnections)
|
|---|
| 1940 | return PostInfoHandler(&FactGui::handleFadConnections);
|
|---|
| 1941 |
|
|---|
| 1942 | if (getInfo()==&fDimFadFwVersion)
|
|---|
| 1943 | return PostInfoHandler(&FactGui::handleFadFwVersion);
|
|---|
| 1944 |
|
|---|
| 1945 | if (getInfo()==&fDimFadPllLock)
|
|---|
| 1946 | return PostInfoHandler(&FactGui::handleFadPllLock);
|
|---|
| 1947 |
|
|---|
| 1948 | if (getInfo()==&fDimFadStatistics)
|
|---|
| 1949 | return PostInfoHandler(&FactGui::handleFadStatistics);
|
|---|
| 1950 |
|
|---|
| 1951 | if (getInfo()==&fDimFadEvents)
|
|---|
| 1952 | return PostInfoHandler(&FactGui::handleFadEvents);
|
|---|
| 1953 |
|
|---|
| 1954 | if (getInfo()==&fDimFadRuns)
|
|---|
| 1955 | return PostInfoHandler(&FactGui::handleFadRuns);
|
|---|
| 1956 |
|
|---|
| 1957 | if (getInfo()==&fDimFadCurrentEvent)
|
|---|
| 1958 | return PostInfoHandler(&FactGui::handleFadCurrentEvent);
|
|---|
| 1959 |
|
|---|
| 1960 | if (getInfo()==&fDimFadEventData)
|
|---|
| 1961 | return PostInfoHandler(&FactGui::handleFadEventData);
|
|---|
| 1962 |
|
|---|
| 1963 | /*
|
|---|
| 1964 | if (getInfo()==&fDimFadSetup)
|
|---|
| 1965 | return PostInfoHandler(&FactGui::handleFadSetup);
|
|---|
| 1966 | */
|
|---|
| 1967 | if (getInfo()==&fDimLoggerFilenameNight)
|
|---|
| 1968 | return PostInfoHandler(&FactGui::handleLoggerFilenameNight);
|
|---|
| 1969 |
|
|---|
| 1970 | if (getInfo()==&fDimLoggerNumSubs)
|
|---|
| 1971 | return PostInfoHandler(&FactGui::handleLoggerNumSubs);
|
|---|
| 1972 |
|
|---|
| 1973 | if (getInfo()==&fDimLoggerFilenameRun)
|
|---|
| 1974 | return PostInfoHandler(&FactGui::handleLoggerFilenameRun);
|
|---|
| 1975 |
|
|---|
| 1976 | if (getInfo()==&fDimFtmTriggerCounter)
|
|---|
| 1977 | return PostInfoHandler(&FactGui::handleFtmTriggerCounter);
|
|---|
| 1978 |
|
|---|
| 1979 | if (getInfo()==&fDimFtmCounter)
|
|---|
| 1980 | return PostInfoHandler(&FactGui::handleFtmCounter);
|
|---|
| 1981 |
|
|---|
| 1982 | if (getInfo()==&fDimFtmDynamicData)
|
|---|
| 1983 | return PostInfoHandler(&FactGui::handleFtmDynamicData);
|
|---|
| 1984 |
|
|---|
| 1985 | if (getInfo()==&fDimFtmPassport)
|
|---|
| 1986 | return PostInfoHandler(&FactGui::handleFtmPassport);
|
|---|
| 1987 |
|
|---|
| 1988 | if (getInfo()==&fDimFtmFtuList)
|
|---|
| 1989 | return PostInfoHandler(&FactGui::handleFtmFtuList);
|
|---|
| 1990 |
|
|---|
| 1991 | if (getInfo()==&fDimFtmStaticData)
|
|---|
| 1992 | return PostInfoHandler(&FactGui::handleFtmStaticData);
|
|---|
| 1993 |
|
|---|
| 1994 | if (getInfo()==&fDimFtmError)
|
|---|
| 1995 | return PostInfoHandler(&FactGui::handleFtmError);
|
|---|
| 1996 |
|
|---|
| 1997 | if (getInfo()==&fDimFadFiles)
|
|---|
| 1998 | return PostInfoHandler(&FactGui::handleFadFiles);
|
|---|
| 1999 |
|
|---|
| 2000 | for (map<string,DimInfo*>::iterator i=fServices.begin(); i!=fServices.end(); i++)
|
|---|
| 2001 | if (i->second==getInfo())
|
|---|
| 2002 | {
|
|---|
| 2003 | infoHandlerService(*i->second);
|
|---|
| 2004 | return;
|
|---|
| 2005 | }
|
|---|
| 2006 |
|
|---|
| 2007 | DimNetwork::infoHandler();
|
|---|
| 2008 | }
|
|---|
| 2009 |
|
|---|
| 2010 |
|
|---|
| 2011 | // ======================================================================
|
|---|
| 2012 |
|
|---|
| 2013 | bool event(QEvent *evt)
|
|---|
| 2014 | {
|
|---|
| 2015 | if (dynamic_cast<FunctionEvent*>(evt))
|
|---|
| 2016 | return static_cast<FunctionEvent*>(evt)->Exec();
|
|---|
| 2017 |
|
|---|
| 2018 | if (dynamic_cast<CheckBoxEvent*>(evt))
|
|---|
| 2019 | {
|
|---|
| 2020 | const QStandardItem &item = static_cast<CheckBoxEvent*>(evt)->item;
|
|---|
| 2021 | const QStandardItem *par = item.parent();
|
|---|
| 2022 | if (par)
|
|---|
| 2023 | {
|
|---|
| 2024 | const QString server = par->text();
|
|---|
| 2025 | const QString service = item.text();
|
|---|
| 2026 |
|
|---|
| 2027 | const string s = (server+'/'+service).toStdString();
|
|---|
| 2028 |
|
|---|
| 2029 | if (item.checkState()==Qt::Checked)
|
|---|
| 2030 | SubscribeService(s);
|
|---|
| 2031 | else
|
|---|
| 2032 | UnsubscribeService(s);
|
|---|
| 2033 | }
|
|---|
| 2034 | }
|
|---|
| 2035 |
|
|---|
| 2036 | return MainWindow::event(evt); // unrecognized
|
|---|
| 2037 | }
|
|---|
| 2038 |
|
|---|
| 2039 | void on_fDimCmdSend_clicked()
|
|---|
| 2040 | {
|
|---|
| 2041 | const QString server = fDimCmdServers->currentIndex().data().toString();
|
|---|
| 2042 | const QString command = fDimCmdCommands->currentIndex().data().toString();
|
|---|
| 2043 | const QString arguments = fDimCmdLineEdit->displayText();
|
|---|
| 2044 |
|
|---|
| 2045 | // FIXME: Sending a command exactly when the info Handler changes
|
|---|
| 2046 | // the list it might lead to confusion.
|
|---|
| 2047 | try
|
|---|
| 2048 | {
|
|---|
| 2049 | SendDimCommand(server.toStdString(), command.toStdString()+" "+arguments.toStdString());
|
|---|
| 2050 | fTextEdit->append("<font color='green'>Command '"+server+'/'+command+"' successfully emitted.</font>");
|
|---|
| 2051 | fDimCmdLineEdit->clear();
|
|---|
| 2052 | }
|
|---|
| 2053 | catch (const runtime_error &e)
|
|---|
| 2054 | {
|
|---|
| 2055 | stringstream txt;
|
|---|
| 2056 | txt << e.what();
|
|---|
| 2057 |
|
|---|
| 2058 | string buffer;
|
|---|
| 2059 | while (getline(txt, buffer, '\n'))
|
|---|
| 2060 | fTextEdit->append(("<font color='red'><pre>"+buffer+"</pre></font>").c_str());
|
|---|
| 2061 | }
|
|---|
| 2062 | }
|
|---|
| 2063 |
|
|---|
| 2064 | #ifdef HAVE_ROOT
|
|---|
| 2065 | void slot_RootEventProcessed(TObject *obj, unsigned int evt, TCanvas *canv)
|
|---|
| 2066 | {
|
|---|
| 2067 | // kMousePressEvent // TCanvas processed QEvent mousePressEvent
|
|---|
| 2068 | // kMouseMoveEvent // TCanvas processed QEvent mouseMoveEvent
|
|---|
| 2069 | // kMouseReleaseEvent // TCanvas processed QEvent mouseReleaseEvent
|
|---|
| 2070 | // kMouseDoubleClickEvent // TCanvas processed QEvent mouseDoubleClickEvent
|
|---|
| 2071 | // kKeyPressEvent // TCanvas processed QEvent keyPressEvent
|
|---|
| 2072 | // kEnterEvent // TCanvas processed QEvent enterEvent
|
|---|
| 2073 | // kLeaveEvent // TCanvas processed QEvent leaveEvent
|
|---|
| 2074 | if (dynamic_cast<TCanvas*>(obj))
|
|---|
| 2075 | return;
|
|---|
| 2076 |
|
|---|
| 2077 | TQtWidget *tipped = static_cast<TQtWidget*>(sender());
|
|---|
| 2078 |
|
|---|
| 2079 | if (evt==11/*kMouseReleaseEvent*/)
|
|---|
| 2080 | {
|
|---|
| 2081 | if (dynamic_cast<Camera*>(obj))
|
|---|
| 2082 | {
|
|---|
| 2083 | const float xx = canv->AbsPixeltoX(tipped->GetEventX());
|
|---|
| 2084 | const float yy = canv->AbsPixeltoY(tipped->GetEventY());
|
|---|
| 2085 |
|
|---|
| 2086 | Camera *cam = static_cast<Camera*>(obj);
|
|---|
| 2087 | const int isw = cam->GetIdx(xx, yy);
|
|---|
| 2088 |
|
|---|
| 2089 | fPixelIdx->setValue(isw);
|
|---|
| 2090 | ChoosePixel(*cam, isw);
|
|---|
| 2091 | }
|
|---|
| 2092 | return;
|
|---|
| 2093 | }
|
|---|
| 2094 |
|
|---|
| 2095 | if (evt==61/*kMouseDoubleClickEvent*/)
|
|---|
| 2096 | {
|
|---|
| 2097 | if (dynamic_cast<Camera*>(obj))
|
|---|
| 2098 | {
|
|---|
| 2099 | const float xx = canv->AbsPixeltoX(tipped->GetEventX());
|
|---|
| 2100 | const float yy = canv->AbsPixeltoY(tipped->GetEventY());
|
|---|
| 2101 |
|
|---|
| 2102 | Camera *cam = static_cast<Camera*>(obj);
|
|---|
| 2103 | const int isw = cam->GetIdx(xx, yy);
|
|---|
| 2104 |
|
|---|
| 2105 | ChoosePixel(*cam, isw);
|
|---|
| 2106 |
|
|---|
| 2107 | fPixelIdx->setValue(isw);
|
|---|
| 2108 |
|
|---|
| 2109 | const uint16_t ihw = fPixelMapHW[isw];
|
|---|
| 2110 |
|
|---|
| 2111 | Dim::SendCommand("FTM_CONTROL/TOGGLE_PIXEL", ihw);
|
|---|
| 2112 | }
|
|---|
| 2113 |
|
|---|
| 2114 | if (dynamic_cast<TAxis*>(obj))
|
|---|
| 2115 | static_cast<TAxis*>(obj)->UnZoom();
|
|---|
| 2116 |
|
|---|
| 2117 | return;
|
|---|
| 2118 | }
|
|---|
| 2119 |
|
|---|
| 2120 | // Find the object which will get picked by the GetObjectInfo
|
|---|
| 2121 | // due to buffer overflows in many root-versions
|
|---|
| 2122 | // in TH1 and TProfile we have to work around and implement
|
|---|
| 2123 | // our own GetObjectInfo which make everything a bit more
|
|---|
| 2124 | // complicated.
|
|---|
| 2125 | canv->cd();
|
|---|
| 2126 | #if ROOT_VERSION_CODE > ROOT_VERSION(5,22,00)
|
|---|
| 2127 | const char *objectInfo =
|
|---|
| 2128 | obj->GetObjectInfo(tipped->GetEventX(),tipped->GetEventY());
|
|---|
| 2129 | #else
|
|---|
| 2130 | const char *objectInfo = dynamic_cast<TH1*>(obj) ?
|
|---|
| 2131 | "" : obj->GetObjectInfo(tipped->GetEventX(),tipped->GetEventY());
|
|---|
| 2132 | #endif
|
|---|
| 2133 |
|
|---|
| 2134 | QString tipText;
|
|---|
| 2135 | tipText += obj->GetName();
|
|---|
| 2136 | tipText += " [";
|
|---|
| 2137 | tipText += obj->ClassName();
|
|---|
| 2138 | tipText += "]: ";
|
|---|
| 2139 | tipText += objectInfo;
|
|---|
| 2140 |
|
|---|
| 2141 | if (dynamic_cast<Camera*>(obj))
|
|---|
| 2142 | {
|
|---|
| 2143 | const float xx = canv->AbsPixeltoX(tipped->GetEventX());
|
|---|
| 2144 | const float yy = canv->AbsPixeltoY(tipped->GetEventY());
|
|---|
| 2145 |
|
|---|
| 2146 | Camera *cam = static_cast<Camera*>(obj);
|
|---|
| 2147 |
|
|---|
| 2148 | const int isw = cam->GetIdx(xx, yy);
|
|---|
| 2149 | const int ihw = fPixelMapHW[isw];
|
|---|
| 2150 |
|
|---|
| 2151 | const int idx = fPatchHW[isw];
|
|---|
| 2152 |
|
|---|
| 2153 | int ii = 0;
|
|---|
| 2154 | for (; ii<160; ii++)
|
|---|
| 2155 | if (idx==fPatchMapHW[ii])
|
|---|
| 2156 | break;
|
|---|
| 2157 |
|
|---|
| 2158 |
|
|---|
| 2159 | const int patch = ihw%4;
|
|---|
| 2160 | const int board = (ihw/4)%10;
|
|---|
| 2161 | const int crate = (ihw/4)/10;
|
|---|
| 2162 |
|
|---|
| 2163 | ostringstream str;
|
|---|
| 2164 | str << " (hw=" << ihw << ") Patch=" << ii << " (hw=" << fPatchMapHW[idx] << "; Crate=" << crate << " Board=" << board << " Patch=" << patch << ")";
|
|---|
| 2165 |
|
|---|
| 2166 | tipText += str.str().c_str();
|
|---|
| 2167 | }
|
|---|
| 2168 |
|
|---|
| 2169 |
|
|---|
| 2170 | fStatusBar->showMessage(tipText, 3000);
|
|---|
| 2171 |
|
|---|
| 2172 | gSystem->ProcessEvents();
|
|---|
| 2173 | //QWhatsThis::display(tipText)
|
|---|
| 2174 | }
|
|---|
| 2175 |
|
|---|
| 2176 | void slot_RootUpdate()
|
|---|
| 2177 | {
|
|---|
| 2178 | gSystem->ProcessEvents();
|
|---|
| 2179 | QTimer::singleShot(0, this, SLOT(slot_RootUpdate()));
|
|---|
| 2180 | }
|
|---|
| 2181 |
|
|---|
| 2182 | void ChoosePatch(Camera &cam, int isw)
|
|---|
| 2183 | {
|
|---|
| 2184 | cam.Reset();
|
|---|
| 2185 |
|
|---|
| 2186 | fThresholdIdx->setValue(isw);
|
|---|
| 2187 |
|
|---|
| 2188 | const int ihw = isw<0 ? 0 : fPatchMapHW[isw];
|
|---|
| 2189 |
|
|---|
| 2190 | fPatchRate->setEnabled(isw>=0);
|
|---|
| 2191 | fThresholdCrate->setEnabled(isw>=0);
|
|---|
| 2192 | fThresholdBoard->setEnabled(isw>=0);
|
|---|
| 2193 | fThresholdPatch->setEnabled(isw>=0);
|
|---|
| 2194 |
|
|---|
| 2195 | if (isw<0)
|
|---|
| 2196 | return;
|
|---|
| 2197 |
|
|---|
| 2198 | const int patch = ihw%4;
|
|---|
| 2199 | const int board = (ihw/4)%10;
|
|---|
| 2200 | const int crate = (ihw/4)/10;
|
|---|
| 2201 |
|
|---|
| 2202 | fInChoosePatch = true;
|
|---|
| 2203 |
|
|---|
| 2204 | fThresholdCrate->setValue(crate);
|
|---|
| 2205 | fThresholdBoard->setValue(board);
|
|---|
| 2206 | fThresholdPatch->setValue(patch);
|
|---|
| 2207 |
|
|---|
| 2208 | fInChoosePatch = false;
|
|---|
| 2209 |
|
|---|
| 2210 | fThresholdVal->setValue(fFtmStaticData.fThreshold[ihw]);
|
|---|
| 2211 | fPatchRate->setValue(cam.GetData(isw));
|
|---|
| 2212 |
|
|---|
| 2213 | // Loop over the software idx of all pixels
|
|---|
| 2214 | for (unsigned int i=0; i<1440; i++)
|
|---|
| 2215 | if (fPatchHW[i]==ihw)
|
|---|
| 2216 | cam.SetBold(i);
|
|---|
| 2217 | }
|
|---|
| 2218 |
|
|---|
| 2219 | void ChoosePixel(Camera &cam, int isw)
|
|---|
| 2220 | {
|
|---|
| 2221 | const int ihw = fPixelMapHW[isw];
|
|---|
| 2222 |
|
|---|
| 2223 | int ii = 0;
|
|---|
| 2224 | for (; ii<160; ii++)
|
|---|
| 2225 | if (fPatchHW[isw]==fPatchMapHW[ii])
|
|---|
| 2226 | break;
|
|---|
| 2227 |
|
|---|
| 2228 | cam.SetWhite(isw);
|
|---|
| 2229 | ChoosePatch(cam, ii);
|
|---|
| 2230 |
|
|---|
| 2231 | const bool on = fFtmStaticData.IsEnabled(ihw);
|
|---|
| 2232 | fPixelEnable->setChecked(on);
|
|---|
| 2233 | }
|
|---|
| 2234 |
|
|---|
| 2235 | void UpdatePatch(int isw)
|
|---|
| 2236 | {
|
|---|
| 2237 | Camera *cam = (Camera*)fRatesCanv->GetCanvas()->FindObject("Camera");
|
|---|
| 2238 | ChoosePatch(*cam, isw);
|
|---|
| 2239 | }
|
|---|
| 2240 |
|
|---|
| 2241 | void on_fThresholdIdx_valueChanged(int isw)
|
|---|
| 2242 | {
|
|---|
| 2243 | UpdatePatch(isw);
|
|---|
| 2244 |
|
|---|
| 2245 | fRatesCanv->GetCanvas()->Modified();
|
|---|
| 2246 | fRatesCanv->GetCanvas()->Update();
|
|---|
| 2247 | }
|
|---|
| 2248 |
|
|---|
| 2249 | void UpdateThresholdIdx()
|
|---|
| 2250 | {
|
|---|
| 2251 | if (fInChoosePatch)
|
|---|
| 2252 | return;
|
|---|
| 2253 |
|
|---|
| 2254 | const int crate = fThresholdCrate->value();
|
|---|
| 2255 | const int board = fThresholdBoard->value();
|
|---|
| 2256 | const int patch = fThresholdPatch->value();
|
|---|
| 2257 |
|
|---|
| 2258 | const int ihw = patch + board*4 + crate*40;
|
|---|
| 2259 |
|
|---|
| 2260 | int isw = 0;
|
|---|
| 2261 | for (; isw<160; isw++)
|
|---|
| 2262 | if (ihw==fPatchMapHW[isw])
|
|---|
| 2263 | break;
|
|---|
| 2264 |
|
|---|
| 2265 | UpdatePatch(isw);
|
|---|
| 2266 | }
|
|---|
| 2267 |
|
|---|
| 2268 | void on_fThresholdPatch_valueChanged(int)
|
|---|
| 2269 | {
|
|---|
| 2270 | UpdateThresholdIdx();
|
|---|
| 2271 | }
|
|---|
| 2272 | void on_fThresholdBoard_valueChanged(int)
|
|---|
| 2273 | {
|
|---|
| 2274 | UpdateThresholdIdx();
|
|---|
| 2275 | }
|
|---|
| 2276 | void on_fThresholdCrate_valueChanged(int)
|
|---|
| 2277 | {
|
|---|
| 2278 | UpdateThresholdIdx();
|
|---|
| 2279 | }
|
|---|
| 2280 |
|
|---|
| 2281 | void on_fPixelIdx_valueChanged(int isw)
|
|---|
| 2282 | {
|
|---|
| 2283 | Camera *cam = (Camera*)fRatesCanv->GetCanvas()->FindObject("Camera");
|
|---|
| 2284 | ChoosePixel(*cam, isw);
|
|---|
| 2285 |
|
|---|
| 2286 | fRatesCanv->GetCanvas()->Modified();
|
|---|
| 2287 | fRatesCanv->GetCanvas()->Update();
|
|---|
| 2288 | }
|
|---|
| 2289 | #endif
|
|---|
| 2290 |
|
|---|
| 2291 | void on_fPixelEnable_stateChanged(int b)
|
|---|
| 2292 | {
|
|---|
| 2293 | if (fInHandler)
|
|---|
| 2294 | return;
|
|---|
| 2295 |
|
|---|
| 2296 | const uint16_t isw = fPixelIdx->value();
|
|---|
| 2297 | const uint16_t ihw = fPixelMapHW[isw];
|
|---|
| 2298 |
|
|---|
| 2299 | Dim::SendCommand(b==Qt::Unchecked ?
|
|---|
| 2300 | "FTM_CONTROL/DISABLE_PIXEL" : "FTM_CONTROL/ENABLE_PIXEL",
|
|---|
| 2301 | ihw);
|
|---|
| 2302 | }
|
|---|
| 2303 |
|
|---|
| 2304 | void on_fPixelDisableOthers_clicked()
|
|---|
| 2305 | {
|
|---|
| 2306 | const uint16_t isw = fPixelIdx->value();
|
|---|
| 2307 | const uint16_t ihw = fPixelMapHW[isw];
|
|---|
| 2308 |
|
|---|
| 2309 | Dim::SendCommand("FTM_CONTROL/DISABLE_ALL_PIXELS_EXCEPT", ihw);
|
|---|
| 2310 | }
|
|---|
| 2311 |
|
|---|
| 2312 | void on_fThresholdDisableOthers_clicked()
|
|---|
| 2313 | {
|
|---|
| 2314 | const uint16_t isw = fThresholdIdx->value();
|
|---|
| 2315 | const uint16_t ihw = fPatchMapHW[isw];
|
|---|
| 2316 |
|
|---|
| 2317 | Dim::SendCommand("FTM_CONTROL/DISABLE_ALL_PATCHES_EXCEPT", ihw);
|
|---|
| 2318 | }
|
|---|
| 2319 |
|
|---|
| 2320 | void on_fThresholdVal_valueChanged(int v)
|
|---|
| 2321 | {
|
|---|
| 2322 | fThresholdVolt->setValue(2500./4095*v);
|
|---|
| 2323 |
|
|---|
| 2324 | const int32_t isw = fThresholdIdx->value();
|
|---|
| 2325 | const int32_t ihw = fPatchMapHW[isw];
|
|---|
| 2326 |
|
|---|
| 2327 | const int32_t d[2] = { ihw, v };
|
|---|
| 2328 |
|
|---|
| 2329 | if (!fInHandler)
|
|---|
| 2330 | Dim::SendCommand("FTM_CONTROL/SET_THRESHOLD", d);
|
|---|
| 2331 | }
|
|---|
| 2332 |
|
|---|
| 2333 | TGraph fGraphFtmTemp[4];
|
|---|
| 2334 | TGraph fGraphFtmRate;
|
|---|
| 2335 | TGraph fGraphPatchRate[160];
|
|---|
| 2336 | TGraph fGraphBoardRate[40];
|
|---|
| 2337 |
|
|---|
| 2338 | #ifdef HAVE_ROOT
|
|---|
| 2339 | void DrawTimeFrame(const char *ytitle)
|
|---|
| 2340 | {
|
|---|
| 2341 | const double tm = Time().RootTime();
|
|---|
| 2342 |
|
|---|
| 2343 | TH1F h("TimeFrame", "", 1, tm, tm+60);//Time().RootTime()-1./24/60/60, Time().RootTime());
|
|---|
| 2344 | h.SetDirectory(0);
|
|---|
| 2345 | // h.SetBit(TH1::kCanRebin);
|
|---|
| 2346 | h.SetStats(kFALSE);
|
|---|
| 2347 | // h.SetMinimum(0);
|
|---|
| 2348 | // h.SetMaximum(1);
|
|---|
| 2349 | h.SetXTitle("Time");
|
|---|
| 2350 | h.SetYTitle(ytitle);
|
|---|
| 2351 | h.GetXaxis()->CenterTitle();
|
|---|
| 2352 | h.GetYaxis()->CenterTitle();
|
|---|
| 2353 | h.GetXaxis()->SetTimeDisplay(true);
|
|---|
| 2354 | h.GetXaxis()->SetTimeFormat("%Mh%S'");
|
|---|
| 2355 | h.GetXaxis()->SetLabelSize(0.025);
|
|---|
| 2356 | h.GetYaxis()->SetLabelSize(0.025);
|
|---|
| 2357 | h.GetYaxis()->SetTitleOffset(1.2);
|
|---|
| 2358 | // h.GetYaxis()->SetTitleSize(1.2);
|
|---|
| 2359 | h.DrawCopy()->SetDirectory(0);
|
|---|
| 2360 | }
|
|---|
| 2361 | #endif
|
|---|
| 2362 |
|
|---|
| 2363 | public:
|
|---|
| 2364 | FactGui() :
|
|---|
| 2365 | fFtuStatus(40),
|
|---|
| 2366 | fPixelMapHW(1440), fPatchMapHW(160), fPatchHW(1440),
|
|---|
| 2367 | fInChoosePatch(false),
|
|---|
| 2368 | fDimDNS("DIS_DNS/VERSION_NUMBER", 1, int(0), this),
|
|---|
| 2369 |
|
|---|
| 2370 | fDimLoggerStats ("DATA_LOGGER/STATS", (void*)NULL, 0, this),
|
|---|
| 2371 | fDimLoggerFilenameNight("DATA_LOGGER/FILENAME_NIGHTLY", (void*)NULL, 0, this),
|
|---|
| 2372 | fDimLoggerFilenameRun ("DATA_LOGGER/FILENAME_RUN", (void*)NULL, 0, this),
|
|---|
| 2373 | fDimLoggerNumSubs ("DATA_LOGGER/NUM_SUBS", (void*)NULL, 0, this),
|
|---|
| 2374 |
|
|---|
| 2375 | fDimFtmPassport ("FTM_CONTROL/PASSPORT", (void*)NULL, 0, this),
|
|---|
| 2376 | fDimFtmTriggerCounter ("FTM_CONTROL/TRIGGER_COUNTER", (void*)NULL, 0, this),
|
|---|
| 2377 | fDimFtmError ("FTM_CONTROL/ERROR", (void*)NULL, 0, this),
|
|---|
| 2378 | fDimFtmFtuList ("FTM_CONTROL/FTU_LIST", (void*)NULL, 0, this),
|
|---|
| 2379 | fDimFtmStaticData ("FTM_CONTROL/STATIC_DATA", (void*)NULL, 0, this),
|
|---|
| 2380 | fDimFtmDynamicData ("FTM_CONTROL/DYNAMIC_DATA", (void*)NULL, 0, this),
|
|---|
| 2381 | fDimFtmCounter ("FTM_CONTROL/COUNTER", (void*)NULL, 0, this),
|
|---|
| 2382 | fDimFadFiles ("FAD_CONTROL/FILES", (void*)NULL, 0, this),
|
|---|
| 2383 | fDimFadRuns ("FAD_CONTROL/RUNS", (void*)NULL, 0, this),
|
|---|
| 2384 | fDimFadEvents ("FAD_CONTROL/EVENTS", (void*)NULL, 0, this),
|
|---|
| 2385 | fDimFadCurrentEvent ("FAD_CONTROL/CURRENT_EVENT", (void*)NULL, 0, this),
|
|---|
| 2386 | fDimFadEventData ("FAD_CONTROL/EVENT_DATA", (void*)NULL, 0, this),
|
|---|
| 2387 | fDimFadConnections ("FAD_CONTROL/CONNECTIONS", (void*)NULL, 0, this),
|
|---|
| 2388 | fDimFadFwVersion ("FAD_CONTROL/FIRMWARE_VERSION", (void*)NULL, 0, this),
|
|---|
| 2389 | fDimFadPllLock ("FAD_CONTROL/PLL_LOCK", (void*)NULL, 0, this),
|
|---|
| 2390 | fDimFadStatistics ("FAD_CONTROL/STATISTICS", (void*)NULL, 0, this)
|
|---|
| 2391 | {
|
|---|
| 2392 | fClockCondFreq->addItem("--- Hz", QVariant(-1));
|
|---|
| 2393 | fClockCondFreq->addItem("800 MHz", QVariant(800));
|
|---|
| 2394 | fClockCondFreq->addItem("1 GHz", QVariant(1000));
|
|---|
| 2395 | fClockCondFreq->addItem("2 GHz", QVariant(2000));
|
|---|
| 2396 | fClockCondFreq->addItem("3 GHz", QVariant(3000));
|
|---|
| 2397 | fClockCondFreq->addItem("4 GHz", QVariant(4000));
|
|---|
| 2398 | fClockCondFreq->addItem("5 GHz", QVariant(5000));
|
|---|
| 2399 |
|
|---|
| 2400 | fTriggerWidget->setEnabled(false);
|
|---|
| 2401 | fFtuWidget->setEnabled(false);
|
|---|
| 2402 | fRatesWidget->setEnabled(false);
|
|---|
| 2403 | // fFadWidget->setEnabled(false);
|
|---|
| 2404 | fLoggerWidget->setEnabled(false);
|
|---|
| 2405 |
|
|---|
| 2406 | fChatSend->setEnabled(false);
|
|---|
| 2407 | fChatMessage->setEnabled(false);
|
|---|
| 2408 |
|
|---|
| 2409 | DimClient::sendCommand("CHAT/MSG", "GUI online.");
|
|---|
| 2410 | // + MessageDimRX
|
|---|
| 2411 |
|
|---|
| 2412 | // --------------------------------------------------------------------------
|
|---|
| 2413 |
|
|---|
| 2414 | ifstream fin1("Trigger-Patches.txt");
|
|---|
| 2415 |
|
|---|
| 2416 | int l = 0;
|
|---|
| 2417 |
|
|---|
| 2418 | string buf;
|
|---|
| 2419 | while (getline(fin1, buf, '\n'))
|
|---|
| 2420 | {
|
|---|
| 2421 | buf = Tools::Trim(buf);
|
|---|
| 2422 | if (buf[0]=='#')
|
|---|
| 2423 | continue;
|
|---|
| 2424 |
|
|---|
| 2425 | stringstream str(buf);
|
|---|
| 2426 | for (int i=0; i<9; i++)
|
|---|
| 2427 | {
|
|---|
| 2428 | unsigned int n;
|
|---|
| 2429 | str >> n;
|
|---|
| 2430 |
|
|---|
| 2431 | if (n>=fPatchHW.size())
|
|---|
| 2432 | continue;
|
|---|
| 2433 |
|
|---|
| 2434 | fPatchHW[n] = l;
|
|---|
| 2435 | }
|
|---|
| 2436 | l++;
|
|---|
| 2437 | }
|
|---|
| 2438 |
|
|---|
| 2439 | if (l!=160)
|
|---|
| 2440 | cerr << "WARNING - Problems reading Trigger-Patches.txt" << endl;
|
|---|
| 2441 |
|
|---|
| 2442 | // --------------------------------------------------------------------------
|
|---|
| 2443 |
|
|---|
| 2444 | ifstream fin2("MasterList-v3.txt");
|
|---|
| 2445 |
|
|---|
| 2446 | l = 0;
|
|---|
| 2447 |
|
|---|
| 2448 | while (getline(fin2, buf, '\n'))
|
|---|
| 2449 | {
|
|---|
| 2450 | buf = Tools::Trim(buf);
|
|---|
| 2451 | if (buf[0]=='#')
|
|---|
| 2452 | continue;
|
|---|
| 2453 |
|
|---|
| 2454 | unsigned int softid, hardid, dummy;
|
|---|
| 2455 |
|
|---|
| 2456 | stringstream str(buf);
|
|---|
| 2457 |
|
|---|
| 2458 | str >> softid;
|
|---|
| 2459 | str >> dummy;
|
|---|
| 2460 | str >> hardid;
|
|---|
| 2461 |
|
|---|
| 2462 | if (softid>=fPixelMapHW.size())
|
|---|
| 2463 | continue;
|
|---|
| 2464 |
|
|---|
| 2465 | fPixelMapHW[softid] = hardid;
|
|---|
| 2466 |
|
|---|
| 2467 | l++;
|
|---|
| 2468 | }
|
|---|
| 2469 |
|
|---|
| 2470 | if (l!=1440)
|
|---|
| 2471 | cerr << "WARNING - Problems reading MasterList-v3.txt" << endl;
|
|---|
| 2472 |
|
|---|
| 2473 | // --------------------------------------------------------------------------
|
|---|
| 2474 |
|
|---|
| 2475 | ifstream fin3("PatchList.txt");
|
|---|
| 2476 |
|
|---|
| 2477 | l = 0;
|
|---|
| 2478 |
|
|---|
| 2479 | while (getline(fin3, buf, '\n'))
|
|---|
| 2480 | {
|
|---|
| 2481 | buf = Tools::Trim(buf);
|
|---|
| 2482 | if (buf[0]=='#')
|
|---|
| 2483 | continue;
|
|---|
| 2484 |
|
|---|
| 2485 | unsigned int softid, hardid;
|
|---|
| 2486 |
|
|---|
| 2487 | stringstream str(buf);
|
|---|
| 2488 |
|
|---|
| 2489 | str >> softid;
|
|---|
| 2490 | str >> hardid;
|
|---|
| 2491 |
|
|---|
| 2492 | if (softid>=fPatchMapHW.size())
|
|---|
| 2493 | continue;
|
|---|
| 2494 |
|
|---|
| 2495 | fPatchMapHW[softid] = hardid-1;
|
|---|
| 2496 |
|
|---|
| 2497 | l++;
|
|---|
| 2498 | }
|
|---|
| 2499 |
|
|---|
| 2500 | if (l!=160)
|
|---|
| 2501 | cerr << "WARNING - Problems reading PatchList.txt" << endl;
|
|---|
| 2502 |
|
|---|
| 2503 | // --------------------------------------------------------------------------
|
|---|
| 2504 | #ifdef HAVE_ROOT
|
|---|
| 2505 |
|
|---|
| 2506 | fGraphFtmRate.SetLineColor(kBlue);
|
|---|
| 2507 | fGraphFtmRate.SetMarkerColor(kBlue);
|
|---|
| 2508 | fGraphFtmRate.SetMarkerStyle(kFullDotMedium);
|
|---|
| 2509 |
|
|---|
| 2510 | for (int i=0; i<160; i++)
|
|---|
| 2511 | {
|
|---|
| 2512 | fGraphPatchRate[i].SetName("PatchRate");
|
|---|
| 2513 | //fGraphPatchRate[i].SetLineColor(kBlue);
|
|---|
| 2514 | //fGraphPatchRate[i].SetMarkerColor(kBlue);
|
|---|
| 2515 | fGraphPatchRate[i].SetMarkerStyle(kFullDotMedium);
|
|---|
| 2516 | }
|
|---|
| 2517 | for (int i=0; i<40; i++)
|
|---|
| 2518 | {
|
|---|
| 2519 | fGraphBoardRate[i].SetName("BoardRate");
|
|---|
| 2520 | //fGraphBoardRate[i].SetLineColor(kBlue);
|
|---|
| 2521 | //fGraphBoardRate[i].SetMarkerColor(kBlue);
|
|---|
| 2522 | fGraphBoardRate[i].SetMarkerStyle(kFullDotMedium);
|
|---|
| 2523 | }
|
|---|
| 2524 | /*
|
|---|
| 2525 | TCanvas *c = fFtmTempCanv->GetCanvas();
|
|---|
| 2526 | c->SetBit(TCanvas::kNoContextMenu);
|
|---|
| 2527 | c->SetBorderMode(0);
|
|---|
| 2528 | c->SetFrameBorderMode(0);
|
|---|
| 2529 | c->SetFillColor(kWhite);
|
|---|
| 2530 | c->SetRightMargin(0.03);
|
|---|
| 2531 | c->SetTopMargin(0.03);
|
|---|
| 2532 | c->cd();
|
|---|
| 2533 | */
|
|---|
| 2534 | //CreateTimeFrame("Temperature / °C");
|
|---|
| 2535 |
|
|---|
| 2536 | fGraphFtmTemp[0].SetMarkerStyle(kFullDotSmall);
|
|---|
| 2537 | fGraphFtmTemp[1].SetMarkerStyle(kFullDotSmall);
|
|---|
| 2538 | fGraphFtmTemp[2].SetMarkerStyle(kFullDotSmall);
|
|---|
| 2539 | fGraphFtmTemp[3].SetMarkerStyle(kFullDotSmall);
|
|---|
| 2540 |
|
|---|
| 2541 | fGraphFtmTemp[1].SetLineColor(kBlue);
|
|---|
| 2542 | fGraphFtmTemp[2].SetLineColor(kRed);
|
|---|
| 2543 | fGraphFtmTemp[3].SetLineColor(kGreen);
|
|---|
| 2544 |
|
|---|
| 2545 | fGraphFtmTemp[1].SetMarkerColor(kBlue);
|
|---|
| 2546 | fGraphFtmTemp[2].SetMarkerColor(kRed);
|
|---|
| 2547 | fGraphFtmTemp[3].SetMarkerColor(kGreen);
|
|---|
| 2548 |
|
|---|
| 2549 | //fGraphFtmTemp[0].Draw("LP");
|
|---|
| 2550 | //fGraphFtmTemp[1].Draw("LP");
|
|---|
| 2551 | //fGraphFtmTemp[2].Draw("LP");
|
|---|
| 2552 | //fGraphFtmTemp[3].Draw("LP");
|
|---|
| 2553 |
|
|---|
| 2554 | // --------------------------------------------------------------------------
|
|---|
| 2555 |
|
|---|
| 2556 | TCanvas *c = fFtmRateCanv->GetCanvas();
|
|---|
| 2557 | //c->SetBit(TCanvas::kNoContextMenu);
|
|---|
| 2558 | c->SetBorderMode(0);
|
|---|
| 2559 | c->SetFrameBorderMode(0);
|
|---|
| 2560 | c->SetFillColor(kWhite);
|
|---|
| 2561 | c->SetRightMargin(0.03);
|
|---|
| 2562 | c->SetTopMargin(0.03);
|
|---|
| 2563 | c->SetGrid();
|
|---|
| 2564 | c->cd();
|
|---|
| 2565 |
|
|---|
| 2566 | DrawTimeFrame("Trigger rate [Hz]");
|
|---|
| 2567 |
|
|---|
| 2568 | fTriggerCounter0 = -1;
|
|---|
| 2569 |
|
|---|
| 2570 | fGraphFtmRate.SetMarkerStyle(kFullDotSmall);
|
|---|
| 2571 | fGraphFtmRate.Draw("LP");
|
|---|
| 2572 |
|
|---|
| 2573 | // --------------------------------------------------------------------------
|
|---|
| 2574 |
|
|---|
| 2575 | c = fRatesCanv->GetCanvas();
|
|---|
| 2576 | //c->SetBit(TCanvas::kNoContextMenu);
|
|---|
| 2577 | c->SetBorderMode(0);
|
|---|
| 2578 | c->SetFrameBorderMode(0);
|
|---|
| 2579 | c->SetFillColor(kWhite);
|
|---|
| 2580 | c->cd();
|
|---|
| 2581 |
|
|---|
| 2582 | Camera *cam = new Camera;
|
|---|
| 2583 | cam->SetBit(kCanDelete);
|
|---|
| 2584 | cam->Draw();
|
|---|
| 2585 |
|
|---|
| 2586 | ChoosePixel(*cam, 0);
|
|---|
| 2587 |
|
|---|
| 2588 | // --------------------------------------------------------------------------
|
|---|
| 2589 |
|
|---|
| 2590 | c = fAdcDataCanv->GetCanvas();
|
|---|
| 2591 | c->SetBit(TCanvas::kNoContextMenu);
|
|---|
| 2592 | c->SetBorderMode(0);
|
|---|
| 2593 | c->SetFrameBorderMode(0);
|
|---|
| 2594 | c->SetFillColor(kWhite);
|
|---|
| 2595 | c->SetGrid();
|
|---|
| 2596 | c->cd();
|
|---|
| 2597 |
|
|---|
| 2598 | // Create histogram?
|
|---|
| 2599 |
|
|---|
| 2600 | // --------------------------------------------------------------------------
|
|---|
| 2601 |
|
|---|
| 2602 | // QTimer::singleShot(0, this, SLOT(slot_RootUpdate()));
|
|---|
| 2603 |
|
|---|
| 2604 | //widget->setMouseTracking(true);
|
|---|
| 2605 | //widget->EnableSignalEvents(kMouseMoveEvent);
|
|---|
| 2606 |
|
|---|
| 2607 | fFtmRateCanv->setMouseTracking(true);
|
|---|
| 2608 | fFtmRateCanv->EnableSignalEvents(kMouseMoveEvent);
|
|---|
| 2609 |
|
|---|
| 2610 | fAdcDataCanv->setMouseTracking(true);
|
|---|
| 2611 | fAdcDataCanv->EnableSignalEvents(kMouseMoveEvent);
|
|---|
| 2612 |
|
|---|
| 2613 | fRatesCanv->setMouseTracking(true);
|
|---|
| 2614 | fRatesCanv->EnableSignalEvents(kMouseMoveEvent|kMouseReleaseEvent|kMouseDoubleClickEvent);
|
|---|
| 2615 |
|
|---|
| 2616 | connect(fRatesCanv, SIGNAL( RootEventProcessed(TObject*, unsigned int, TCanvas*)),
|
|---|
| 2617 | this, SLOT (slot_RootEventProcessed(TObject*, unsigned int, TCanvas*)));
|
|---|
| 2618 | connect(fFtmRateCanv, SIGNAL( RootEventProcessed(TObject*, unsigned int, TCanvas*)),
|
|---|
| 2619 | this, SLOT (slot_RootEventProcessed(TObject*, unsigned int, TCanvas*)));
|
|---|
| 2620 | connect(fAdcDataCanv, SIGNAL( RootEventProcessed(TObject*, unsigned int, TCanvas*)),
|
|---|
| 2621 | this, SLOT (slot_RootEventProcessed(TObject*, unsigned int, TCanvas*)));
|
|---|
| 2622 | #endif
|
|---|
| 2623 | }
|
|---|
| 2624 |
|
|---|
| 2625 | ~FactGui()
|
|---|
| 2626 | {
|
|---|
| 2627 | UnsubscribeAllServers();
|
|---|
| 2628 | }
|
|---|
| 2629 | };
|
|---|
| 2630 |
|
|---|
| 2631 | #endif
|
|---|