Example #1
0
 public ArrayList<H1D> getSlicesY() {
   ArrayList<H1D> slices = new ArrayList<H1D>();
   for (int loop = 0; loop < this.getYAxis().getNBins(); loop++) {
     H1D slice = this.sliceY(loop);
     slice.setName(this.getName() + "_" + loop);
     slices.add(slice);
   }
   return slices;
 }