-
Notifications
You must be signed in to change notification settings - Fork 134
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
deactivate different limits for platforms
as it gives problems with the Error output of GetIndex when comparing with the .ref clarify wording and restore platform-dependency no need for minor/major limits
- Loading branch information
1 parent
e499c1a
commit 1ca9966
Showing
2 changed files
with
41 additions
and
38 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,33 +1,46 @@ | ||
|
||
Processing runindex64.C... | ||
****************************************************************************** | ||
* Row * run * event * | ||
****************************************************************************** | ||
* 0 * 8 * 0 * | ||
* 1 * 5 * 1 * | ||
* 2 * 5 * 3 * | ||
* 3 * 5 * 2 * | ||
* 4 * 5 * 1.15292150460684698e+18 * | ||
* 5 * 5 * 1.84467440737095516e+19 * | ||
* 6 * 0 * 5 * | ||
* 7 * 4 * 1.15292150460684698e+18 * | ||
* 8 * 6 * 3 * | ||
* 9 * 1.84467440737095516e+19 * 1.15292150460684698e+18 * | ||
* 10 * 1.15292150460684698e+18 * 1.84467440737095516e+19 * | ||
* 11 * 1.15292150460684698e+18 * 1.15292150460684698e+18 * | ||
* 12 * 1.84467440737095516e+19 * 1.84467440737095516e+19 * | ||
****************************************************************************** | ||
Tree BuildIndex returns 13 | ||
0: Run 8, Event 0 found at entry number: 0 | ||
1: Run 5, Event 1 found at entry number: 1 | ||
2: Run 5, Event 3 found at entry number: 2 | ||
3: Run 5, Event 2 found at entry number: 3 | ||
4: Run 0, Event 281474976710655 found at entry number: 4 | ||
5: Run 0, Event 4503599627370480 found at entry number: 5 | ||
6: Run 5, Event 5 found at entry number: 6 | ||
Error in <TTreeIndex::TreeIndex>: Wrong major (4) minor (281474976710655) combination | ||
7: Run 4, Event 281474976710655 found at entry number: -1 | ||
4: Run 5, Event 1152921504606846975 found at entry number: 4 | ||
5: Run 5, Event 18446744073709551600 found at entry number: -1 | ||
6: Run 0, Event 5 found at entry number: 6 | ||
7: Run 4, Event 1152921504606846975 found at entry number: 7 | ||
8: Run 6, Event 3 found at entry number: 8 | ||
Error in <TTreeIndex::TreeIndex>: Wrong major (4503599627370480) minor (281474976710655) combination | ||
9: Run 4503599627370480, Event 281474976710655 found at entry number: -1 | ||
Error in <TTreeIndex::TreeIndex>: Wrong major (1) minor (2147483648) combination | ||
10: Run 1, Event 2147483648 found at entry number: -1 | ||
11: Run 8589934591, Event 2147483647 found at entry number: 11 | ||
Error in <TTreeIndex::TreeIndex>: Wrong major (8589934592) minor (0) combination | ||
12: Run 8589934592, Event 0 found at entry number: -1 | ||
9: Run 18446744073709551600, Event 1152921504606846975 found at entry number: -1 | ||
10: Run 1152921504606846975, Event 18446744073709551600 found at entry number: -1 | ||
11: Run 1152921504606846975, Event 1152921504606846975 found at entry number: 11 | ||
12: Run 18446744073709551600, Event 18446744073709551600 found at entry number: -1 | ||
Entries in chain: 13 | ||
BuildIndex returns 13 | ||
Try to get value that is not in the chain, this should return a -1: | ||
Try to find the position of run=0, event=500 in the chain, as it does not exist, this should return a -1: | ||
-1 | ||
Try to get value that is in the chain, this should return a 4: | ||
Try to find the position of run=5, event=bigval in the chain, which was inserted in position 4: | ||
4 | ||
Entries in chain: 13 | ||
BuildIndex returns 1 | ||
Try to get value that is not in the chain, this should return a -1: | ||
Try to find the position of run=0, event=500 in the chain, as it does not exist, this should return a -1: | ||
-1 | ||
Try to get value that is in the chain, this should return a 4: | ||
Try to find the position of run=5, event=bigval in the chain, which was inserted in position 4: | ||
4 | ||
(int) 0 |
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