#ifndef ROOTPLOTTER_H #define ROOTPLOTTER_H #include #include #include "Nucleus.h" #include #include #include #include struct GraphData { std::string name; std::string title; std::vector xvec; std::vector yvec; int color; }; class RootPlotter { public: RootPlotter(); ~RootPlotter(); inline void ClearTable() { table->Clear(); }; inline THashTable* GetTable() { GenerateGraphs(); return table; }; void FillData(const Mask::Nucleus& nuc, const std::string& modifier = ""); private: THashTable* table; void GenerateGraphs(); void MyFill(const std::string& name, const std::string& title, int bins, float min, float max, double val); void MyFill(const std::string& name, const std::string& title, int binsx, float minx, float maxx, int binsy, float miny, float maxy, double valx, double valy); void MyFill(const std::string& name, const std::string& title, double valx, double valy, int color); //TGraph std::vector garbage_collection; std::vector graphs; static constexpr double rad2deg = 180.0/M_PI; }; #endif