public void bookHistoModule( TDirectory dir, String name, String xTitle, String yTitle, int nBinsX, double xMin, double xMax, int nBinsY, double yMin, double yMax) { HistoModule histoModule = new HistoModule(rootDir, dir, name); histoModule.book(name, xTitle, yTitle, nBinsX, xMin, xMax, nBinsY, yMin, yMax); histoModuleMap.put(name, histoModule); }
public void bookHistoModule(TDirectory dir, String name, int nBins, double xMin, double xMax) { HistoModule histoModule = new HistoModule(rootDir, dir, name); histoModule.book(name, nBins, xMin, xMax); histoModuleMap.put(name, histoModule); }