FACT++  1.0
void TPointGui::DrawMarker ( TVirtualPad *  pad,
Double_t  r0,
Double_t  phi0 
)
private

Definition at line 412 of file TPointGui.cc.

References kBlue.

Referenced by DrawSet().

413 {
414  TView *view = pad->GetView();
415 
416  if (!view)
417  {
418  cout << "No View!" << endl;
419  return;
420  }
421 
422  TMarker mark0;
423  mark0.SetMarkerStyle(kFullDotLarge);
424  mark0.SetMarkerColor(kBlue);
425 
426  r0 /= 90;
427  phi0 *= TMath::DegToRad();
428 
429  Double_t x[6] = { r0*cos(phi0), r0*sin(phi0), 0, 0, 0, 0};
430 
431  view->WCtoNDC(x, x+3);
432 
433  mark0.DrawMarker(-x[3], x[4]);
434 }
Set color Blue.
Definition: WindowLog.h:20

+ Here is the caller graph for this function: