|
k4SimGeant4
|
Variables | |
| rfile = ROOT.TFile.Open("./histSimple.root", "READ") | |
| diff = rfile.Get("DiffP") | |
| params = diff.Fit("gaus","S") | |
| constant = params.Parameter(0) | |
| mean = params.Parameter(1) | |
| sigma = params.Parameter(2) | |
| errconstant = params.Error(0) | |
| errmean = params.Error(1) | |
| errsigma = params.Error(2) | |
| geant_fastsim_simple_checkSigma.constant = params.Parameter(0) |
| geant_fastsim_simple_checkSigma.diff = rfile.Get("DiffP") |
| geant_fastsim_simple_checkSigma.errconstant = params.Error(0) |
| geant_fastsim_simple_checkSigma.errmean = params.Error(1) |
| geant_fastsim_simple_checkSigma.errsigma = params.Error(2) |
| geant_fastsim_simple_checkSigma.mean = params.Parameter(1) |
| geant_fastsim_simple_checkSigma.params = diff.Fit("gaus","S") |
| geant_fastsim_simple_checkSigma.rfile = ROOT.TFile.Open("./histSimple.root", "READ") |
| geant_fastsim_simple_checkSigma.sigma = params.Parameter(2) |