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