Adding metadata to a vtkOpenGLActor

Hi VTK experts,
I would like to add some metadata, a string, to a vtkActor (more specifically a vtkOpenGLActor) so that when a user clicks on it, I can use the metadata to identify what the object represents and act appropriately. Is adding the metadata via vtkFieldData the best way to do this?
thank you in advance,
-Merps

vtkFieldData is important if you want to store custom metadata in standard VTK file formats. You may use vtkFieldData for storing metadata in memory, too, but normally it is more convenient and efficient to store metadata in separate classes and associate them with VTK data objects, processing filters, actors, etc.

Thanks for the (always) speedy response, Andras. Do you propose doing something like making a dict whose keys are vtkOpenGLActors and whose values are the metadata?

Yes, that should work.