how to tell if a program has been called? [message #86200] |
Thu, 17 October 2013 06:48  |
astroboy.20000
Messages: 39 Registered: August 2012
|
Member |
|
|
Hello,
I have an IDL program that calls a few dozen functions and procedures out of a huge library.
Is there some sort of journal command or something that will record which functions/procedures were called?
Example:
pro junk,xxx
x=findgen(100)
a=sub_one(x)
b=sub_two,a,x
c=sub_three,a,x,b
print,c
return
end
When I run junk, I'd like a record of some sort that procedures/functions sub_one, sub_two, and sub_three were called.
My apologies if this is a dumb question but I haven't been able to find this information in the group or in the documentation.
Thanks,
Mark
|
|
|
|