The data should be binary, indeed with matlab I'm not reading it as a text and it works fine. Another hint, a friend of mine wrote a c++ code that outputs the correct numbers and it works:
// Read the pink photon data
arg_file.read(num_photons_bin, 1);
pink_photons = (unsigned int) *num_photons_bin;
// Increment the counter based on the bytes read
status_counter += 1;
// Read pink photon data
for (int photon = 0; photon < pink_photons; photon++) {
// Read the binary data into the variable
arg_file.read((char *)&pink_x_pos, sizeof(double));
arg_file.read((char *)&pink_y_pos, sizeof(double));
arg_file.read((char *)&pink_z_pos, sizeof(double));
arg_file.read((char *)&pink_num_scatters, sizeof(int))
+;
arg_file.read((char *)&pink_col_scatters, sizeof(int))
+;
arg_file.read((char *)&pink_energy_val, sizeof(double)
+);
}
So to my understanding this is a bin file. Regarding the hexdump, unfortunately the file has a 32768bytes header so I don't know how to skip them for the hexdump (what do I have to put instead of "head"?).
Thank you very much for your attention.
Andri
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.