def plotDetector(self):
""" plot a detector (circle) to plt figure """
ax = plt.gca()
ax.add_patch(patches.Circle((self.center[0],
self.center[1]),
self.radius,
fill = False))