This file contains hidden or 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
import sys | |
import operator | |
import numpy | |
# Note: these are pre-0.49 locations; things move around in Numba 0.49. | |
import numba | |
import numba.typing.arraydecl | |
# First, let's define the class in Python. |
This file contains hidden or 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
import numbers | |
import math | |
import numpy | |
class Binning: | |
"Abstract superclass of all binning types. Only Regular is implemented." | |
def __init__(self, *args, **kwargs): | |
raise NotImplementedError |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or 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
import hep.io.root.core.RootInput; | |
import hep.io.root.*; | |
import hep.io.root.interfaces.*; | |
public class ReadOneBranch { | |
final static long itemsPerPrint = 100000L; | |
static long lastTime = 0L; | |
static long items = 0; | |
private static void printout() { |
NewerOlder