#ifndef TPCPSAPLOT_H #define TPCPSAPLOT_H #include "TGraph.h" #include "TLine.h" #include "TCanvas.h" #include "TApplication.h" #include "TSystem.h" #include "PndTpcSample.h" #include "PndTpcDigi.h" #include "PndTpcSignal.h" #include "PndTpcFrontend.h" #include #include class PndTpcPSAplot { public: PndTpcPSAplot(std::vector*, std::vector*, std::vector*, const PndTpcFrontend* const, std::string); ~PndTpcPSAplot(); void Draw(); private: TGraph* fsampG; TGraph* fdigiG; TLine** fdigiLines; int fnDigiLines; TLine** fsigLines; int fnSigLines; std::string fname; }; #endif