42 return dynamic_cast<TCutG*
> (
GetObject());
52 NumPointsSpin->setValue(cut->GetN());
62 XYTable->setRowCount(cut->GetN());
64 for (
int n = 0; n < cut->GetN(); n++) {
66 cut->GetPoint(n, x,y);
67 XYTable->setItem(n, 0,
new QTableWidgetItem(QString::number(x)));
68 XYTable->setItem(n, 1,
new QTableWidgetItem(QString::number(y)));
69 XYTable->setVerticalHeaderItem(n,
new QTableWidgetItem(QString::number(n)));
78 int old = cut->GetN();
79 Double_t x = 0., y = 0.;
81 cut->GetPoint(old - 2, x, y);
83 for (
int n = (old - 1 >= 0 ? old - 1 : 0); n < npoint - 1; n++)
84 cut->SetPoint(n, x, y + (n - old + 2) * 10);
86 cut->GetPoint(0, x, y);
87 cut->SetPoint(npoint-1, x, y);
108 double zn = XYTable->item(nrow, ncol)->text().toDouble(&ok);
110 if (ncol == 0) cut->GetX()[nrow] = zn;
111 else cut->GetY()[nrow] = zn;
112 if ((nrow == 0) || (nrow == cut->GetN()-1)) {
113 int nrow1 = (nrow == 0) ? cut->GetN()-1 : 0;
115 XYTable->setItem(nrow1, ncol,
new QTableWidgetItem(XYTable->item(nrow, ncol)->text()));
116 if (ncol == 0) cut->GetX()[nrow1] = zn;
117 else cut->GetY()[nrow1] = zn;
QFitItem * Parent() const
Basic abstract class, combining common properties of data and model.
Bool_t IsRangeCutExcluding(Int_t n) const
Return kTRUE if cut exclude range.
void SetRangeCutExcluding(Int_t n, Bool_t exclude=kTRUE)
Set type of range cut (excluding or including)