Changeset 375 for trunk/SRC/ToBeReviewed


Ignore:
Timestamp:
08/08/08 17:55:40 (16 years ago)
Author:
pinsard
Message:

improvements of headers (paragraphs and alignments)

Location:
trunk/SRC/ToBeReviewed/STRUCTURE
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/SRC/ToBeReviewed/STRUCTURE/chkstru.pro

    r371 r375  
    1313; @param FIELDS {in}{required}{type=string} 
    1414; A string or string array with field names to  
    15 ; be contained in STRUCTURE. CHKSTRU returns 1 (true) 
    16 ; only if all field names are contained in STRUCTURE. 
     15; be contained in STRUCTURE. 
     16; 
     17; CHKSTRU returns 1 (true) only if all field names are contained in STRUCTURE. 
     18; 
    1719; The entries of FIELDS may be upper or lowercase. 
    1820; 
    1921; @keyword INDEX {type=string} 
    2022; A named variable that will contain the indices of 
    21 ; the required field names in the structure. They can then 
    22 ; be assessed through structure.(index[i]) . Index will 
    23 ; contain -1 for all fields entries that are not in the 
    24 ; structure. 
     23; the required field names in the structure.  
     24; 
     25; They can then be assessed through structure.(index[i]).  
     26; 
     27; Index will contain -1 for all fields entries that are not in the structure. 
    2528; 
    2629; @keyword VERBOSE 
    27 ; set this keyword to return an error message  
    28 ; in case of an error. 
     30; set this keyword to return an error message in case of an error. 
    2931; 
    3032; @keyword EXTRACT 
    31 ; set this keyword to extract a fields from the 
    32 ; structure.  -1 is return is fields or structure. are 
    33 ; incorrect. 
     33; set this keyword to extract a field from the structure.   
     34; -1 is return if field or structure are incorrect. 
    3435; 
    3536; @returns 
    36 ; CHKSTRU returns 1 if successful, otherwise 0. 
     37; 1 if successful, otherwise 0. 
    3738; 
    3839; @examples 
     
    4748; 
    4849; @history 
    49       mgs, 02 Mar 1998: VERSION 1.00 
    50       mgs, 07 Apr 1998: - second parameter (FIELDS) now optional 
    51       12 Jan 2001: EXTRACT keyword by S. Masson (smasson\@lodyc.jussieu.fr)  
     50- mgs, 02 Mar 1998: VERSION 1.00 
     51- mgs, 07 Apr 1998: - second parameter (FIELDS) now optional 
     52- 12 Jan 2001: EXTRACT keyword by S. Masson (smasson\@lodyc.jussieu.fr)  
    5253; 
    5354; @version 
  • trunk/SRC/ToBeReviewed/STRUCTURE/extractstru.pro

    r371 r375  
    1818; @keyword DELETE 
    1919; Specify  that the given liste concern elements of STRU to be deleted. 
     20; 
    2021; This keyword is activated by default. 
    2122; 
  • trunk/SRC/ToBeReviewed/STRUCTURE/mixstru.pro

    r371 r375  
    22; 
    33; @file_comments 
    4 ; Concatenate 2 structures together. The difference with CREATE_STRUCT  
    5 ; is  that if the 2 structure have same elements's name, then mixstru  
     4; Concatenate 2 structures together.  
     5; 
     6; The difference with <proidl>CREATE_STRUCT</proidl> 
     7; is that if the 2 structures have same elements's name, then mixstru  
    68; do not break down but choose for the common element the value  
    79; specified by the first structure. 
     
    2224; 
    2325; @restrictions 
    24 ; If STRU1 or  STRU2 is not a structure, mixstru send back -1 
     26; If STRU1 or STRU2 are not structure, mixstru send back -1 
    2527; 
    2628; @examples 
  • trunk/SRC/ToBeReviewed/STRUCTURE/where_tag.pro

    r371 r375  
    22; 
    33; @file_comments 
    4 ; Like WHERE but works on structure tag names 
     4; Like <proidl>WHERE</proidl> but works on structure tag names 
     5; 
    56; Obtain subscripts of elements in structure array for which 
    67; a particular Tag has values in a range or matching specified values. 
    7 ; Like the WHERE function but for use with structures 
     8; 
     9; Like the <proidl>WHERE</proidl> function but for use with structures 
    810;  
    911; @categories 
     
    1719;  
    1820; @keyword TAG_NUMBER 
    19 ; Otherwise give the Tag Number, 
     21; Otherwise give the Tag Number 
    2022;  
    2123; @keyword RANGE 
    22 ;  [min,max] range to search for in Struct 
     24; [min,max] range to search for in STRUCT 
    2325;  
    2426; @keyword VALUES 
    25 ; One or array of numbers to match for in Struct, 
     27; One or array of numbers to match for in STRUCT 
    2628;  
    2729; @keyword ISELECT 
     
    3840; @restrictions 
    3941; User *must* specify (1) TAG_NAME or TAG_NUMBER to search, and (2) 
    40 ; the VALUES or RANGE to search on; 
     42; the VALUES or RANGE to search on. 
    4143; 
    4244; @examples 
Note: See TracChangeset for help on using the changeset viewer.