-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for files using the THIN option
Update to support include thinning Update for thinning data structure Changed 'thinning_levels' to 'thinning_weight' Added version test for thin file structure Added thin Cherenkov binary data file Added thin binary data file Updated the test condition for THIN file type Reduced resource file size
- Loading branch information
Showing
14 changed files
with
227 additions
and
44 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
BLOCK_SIZE_FLOATS = 273 | ||
BLOCK_SIZE_FLOATS_THIN = 312 | ||
BLOCK_SIZE_BYTES = BLOCK_SIZE_FLOATS * 4 | ||
BLOCK_SIZE_BYTES_THIN = BLOCK_SIZE_FLOATS_THIN * 4 | ||
|
||
RUNH_VERSION_POSITION = 4 | ||
EVTH_VERSION_POSITION = 46 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.