Skip to content

Commit

Permalink
Replace NCSA references
Browse files Browse the repository at this point in the history
Replaced NCSA with Library/library where appropriate
  • Loading branch information
bmribler committed Dec 1, 2023
1 parent e70534a commit 0ac918d
Show file tree
Hide file tree
Showing 18 changed files with 136 additions and 185 deletions.
23 changes: 12 additions & 11 deletions hdf/src/dffunc.inc
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
C****************************************************************************
C* NCSA HDF *
C* Software Development Group *
C* National Center for Supercomputing Applications *
C* University of Illinois at Urbana-Champaign *
C* 605 E. Springfield, Champaign IL 61820 *
C* *
C* For conditions of distribution and use, see the accompanying *
C* hdf/COPYING file. *
C* *
C****************************************************************************
C* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
C* Copyright by The HDF Group. *
C* Copyright by the Board of Trustees of the University of Illinois. *
C* All rights reserved. *
C* *
C* This file is part of HDF. The full HDF copyright notice, including *
C* terms governing use, modification, and redistribution, is contained in *
C* the COPYING file, which can be found at the root of the source code *
C* distribution tree, or in https://support.hdfgroup.org/ftp/HDF/releases/. *
C* If you do not have access to either file, you may request a copy from *
C* [email protected]. *
C* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
C
C
C dffunc.inc
Expand Down
25 changes: 13 additions & 12 deletions hdf/src/hdf.inc
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
C****************************************************************************
C* NCSA HDF *
C* Software Development Group *
C* National Center for Supercomputing Applications *
C* University of Illinois at Urbana-Champaign *
C* 605 E. Springfield, Champaign IL 61820 *
C* *
C* For conditions of distribution and use, see the accompanying *
C* hdf/COPYING file. *
C* *
C****************************************************************************
C
C* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
C* Copyright by The HDF Group. *
C* Copyright by the Board of Trustees of the University of Illinois. *
C* All rights reserved. *
C* *
C* This file is part of HDF. The full HDF copyright notice, including *
C* terms governing use, modification, and redistribution, is contained in *
C* the COPYING file, which can be found at the root of the source code *
C* distribution tree, or in https://support.hdfgroup.org/ftp/HDF/releases/. *
C* If you do not have access to either file, you may request a copy from *
C* [email protected]. *
C* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *

C
C *-----------------------------------------------------------------------------
C * File: hdf.inc
Expand Down
6 changes: 3 additions & 3 deletions hdf/src/hfile.c
Original file line number Diff line number Diff line change
Expand Up @@ -2323,11 +2323,11 @@ HIunlock(filerec_t *file_rec)
/* ------------------------- SPECIAL TAG ROUTINES ------------------------- */
/*
The HDF tag space is divided as follows based on the 2 highest bits:
00: NCSA reserved ordinary tags
01: NCSA reserved special tags
00: Library reserved ordinary tags
01: Library reserved special tags
10, 11: User tags.
It is relatively cheap to operate with special tags within the NCSA
It is relatively cheap to operate with special tags within the library
reserved tags range. For users to specify special tags and their
corresponding ordinary tag, the pair has to be added to the
special_table.
Expand Down
20 changes: 10 additions & 10 deletions hdf/src/hfile.h
Original file line number Diff line number Diff line change
Expand Up @@ -130,20 +130,20 @@ typedef int hdf_file_t;
tag/ref (unique data identifier in file)
Tag -- identifies the type of data, 16 bit unsigned integer whose
value ranges from 1 - 65535. Tags are assigned by NCSA.
value ranges from 1 - 65535. Tags are assigned by the library.
The HDF tag space is divided as follows based on the 2 highest bits:
00: NCSA reserved ordinary tags
01: NCSA reserved special tags(i.e. regular tags made into
00: Library reserved ordinary tags
01: Library reserved special tags(i.e. regular tags made into
linked-block, external,
compressed or chunked.)
10, 11: User tags.
Current tag assignments are:
00001 - 32767 - reserved for NCSA use
00001 - 16383 - NCSA regular tags
16384 - 32767 - NCSA special tags
32768 - 64999 - user definable
00001 - 32767 - reserved for library use
00001 - 16383 - library use regular tags
16384 - 32767 - library use special tags
32768 - 64999 - user definable tags
65000 - 65535 - reserved for expansion of format
Reference number - 16 bit unsigned integer whose assignment is not
Expand Down Expand Up @@ -380,11 +380,11 @@ typedef struct functab_t {

/* --------------------------- Special Elements --------------------------- */
/* The HDF tag space is divided as follows based on the 2 highest bits:
00: NCSA reserved ordinary tags
01: NCSA reserved special tags(e.g. linked-block, external, compressed,..)
00: Library reserved ordinary tags
01: Library reserved special tags(e.g. linked-block, external, compressed,..)
10, 11: User tags.
It is relatively cheap to operate with special tags within the NCSA
It is relatively cheap to operate with special tags within the library
reserved tags range. For users to specify special tags and their
corresponding ordinary tag, the pair has to be added to the
special_table in hfile.c and SPECIAL_TABLE must be defined. */
Expand Down
25 changes: 13 additions & 12 deletions hdf/src/src.inc
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
# ****************************************************************************
# * NCSA HDF *
# * Software Development Group *
# * National Center for Supercomputing Applications *
# * University of Illinois at Urbana-Champaign *
# * 605 E. Springfield, Champaign IL 61820 *
# * *
# * For conditions of distribution and use, see the accompanying *
# * hdf/COPYING file. *
# * *
# ***************************************************************************
#
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* Copyright by The HDF Group. *
* Copyright by the Board of Trustees of the University of Illinois. *
* All rights reserved. *
* *
* This file is part of HDF. The full HDF copyright notice, including *
* terms governing use, modification, and redistribution, is contained in *
* the COPYING file, which can be found at the root of the source code *
* distribution tree, or in https://support.hdfgroup.org/ftp/HDF/releases/. *
* If you do not have access to either file, you may request a copy from *
* help@hdfgroup.org. *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

#
# ##################################################################
#
Expand Down
7 changes: 0 additions & 7 deletions hdf/src/vgp.c
Original file line number Diff line number Diff line change
Expand Up @@ -1404,8 +1404,6 @@ NAME
DESCRIPTION
Checks to see if the given field exists in a vdata belonging to this vgroup.
28-MAR-91 Jason Ng NCSA
RETURNS
If found, returns the ref of the vdata.
If not found, or error, returns FAIL
Expand Down Expand Up @@ -1468,7 +1466,6 @@ NAME
DESCRIPTION
Checks whether the given tag/ref pair already exists in the vgroup.
28-MAR-91 Jason Ng NCSA
RETURNS
RETURNS TRUE if exist
Expand Down Expand Up @@ -1619,7 +1616,6 @@ NAME
DESCRIPTION
Returns the number (0 or +ve integer) of tag/ref pairs in a vgroup.
If error, returns FAIL
28-MAR-91 Jason Ng NCSA.
RETURNS
Expand Down Expand Up @@ -1708,7 +1704,6 @@ DESCRIPTION
Returns n tag/ref pairs from the vgroup into the caller-supplied arrays
tagrarray and refarray.
n can be any +ve number, but arrays must be this big.
28-MAR-91 Jason Ng NCSA.
NOTE: Do not confuse with Vgettagref().
Expand Down Expand Up @@ -1764,7 +1759,6 @@ NAME
DESCRIPTION
Returns a specified tag/ref pair from the vgroup.
User specifies an index.
12-MAY-91 Jason Ng NCSA.
NOTE: Do not confuse with Vgettagrefs().
Expand Down Expand Up @@ -1901,7 +1895,6 @@ DESCRIPTION
a 3D SDS can have dimensions "time", "pressure" and "pressure".)
If error, returns FAIL or tag/ref is not inserted.
If OK, returns the total number of tag/refs in the vgroup (a +ve integer).
28-MAR-91 Jason Ng NCSA.
RETURNS
Expand Down
1 change: 0 additions & 1 deletion hdf/test/egfhi.f
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
C==========================================================
c
c HDF VSET Sample Program
c Jason NG NCSA FEB-28-92
c
c EGFHI.F
c Uses High-Level routines
Expand Down
20 changes: 0 additions & 20 deletions hdf/util/fp2hdf.c
Original file line number Diff line number Diff line change
Expand Up @@ -143,26 +143,6 @@
* available by the National Center for Supercomputing Applications,
* University of Illinois, Urbana-Champaign (ftp.ncsa.uiuc.edu).
*
* History:
* Beta version: 17-May-89
* (by Mike Folk [email protected])
* Revision to put in the mean option: 15-Sep-89
* (by Glen Mortensen [email protected])
* Officially released: 01-Dec-89
* (by NCSA ftp.ncsa.uiuc.edu)
* Revision to fix some bugs: 16-Mar-90
* (by Mike Folk [email protected])
* Revision to support 3D and native fp input: 15-May-90
* (by Bob Weaver [email protected])
* Revision to fix bug in interp() : 17-Oct-90
* (by Fred Walsteijn [email protected])
* Revision to fix bug in interp() : 23-Nov-90
* Now it clips values outside of max and min.
* (by Fred Walsteijn [email protected])
* Revision to start to use HDF 3.2 (and 3.3) library: 22-Jun-93
* Still lots to do to support other number types.
* (by Chris Houck [email protected])
*
*/

#include "hdf.h"
Expand Down
3 changes: 0 additions & 3 deletions hdf/util/hdf24to8.c
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,6 @@
* i.e. 8-bit image, dimensions, and
* RGB palette.
*
* by: NCSA
* date(s): May 89, Jun 89, Aug 89, May 90
*
****************************************************************************/

typedef unsigned char UCHAR;
Expand Down
28 changes: 0 additions & 28 deletions mfhdf/hdfimport/hdfimport.c
Original file line number Diff line number Diff line change
Expand Up @@ -168,34 +168,6 @@
* or native 16-bit integer values for IN16 input format or native 8-bit
* integer values for IN08 input format.
*
* Source Availability:
* This program is in the public domain, and was developed and made
* available by the National Center for Supercomputing Applications,
* University of Illinois, Urbana-Champaign (ftp.ncsa.uiuc.edu).
*
* History:
* Beta version: 17-May-89
* (by Mike Folk [email protected])
* Revision to put in the mean option: 15-Sep-89
* (by Glen Mortensen [email protected])
* Officially released: 01-Dec-89
* (by NCSA ftp.ncsa.uiuc.edu)
* Revision to fix some bugs: 16-Mar-90
* (by Mike Folk [email protected])
* Revision to support 3D and native fp input: 15-May-90
* (by Bob Weaver [email protected])
* Revision to fix bug in interp() : 17-Oct-90
* (by Fred Walsteijn [email protected])
* Revision to fix bug in interp() : 23-Nov-90
* Now it clips values outside of max and min.
* (by Fred Walsteijn [email protected])
* Revision to start to use HDF 3.2 (and 3.3) library: 22-Jun-93
* Still lots to do to support other number types.
* (by Chris Houck [email protected])
* Revision to incorporate 32-bit integer, 16-bit integer, 08-Jan-02
* 8-bit integer data types and converting 64-bit
* input data to 64-bit output data.
* (by Pankaj Kamat [email protected])
*/

#include "hdf.h"
Expand Down
23 changes: 12 additions & 11 deletions mfhdf/hdiff/hdiff_dim.h
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
/****************************************************************************
* NCSA HDF *
* Software Development Group *
* National Center for Supercomputing Applications *
* University of Illinois at Urbana-Champaign *
* 605 E. Springfield, Champaign IL 61820 *
* *
* For conditions of distribution and use, see the accompanying *
* hdf/COPYING file. *
* *
****************************************************************************/
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* Copyright by The HDF Group. *
* Copyright by the Board of Trustees of the University of Illinois. *
* All rights reserved. *
* *
* This file is part of HDF. The full HDF copyright notice, including *
* terms governing use, modification, and redistribution, is contained in *
* the COPYING file, which can be found at the root of the source code *
* distribution tree, or in https://support.hdfgroup.org/ftp/HDF/releases/. *
* If you do not have access to either file, you may request a copy from *
* [email protected]. *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

#ifndef HDIFF_DIM_H
#define HDIFF_DIM_H
Expand Down
23 changes: 12 additions & 11 deletions mfhdf/hdiff/hdiff_list.h
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
/****************************************************************************
* NCSA HDF *
* Software Development Group *
* National Center for Supercomputing Applications *
* University of Illinois at Urbana-Champaign *
* 605 E. Springfield, Champaign IL 61820 *
* *
* For conditions of distribution and use, see the accompanying *
* hdf/COPYING file. *
* *
****************************************************************************/
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* Copyright by The HDF Group. *
* Copyright by the Board of Trustees of the University of Illinois. *
* All rights reserved. *
* *
* This file is part of HDF. The full HDF copyright notice, including *
* terms governing use, modification, and redistribution, is contained in *
* the COPYING file, which can be found at the root of the source code *
* distribution tree, or in https://support.hdfgroup.org/ftp/HDF/releases/. *
* If you do not have access to either file, you may request a copy from *
* [email protected]. *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

#ifndef HDIFF_LIST_H
#define HDIFF_LIST_H
Expand Down
23 changes: 12 additions & 11 deletions mfhdf/hdiff/hdiff_mattbl.h
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
/****************************************************************************
* NCSA HDF *
* Software Development Group *
* National Center for Supercomputing Applications *
* University of Illinois at Urbana-Champaign *
* 605 E. Springfield, Champaign IL 61820 *
* *
* For conditions of distribution and use, see the accompanying *
* hdf/COPYING file. *
* *
****************************************************************************/
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* Copyright by The HDF Group. *
* Copyright by the Board of Trustees of the University of Illinois. *
* All rights reserved. *
* *
* This file is part of HDF. The full HDF copyright notice, including *
* terms governing use, modification, and redistribution, is contained in *
* the COPYING file, which can be found at the root of the source code *
* distribution tree, or in https://support.hdfgroup.org/ftp/HDF/releases/. *
* If you do not have access to either file, you may request a copy from *
* [email protected]. *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

#ifndef HDIFF_MATTBL_H
#define HDIFF_MATTBL_H
Expand Down
Loading

0 comments on commit 0ac918d

Please sign in to comment.