17 #include "KVIDentifier.h"
175 return {a.
x - b.
x, a.
y - b.
y};
179 return a.
x * b.
x + a.
y * b.
y;
183 return {a.
x * s, a.
y * s};
191 return (*
this) * (*this);
199 double scalar = v * (*this);
205 return (*
this) -
Proj(v);
209 return TMath::Pi() + TMath::ATan2(-
y, -
x);
222 virtual void ExecuteEvent(Int_t event, Int_t px, Int_t py);
225 inline Double_t
DistanceToLine(Double_t px, Double_t py, Double_t xp1,
226 Double_t yp1, Double_t xp2, Double_t yp2,
228 inline Bool_t
WhereAmI(Double_t px, Double_t py, Option_t* opt);
230 Double_t xp1, Double_t yp1, Double_t xp2,
236 const Char_t* axis =
"")
const;
238 static KVIDLine*
MakeIDLine(TObject* obj, Double_t xdeb = -1., Double_t xfin = -1., Double_t np = 1., Bool_t save = kFALSE);
268 Double_t distance, dist2;
271 distance = dist2 = 9999.;
272 Int_t i_nearest_point = 0, inear1 = 0, inear2 = 0;
277 for (i = 0; i < fNpoints - 1; i++) {
291 inear2 = i + i_nearest_point;
297 if (distance < 9999.)
301 if (inear2 > 0 && inear2 < (fNpoints - 1))
311 Double_t xp1, Double_t yp1,
312 Double_t xp2, Double_t yp2,
313 Int_t& i_nearest_point)
338 MyVector2 P1(xp1, yp1), P2(xp2, yp2), P(px, py);
345 Double_t sum = (P1P - MP).Mod() + (P2P - MP).Mod();
347 if (TMath::Abs(sum - P1P2.
Mod()) > 1.e-06) {
349 if (P1P.
Mod() < P2P.
Mod()) {
364 Double_t py, Double_t xp1,
365 Double_t yp1, Double_t xp2,
392 MyVector2 P1(xp1, yp1), P2(xp2, yp2), P(px, py);
393 MyVector2 P1P2 = P2 - P1;
394 MyVector2 P1P = P - P1;
395 MyVector2 MP = P1P.Norm((P1P2));
396 Double_t phi = MP.Phi() * TMath::RadToDeg();
401 Bool_t result = kFALSE;
402 if (!strcmp(opt,
"left")) {
403 result = (phi > 90. && phi < 270.);
405 else if (!strcmp(opt,
"right")) {
406 result = (phi < 90. || phi > 270.);
408 else if (!strcmp(opt,
"above")) {
409 result = (phi > 0. && phi < 180.);
411 else if (!strcmp(opt,
"below")) {
412 result = (phi > 180. && phi < 360.);
432 if (!strcmp(opt,
"left")) {
438 else if (!strcmp(opt,
"right")) {
445 else if (!strcmp(opt,
"above")) {
452 else if (!strcmp(opt,
"below")) {
461 Int_t i_stop = fNpoints - 1;
462 Int_t prev_i_stop = 0;
463 Bool_t same_sign = TMath::Sign(1., XX[i_start] - xx) == TMath::Sign(1., XX[i_stop] - xx);
464 while ((i_start < i_stop - 1) || same_sign) {
466 if (same_sign && (prev_i_stop == 0))
break;
467 else if (same_sign) {
469 i_stop = prev_i_stop;
472 prev_i_stop = i_stop;
473 i_stop = (Int_t)((i_start + i_stop) / 2 + 0.5);
476 same_sign = TMath::Sign(1., XX[i_start] - xx) == TMath::Sign(1., XX[i_stop] - xx);
479 Double_t a = (YY[i_stop] - YY[i_start]) / (XX[i_stop] - XX[i_start]);
480 Double_t b = YY[i_start] - a * XX[i_start];
482 Bool_t res = (sign * yy < sign * (a * xx + b));
492 #if ROOT_VERSION_CODE >= ROOT_VERSION(4,0,3)
495 const_cast < KVIDLine*
>(
this)->GetPoint(0, x, y);
504 #if ROOT_VERSION_CODE >= ROOT_VERSION(4,0,3)
505 GetPoint((GetN() - 1), x, y);
507 const_cast < KVIDLine*
>(
this)->GetPoint((GetN() - 1), x, y);
514 const Char_t* axis)
const
523 Double_t x1, y1, x2, y2;
526 Double_t xmin = TMath::Min(x1, x2);
527 Double_t xmax = TMath::Max(x1, x2);
528 Double_t ymin = TMath::Min(y1, y2);
529 Double_t ymax = TMath::Max(y1, y2);
531 Bool_t in_range_x = (x <= xmax && x >= xmin);
532 Bool_t in_range_y = (y <= ymax && y >= ymin);
536 else if (ax ==
"Y") {
540 return (in_range_x && in_range_y);
A lightweight replacement for the TVector2 class.
MyVector2(const MyVector2 &T)
friend MyVector2 operator*(const MyVector2 &a, double s)
friend MyVector2 operator*(double s, const MyVector2 &a)
friend double operator*(const MyVector2 &a, const MyVector2 &b)
MyVector2 Proj(const MyVector2 &v) const
friend MyVector2 operator-(const MyVector2 &a, const MyVector2 &b)
MyVector2(double X, double Y)
MyVector2 Norm(const MyVector2 &v) const
MyVector2 & operator=(const MyVector2 &T)
Base class for lines/cuts used for particle identification in 2D data maps.
static KVIDLine * MakeIDLine(TObject *obj, Double_t xdeb=-1., Double_t xfin=-1., Double_t np=1., Bool_t save=kFALSE)
virtual void ExecuteEvent(Int_t event, Int_t px, Int_t py)
Bool_t PosRelToLine(Option_t *opt, Double_t px, Double_t py, Double_t xp1, Double_t yp1, Double_t xp2, Double_t yp2)
Double_t DistanceToLine(Double_t px, Double_t py, Int_t &)
Bool_t WhereAmI(Double_t px, Double_t py, Option_t *opt)
void GetStartPoint(Double_t &x, Double_t &y) const
Bool_t IsBetweenEndPoints(Double_t x, Double_t y, const Char_t *axis="") const
void GetEndPoint(Double_t &x, Double_t &y) const
virtual void WaitForPrimitive()
Base class for graphical cuts used in particle identification.