I’d like to plot the location of several objects, and circles centered on those objects with some given radius. Currently, I’m plotting the locations of the objects with a TGraph. How might I go about drawing the circles on a TGraph?
For example, I may have some object located at [4,9], so there will be a marker at [4,9] on the TGraph. I know the circle in question has a radius 7, so now I want to also draw a circle, with center at [4,9] , and radius 7, on the TGraph.
Of course, if this would be easier using something other than a TGraph, I’d be more than happy to use something else.
As a follow up, is there some ROOT method to determine if ellipses intersect? For example, suppose I’ve drawn three ellipses, I want to print out the point at which they intersect (given that I know they do at some point)? Doesn’t seem to be anything like that in the ROOT docs, but maybe I should look harder. Is this possible?