Variables | |
| int | a = -5. |
| int | b = 5. |
| Canvas = TCanvas("DistCanvas", "Student Distribution graphs", 10, 10, 800, 700) | |
| cum = TF1("cum", "ROOT::Math::tdistribution_cdf(x,3.0)", a, b) | |
| int | i = 1 |
| int | n = 100 |
| str | name = "pdf%d" % i |
| nbin = int(n * (xx[i+1] - xx[i]) / 3.0 + 1.0) | |
| pdf = TF1("pdf", "ROOT::Math::tdistribution_pdf(x,3.0)", a, b) | |
| list | pdfq = [] |
| quant = TH1D("quant", "", 9, 0, 0.9) | |
| list | x = j * (xx[i+1] - xx[i]) / nbin + xx[i] |
| list | xx = [] |
| int pdf012_tStudent.a = -5. |
Definition at line 29 of file pdf012_tStudent.py.
| int pdf012_tStudent.b = 5. |
Definition at line 30 of file pdf012_tStudent.py.
| pdf012_tStudent.Canvas = TCanvas("DistCanvas", "Student Distribution graphs", 10, 10, 800, 700) |
Definition at line 60 of file pdf012_tStudent.py.
Definition at line 32 of file pdf012_tStudent.py.
| int pdf012_tStudent.i = 1 |
Definition at line 84 of file pdf012_tStudent.py.
| int pdf012_tStudent.n = 100 |
Definition at line 28 of file pdf012_tStudent.py.
| str pdf012_tStudent.name = "pdf%d" % i |
Definition at line 52 of file pdf012_tStudent.py.
Definition at line 51 of file pdf012_tStudent.py.
Definition at line 31 of file pdf012_tStudent.py.
| list pdf012_tStudent.pdfq = [] |
Definition at line 49 of file pdf012_tStudent.py.
| pdf012_tStudent.quant = TH1D("quant", "", 9, 0, 0.9) |
Definition at line 35 of file pdf012_tStudent.py.
Definition at line 55 of file pdf012_tStudent.py.
| list pdf012_tStudent.xx = [] |
Definition at line 43 of file pdf012_tStudent.py.