Back to home page

sPhenix code displayed by LXR

 
 

    


File indexing completed on 2025-08-05 08:13:33

0001 #include "tssahistmaker/TSSAhistmaker.h"
0002 
0003 R__LOAD_LIBRARY(libTSSAhistmaker.so)
0004 
0005 int MakeHists(const std::string treepath, const int jobnum, const std::string outfilename = "TSSAhists.root") {
0006     TSSAhistmaker t(treepath, jobnum, outfilename);
0007     t.main();
0008     return 0;
0009 }