mirror of
https://bitbucket.org/cosmicvoids/vide_public.git
synced 2025-07-04 15:21:11 +00:00
Imported Healpix, cfitsio, cosmotool. Added cmake tool to build dependencies (cfitsio, hdf5, netcdf, boost, healpix, gsl, ..). Adjusted CMakeLists.txt
This commit is contained in:
parent
4bfb62f177
commit
51f6798f88
241 changed files with 243806 additions and 0 deletions
31
external/cfitsio/f77.inc
vendored
Normal file
31
external/cfitsio/f77.inc
vendored
Normal file
|
@ -0,0 +1,31 @@
|
|||
C Codes for FITS extension types
|
||||
integer IMAGE_HDU, ASCII_TBL, BINARY_TBL
|
||||
parameter (
|
||||
& IMAGE_HDU = 0,
|
||||
& ASCII_TBL = 1,
|
||||
& BINARY_TBL = 2 )
|
||||
|
||||
C Codes for FITS table data types
|
||||
|
||||
integer TBIT,TBYTE,TLOGICAL,TSTRING,TSHORT,TINT
|
||||
integer TFLOAT,TDOUBLE,TCOMPLEX,TDBLCOMPLEX
|
||||
parameter (
|
||||
& TBIT = 1,
|
||||
& TBYTE = 11,
|
||||
& TLOGICAL = 14,
|
||||
& TSTRING = 16,
|
||||
& TSHORT = 21,
|
||||
& TINT = 31,
|
||||
& TFLOAT = 42,
|
||||
& TDOUBLE = 82,
|
||||
& TCOMPLEX = 83,
|
||||
& TDBLCOMPLEX = 163 )
|
||||
|
||||
C Codes for iterator column types
|
||||
|
||||
integer InputCol, InputOutputCol, OutputCol
|
||||
parameter (
|
||||
& InputCol = 0,
|
||||
& InputOutputCol = 1,
|
||||
& OutputCol = 2 )
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue