Skip to content
Snippets Groups Projects
Commit ca1f56c6 authored by clantz's avatar clantz
Browse files

Added SinglePlot and ScatterPlot. Also added a _line argument to OverlayHistos

parent 5856a9c2
No related branches found
No related tags found
No related merge requests found
...@@ -20,7 +20,7 @@ class Visualizer { ...@@ -20,7 +20,7 @@ class Visualizer {
Visualizer(); Visualizer();
Visualizer( std::string _style ); Visualizer( std::string _style );
//Styles (so fa only ATLAS) //Styles (so far only ATLAS)
TStyle* AtlasStyle(); TStyle* AtlasStyle();
//Methods to set a given style //Methods to set a given style
void SetAtlasStyle(); void SetAtlasStyle();
...@@ -32,7 +32,8 @@ class Visualizer { ...@@ -32,7 +32,8 @@ class Visualizer {
void SetDebugMode ( bool _isDebugon ) { m_debug = _isDebugon; } void SetDebugMode ( bool _isDebugon ) { m_debug = _isDebugon; }
//Special plot treatments //Special plot treatments
void OverlayHistos ( TH1 *h1, TH1 *h2 , TVirtualPad* pad); void OverlayHistos ( TH1 *h1, TH1 *h2 , TVirtualPad* pad, float _line = 0);
void ScatterPlot ( std::vector< float > _v1, std::vector< float > _v2, TVirtualPad* pad);
//Main visualization methods //Main visualization methods
void ManyPadsPlot ( std::vector< TH1* > _first_form, std::vector< TH1* > _second_form, int _ncol, int _nrow, std::string _out_name, std::string _treatment ); void ManyPadsPlot ( std::vector< TH1* > _first_form, std::vector< TH1* > _second_form, int _ncol, int _nrow, std::string _out_name, std::string _treatment );
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment