How can I send multiple plots to the same plotman widget?
In the HSI_IMAGE and OSPEX objects, the plotman object reference is stored internally. Every time you call o-> plotman it will add another panel to the same plotman interface. The earlier plots are accessible under the Window_Control pulldown menu. Unlike the image object, the HSI_SPECTRUM object does not store the plotman object reference, so you have to do a little more. When you call the plotman method, you can use the plotman_obj keyword. On the first call to plotman, since the plotman object doesn’t exist yet, a new plotman will be created, and the variable reference will be returned. On subsequent calls, new panels will be added to the existing plotman interface: o-> plotman, plotman_obj=po ; first call, returns po o->plotman, plotman_obj=po ; next call, uses po to add another panel If you are using the hessi GUI, you can retrieve the plotman object reference via the hessi_data command (type hessi_data to get help on the command).