Beispiel #1
0
 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);
 }
Beispiel #2
0
 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);
 }