Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
J
JZCaPA
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Riccardo Longo
JZCaPA
Commits
51862235
Commit
51862235
authored
6 years ago
by
clantz
Browse files
Options
Downloads
Patches
Plain Diff
Changed some more floats to doubles and added default argument for _line
parent
63252c8c
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Analysis/include/Visualizer.h
+5
-3
5 additions, 3 deletions
Analysis/include/Visualizer.h
with
5 additions
and
3 deletions
Analysis/include/Visualizer.h
+
5
−
3
View file @
51862235
...
@@ -10,6 +10,8 @@
...
@@ -10,6 +10,8 @@
#include
"TH1.h"
#include
"TH1.h"
#include
"TStyle.h"
#include
"TStyle.h"
#include
"TVector.h"
#include
"TGraph.h"
#include
<iostream>
#include
<iostream>
#include
<vector>
#include
<vector>
...
@@ -32,12 +34,12 @@ class Visualizer {
...
@@ -32,12 +34,12 @@ 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
,
float
_line
=
0
);
void
OverlayHistos
(
TH1
*
h1
,
TH1
*
h2
,
TVirtualPad
*
pad
,
double
_line
=
0
);
void
ScatterPlot
(
std
::
vector
<
float
>
_v1
,
std
::
vector
<
float
>
_v2
,
TVirtualPad
*
pad
);
void
ScatterPlot
(
std
::
vector
<
double
>
_v1
,
std
::
vector
<
double
>
_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
);
void
SinglePlot
(
std
::
vector
<
double
>
_v1
,
std
::
vector
<
double
>
_v2
,
std
::
string
_out_name
,
std
::
string
_treatment
,
double
_line
);
void
SinglePlot
(
std
::
vector
<
double
>
_v1
,
std
::
vector
<
double
>
_v2
,
std
::
string
_out_name
,
std
::
string
_treatment
,
double
_line
=
0
);
private
:
private
:
/** String identifying the style to be applied */
/** String identifying the style to be applied */
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment