File indexing completed on 2025-12-16 09:20:20
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011 #ifndef QAUTILS_QAHISTMANAGERDEF_H_
0012 #define QAUTILS_QAHISTMANAGERDEF_H_
0013
0014 #include <string>
0015 #include <vector>
0016
0017 class Fun4AllHistoManager;
0018 class TAxis;
0019
0020 namespace QAHistManagerDef
0021 {
0022
0023 Fun4AllHistoManager* getHistoManager();
0024
0025
0026 void saveQARootFile(const std::string& file_name);
0027
0028
0029 static const std::string HistoManagerName = "QA_HISTOS";
0030
0031
0032 void useLogBins(TAxis* axis);
0033
0034 std::vector<std::string> tokenize(const std::string& str, const char* delimiter);
0035 }
0036
0037 #endif