Changes between Version 9 and Version 10 of VOBOZ

Show
Ignore:
Timestamp:
10/10/08 14:28:25 (5 years ago)
Author:
sskory
Comment:

Adding a few notes about output of VOBOZ

Legend:

Unmodified
Added
Removed
Modified
  • VOBOZ

    v9 v10  
    8383 
    8484{{{ 
    85 $ ~/voboz/bin/boz 10 32 0.3 1.0 RedshiftOutput0007.h5 zones.rd7.dat halos.rd7.dat halos.rd7.txt 1.2 
     85$ ~/voboz/bin/boz 10 32 0.3 1.0 RedshiftOutput0007.h5 zones.rd7.dat halos.rd7.h5 halos.rd7.txt 1.2 
    8686}}} 
     87 
     88== Output == 
     89 
     90The output is in the halos.rd7.h5 file above, which is a HD5 file. Each halo is a dataset: 
     91 
     92{{{ 
     93login3% h5ls halos.rd7.h5 | head 
     94Halo00000000             Dataset {16} 
     95Halo00000001             Dataset {42} 
     96Halo00000002             Dataset {11} 
     97Halo00000003             Dataset {7} 
     98Halo00000004             Dataset {31} 
     99Halo00000005             Dataset {18} 
     100Halo00000006             Dataset {28} 
     101Halo00000007             Dataset {29} 
     102}}} 
     103 
     104And inside each dataset is a list of the particle IDs that correspond to that halo: 
     105 
     106{{{ 
     107login3% h5dump -g Halo00000000 halos.rd7.h5 
     108HDF5 "haloesdd130.dat" { 
     109GROUP "Halo00000000" { 
     110   h5dump error: unable to open group "Halo00000000" 
     111} 
     112} 
     113login3% h5dump -d Halo00000000 haloesdd130.dat 
     114HDF5 "haloesdd130.dat" { 
     115DATASET "Halo00000000" { 
     116   DATATYPE  H5T_STD_I64LE 
     117   DATASPACE  SIMPLE { ( 16 ) / ( 16 ) } 
     118   DATA { 
     119   (0): 4, 19, 32, 36, 40, 44, 46, 49, 52, 54, 60, 66, 72, 82, 98, 178054 
     120   } 
     121} 
     122} 
     123}}}