Back to home page

sPhenix code displayed by LXR

 
 

    


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

0001 #include "tssaplotter/TSSAplotter.h"
0002 
0003 R__LOAD_LIBRARY(libTSSAplotter.so)
0004 
0005 int MakePlots(std::string infileTSSA, std::string infileNM = "", std::string outfileTSSA = "TSSAplots.pdf", std::string outfileNM = "NMplots.pdf") {
0006     TSSAplotter t;
0007     t.TSSAhistfname = infileTSSA;
0008     if (!infileNM.empty()) {
0009     t.do_NMhists = true;
0010     t.NMhistfname = infileNM;
0011     }
0012     t.main(outfileTSSA, outfileNM);
0013     return 0;
0014 }