public FrequencyBinner(int numBins) { this.numBins = numBins; // 256 is a magic number here. seems to work. this.tracker = new MaxTracker(256); }