110 for (
Int_t i=0; i<8; i++) {
114 SetShapeBit(kGeoArb8);
128 for (
Int_t i=0; i<8; i++) {
129 fXY[i][0] = vertices[2*i];
130 fXY[i][1] = vertices[2*i+1];
135 for (
Int_t i=0; i<8; i++) {
153 for (
Int_t i=0; i<8; i++) {
154 fXY[i][0] = vertices[2*i];
155 fXY[i][1] = vertices[2*i+1];
160 for (
Int_t i=0; i<8; i++) {
175 for(
Int_t i=0; i<8; i++) {
190 for(
Int_t i=0; i<8; i++) {
213 for (i=0; i<4; i++) {
215 capacity += 0.25*
fDz*((
fXY[i][0]+
fXY[i+4][0])*(
fXY[j][1]+
fXY[j+4][1]) -
217 (1./3)*((
fXY[i+4][0]-
fXY[i][0])*(
fXY[j+4][1]-
fXY[j][1]) -
229 xmin = xmax =
fXY[0][0];
230 ymin = ymax =
fXY[0][1];
232 for (
Int_t i=1; i<8; i++) {
233 if (xmin>
fXY[i][0]) xmin=
fXY[i][0];
234 if (xmax<
fXY[i][0]) xmax=
fXY[i][0];
235 if (ymin>
fXY[i][1]) ymin=
fXY[i][1];
236 if (ymax<
fXY[i][1]) ymax=
fXY[i][1];
260 for (i=0; i<4; i++) {
261 dx1 =
fXY[(i+1)%4][0]-
fXY[i][0];
262 dy1 =
fXY[(i+1)%4][1]-
fXY[i][1];
268 dx2 =
fXY[4+(i+1)%4][0]-
fXY[4+i][0];
269 dy2 =
fXY[4+(i+1)%4][1]-
fXY[4+i][1];
275 twist[i] = dy1*dx2 - dx1*dy2;
289 for (i=0; i<4; i++) {
290 fXY[i][0] += 1.E-8*
fXY[i+4][0];
291 fXY[i][1] += 1.E-8*
fXY[i+4][1];
295 for (i=0; i<4; i++) {
296 fXY[i+4][0] += 1.E-8*
fXY[i][0];
297 fXY[i+4][1] += 1.E-8*
fXY[i][1];
303 for (i=0; i<4; i++) {
306 sum2 += fXY[i+4][0]*fXY[j+4][1]-fXY[j+4][0]*fXY[i+4][1];
309 Fatal(
"ComputeTwist",
"Shape %s type Arb8: Lower/upper faces defined with opposite clockwise",
GetName());
313 Error(
"ComputeTwist",
"Shape %s type Arb8: Vertices must be defined clockwise in XY planes. Re-ordering...",
GetName());
336 Error(
"ComputeTwist",
"Shape %s type Arb8: Malformed polygon with crossing opposite segments",
GetName());
347 if (iseg<0 || iseg>3)
return 0.;
362 Double_t lsq, ssq, dx, dy, dpx, dpy, u;
365 for (i1=0; i1<4; i1++) {
372 p1[1] = vert[2*i1+1];
374 p2[1] = vert[2*i2+1];
377 dpx = point[0] - p1[0];
378 dpy = point[1] - p1[1];
382 ssq = dpx*dpx + dpy*dpy;
391 u = (dpx*dx + dpy*dy)/lsq;
395 dpx = point[0]-p2[0];
396 dpy = point[1]-p2[1];
408 ssq = dpx*dpx + dpy*dpy;
432 norm[2] = (dir[2]>0)?1:(-1);
440 if (frac<0) frac = 0.;
441 Int_t jseg = (iseg+1)%4;
453 x1 += frac*(
fXY[jseg+4][0]-
x1);
454 y1 += frac*(
fXY[jseg+4][1]-y1);
463 norm[0] = ay*bz-az*by;
464 norm[1] = az*bx-ax*bz;
465 norm[2] = ax*by-ay*bx;
466 fn =
TMath::Sqrt(norm[0]*norm[0]+norm[1]*norm[1]+norm[2]*norm[2]);
478 if (dir[0]>-2. && dir[0]*norm[0]+dir[1]*norm[1]+dir[2]*norm[2] < 0) {
498 for (i=0; i<4; i++) {
499 poly[2*i] =
fXY[i+4][0]+cf*(
fXY[i][0]-
fXY[i+4][0]);
500 poly[2*i+1] =
fXY[i+4][1]+cf*(
fXY[i][1]-
fXY[i+4][1]);
543 Double_t a=(dtx*dir[1]-dty*dir[0]+(tx1*ty2-tx2*ty1)*dir[2])*dir[2];
545 Double_t b=dxs*dir[1]-dys*dir[0]+(dtx*point[1]-dty*point[0]+ty2*xs1-ty1*xs2
546 +tx1*ys2-tx2*ys1)*dir[2];
547 Double_t c=dxs*point[1]-dys*point[0]+xs1*ys2-xs2*ys1;
555 memcpy(dirp,dir,3*
sizeof(
Double_t));
558 ((
TGeoArb8*)
this)->ComputeNormal(point,dirp,norm);
559 ndotd = dir[0]*norm[0]+dir[1]*norm[1]+dir[2]*norm[2];
563 zi = (point[0]-xs1)*(point[0]-xs2)+(point[1]-ys1)*(point[1]-ys2);
576 memcpy(dirp,dir,3*
sizeof(
Double_t));
579 ((
TGeoArb8*)
this)->ComputeNormal(point,dirp,norm);
580 ndotd = dir[0]*norm[0]+dir[1]*norm[1]+dir[2]*norm[2];
587 zi=point[2]+s*dir[2];
591 xp=point[0]+s*dir[0];
594 yp=point[1]+s*dir[1];
595 zi = (xp-
x1)*(xp-x2)+(yp-y1)*(yp-y2);
602 memcpy(dirp,dir,3*
sizeof(
Double_t));
605 ((
TGeoArb8*)
this)->ComputeNormal(point,dirp,norm);
606 ndotd = dir[0]*norm[0]+dir[1]*norm[1]+dir[2]*norm[2];
615 zi=point[2]+s*dir[2];
619 xp=point[0]+s*dir[0];
622 yp=point[1]+s*dir[1];
623 zi = (xp-
x1)*(xp-x2)+(yp-y1)*(yp-y2);
641 if (point[2]*dir[2]<0) {
643 snext =
TMath::Max((pt[2]-point[2])/dir[2],0.);
644 for (
Int_t j=0; j<2; j++) pt[j]=point[j]+snext*dir[j];
651 for (
Int_t i=0; i<4; i++) {
653 if (dist<snext) snext =
dist;
669 distz=(-
fDz-point[2])/dir[2];
672 if (dir[2]>0) distz=(
fDz-point[2])/dir[2];
675 for (i=0; i<4; i++) {
677 if (dist<distl) distl =
dist;
680 pt[0] = point[0]+distz*dir[0];
681 pt[1] = point[1]+distz*dir[1];
685 if (dist<0 || dist>1.E10)
return 0.;
697 distmin=(-
fDz-point[2])/dir[2];
699 if (dir[2]>0) distmin =(
fDz-point[2])/dir[2];
706 for (
Int_t ipl=0;ipl<4;ipl++) {
730 Double_t a=(dtx*dir[1]-dty*dir[0]+(tx1*ty2-tx2*ty1)*dir[2])*dir[2];
731 Double_t b=dxs*dir[1]-dys*dir[0]+(dtx*point[1]-dty*point[0]+ty2*xs1-ty1*xs2
732 +tx1*ys2-tx2*ys1)*dir[2];
733 Double_t c=dxs*point[1]-dys*point[0]+xs1*ys2-xs2*ys1;
738 if (s>eps && s < distmin) {
751 lateral_cross =
kTRUE;
756 if (s>eps && s < distmin) {
758 lateral_cross =
kTRUE;
764 if (!lateral_cross) {
768 pt[0] = point[0]+distmin*dir[0];
769 pt[1] = point[1]+distmin*dir[1];
774 for (
Int_t j=0; j<4; j++) {
775 poly[2*j] =
fXY[j+i][0];
776 poly[2*j+1] =
fXY[j+i][1];
790 Error(
"Divide",
"Division of an arbitrary trapezoid not implemented");
821 for (i=0; i<8; i++) {
838 Error(
"GetFittingBox",
"cannot handle parametrized rotated volumes");
845 Error(
"GetFittingBox",
"wrong matrix - parametrized box is outside this");
850 dd[0] = parambox->
GetDX();
851 dd[1] = parambox->
GetDY();
852 dd[2] = parambox->
GetDZ();
857 Error(
"GetFittingBox",
"wrong matrix");
861 if (dd[0]>=0 && dd[1]>=0) {
873 for (
Int_t iaxis=0; iaxis<2; iaxis++) {
874 if (dd[iaxis]>=0)
continue;
876 for (
Int_t ivert=0; ivert<4; ivert++) {
896 for (i=0; i<3; i++) {
897 v1[i] = p2[i] - p1[i];
898 v2[i] = p3[i] - p1[i];
900 norm[0] = v1[1]*v2[2]-v1[2]*v2[1];
901 cross += norm[0]*norm[0];
902 norm[1] = v1[2]*v2[0]-v1[0]*v2[2];
903 cross += norm[1]*norm[1];
904 norm[2] = v1[0]*v2[1]-v1[1]*v2[0];
905 cross += norm[2]*norm[2];
908 for (i=0; i<3; i++) norm[i] *= cross;
980 for (i=0; i<4; i++) {
986 cross = (x-
x1)*(y2-y1)-(y-y1)*(x2-x1);
987 if (cross<0)
return kFALSE;
999 for (
Int_t ip=0; ip<8; ip++) {
1000 printf(
" point #%i : x=%11.5f y=%11.5f z=%11.5f\n",
1001 ip,
fXY[ip][0],
fXY[ip][1],
fDz*((ip<4)?-1:1));
1003 printf(
" Bounding box:\n");
1013 if (!in) safz = -safz;
1016 Double_t lsq, ssq, dx, dy, dpx, dpy, u;
1028 for (iseg=0; iseg<4; iseg++) {
1031 p2 = &vert[2*((iseg+1)%4)];
1034 dpx = point[0] - p1[0];
1035 dpy = point[1] - p1[1];
1037 lsq = dx*dx + dy*dy;
1038 u = (dpx*dx + dpy*dy)/lsq;
1040 dpx = point[0]-p2[0];
1041 dpy = point[1]-p2[1];
1048 ssq = dpx*dpx + dpy*dpy;
1055 if (umin<0) umin = 0.;
1057 isegmin = (isegmin+1)%4;
1061 Int_t i2 = (isegmin+1)%4;
1063 Double_t dx2 = fXY[i2+4][0]-fXY[i1+4][0];
1064 Double_t dy1 = fXY[i2][1]-fXY[i1][1];
1065 Double_t dy2 = fXY[i2+4][1]-fXY[i1+4][1];
1066 dx = dx1 + umin*(dx2-dx1);
1067 dy = dy1 + umin*(dy2-dy1);
1077 for (iseg=0; iseg<4; iseg++) saf[iseg+1] =
SafetyToFace(point,iseg,in);
1080 if (safe<0)
return 0.;
1091 Int_t ipln = (iseg+1)%4;
1093 vertices[0] =
fXY[iseg][0];
1094 vertices[1] =
fXY[iseg][1];
1097 vertices[3] =
fXY[ipln][0];
1098 vertices[4] =
fXY[ipln][1];
1101 vertices[6] =
fXY[ipln+4][0];
1102 vertices[7] =
fXY[ipln+4][1];
1105 vertices[9] =
fXY[iseg+4][0];
1106 vertices[10] =
fXY[iseg+4][1];
1119 safe = (point[0]-p1[0])*norm[0]+(point[1]-p1[1])*norm[1]+(point[2]-p1[2])*norm[2];
1120 if (in)
return (-safe);
1130 out <<
" // Shape: " <<
GetName() <<
" type: " <<
ClassName() << std::endl;
1131 out <<
" dz = " <<
fDz <<
";" << std::endl;
1132 out <<
" vert[0] = " <<
fXY[0][0] <<
";" << std::endl;
1133 out <<
" vert[1] = " <<
fXY[0][1] <<
";" << std::endl;
1134 out <<
" vert[2] = " <<
fXY[1][0] <<
";" << std::endl;
1135 out <<
" vert[3] = " <<
fXY[1][1] <<
";" << std::endl;
1136 out <<
" vert[4] = " <<
fXY[2][0] <<
";" << std::endl;
1137 out <<
" vert[5] = " <<
fXY[2][1] <<
";" << std::endl;
1138 out <<
" vert[6] = " <<
fXY[3][0] <<
";" << std::endl;
1139 out <<
" vert[7] = " <<
fXY[3][1] <<
";" << std::endl;
1140 out <<
" vert[8] = " <<
fXY[4][0] <<
";" << std::endl;
1141 out <<
" vert[9] = " <<
fXY[4][1] <<
";" << std::endl;
1142 out <<
" vert[10] = " <<
fXY[5][0] <<
";" << std::endl;
1143 out <<
" vert[11] = " <<
fXY[5][1] <<
";" << std::endl;
1144 out <<
" vert[12] = " <<
fXY[6][0] <<
";" << std::endl;
1145 out <<
" vert[13] = " <<
fXY[6][1] <<
";" << std::endl;
1146 out <<
" vert[14] = " <<
fXY[7][0] <<
";" << std::endl;
1147 out <<
" vert[15] = " <<
fXY[7][1] <<
";" << std::endl;
1148 out <<
" TGeoShape *" <<
GetPointerName() <<
" = new TGeoArb8(\"" <<
GetName() <<
"\", dz,vert);" << std::endl;
1158 for (
Int_t i=0; i<4; i++) {
1159 vertices[2*i] =
fXY[i+4][0]+cf*(
fXY[i][0]-
fXY[i+4][0]);
1160 vertices[2*i+1] =
fXY[i+4][1]+cf*(
fXY[i][1]-
fXY[i+4][1]);
1174 for (
Int_t i=0; i<8; i++) {
1175 fXY[i][0] = param[2*i+1];
1176 fXY[i][1] = param[2*i+2];
1187 for (
Int_t i=0; i<8; i++) {
1188 points[3*i] =
fXY[i][0];
1189 points[3*i+1] =
fXY[i][1];
1190 points[3*i+2] = (i<4)?-
fDz:
fDz;
1199 for (
Int_t i=0; i<8; i++) {
1200 points[3*i] =
fXY[i][0];
1201 points[3*i+1] =
fXY[i][1];
1202 points[3*i+2] = (i<4)?-
fDz:
fDz;
1211 if (vnum<0 || vnum >7) {
1212 Error(
"SetVertex",
"Invalid vertex number");
1234 void TGeoArb8::Streamer(
TBuffer &R__b)
1251 for (
Int_t i=0; i<vecsize; i++) inside[i] =
Contains(&points[3*i]);
1261 for (
Int_t i=0; i<vecsize; i++)
ComputeNormal(&points[3*i], &dirs[3*i], &norms[3*i]);
1269 for (
Int_t i=0; i<vecsize; i++) dists[i] =
DistFromInside(&points[3*i], &dirs[3*i], 3, step[i]);
1277 for (
Int_t i=0; i<vecsize; i++) dists[i] =
DistFromOutside(&points[3*i], &dirs[3*i], 3, step[i]);
1287 for (
Int_t i=0; i<vecsize; i++) safe[i] =
Safety(&points[3*i], inside[i]);
1300 fH1 = fH2 = fBl1 = fBl2 = fTl1 = fTl2 = fAlpha1 = fAlpha2 = 0;
1338 fXY[0][0] = -dz*tx-h1*ta1-bl1;
fXY[0][1] = -dz*ty-
h1;
1339 fXY[1][0] = -dz*tx+h1*ta1-tl1;
fXY[1][1] = -dz*ty+
h1;
1340 fXY[2][0] = -dz*tx+h1*ta1+tl1;
fXY[2][1] = -dz*ty+
h1;
1341 fXY[3][0] = -dz*tx-h1*ta1+bl1;
fXY[3][1] = -dz*ty-
h1;
1342 fXY[4][0] = dz*tx-h2*ta2-bl2;
fXY[4][1] = dz*ty-h2;
1343 fXY[5][0] = dz*tx+h2*ta2-tl2;
fXY[5][1] = dz*ty+h2;
1344 fXY[6][0] = dz*tx+h2*ta2+tl2;
fXY[6][1] = dz*ty+h2;
1345 fXY[7][0] = dz*tx-h2*ta2+bl2;
fXY[7][1] = dz*ty-h2;
1347 if ((dz<0) || (h1<0) || (bl1<0) || (tl1<0) ||
1348 (h2<0) || (bl2<0) || (tl2<0)) {
1374 for (
Int_t i=0; i<8; i++) {
1382 fXY[0][0] = -dz*tx-h1*ta1-bl1;
fXY[0][1] = -dz*ty-
h1;
1383 fXY[1][0] = -dz*tx+h1*ta1-tl1;
fXY[1][1] = -dz*ty+
h1;
1384 fXY[2][0] = -dz*tx+h1*ta1+tl1;
fXY[2][1] = -dz*ty+
h1;
1385 fXY[3][0] = -dz*tx-h1*ta1+bl1;
fXY[3][1] = -dz*ty-
h1;
1386 fXY[4][0] = dz*tx-h2*ta2-bl2;
fXY[4][1] = dz*ty-h2;
1387 fXY[5][0] = dz*tx+h2*ta2-tl2;
fXY[5][1] = dz*ty+h2;
1388 fXY[6][0] = dz*tx+h2*ta2+tl2;
fXY[6][1] = dz*ty+h2;
1389 fXY[7][0] = dz*tx-h2*ta2+bl2;
fXY[7][1] = dz*ty-h2;
1391 if ((dz<0) || (h1<0) || (bl1<0) || (tl1<0) ||
1392 (h2<0) || (bl2<0) || (tl2<0)) {
1410 if (iact<3 && safe) {
1426 distmin=(-
fDz-point[2])/dir[2];
1428 if (dir[2]>0) distmin =(
fDz-point[2])/dir[2];
1433 for (
Int_t ipl=0;ipl<4;ipl++) {
1434 Int_t j = (ipl+1)%4;
1448 Double_t ddotn = -dir[0]*az*by + dir[1]*az*bx+dir[2]*(ax*by-ay*bx);
1449 if (ddotn<=0)
continue;
1450 Double_t saf = -(point[0]-xa)*az*by + (point[1]-ya)*az*bx + (point[2]+
fDz)*(ax*by-ay*bx);
1451 if (saf>=0.0)
return 0.0;
1453 if (s<distmin) distmin=s;
1463 if (iact<3 && safe) {
1481 snxt = -(
fDz+point[2])/dir[2];
1482 xnew = point[0] + snxt*dir[0];
1483 ynew = point[1] + snxt*dir[1];
1487 pts[j+1] =
fXY[i][1];
1493 snxt = (
fDz-point[2])/dir[2];
1494 xnew = point[0] + snxt*dir[0];
1495 ynew = point[1] + snxt*dir[1];
1498 pts[j] =
fXY[i+4][0];
1499 pts[j+1] =
fXY[i+4][1];
1515 for (i=0; i<4; i++) {
1530 ddotn = -dir[0]*az*by + dir[1]*az*bx+dir[2]*(ax*by-ay*bx);
1531 saf = (point[0]-xa)*az*by - (point[1]-ya)*az*bx - (point[2]+
fDz)*(ax*by-ay*bx);
1538 znew = point[2]+snxt*dir[2];
1540 xnew = point[0]+snxt*dir[0];
1541 ynew = point[1]+snxt*dir[1];
1552 if ((xnew-xs1)*(xs2-xnew)>=0)
return snxt;
1554 if ((ynew-ys1)*(ys2-ynew)>=0)
return snxt;
1560 if (ddotn>=0) exiting =
kTRUE;
1567 if (saf>0 && saf<safmin) exiting = (point[2]*dir[2] > 0)?
kTRUE:
kFALSE;
1589 Error(
"Divide",
"cannot divide trapezoids on other axis than Z");
1603 for (
Int_t idiv=0; idiv<ndiv; idiv++) {
1604 zmin = start+idiv*step;
1605 zmax = start+(idiv+1)*step;
1606 oz = start+idiv*step+step/2;
1612 for (
Int_t vert1=0; vert1<4; vert1++)
1613 ((
TGeoArb8*)shape)->SetVertex(vert1, points_lo[2*vert1]-ox, points_lo[2*vert1+1]-oy);
1614 for (
Int_t vert2=0; vert2<4; vert2++)
1615 ((
TGeoArb8*)shape)->SetVertex(vert2+4, points_hi[2*vert2]-ox, points_hi[2*vert2+1]-oy);
1632 Error(
"GetMakeRuntimeShape",
"invalid mother");
1657 return (
new TGeoTrap(dz,
fTheta,
fPhi, h1, bl1, tl1,
fAlpha1, h2, bl2, tl2,
fAlpha2));
1673 for (i=0; i<4; i++) {
1697 norm[2] = ax*by-ay*bx;
1698 fn =
TMath::Sqrt(norm[0]*norm[0]+norm[1]*norm[1]+norm[2]*norm[2]);
1699 if (fn<1
E-10)
continue;
1700 saf[i] = (x0-point[0])*norm[0]+(y0-point[1])*norm[1]+(-
fDz-point[2])*norm[2];
1704 saf[i] = -saf[i]/fn;
1710 for (j=1;j<5;j++)
if (saf[j] <safe) safe = saf[j];
1714 for (j=1;j<5;j++) if (saf[j] >safe) safe = saf[j];
1725 out <<
" // Shape: " <<
GetName() <<
" type: " <<
ClassName() << std::endl;
1726 out <<
" dz = " <<
fDz <<
";" << std::endl;
1727 out <<
" theta = " <<
fTheta <<
";" << std::endl;
1728 out <<
" phi = " <<
fPhi <<
";" << std::endl;
1729 out <<
" h1 = " <<
fH1<<
";" << std::endl;
1730 out <<
" bl1 = " <<
fBl1<<
";" << std::endl;
1731 out <<
" tl1 = " <<
fTl1<<
";" << std::endl;
1732 out <<
" alpha1 = " <<
fAlpha1 <<
";" << std::endl;
1733 out <<
" h2 = " <<
fH2 <<
";" << std::endl;
1734 out <<
" bl2 = " <<
fBl2<<
";" << std::endl;
1735 out <<
" tl2 = " <<
fTl2<<
";" << std::endl;
1736 out <<
" alpha2 = " <<
fAlpha2 <<
";" << std::endl;
1737 out <<
" TGeoShape *" <<
GetPointerName() <<
" = new TGeoTrap(\"" <<
GetName() <<
"\", dz,theta,phi,h1,bl1,tl1,alpha1,h2,bl2,tl2,alpha2);" << std::endl;
1781 if ((
fDz<0) || (fH1<0) || (fBl1<0) || (fTl1<0) ||
1782 (fH2<0) || (fBl2<0) || (fTl2<0)) {
1793 for (
Int_t i=0; i<vecsize; i++) dists[i] =
DistFromInside(&points[3*i], &dirs[3*i], 3, step[i]);
1801 for (
Int_t i=0; i<vecsize; i++) dists[i] =
DistFromOutside(&points[3*i], &dirs[3*i], 3, step[i]);
1811 for (
Int_t i=0; i<vecsize; i++) safe[i] =
Safety(&points[3*i], inside[i]);
1831 :
TGeoTrap(dz, theta, phi, h1, bl1, tl1, alpha1, h2, bl2, tl2, alpha2)
1843 for (i=0; i<4; i++) {
1852 for (i=4; i<8; i++) {
1859 if ((dz<0) || (h1<0) || (bl1<0) || (tl1<0) ||
1870 :
TGeoTrap(name, dz, theta, phi, h1, bl1, tl1, alpha1, h2, bl2, tl2, alpha2)
1882 for (i=0; i<4; i++) {
1891 for (i=4; i<8; i++) {
1898 if ((dz<0) || (h1<0) || (bl1<0) || (tl1<0) ||
1915 if (iact<3 && safe) {
1930 if (iact<3 && safe) {
1948 Error(
"GetMakeRuntimeShape",
"invalid mother");
1963 bl1 = ((
TGeoTrap*)mother)->GetBl1();
1967 bl2 = ((
TGeoTrap*)mother)->GetBl2();
1971 tl1 = ((
TGeoTrap*)mother)->GetTl1();
1975 tl2 = ((
TGeoTrap*)mother)->GetTl2();
1978 return (
new TGeoGtra(dz,
fTheta,
fPhi,
fTwistAngle ,h1, bl1, tl1,
fAlpha1, h2, bl2, tl2,
fAlpha2));
1995 out <<
" // Shape: " <<
GetName() <<
" type: " <<
ClassName() << std::endl;
1996 out <<
" dz = " <<
fDz <<
";" << std::endl;
1997 out <<
" theta = " <<
fTheta <<
";" << std::endl;
1998 out <<
" phi = " <<
fPhi <<
";" << std::endl;
1999 out <<
" twist = " <<
fTwistAngle <<
";" << std::endl;
2000 out <<
" h1 = " <<
fH1<<
";" << std::endl;
2001 out <<
" bl1 = " <<
fBl1<<
";" << std::endl;
2002 out <<
" tl1 = " <<
fTl1<<
";" << std::endl;
2003 out <<
" alpha1 = " <<
fAlpha1 <<
";" << std::endl;
2004 out <<
" h2 = " <<
fH2 <<
";" << std::endl;
2005 out <<
" bl2 = " <<
fBl2<<
";" << std::endl;
2006 out <<
" tl2 = " <<
fTl2<<
";" << std::endl;
2007 out <<
" alpha2 = " <<
fAlpha2 <<
";" << std::endl;
2008 out <<
" TGeoShape *" <<
GetPointerName() <<
" = new TGeoGtra(\"" <<
GetName() <<
"\", dz,theta,phi,twist,h1,bl1,tl1,alpha1,h2,bl2,tl2,alpha2);" << std::endl;
2041 for (i=0; i<4; i++) {
2050 for (i=4; i<8; i++) {
2067 for (
Int_t i=0; i<vecsize; i++) dists[i] =
DistFromInside(&points[3*i], &dirs[3*i], 3, step[i]);
2075 for (
Int_t i=0; i<vecsize; i++) dists[i] =
DistFromOutside(&points[3*i], &dirs[3*i], 3, step[i]);
2085 for (
Int_t i=0; i<vecsize; i++) safe[i] =
Safety(&points[3*i], inside[i]);
TGeoVolumeMulti * MakeVolumeMulti(const char *name, TGeoMedium *medium)
Make a TGeoVolumeMulti handling a list of volumes.
virtual void SetPoints(Double_t *points) const
Creates arb8 mesh points.
Double_t SafetyToFace(const Double_t *point, Int_t iseg, Bool_t in) const
Estimate safety to lateral plane defined by segment iseg in range [0,3] Might be negative: plane seen...
Bool_t IsRunTimeShape() const
double dist(Rotation3D const &r1, Rotation3D const &r2)
void SetPlaneVertices(Double_t zpl, Double_t *vertices) const
Computes intersection points between plane at zpl and non-horizontal edges.
virtual Int_t WriteClassBuffer(const TClass *cl, void *pointer)=0
#define snext(osub1, osub2)
Long64_t LocMax(Long64_t n, const T *a)
static double p3(double t, double a, double b, double c, double d)
virtual ~TGeoGtra()
Destructor.
void SetFinder(TGeoPatternFinder *finder)
virtual TGeoVolume * Divide(TGeoVolume *voldiv, const char *divname, Int_t iaxis, Int_t ndiv, Double_t start, Double_t step)
Divide this shape along one axis.
TVector3 cross(const TVector3 &v1, const TVector3 &v2)
void AddNodeOffset(TGeoVolume *vol, Int_t copy_no, Double_t offset=0, Option_t *option="")
Add a division node to the list of nodes.
virtual void SavePrimitive(std::ostream &out, Option_t *option="")
Save a primitive as a C++ statement(s) on output stream "out".
virtual void Safety_v(const Double_t *points, const Bool_t *inside, Double_t *safe, Int_t vecsize) const
Compute safe distance from each of the points in the input array.
virtual Double_t Safety(const Double_t *point, Bool_t in=kTRUE) const
Computes the closest distance from given point to this shape.
virtual void SetName(const char *name)
Change (i.e.
virtual void Contains_v(const Double_t *points, Bool_t *inside, Int_t vecsize) const
Check the inside status for each of the points in the array.
Buffer base class used for serializing objects.
Short_t Min(Short_t a, Short_t b)
virtual Double_t GetDY() const
virtual Bool_t GetPointsOnFacet(Int_t, Int_t, Double_t *) const
Fills array with n random points located on the surface of indexed facet.
virtual Double_t DistFromOutside(const Double_t *point, const Double_t *dir, Int_t iact=1, Double_t step=TGeoShape::Big(), Double_t *safe=0) const
Compute distance from outside point to surface of the box.
Bool_t IsRotation() const
virtual Double_t GetDZ() const
Int_t GetNdaughters() const
Double_t GetTwist(Int_t iseg) const
Get twist for segment I in range [0,3].
static Bool_t IsSameWithinTolerance(Double_t a, Double_t b)
Check if two numbers differ with less than a tolerance.
void SetBit(UInt_t f, Bool_t set)
Set or unset the user status bits as specified in f.
virtual Double_t DistFromInside(const Double_t *point, const Double_t *dir, Int_t iact=1, Double_t step=TGeoShape::Big(), Double_t *safe=0) const
Compute distance from inside point to surface of the trapezoid.
static Double_t Tolerance()
virtual void SavePrimitive(std::ostream &out, Option_t *option="")
Save a primitive as a C++ statement(s) on output stream "out".
const char * Data() const
virtual void Fatal(const char *method, const char *msgfmt,...) const
Issue fatal error message.
static const double x2[5]
virtual void Safety_v(const Double_t *points, const Bool_t *inside, Double_t *safe, Int_t vecsize) const
Compute safe distance from each of the points in the input array.
Double_t DistToPlane(const Double_t *point, const Double_t *dir, Int_t ipl, Bool_t in) const
Computes distance to plane ipl : ipl=0 : points 0,4,1,5 ipl=1 : points 1,5,2,6 ipl=2 : points 2...
void AddVolume(TGeoVolume *vol)
Add a volume with valid shape to the list of volumes.
static double p2(double t, double a, double b, double c)
Double_t fXY[8][2]
[4] tangents of twist angles
virtual void DistFromOutside_v(const Double_t *points, const Double_t *dirs, Double_t *dists, Int_t vecsize, Double_t *step) const
Compute distance from array of input points having directions specisied by dirs. Store output in dist...
virtual void SetVertex(Int_t vnum, Double_t x, Double_t y)
Set values for a given vertex.
virtual void Error(const char *method, const char *msgfmt,...) const
Issue error message.
virtual void ComputeBBox()
Computes bounding box for an Arb8 shape.
virtual Double_t DistFromOutside(const Double_t *point, const Double_t *dir, Int_t iact=1, Double_t step=TGeoShape::Big(), Double_t *safe=0) const
Compute distance from inside point to surface of the shape.
virtual void ComputeNormal_v(const Double_t *points, const Double_t *dirs, Double_t *norms, Int_t vecsize)
Compute the normal for an array o points so that norm.dot.dir is positive Input: Arrays of point coor...
virtual Int_t GetFittingBox(const TGeoBBox *parambox, TGeoMatrix *mat, Double_t &dx, Double_t &dy, Double_t &dz) const
Fills real parameters of a positioned box inside this arb8. Returns 0 if successfull.
virtual const Double_t * GetOrigin() const
virtual TGeoShape * GetMakeRuntimeShape(TGeoShape *mother, TGeoMatrix *mat) const
In case shape has some negative parameters, these have to be computed in order to fit the mother...
virtual void ComputeNormal(const Double_t *point, const Double_t *dir, Double_t *norm)
Compute normal to closest surface from POINT.
static Bool_t IsSegCrossing(Double_t x1, Double_t y1, Double_t x2, Double_t y2, Double_t x3, Double_t y3, Double_t x4, Double_t y4)
Check if segments (A,B) and (C,D) are crossing, where: A(x1,y1), B(x2,y2), C(x3,y3), D(x4,y4)
virtual void Safety_v(const Double_t *points, const Bool_t *inside, Double_t *safe, Int_t vecsize) const
Compute safe distance from each of the points in the input array.
virtual Double_t DistFromOutside(const Double_t *point, const Double_t *dir, Int_t iact=1, Double_t step=TGeoShape::Big(), Double_t *safe=0) const
Compute distance from outside point to surface of the trapezoid.
virtual Double_t GetDX() const
virtual void InspectShape() const
Prints shape parameters.
TNamed & operator=(const TNamed &rhs)
TNamed assignment operator.
virtual ~TGeoTrap()
destructor
virtual Double_t DistFromInside(const Double_t *point, const Double_t *dir, Int_t iact=1, Double_t step=TGeoShape::Big(), Double_t *safe=0) const
Compute distance from inside point to surface of the shape.
virtual void DistFromOutside_v(const Double_t *points, const Double_t *dirs, Double_t *dists, Int_t vecsize, Double_t *step) const
Compute distance from array of input points having directions specisied by dirs. Store output in dist...
static Bool_t InsidePolygon(Double_t x, Double_t y, Double_t *pts)
Finds if a point in XY plane is inside the polygon defines by PTS.
virtual Double_t DistFromInside(const Double_t *point, const Double_t *dir, Int_t iact=1, Double_t step=TGeoShape::Big(), Double_t *safe=0) const
Compute distance from inside point to surface of the shape.
virtual const char * ClassName() const
Returns name of class to which the object belongs.
virtual Double_t Safety(const Double_t *point, Bool_t in=kTRUE) const
Computes the closest distance from given point to this shape.
virtual void LocalToMaster(const Double_t *local, Double_t *master) const
convert a point by multiplying its column vector (x, y, z, 1) to matrix inverse
void ComputeTwist()
Computes tangents of twist angles (angles between projections on XY plane of corresponding -dz +dz ed...
Bool_t TestBit(UInt_t f) const
virtual void SavePrimitive(std::ostream &out, Option_t *option="")
Save a primitive as a C++ statement(s) on output stream "out".
virtual void DistFromInside_v(const Double_t *points, const Double_t *dirs, Double_t *dists, Int_t vecsize, Double_t *step) const
Compute distance from array of input points having directions specisied by dirs. Store output in dist...
static Bool_t IsSamePoint(const Double_t *p1, const Double_t *p2)
static double p1(double t, double a, double b)
virtual Double_t DistFromOutside(const Double_t *point, const Double_t *dir, Int_t iact=1, Double_t step=TGeoShape::Big(), Double_t *safe=0) const
Computes distance from outside point to surface of the shape.
virtual Double_t Safety(const Double_t *point, Bool_t in=kTRUE) const
Computes the closest distance from given point to this shape.
void SetDivIndex(Int_t index)
ClassImp(TGeoArb8) TGeoArb8
Default ctor.
virtual const char * GetName() const
Get the shape name.
virtual Bool_t Contains(const Double_t *point) const
Test if point is inside this shape.
Double_t GetClosestEdge(const Double_t *point, Double_t *vert, Int_t &isegment) const
Get index of the edge of the quadrilater represented by vert closest to point.
virtual Int_t ReadClassBuffer(const TClass *cl, void *pointer, const TClass *onfile_class=0)=0
virtual void DistFromInside_v(const Double_t *points, const Double_t *dirs, Double_t *dists, Int_t vecsize, Double_t *step) const
Compute distance from array of input points having directions specisied by dirs. Store output in dist...
virtual void Sizeof3D() const
Fill size of this 3-D object.
virtual void InspectShape() const
Prints shape parameters.
static const double x1[5]
R__EXTERN TGeoManager * gGeoManager
virtual Double_t Capacity() const
Computes capacity of the shape in [length^3].
ClassImp(TMCParticle) void TMCParticle printf(": p=(%7.3f,%7.3f,%9.3f) ;", fPx, fPy, fPz)
virtual void DistFromInside_v(const Double_t *points, const Double_t *dirs, Double_t *dists, Int_t vecsize, Double_t *step) const
Compute distance from array of input points having directions specisied by dirs. Store output in dist...
const char * GetPointerName() const
Provide a pointer name containing uid.
static void GetPlaneNormal(Double_t *p1, Double_t *p2, Double_t *p3, Double_t *norm)
Computes normal to plane defined by P1, P2 and P3.
virtual Double_t Safety(const Double_t *point, Bool_t in=kTRUE) const
Computes the closest distance from given point to this shape.
void SetShapeBit(UInt_t f, Bool_t set)
Equivalent of TObject::SetBit.
virtual ~TGeoArb8()
Destructor.
Bool_t TestShapeBit(UInt_t f) const
TGeoMedium * GetMedium() const
Short_t Max(Short_t a, Short_t b)
virtual void GetBoundingCylinder(Double_t *param) const
— Fill vector param[4] with the bounding cylinder parameters.
TGeoArb8 & operator=(const TGeoArb8 &)
assignment operator
Double_t Sqrt(Double_t x)
TObject * At(Int_t idx) const
virtual void SetDimensions(Double_t *param)
Set all arb8 params in one step.
virtual void SetDimensions(Double_t *param)
Set all arb8 params in one step.
virtual void Sizeof3D() const
virtual TGeoVolume * Divide(TGeoVolume *voldiv, const char *divname, Int_t iaxis, Int_t ndiv, Double_t start, Double_t step)
— Divide this trapezoid shape belonging to volume "voldiv" into ndiv volumes called divname...
Long64_t LocMin(Long64_t n, const T *a)
double norm(double *x, double *p)
virtual void DistFromOutside_v(const Double_t *points, const Double_t *dirs, Double_t *dists, Int_t vecsize, Double_t *step) const
Compute distance from array of input points having directions specisied by dirs. Store output in dist...
virtual Bool_t Contains(const Double_t *point) const
Test if point is inside this shape.
virtual void SetDimensions(Double_t *param)
Set all arb8 params in one step.
virtual Double_t GetAxisRange(Int_t iaxis, Double_t &xlo, Double_t &xhi) const
Get shape range on a given axis.
virtual TGeoShape * GetMakeRuntimeShape(TGeoShape *mother, TGeoMatrix *mat) const
In case shape has some negative parameters, these has to be computed in order to fit the mother...