File indexing completed on 2025-08-03 08:17:24
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011 #ifndef QAHISTMANAGERDEF_H_
0012 #define QAHISTMANAGERDEF_H_
0013
0014 #include <string>
0015 #include <vector>
0016 class Fun4AllHistoManager;
0017 class TAxis;
0018
0019 namespace QAHistManagerDef
0020 {
0021
0022 Fun4AllHistoManager*
0023 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