#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* _sampG; TGraph* _digiG; TLine** _digiLines; int _nDigiLines; TLine** _sigLines; int _nSigLines; std::string _name; }; #endif