Back to home page

sPhenix code displayed by LXR

 
 

    


File indexing completed on 2026-04-07 08:08:30

0001 // HistogramUtils.h
0002 #ifndef HISTOGRAMUTILS_H
0003 #define HISTOGRAMUTILS_H
0004 
0005 #include "TH1.h"
0006 
0007 class HistogramUtils {
0008 public:
0009     static double GetMaxBinContentInRange(TH1* hist, double xMin, double xMax);
0010     static int FindFirstOccupiedBin(TH1* hist, double threshold);
0011 };
0012 
0013 #endif