| 995 |
for (i=0;i<nch;i++) chopt[i] = toupper(option[i]); |
for (i=0;i<nch;i++) chopt[i] = toupper(option[i]); |
| 996 |
chopt[nch] = 0; |
chopt[nch] = 0; |
| 997 |
|
|
| 998 |
l = strstr(chopt,"3D"); |
l = (char*)strstr(chopt,"3D"); |
| 999 |
if (l) { |
if (l) { |
| 1000 |
l = strstr(chopt,"L"); |
l = (char*)strstr(chopt,"L"); |
| 1001 |
if (l) PaintPolyLine3D(chopt); |
if (l) PaintPolyLine3D(chopt); |
| 1002 |
return; |
return; |
| 1003 |
} |
} |
| 1004 |
|
|
| 1005 |
TGraph *g; |
TGraph *g; |
| 1006 |
|
|
| 1007 |
l = strstr(chopt,"A"); |
l = (char*)strstr(chopt,"A"); |
| 1008 |
if (l) { |
if (l) { |
| 1009 |
*l = ' '; |
*l = ' '; |
| 1010 |
TIter next(fGraphs); |
TIter next(fGraphs); |
| 1217 |
frame->SetMinimum(rwymin); |
frame->SetMinimum(rwymin); |
| 1218 |
frame->SetMaximum(rwymax); |
frame->SetMaximum(rwymax); |
| 1219 |
|
|
| 1220 |
l = strstr(option,"A"); |
l = (char*)strstr(option,"A"); |
| 1221 |
if (l) frame->Paint("lego0,fb,bb"); |
if (l) frame->Paint("lego0,fb,bb"); |
| 1222 |
l = strstr(option,"BB"); |
l = (char*)strstr(option,"BB"); |
| 1223 |
if (!l) frame->Paint("lego0,fb,a,same"); |
if (!l) frame->Paint("lego0,fb,a,same"); |
| 1224 |
|
|
| 1225 |
Double_t *x, *y; |
Double_t *x, *y; |
| 1247 |
j--; |
j--; |
| 1248 |
} |
} |
| 1249 |
|
|
| 1250 |
l = strstr(option,"FB"); |
l = (char*)strstr(option,"FB"); |
| 1251 |
if (!l) frame->Paint("lego0,bb,a,same"); |
if (!l) frame->Paint("lego0,bb,a,same"); |
| 1252 |
delete frame; |
delete frame; |
| 1253 |
} |
} |