Skip to content

Commit f9149de

Browse files
committed
Added changing time
1 parent 242be80 commit f9149de

12 files changed

+26
-25
lines changed

tutorials/hist/hist001_TH1_fillrandom_uhi.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
## \macro_code
88
##
99
## \date July 2025
10-
## \author Giacomo Parolini , Nursena Bitirgen
10+
## \author Giacomo Parolini, Nursena Bitirgen
1111

1212
import numpy as np
1313
import ROOT

tutorials/hist/hist002_TH1_fillrandom_userfunc_uhi.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@
77
## \macro_code
88
##
99
## \date July 2025
10-
## \author Rene Brun, Giacomo Parolini , Nursena Bitirgen
10+
## \author Rene Brun, Giacomo Parolini, Nursena Bitirgen
11+
1112
import numpy as np
1213
import ROOT
1314

@@ -20,9 +21,9 @@
2021
sqroot = ROOT.TF1("sqroot", "x*gaus(0) + [3]*form1", rangeMin, rangeMax)
2122
# Set parameters to the functions "gaus" and "form1".
2223
gausScale = 10.0 # [0]
23-
gausMean = 4.0 # [1]
24-
gausVar = 1.0 # [2]
25-
form1Scale = 20.0 # [3]
24+
gausMean = 4.0 # [1]
25+
gausVar = 1.0 # [2]
26+
form1Scale = 20.0 # [3]
2627
sqroot.SetParameters(gausScale, gausMean, gausVar, form1Scale)
2728
# Create a one dimensional histogram and fill it following the distribution in function sqroot.
2829
h1d = ROOT.TH1D("h1d", "Test random numbers", 200, rangeMin, rangeMax)

tutorials/hist/hist003_TH1_draw_uhi.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
## \macro_code
1010
##
1111
## \date July 2025
12-
## \author Rene Brun, Giacomo Parolini , Nursena Bitirgen
12+
## \author Rene Brun, Giacomo Parolini, Nursena Bitirgen
1313

1414
import matplotlib.pyplot as plt
1515
import mplhep as hep

tutorials/hist/hist007_TH1_liveupdate_uhi.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,8 @@
55
##
66
## \macro_image
77
## \macro_code
8-
##
9-
## \author Wim Lavrijsen , Nursena Bitirgen
10-
8+
## \date July 2025
9+
## \author Wim Lavrijsen, Nursena Bitirgen
1110

1211
import matplotlib.pyplot as plt
1312
import mplhep as hep

tutorials/hist/hist010_TH1_two_scales_uhi.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,9 @@
77
##
88
## \macro_image
99
## \macro_code
10-
##
11-
## \author Alberto Ferro , Nursena Bitirgen
10+
## \date July 2025
11+
## \author Alberto Ferro, Nursena Bitirgen
12+
1213
import matplotlib.pyplot as plt
1314
import mplhep as hep
1415
import numpy as np

tutorials/hist/hist015_TH1_read_and_draw_uhi.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
## \macro_image
77
## \macro_output
88
## \macro_code
9-
##
10-
## \author Wim Lavrijsen , Nursena Bitirgen
9+
## \date July 2025
10+
## \author Wim Lavrijsen, Nursena Bitirgen
1111

1212
import matplotlib.pyplot as plt
1313
import mplhep as hep

tutorials/hist/hist029_TRatioPlot_simple_uhi.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
##
1010
## \macro_image
1111
## \macro_code
12-
##
13-
## \author Alberto Ferro , Nursena Bitirgen
12+
## \date July 2025
13+
## \author Alberto Ferro, Nursena Bitirgen
1414

1515
import matplotlib.pyplot as plt
1616
import mplhep as hep

tutorials/hist/hist031_TRatioPlot_residual_fit_uhi.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
##
1010
## \macro_image
1111
## \macro_code
12-
##
13-
## \author Alberto Ferro , Nursena Bitirgen
12+
## \date July 2025
13+
## \author Alberto Ferro, Nursena Bitirgen
1414

1515
import numpy as np
1616
import ROOT

tutorials/hist/hist032_TRatioPlot_fit_lines_uhi.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
##
1010
## \macro_image
1111
## \macro_code
12-
##
13-
## \author Alberto Ferro ,Nursena Bitirgen
12+
## \date July 2025
13+
## \author Alberto Ferro,Nursena Bitirgen
1414

1515
import numpy as np
1616
import ROOT

tutorials/hist/hist033_TRatioPlot_fit_confidence_uhi.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
##
88
## \macro_image
99
## \macro_code
10-
##
11-
## \author Alberto Ferro , Nursena Bitirgen
10+
## \date July 2025
11+
## \author Alberto Ferro, Nursena Bitirgen
1212

1313
import numpy as np
1414
import ROOT

0 commit comments

Comments
 (0)