comp.lang.idl-pvwave archive
Messages from Usenet group comp.lang.idl-pvwave, compiled by Paulo Penteado

Home » Public Forums » archive » Re: IDL procedure "knowing its own name"
Show: Today's Messages :: Show Polls :: Message Navigator
E-mail to friend 
Switch to threaded view of this topic Create a new topic Submit Reply
Re: IDL procedure "knowing its own name" [message #26397] Fri, 31 August 2001 00:44
Martin Schultz is currently offline  Martin Schultz
Messages: 515
Registered: August 1997
Senior Member
mperrin+news@arkham.berkeley.edu (Marshall Perrin) writes:

> Let's say I'm running somethingorother.pro. Is there any way for the procedure
> to itself determine that IDL is running a file called somethingorother.pro,
> indeed, specifically /some/file/path/somethingorother.pro?
>
> In more detail, what I've got is a script which processes a bunch of data
> and produces some output which gets stored in a user-specified directory.
> This script gets modified occasionally over time; it's useful to have a
> copy of the script stored along with the data as a historical record so
> that you can later look back and see exactly how the data was processed.
> However, this tool is used on a number of different systems, and the
> file path to the script varies from system to system. Right now I accomplish
> this by hard-coding the path and name of the procedure as variables inside
> the procedure, which means I have to change it by hand for each system.
> Any ideas on how to automate this?
>
> - Marshall

You can use my routine_name() procedure (available at
http://www.mpimet.mpg.de/~schultz.martin/idl/html/libmartin_ schultz.html#Routines_R
)

It is based on what the others suggested, but wraps it into an easy-to-use
procedure interface.


Cheers,

Martin

--
[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[ [[[[[[[
[[ Dr. Martin Schultz Max-Planck-Institut fuer Meteorologie [[
[[ Bundesstr. 55, 20146 Hamburg [[
[[ phone: +49 40 41173-308 [[
[[ fax: +49 40 41173-298 [[
[[ martin.schultz@dkrz.de [[
[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[ [[[[[[[
Re: IDL procedure "knowing its own name" [message #26414 is a reply to message #26397] Wed, 29 August 2001 13:17 Go to previous message
mperrin+news is currently offline  mperrin+news
Messages: 81
Registered: May 2001
Member
Reimar Bauer <r.bauer@fz-juelich.de> wrote:
> write
>
> help,call=call
> print,call
>
> into your routine

This is what I wanted exactly - many thanks!

- Marshall
Re: IDL procedure "knowing its own name" [message #26420 is a reply to message #26414] Wed, 29 August 2001 07:36 Go to previous message
Liam E. Gumley is currently offline  Liam E. Gumley
Messages: 378
Registered: January 2000
Senior Member
Marshall Perrin wrote:
> Let's say I'm running somethingorother.pro. Is there any way for the procedure
> to itself determine that IDL is running a file called somethingorother.pro,
> indeed, specifically /some/file/path/somethingorother.pro?
>
> In more detail, what I've got is a script which processes a bunch of data
> and produces some output which gets stored in a user-specified directory.
> This script gets modified occasionally over time; it's useful to have a
> copy of the script stored along with the data as a historical record so
> that you can later look back and see exactly how the data was processed.
> However, this tool is used on a number of different systems, and the
> file path to the script varies from system to system. Right now I accomplish
> this by hard-coding the path and name of the procedure as variables inside
> the procedure, which means I have to change it by hand for each system.
> Any ideas on how to automate this?

It sounds like a version control problem. I concur with other members of
this group that CVS works very well for version control of IDL source
code. If you use CVS or any other tool that supports RCS tags, you can
simply embed an RCS tag (such as $Id$) in an IDL string variable:

rcs_id = '$Id: imdisp.pro,v 1.45 2000/08/28 16:17:14 gumley Exp $'

The procedure or function can then print or save the string variable to
a file when it is called, and CVS takes care of inserting the version
number, date, and owner of the last modification.

For more CVS information, see

http://cimss.ssec.wisc.edu/~gumley/

under the heading 'CVS'.

Cheers,
Liam.
Practical IDL Programming
http://www.gumley.com/
Re: IDL procedure "knowing its own name" [message #26423 is a reply to message #26420] Wed, 29 August 2001 05:58 Go to previous message
David Fanning is currently offline  David Fanning
Messages: 11724
Registered: August 2001
Senior Member
Marshall Perrin (mperrin+news@arkham.berkeley.edu) writes:

> Let's say I'm running somethingorother.pro. Is there any way for the procedure
> to itself determine that IDL is running a file called somethingorother.pro,
> indeed, specifically /some/file/path/somethingorother.pro?

You can use Help, /Source to find the
specific path of compiled procedures and
functions.

> In more detail, what I've got is a script which processes a bunch of data
> and produces some output which gets stored in a user-specified directory.
> This script gets modified occasionally over time; it's useful to have a
> copy of the script stored along with the data as a historical record so
> that you can later look back and see exactly how the data was processed.
> However, this tool is used on a number of different systems, and the
> file path to the script varies from system to system. Right now I accomplish
> this by hard-coding the path and name of the procedure as variables inside
> the procedure, which means I have to change it by hand for each system.
> Any ideas on how to automate this?

I think you could use this:

Help, /Source, Output=helpoutput

to get the source output in a string array. Then it should
be fairly easy to fish the proper line out of the helpoutput
string array to indicate where the file came from

Cheers,

David

--
David W. Fanning, Ph.D.
Fanning Software Consulting
Phone: 970-221-0438, E-mail: david@dfanning.com
Coyote's Guide to IDL Programming: http://www.dfanning.com/
Toll-Free IDL Book Orders: 1-888-461-0155
Re: IDL procedure "knowing its own name" [message #26424 is a reply to message #26423] Wed, 29 August 2001 03:20 Go to previous message
R.Bauer is currently offline  R.Bauer
Messages: 1424
Registered: November 1998
Senior Member
Marshall Perrin wrote:
>
> Let's say I'm running somethingorother.pro. Is there any way for the procedure
> to itself determine that IDL is running a file called somethingorother.pro,
> indeed, specifically /some/file/path/somethingorother.pro?
>
> In more detail, what I've got is a script which processes a bunch of data
> and produces some output which gets stored in a user-specified directory.
> This script gets modified occasionally over time; it's useful to have a
> copy of the script stored along with the data as a historical record so
> that you can later look back and see exactly how the data was processed.
> However, this tool is used on a number of different systems, and the
> file path to the script varies from system to system. Right now I accomplish
> this by hard-coding the path and name of the procedure as variables inside
> the procedure, which means I have to change it by hand for each system.
> Any ideas on how to automate this?
>
> - Marshall

Dear Marshall

write

help,call=call
print,call

into your routine

regards

Reimar
--
Reimar Bauer

Institut fuer Stratosphaerische Chemie (ICG-1)
Forschungszentrum Juelich
email: R.Bauer@fz-juelich.de
http://www.fz-juelich.de/icg/icg1/
============================================================ ======
a IDL library at ForschungsZentrum Juelich
http://www.fz-juelich.de/icg/icg1/idl_icglib/idl_lib_intro.h tml

http://www.fz-juelich.de/zb/text/publikation/juel3786.html
============================================================ ======

read something about linux / windows
http://www.suse.de/de/news/hotnews/MS.html
  Switch to threaded view of this topic Create a new topic Submit Reply
Previous Topic: Re: Mysterious disappearing objects (bugs in IDLgrWindow::Draw)
Next Topic: IDL/Dataminer/mySQL is working!!

-=] Back to Top [=-
[ Syndicate this forum (XML) ] [ RSS ] [ PDF ]

Current Time: Sun Oct 12 03:55:00 PDT 2025

Total time taken to generate the page: 0.16452 seconds