/* * GraphAnalyzer.hh * * Created on: Apr 22, 2015 * Author: Hovanaes Egiyan */ #ifndef GRAPHANALYZER_HH_ #define GRAPHANALYZER_HH_ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include using namespace std; class GraphAnalyzer : public TGraph2DErrors { protected: string gaScanName; string gaLabel; public: GraphAnalyzer( TGraph2DErrors* graph, string sName, string label ); virtual ~GraphAnalyzer(); GraphAnalyzer( const GraphAnalyzer& analyzer ); virtual TObject * Clone (const char *newname="") const ; virtual void Paint(Option_t *option = "") ; virtual char* GetObjectInfo(Int_t px, Int_t py) const; ClassDef(GraphAnalyzer,0) }; #endif /* GRAPHANALYZER_HH_ */