ROOT: tutorials/roofit/rf211_paramconv.C File Reference (2024)

ROOT: tutorials/roofit/rf211_paramconv.C File Reference (1)
Addition and convolution: working with a pdf with a convolution operator in terms of a parameter

This tutorial requires FFT3 to be enabled.

#include "RooRealVar.h"

#include "RooDataHist.h"

#include "RooGaussian.h"

#include "RooGenericPdf.h"

#include "RooFormulaVar.h"

#include "RooFFTConvPdf.h"

#include "RooPlot.h"

#include "TCanvas.h"

#include "TAxis.h"

#include "TH2.h"

using namespace RooFit;

void rf211_paramconv()

{

// S e t u p c o m p o n e n t p d f s

// ---------------------------------------

// Gaussian g(x ; mean,sigma)

RooRealVar x("x", "x", -10, 10);

RooRealVar mean("mean", "mean", -3, 3);

RooRealVar sigma("sigma", "sigma", 0.5, 0.1, 10);

RooGaussian modelx("gx", "gx", x, mean, sigma);

// Block function in mean

RooRealVar a("a", "a", 2, 1, 10);

RooGenericPdf model_mean("model_mean", "abs(mean)<a", RooArgList(mean, a));

// Convolution in mean parameter model = g(x,mean,sigma) (x) block(mean)

x.setBins(1000, "cache");

mean.setBins(50, "cache");

RooFFTConvPdf model("model", "model", mean, modelx, model_mean);

// Configure convolution to construct a 2-D cache in (x,mean)

// rather than a 1-d cache in mean that needs to be recalculated

// for each value of x

model.setCacheObservables(x);

model.setBufferFraction(1.0);

// Integrate model over mean projModel = Int model dmean

RooAbsPdf *projModel = model.createProjection(mean);

// Generate 1000 toy events

std::unique_ptr<RooDataHist> d{projModel->generateBinned(x, 1000)};

// Fit pdf to toy data

projModel->fitTo(*d, Verbose(), PrintLevel(-1));

// Plot data and fitted pdf

RooPlot *frame = x.frame(Bins(25));

d->plotOn(frame);

projModel->plotOn(frame);

// Make 2d histogram of model(x;mean)

TH1 *hh = model.createHistogram("hh", x, Binning(50), YVar(mean, Binning(50)), ConditionalObservables(mean));

hh->SetTitle("histogram of model(x|mean)");

hh->SetLineColor(kBlue);

// Draw frame on canvas

TCanvas *c = new TCanvas("rf211_paramconv", "rf211_paramconv", 800, 400);

c->Divide(2);

c->cd(1);

gPad->SetLeftMargin(0.15);

frame->GetYaxis()->SetTitleOffset(1.4);

frame->Draw();

c->cd(2);

gPad->SetLeftMargin(0.20);

hh->GetZaxis()->SetTitleOffset(2.5);

hh->Draw("surf");

}

d

#define d(i)

Definition RSha256.hxx:102

c

#define c(i)

Definition RSha256.hxx:101

a

#define a(i)

Definition RSha256.hxx:99

RooDataHist.h

RooFFTConvPdf.h

RooFormulaVar.h

RooGaussian.h

RooGenericPdf.h

RooPlot.h

RooRealVar.h

kBlue

@ kBlue

Definition Rtypes.h:66

TAxis.h

TCanvas.h

TH2.h

gPad

#define gPad

Definition TVirtualPad.h:308

RooAbsPdf

Abstract interface for all probability density functions.

Definition RooAbsPdf.h:40

RooAbsPdf::plotOn

RooPlot * plotOn(RooPlot *frame, const RooCmdArg &arg1={}, const RooCmdArg &arg2={}, const RooCmdArg &arg3={}, const RooCmdArg &arg4={}, const RooCmdArg &arg5={}, const RooCmdArg &arg6={}, const RooCmdArg &arg7={}, const RooCmdArg &arg8={}, const RooCmdArg &arg9={}, const RooCmdArg &arg10={}) const override

Helper calling plotOn(RooPlot*, RooLinkedList&) const.

Definition RooAbsPdf.h:124

RooAbsPdf::fitTo

RooFit::OwningPtr< RooFitResult > fitTo(RooAbsData &data, CmdArgs_t const &... cmdArgs)

Fit PDF to given dataset.

Definition RooAbsPdf.h:157

RooAbsPdf::generateBinned

virtual RooFit::OwningPtr< RooDataHist > generateBinned(const RooArgSet &whatVars, double nEvents, const RooCmdArg &arg1, const RooCmdArg &arg2={}, const RooCmdArg &arg3={}, const RooCmdArg &arg4={}, const RooCmdArg &arg5={}) const

As RooAbsPdf::generateBinned(const RooArgSet&, const RooCmdArg&,const RooCmdArg&, const RooCmdArg&,...

Definition RooAbsPdf.h:110

RooAbsPdf::createProjection

virtual RooAbsPdf * createProjection(const RooArgSet &iset)

Return a p.d.f that represent a projection of this p.d.f integrated over given observables.

Definition RooAbsPdf.cxx:2449

RooArgList

RooArgList is a container object that can hold multiple RooAbsArg objects.

Definition RooArgList.h:22

RooFFTConvPdf

PDF for the numerical (FFT) convolution of two PDFs.

Definition RooFFTConvPdf.h:25

RooGaussian

Plain Gaussian p.d.f.

Definition RooGaussian.h:24

RooGenericPdf

Implementation of a probability density function that takes a RooArgList of servers and a C++ express...

Definition RooGenericPdf.h:25

RooPlot

Plot frame and a container for graphics objects within that frame.

Definition RooPlot.h:43

RooPlot::frame

static RooPlot * frame(const RooAbsRealLValue &var, double xmin, double xmax, Int_t nBins)

Create a new frame for a given variable in x.

Definition RooPlot.cxx:237

RooPlot::GetYaxis

TAxis * GetYaxis() const

Definition RooPlot.cxx:1276

RooPlot::Draw

void Draw(Option_t *options=nullptr) override

Draw this plot and all of the elements it contains.

Definition RooPlot.cxx:649

RooRealVar

Variable that can be changed from the outside.

Definition RooRealVar.h:37

TAttAxis::SetTitleOffset

virtual void SetTitleOffset(Float_t offset=1)

Set distance between the axis and the axis title.

Definition TAttAxis.cxx:298

TAttLine::SetLineColor

virtual void SetLineColor(Color_t lcolor)

Set the line color.

Definition TAttLine.h:40

The Canvas class.

Definition TCanvas.h:23

TH1

TH1 is the base class of all histogram classes in ROOT.

Definition TH1.h:59

TH1::GetZaxis

TAxis * GetZaxis()

Definition TH1.h:326

TH1::SetTitle

void SetTitle(const char *title) override

Change/set the title.

Definition TH1.cxx:6709

TH1::Draw

void Draw(Option_t *option="") override

Draw this histogram with options.

Definition TH1.cxx:3066

sigma

const Double_t sigma

Definition h1analysisProxy.h:11

x

Double_t x[n]

Definition legend1.C:17

RooFit

The namespace RooFit contains mostly switches that change the behaviour of functions of PDFs (or othe...

Definition JSONIO.h:26

rf211_paramconv

Definition rf211_paramconv.py:1

[#1] INFO:Eval -- RooRealVar::setRange(mean) new range named 'refrange_fft_model' created with bounds [-3,3]

[#0] WARNING:Eval -- The FFT convolution 'model' will run with 50 bins. A decent accuracy for difficult convolutions is typically only reached with n >= 1000. Suggest to increase the number of bins of the observable 'mean'.

[#1] INFO:NumericIntegration -- RooRealIntegral::init(gx_Int[mean,x]) using numeric integrator RooIntegrator1D to calculate Int(mean)

[#1] INFO:NumericIntegration -- RooRealIntegral::init(model_mean_Int[mean]) using numeric integrator RooIntegrator1D to calculate Int(mean)

[#0] WARNING:Integration -- RooRombergIntegrator::integral: integral of model_mean over range (-6,6) did not converge after 20 steps

[1] h = 1 , s = 0

[2] h = 0.25 , s = 6

[3] h = 0.0625 , s = 3

[4] h = 0.015625 , s = 4.5

[5] h = 0.00390625 , s = 3.75

[6] h = 0.000976562 , s = 4.125

[7] h = 0.000244141 , s = 3.9375

[8] h = 6.10352e-05 , s = 4.03125

[9] h = 1.52588e-05 , s = 3.98438

[10] h = 3.8147e-06 , s = 4.00781

[11] h = 9.53674e-07 , s = 3.99609

[12] h = 2.38419e-07 , s = 4.00195

[13] h = 5.96046e-08 , s = 3.99902

[14] h = 1.49012e-08 , s = 4.00049

[15] h = 3.72529e-09 , s = 3.99976

[16] h = 9.31323e-10 , s = 4.00012

[17] h = 2.32831e-10 , s = 3.99994

[18] h = 5.82077e-11 , s = 4.00003

[19] h = 1.45519e-11 , s = 3.99998

[20] h = 3.63798e-12 , s = 4.00001

[#1] INFO:Caching -- RooAbsCachedPdf::getCache(model) creating new cache 0x55831598aa50 with pdf gx_CONV_model_mean_CACHE_Obs[mean,x]_NORM_mean for nset (mean) with code 0

[#0] WARNING:Eval -- The FFT convolution 'model' will run with 50 bins. A decent accuracy for difficult convolutions is typically only reached with n >= 1000. Suggest to increase the number of bins of the observable 'mean'.

[#1] INFO:NumericIntegration -- RooRealIntegral::init(gx_Int[mean,x]) using numeric integrator RooIntegrator1D to calculate Int(mean)

[#1] INFO:NumericIntegration -- RooRealIntegral::init(model_mean_Int[mean]) using numeric integrator RooIntegrator1D to calculate Int(mean)

[#0] WARNING:Integration -- RooRombergIntegrator::integral: integral of model_mean over range (-6,6) did not converge after 20 steps

[1] h = 1 , s = 0

[2] h = 0.25 , s = 6

[3] h = 0.0625 , s = 3

[4] h = 0.015625 , s = 4.5

[5] h = 0.00390625 , s = 3.75

[6] h = 0.000976562 , s = 4.125

[7] h = 0.000244141 , s = 3.9375

[8] h = 6.10352e-05 , s = 4.03125

[9] h = 1.52588e-05 , s = 3.98438

[10] h = 3.8147e-06 , s = 4.00781

[11] h = 9.53674e-07 , s = 3.99609

[12] h = 2.38419e-07 , s = 4.00195

[13] h = 5.96046e-08 , s = 3.99902

[14] h = 1.49012e-08 , s = 4.00049

[15] h = 3.72529e-09 , s = 3.99976

[16] h = 9.31323e-10 , s = 4.00012

[17] h = 2.32831e-10 , s = 3.99994

[18] h = 5.82077e-11 , s = 4.00003

[19] h = 1.45519e-11 , s = 3.99998

[20] h = 3.63798e-12 , s = 4.00001

[#1] INFO:Caching -- RooAbsCachedPdf::getCache(model) creating new cache 0x558317573cc0 with pdf gx_CONV_model_mean_CACHE_Obs[x,mean]_NORM_x_mean for nset (x,mean) with code 1

[#0] WARNING:Eval -- The FFT convolution 'model' will run with 50 bins. A decent accuracy for difficult convolutions is typically only reached with n >= 1000. Suggest to increase the number of bins of the observable 'mean'.

[#1] INFO:Caching -- RooAbsCachedPdf::getCache(model) creating new cache 0x558317573cc0 with pdf gx_CONV_model_mean_CACHE_Obs[x,mean]_NORM_x_mean for nset (x,mean) with code 1 from preexisting content.

[#1] INFO:Fitting -- RooAbsPdf::fitTo(model_Int[mean]_Norm[mean,x]) fixing normalization set for coefficient determination to observables in data

[#1] INFO:Fitting -- using CPU computation library compiled with -mavx2

[#1] INFO:Fitting -- RooAddition::defaultErrorLevel(nll_model_Int[mean]_Norm[mean,x]_genData) Summation contains a RooNLLVar, using its error level

[#1] INFO:Minimization -- RooAbsMinimizerFcn::setOptimizeConst: activating const optimization

[#0] WARNING:Minimization -- RooAbsMinimizerFcn::synchronize: WARNING: no initial error estimate available for a: using 0.5

[#0] WARNING:Minimization -- RooAbsMinimizerFcn::synchronize: WARNING: no initial error estimate available for mean: using 0.6

[#0] WARNING:Minimization -- RooAbsMinimizerFcn::synchronize: WARNING: no initial error estimate available for sigma: using 0.2

sigma=0.5, [#0] WARNING:Eval -- The FFT convolution 'model' will run with 50 bins. A decent accuracy for difficult convolutions is typically only reached with n >= 1000. Suggest to increase the number of bins of the observable 'mean'.

[#1] INFO:NumericIntegration -- RooRealIntegral::init(model_mean_Int[mean]) using numeric integrator RooIntegrator1D to calculate Int(mean)

[#0] WARNING:Integration -- RooRombergIntegrator::integral: integral of model_mean over range (-6,6) did not converge after 20 steps

[1] h = 1 , s = 0

[2] h = 0.25 , s = 6

[3] h = 0.0625 , s = 3

[4] h = 0.015625 , s = 4.5

[5] h = 0.00390625 , s = 3.75

[6] h = 0.000976562 , s = 4.125

[7] h = 0.000244141 , s = 3.9375

[8] h = 6.10352e-05 , s = 4.03125

[9] h = 1.52588e-05 , s = 3.98438

[10] h = 3.8147e-06 , s = 4.00781

[11] h = 9.53674e-07 , s = 3.99609

[12] h = 2.38419e-07 , s = 4.00195

[13] h = 5.96046e-08 , s = 3.99902

[14] h = 1.49012e-08 , s = 4.00049

[15] h = 3.72529e-09 , s = 3.99976

[16] h = 9.31323e-10 , s = 4.00012

[17] h = 2.32831e-10 , s = 3.99994

[18] h = 5.82077e-11 , s = 4.00003

[19] h = 1.45519e-11 , s = 3.99998

[20] h = 3.63798e-12 , s = 4.00001

[#1] INFO:Caching -- RooAbsCachedPdf::getCache(model) creating new cache 0x5583175809a0 with pdf gx_CONV_model_mean_CACHE_Obs[mean] for nset () with code 2

[#1] INFO:NumericIntegration -- RooRealIntegral::init(gx_Int[mean,x]) using numeric integrator RooIntegrator1D to calculate Int(mean)

[#1] INFO:NumericIntegration -- RooRealIntegral::init(model_mean_Int[mean]) using numeric integrator RooIntegrator1D to calculate Int(mean)

[#0] WARNING:Integration -- RooRombergIntegrator::integral: integral of model_mean over range (-6,6) did not converge after 20 steps

[1] h = 1 , s = 0

[2] h = 0.25 , s = 6

[3] h = 0.0625 , s = 3

[4] h = 0.015625 , s = 4.5

[5] h = 0.00390625 , s = 3.75

[6] h = 0.000976562 , s = 4.125

[7] h = 0.000244141 , s = 3.9375

[8] h = 6.10352e-05 , s = 4.03125

[9] h = 1.52588e-05 , s = 3.98438

[10] h = 3.8147e-06 , s = 4.00781

[11] h = 9.53674e-07 , s = 3.99609

[12] h = 2.38419e-07 , s = 4.00195

[13] h = 5.96046e-08 , s = 3.99902

[14] h = 1.49012e-08 , s = 4.00049

[15] h = 3.72529e-09 , s = 3.99976

[16] h = 9.31323e-10 , s = 4.00012

[17] h = 2.32831e-10 , s = 3.99994

[18] h = 5.82077e-11 , s = 4.00003

[19] h = 1.45519e-11 , s = 3.99998

[20] h = 3.63798e-12 , s = 4.00001

prevFCN = 2171.275755 a=2.017,

prevFCN = 2171.275755 a=1.983,

prevFCN = 2171.275755 a=2.172,

prevFCN = 2171.861215 a=1.84, [#0] WARNING:Integration -- RooRombergIntegrator::integral: integral of model_mean over range (-6,6) did not converge after 20 steps

[1] h = 1 , s = 0

[2] h = 0.25 , s = 6

[3] h = 0.0625 , s = 3

[4] h = 0.01562 , s = 4.5

[5] h = 0.003906 , s = 3.75

[6] h = 0.0009766 , s = 3.375

[7] h = 0.0002441 , s = 3.562

[8] h = 6.104e-05 , s = 3.656

[9] h = 1.526e-05 , s = 3.703

[10] h = 3.815e-06 , s = 3.68

[11] h = 9.537e-07 , s = 3.691

[12] h = 2.384e-07 , s = 3.686

[13] h = 5.96e-08 , s = 3.683

[14] h = 1.49e-08 , s = 3.681

[15] h = 3.725e-09 , s = 3.68

[16] h = 9.313e-10 , s = 3.68

[17] h = 2.328e-10 , s = 3.68

[18] h = 5.821e-11 , s = 3.68

[19] h = 1.455e-11 , s = 3.68

[20] h = 3.638e-12 , s = 3.68

[#0] WARNING:Integration -- RooRombergIntegrator::integral: integral of model_mean over range (-6,6) did not converge after 20 steps

[1] h = 1 , s = 0

[2] h = 0.25 , s = 6

[3] h = 0.0625 , s = 3

[4] h = 0.01562 , s = 4.5

[5] h = 0.003906 , s = 3.75

[6] h = 0.0009766 , s = 3.375

[7] h = 0.0002441 , s = 3.562

[8] h = 6.104e-05 , s = 3.656

[9] h = 1.526e-05 , s = 3.703

[10] h = 3.815e-06 , s = 3.68

[11] h = 9.537e-07 , s = 3.691

[12] h = 2.384e-07 , s = 3.686

[13] h = 5.96e-08 , s = 3.683

[14] h = 1.49e-08 , s = 3.681

[15] h = 3.725e-09 , s = 3.68

[16] h = 9.313e-10 , s = 3.68

[17] h = 2.328e-10 , s = 3.68

[18] h = 5.821e-11 , s = 3.68

[19] h = 1.455e-11 , s = 3.68

[20] h = 3.638e-12 , s = 3.68

prevFCN = 2174.775121 a=2.017,

prevFCN = 2171.275755 a=1.983,

prevFCN = 2171.275755 a=2, mean=0.01944, [#0] WARNING:Integration -- RooRombergIntegrator::integral: integral of model_mean over range (-6,6) did not converge after 20 steps

[1] h = 1 , s = 0

[2] h = 0.25 , s = 6

[3] h = 0.0625 , s = 3

[4] h = 0.01562 , s = 4.5

[5] h = 0.003906 , s = 3.75

[6] h = 0.0009766 , s = 4.125

[7] h = 0.0002441 , s = 3.938

[8] h = 6.104e-05 , s = 4.031

[9] h = 1.526e-05 , s = 3.984

[10] h = 3.815e-06 , s = 4.008

[11] h = 9.537e-07 , s = 3.996

[12] h = 2.384e-07 , s = 4.002

[13] h = 5.96e-08 , s = 3.999

[14] h = 1.49e-08 , s = 4

[15] h = 3.725e-09 , s = 4

[16] h = 9.313e-10 , s = 4

[17] h = 2.328e-10 , s = 4

[18] h = 5.821e-11 , s = 4

[19] h = 1.455e-11 , s = 4

[20] h = 3.638e-12 , s = 4

[#0] WARNING:Integration -- RooRombergIntegrator::integral: integral of model_mean over range (-6,6) did not converge after 20 steps

[1] h = 1 , s = 0

[2] h = 0.25 , s = 6

[3] h = 0.0625 , s = 3

[4] h = 0.01562 , s = 4.5

[5] h = 0.003906 , s = 3.75

[6] h = 0.0009766 , s = 4.125

[7] h = 0.0002441 , s = 3.938

[8] h = 6.104e-05 , s = 4.031

[9] h = 1.526e-05 , s = 3.984

[10] h = 3.815e-06 , s = 4.008

[11] h = 9.537e-07 , s = 3.996

[12] h = 2.384e-07 , s = 4.002

[13] h = 5.96e-08 , s = 3.999

[14] h = 1.49e-08 , s = 4

[15] h = 3.725e-09 , s = 4

[16] h = 9.313e-10 , s = 4

[17] h = 2.328e-10 , s = 4

[18] h = 5.821e-11 , s = 4

[19] h = 1.455e-11 , s = 4

[20] h = 3.638e-12 , s = 4

prevFCN = 2171.275755 mean=-0.01944,

prevFCN = 2171.275755 mean=0.1943,

prevFCN = 2171.275755 mean=-0.1943,

prevFCN = 2171.275755 mean=0, sigma=0.5067,

prevFCN = 2171.291807 sigma=0.4934,

prevFCN = 2171.265264 sigma=0.5029,

prevFCN = 2171.281998 sigma=0.4971,

prevFCN = 2171.270547 sigma=0.4843,

prevFCN = 2171.259881 a=2.172,

prevFCN = 2171.692149 a=1.84, [#0] WARNING:Integration -- RooRombergIntegrator::integral: integral of model_mean over range (-6,6) did not converge after 20 steps

[1] h = 1 , s = 0

[2] h = 0.25 , s = 6

[3] h = 0.0625 , s = 3

[4] h = 0.01562 , s = 4.5

[5] h = 0.003906 , s = 3.75

[6] h = 0.0009766 , s = 3.375

[7] h = 0.0002441 , s = 3.562

[8] h = 6.104e-05 , s = 3.656

[9] h = 1.526e-05 , s = 3.703

[10] h = 3.815e-06 , s = 3.68

[11] h = 9.537e-07 , s = 3.691

[12] h = 2.384e-07 , s = 3.686

[13] h = 5.96e-08 , s = 3.683

[14] h = 1.49e-08 , s = 3.681

[15] h = 3.725e-09 , s = 3.68

[16] h = 9.313e-10 , s = 3.68

[17] h = 2.328e-10 , s = 3.68

[18] h = 5.821e-11 , s = 3.68

[19] h = 1.455e-11 , s = 3.68

[20] h = 3.638e-12 , s = 3.68

[#0] WARNING:Integration -- RooRombergIntegrator::integral: integral of model_mean over range (-6,6) did not converge after 20 steps

[1] h = 1 , s = 0

[2] h = 0.25 , s = 6

[3] h = 0.0625 , s = 3

[4] h = 0.01562 , s = 4.5

[5] h = 0.003906 , s = 3.75

[6] h = 0.0009766 , s = 3.375

[7] h = 0.0002441 , s = 3.562

[8] h = 6.104e-05 , s = 3.656

[9] h = 1.526e-05 , s = 3.703

[10] h = 3.815e-06 , s = 3.68

[11] h = 9.537e-07 , s = 3.691

[12] h = 2.384e-07 , s = 3.686

[13] h = 5.96e-08 , s = 3.683

[14] h = 1.49e-08 , s = 3.681

[15] h = 3.725e-09 , s = 3.68

[16] h = 9.313e-10 , s = 3.68

[17] h = 2.328e-10 , s = 3.68

[18] h = 5.821e-11 , s = 3.68

[19] h = 1.455e-11 , s = 3.68

[20] h = 3.638e-12 , s = 3.68

prevFCN = 2175.249474 a=2.017,

prevFCN = 2171.259881 a=1.983,

prevFCN = 2171.259881 a=2.172,

prevFCN = 2171.692149 a=1.84, [#0] WARNING:Integration -- RooRombergIntegrator::integral: integral of model_mean over range (-6,6) did not converge after 20 steps

[1] h = 1 , s = 0

[2] h = 0.25 , s = 6

[3] h = 0.0625 , s = 3

[4] h = 0.01562 , s = 4.5

[5] h = 0.003906 , s = 3.75

[6] h = 0.0009766 , s = 3.375

[7] h = 0.0002441 , s = 3.562

[8] h = 6.104e-05 , s = 3.656

[9] h = 1.526e-05 , s = 3.703

[10] h = 3.815e-06 , s = 3.68

[11] h = 9.537e-07 , s = 3.691

[12] h = 2.384e-07 , s = 3.686

[13] h = 5.96e-08 , s = 3.683

[14] h = 1.49e-08 , s = 3.681

[15] h = 3.725e-09 , s = 3.68

[16] h = 9.313e-10 , s = 3.68

[17] h = 2.328e-10 , s = 3.68

[18] h = 5.821e-11 , s = 3.68

[19] h = 1.455e-11 , s = 3.68

[20] h = 3.638e-12 , s = 3.68

[#0] WARNING:Integration -- RooRombergIntegrator::integral: integral of model_mean over range (-6,6) did not converge after 20 steps

[1] h = 1 , s = 0

[2] h = 0.25 , s = 6

[3] h = 0.0625 , s = 3

[4] h = 0.01562 , s = 4.5

[5] h = 0.003906 , s = 3.75

[6] h = 0.0009766 , s = 3.375

[7] h = 0.0002441 , s = 3.562

[8] h = 6.104e-05 , s = 3.656

[9] h = 1.526e-05 , s = 3.703

[10] h = 3.815e-06 , s = 3.68

[11] h = 9.537e-07 , s = 3.691

[12] h = 2.384e-07 , s = 3.686

[13] h = 5.96e-08 , s = 3.683

[14] h = 1.49e-08 , s = 3.681

[15] h = 3.725e-09 , s = 3.68

[16] h = 9.313e-10 , s = 3.68

[17] h = 2.328e-10 , s = 3.68

[18] h = 5.821e-11 , s = 3.68

[19] h = 1.455e-11 , s = 3.68

[20] h = 3.638e-12 , s = 3.68

prevFCN = 2175.249474 a=2, mean=1.438, [#0] WARNING:Integration -- RooRombergIntegrator::integral: integral of model_mean over range (-6,6) did not converge after 20 steps

[1] h = 1 , s = 0

[2] h = 0.25 , s = 6

[3] h = 0.0625 , s = 3

[4] h = 0.01562 , s = 4.5

[5] h = 0.003906 , s = 3.75

[6] h = 0.0009766 , s = 4.125

[7] h = 0.0002441 , s = 3.938

[8] h = 6.104e-05 , s = 4.031

[9] h = 1.526e-05 , s = 3.984

[10] h = 3.815e-06 , s = 4.008

[11] h = 9.537e-07 , s = 3.996

[12] h = 2.384e-07 , s = 4.002

[13] h = 5.96e-08 , s = 3.999

[14] h = 1.49e-08 , s = 4

[15] h = 3.725e-09 , s = 4

[16] h = 9.313e-10 , s = 4

[17] h = 2.328e-10 , s = 4

[18] h = 5.821e-11 , s = 4

[19] h = 1.455e-11 , s = 4

[20] h = 3.638e-12 , s = 4

[#0] WARNING:Integration -- RooRombergIntegrator::integral: integral of model_mean over range (-6,6) did not converge after 20 steps

[1] h = 1 , s = 0

[2] h = 0.25 , s = 6

[3] h = 0.0625 , s = 3

[4] h = 0.01562 , s = 4.5

[5] h = 0.003906 , s = 3.75

[6] h = 0.0009766 , s = 4.125

[7] h = 0.0002441 , s = 3.938

[8] h = 6.104e-05 , s = 4.031

[9] h = 1.526e-05 , s = 3.984

[10] h = 3.815e-06 , s = 4.008

[11] h = 9.537e-07 , s = 3.996

[12] h = 2.384e-07 , s = 4.002

[13] h = 5.96e-08 , s = 3.999

[14] h = 1.49e-08 , s = 4

[15] h = 3.725e-09 , s = 4

[16] h = 9.313e-10 , s = 4

[17] h = 2.328e-10 , s = 4

[18] h = 5.821e-11 , s = 4

[19] h = 1.455e-11 , s = 4

[20] h = 3.638e-12 , s = 4

prevFCN = 2171.259881 mean=-1.438,

prevFCN = 2171.259881 mean=0, sigma=0.4871,

prevFCN = 2171.26042 sigma=0.4815,

prevFCN = 2171.260367 a=2.003, sigma=0.4688,

prevFCN = 2171.275519 a=2.001, sigma=0.479,

prevFCN = 2171.261603 a=2, sigma=0.482,

prevFCN = 2171.260187 a=2, sigma=0.4832,

prevFCN = 2171.259943 a=2, sigma=0.4838,

prevFCN = 2171.259893 a=2, sigma=0.484,

prevFCN = 2171.259883 a=2, sigma=0.4841,

prevFCN = 2171.259881 a=2, sigma=0.4842, [#0] WARNING:Integration -- RooRombergIntegrator::integral: integral of model_mean over range (-6,6) did not converge after 20 steps

[1] h = 1 , s = 0

[2] h = 0.25 , s = 6

[3] h = 0.0625 , s = 3

[4] h = 0.01562 , s = 4.5

[5] h = 0.003906 , s = 3.75

[6] h = 0.0009766 , s = 4.125

[7] h = 0.0002441 , s = 3.938

[8] h = 6.104e-05 , s = 4.031

[9] h = 1.526e-05 , s = 3.984

[10] h = 3.815e-06 , s = 4.008

[11] h = 9.537e-07 , s = 3.996

[12] h = 2.384e-07 , s = 4.002

[13] h = 5.96e-08 , s = 3.999

[14] h = 1.49e-08 , s = 4

[15] h = 3.725e-09 , s = 4

[16] h = 9.313e-10 , s = 4

[17] h = 2.328e-10 , s = 4

[18] h = 5.821e-11 , s = 4

[19] h = 1.455e-11 , s = 4

[20] h = 3.638e-12 , s = 4

[#0] WARNING:Integration -- RooRombergIntegrator::integral: integral of model_mean over range (-6,6) did not converge after 20 steps

[1] h = 1 , s = 0

[2] h = 0.25 , s = 6

[3] h = 0.0625 , s = 3

[4] h = 0.01562 , s = 4.5

[5] h = 0.003906 , s = 3.75

[6] h = 0.0009766 , s = 4.125

[7] h = 0.0002441 , s = 3.938

[8] h = 6.104e-05 , s = 4.031

[9] h = 1.526e-05 , s = 3.984

[10] h = 3.815e-06 , s = 4.008

[11] h = 9.537e-07 , s = 3.996

[12] h = 2.384e-07 , s = 4.002

[13] h = 5.96e-08 , s = 3.999

[14] h = 1.49e-08 , s = 4

[15] h = 3.725e-09 , s = 4

[16] h = 9.313e-10 , s = 4

[17] h = 2.328e-10 , s = 4

[18] h = 5.821e-11 , s = 4

[19] h = 1.455e-11 , s = 4

[20] h = 3.638e-12 , s = 4

prevFCN = 2171.25988 a=2.017,

prevFCN = 2171.25988 a=1.983,

prevFCN = 2171.25988 a=2.172,

prevFCN = 2171.691427 a=1.84, [#0] WARNING:Integration -- RooRombergIntegrator::integral: integral of model_mean over range (-6,6) did not converge after 20 steps

[1] h = 1 , s = 0

[2] h = 0.25 , s = 6

[3] h = 0.0625 , s = 3

[4] h = 0.01562 , s = 4.5

[5] h = 0.003906 , s = 3.75

[6] h = 0.0009766 , s = 3.375

[7] h = 0.0002441 , s = 3.562

[8] h = 6.104e-05 , s = 3.656

[9] h = 1.526e-05 , s = 3.703

[10] h = 3.815e-06 , s = 3.68

[11] h = 9.537e-07 , s = 3.691

[12] h = 2.384e-07 , s = 3.686

[13] h = 5.96e-08 , s = 3.683

[14] h = 1.49e-08 , s = 3.681

[15] h = 3.725e-09 , s = 3.68

[16] h = 9.313e-10 , s = 3.68

[17] h = 2.328e-10 , s = 3.68

[18] h = 5.821e-11 , s = 3.68

[19] h = 1.455e-11 , s = 3.68

[20] h = 3.638e-12 , s = 3.68

[#0] WARNING:Integration -- RooRombergIntegrator::integral: integral of model_mean over range (-6,6) did not converge after 20 steps

[1] h = 1 , s = 0

[2] h = 0.25 , s = 6

[3] h = 0.0625 , s = 3

[4] h = 0.01562 , s = 4.5

[5] h = 0.003906 , s = 3.75

[6] h = 0.0009766 , s = 3.375

[7] h = 0.0002441 , s = 3.562

[8] h = 6.104e-05 , s = 3.656

[9] h = 1.526e-05 , s = 3.703

[10] h = 3.815e-06 , s = 3.68

[11] h = 9.537e-07 , s = 3.691

[12] h = 2.384e-07 , s = 3.686

[13] h = 5.96e-08 , s = 3.683

[14] h = 1.49e-08 , s = 3.681

[15] h = 3.725e-09 , s = 3.68

[16] h = 9.313e-10 , s = 3.68

[17] h = 2.328e-10 , s = 3.68

[18] h = 5.821e-11 , s = 3.68

[19] h = 1.455e-11 , s = 3.68

[20] h = 3.638e-12 , s = 3.68

prevFCN = 2175.251788 a=2.017,

prevFCN = 2171.25988 a=1.983,

prevFCN = 2171.25988 a=2, mean=1.438, [#0] WARNING:Integration -- RooRombergIntegrator::integral: integral of model_mean over range (-6,6) did not converge after 20 steps

[1] h = 1 , s = 0

[2] h = 0.25 , s = 6

[3] h = 0.0625 , s = 3

[4] h = 0.01562 , s = 4.5

[5] h = 0.003906 , s = 3.75

[6] h = 0.0009766 , s = 4.125

[7] h = 0.0002441 , s = 3.938

[8] h = 6.104e-05 , s = 4.031

[9] h = 1.526e-05 , s = 3.984

[10] h = 3.815e-06 , s = 4.008

[11] h = 9.537e-07 , s = 3.996

[12] h = 2.384e-07 , s = 4.002

[13] h = 5.96e-08 , s = 3.999

[14] h = 1.49e-08 , s = 4

[15] h = 3.725e-09 , s = 4

[16] h = 9.313e-10 , s = 4

[17] h = 2.328e-10 , s = 4

[18] h = 5.821e-11 , s = 4

[19] h = 1.455e-11 , s = 4

[20] h = 3.638e-12 , s = 4

[#0] WARNING:Integration -- RooRombergIntegrator::integral: integral of model_mean over range (-6,6) did not converge after 20 steps

[1] h = 1 , s = 0

[2] h = 0.25 , s = 6

[3] h = 0.0625 , s = 3

[4] h = 0.01562 , s = 4.5

[5] h = 0.003906 , s = 3.75

[6] h = 0.0009766 , s = 4.125

[7] h = 0.0002441 , s = 3.938

[8] h = 6.104e-05 , s = 4.031

[9] h = 1.526e-05 , s = 3.984

[10] h = 3.815e-06 , s = 4.008

[11] h = 9.537e-07 , s = 3.996

[12] h = 2.384e-07 , s = 4.002

[13] h = 5.96e-08 , s = 3.999

[14] h = 1.49e-08 , s = 4

[15] h = 3.725e-09 , s = 4

[16] h = 9.313e-10 , s = 4

[17] h = 2.328e-10 , s = 4

[18] h = 5.821e-11 , s = 4

[19] h = 1.455e-11 , s = 4

[20] h = 3.638e-12 , s = 4

prevFCN = 2171.25988 mean=-1.438,

prevFCN = 2171.25988 mean=0, sigma=0.487,

prevFCN = 2171.260398 sigma=0.4814,

prevFCN = 2171.260398 sigma=0.4842,

prevFCN = 2171.25988 a=2.017,

prevFCN = 2171.25988 a=1.983,

prevFCN = 2171.25988 a=2.172,

prevFCN = 2171.691427 a=1.84, [#0] WARNING:Integration -- RooRombergIntegrator::integral: integral of model_mean over range (-6,6) did not converge after 20 steps

[1] h = 1 , s = 0

[2] h = 0.25 , s = 6

[3] h = 0.0625 , s = 3

[4] h = 0.01562 , s = 4.5

[5] h = 0.003906 , s = 3.75

[6] h = 0.0009766 , s = 3.375

[7] h = 0.0002441 , s = 3.562

[8] h = 6.104e-05 , s = 3.656

[9] h = 1.526e-05 , s = 3.703

[10] h = 3.815e-06 , s = 3.68

[11] h = 9.537e-07 , s = 3.691

[12] h = 2.384e-07 , s = 3.686

[13] h = 5.96e-08 , s = 3.683

[14] h = 1.49e-08 , s = 3.681

[15] h = 3.725e-09 , s = 3.68

[16] h = 9.313e-10 , s = 3.68

[17] h = 2.328e-10 , s = 3.68

[18] h = 5.821e-11 , s = 3.68

[19] h = 1.455e-11 , s = 3.68

[20] h = 3.638e-12 , s = 3.68

[#0] WARNING:Integration -- RooRombergIntegrator::integral: integral of model_mean over range (-6,6) did not converge after 20 steps

[1] h = 1 , s = 0

[2] h = 0.25 , s = 6

[3] h = 0.0625 , s = 3

[4] h = 0.01562 , s = 4.5

[5] h = 0.003906 , s = 3.75

[6] h = 0.0009766 , s = 3.375

[7] h = 0.0002441 , s = 3.562

[8] h = 6.104e-05 , s = 3.656

[9] h = 1.526e-05 , s = 3.703

[10] h = 3.815e-06 , s = 3.68

[11] h = 9.537e-07 , s = 3.691

[12] h = 2.384e-07 , s = 3.686

[13] h = 5.96e-08 , s = 3.683

[14] h = 1.49e-08 , s = 3.681

[15] h = 3.725e-09 , s = 3.68

[16] h = 9.313e-10 , s = 3.68

[17] h = 2.328e-10 , s = 3.68

[18] h = 5.821e-11 , s = 3.68

[19] h = 1.455e-11 , s = 3.68

[20] h = 3.638e-12 , s = 3.68

prevFCN = 2175.251788 a=2.083,

prevFCN = 2171.25988 a=1.92,

prevFCN = 2172.379556 a=2, mean=1.438, [#0] WARNING:Integration -- RooRombergIntegrator::integral: integral of model_mean over range (-6,6) did not converge after 20 steps

[1] h = 1 , s = 0

[2] h = 0.25 , s = 6

[3] h = 0.0625 , s = 3

[4] h = 0.01562 , s = 4.5

[5] h = 0.003906 , s = 3.75

[6] h = 0.0009766 , s = 4.125

[7] h = 0.0002441 , s = 3.938

[8] h = 6.104e-05 , s = 4.031

[9] h = 1.526e-05 , s = 3.984

[10] h = 3.815e-06 , s = 4.008

[11] h = 9.537e-07 , s = 3.996

[12] h = 2.384e-07 , s = 4.002

[13] h = 5.96e-08 , s = 3.999

[14] h = 1.49e-08 , s = 4

[15] h = 3.725e-09 , s = 4

[16] h = 9.313e-10 , s = 4

[17] h = 2.328e-10 , s = 4

[18] h = 5.821e-11 , s = 4

[19] h = 1.455e-11 , s = 4

[20] h = 3.638e-12 , s = 4

[#0] WARNING:Integration -- RooRombergIntegrator::integral: integral of model_mean over range (-6,6) did not converge after 20 steps

[1] h = 1 , s = 0

[2] h = 0.25 , s = 6

[3] h = 0.0625 , s = 3

[4] h = 0.01562 , s = 4.5

[5] h = 0.003906 , s = 3.75

[6] h = 0.0009766 , s = 4.125

[7] h = 0.0002441 , s = 3.938

[8] h = 6.104e-05 , s = 4.031

[9] h = 1.526e-05 , s = 3.984

[10] h = 3.815e-06 , s = 4.008

[11] h = 9.537e-07 , s = 3.996

[12] h = 2.384e-07 , s = 4.002

[13] h = 5.96e-08 , s = 3.999

[14] h = 1.49e-08 , s = 4

[15] h = 3.725e-09 , s = 4

[16] h = 9.313e-10 , s = 4

[17] h = 2.328e-10 , s = 4

[18] h = 5.821e-11 , s = 4

[19] h = 1.455e-11 , s = 4

[20] h = 3.638e-12 , s = 4

prevFCN = 2171.25988 mean=-1.438,

prevFCN = 2171.25988 mean=1.465,

prevFCN = 2171.25988 mean=-1.465,

prevFCN = 2171.25988 mean=0, [#0] WARNING:Minimization -- RooAbsMinimizerFcn::synchronize: WARNING: no initial error estimate available for a: using 0.5

[#1] INFO:Minimization -- RooAbsMinimizerFcn::synchronize: value of parameter a changed from 2 to 2

[#1] INFO:Minimization -- RooAbsMinimizerFcn::synchronize: error/step size of parameter a changed from 0.5 to 0.5

[#0] WARNING:Minimization -- RooAbsMinimizerFcn::synchronize: WARNING: no initial error estimate available for mean: using 0.6

[#0] WARNING:Minimization -- RooAbsMinimizerFcn::synchronize: WARNING: no initial error estimate available for sigma: using 0.1921

[#1] INFO:Minimization -- RooAbsMinimizerFcn::synchronize: value of parameter sigma changed from 0.5 to 0.4842

[#1] INFO:Minimization -- RooAbsMinimizerFcn::synchronize: error/step size of parameter sigma changed from 0.2 to 0.1921

prevFCN = 2171.25988 a=2.017,

prevFCN = 2171.25988 a=1.983,

prevFCN = 2171.25988 a=2.172,

prevFCN = 2171.691427 a=1.84, [#0] WARNING:Integration -- RooRombergIntegrator::integral: integral of model_mean over range (-6,6) did not converge after 20 steps

[1] h = 1 , s = 0

[2] h = 0.25 , s = 6

[3] h = 0.0625 , s = 3

[4] h = 0.01562 , s = 4.5

[5] h = 0.003906 , s = 3.75

[6] h = 0.0009766 , s = 3.375

[7] h = 0.0002441 , s = 3.562

[8] h = 6.104e-05 , s = 3.656

[9] h = 1.526e-05 , s = 3.703

[10] h = 3.815e-06 , s = 3.68

[11] h = 9.537e-07 , s = 3.691

[12] h = 2.384e-07 , s = 3.686

[13] h = 5.96e-08 , s = 3.683

[14] h = 1.49e-08 , s = 3.681

[15] h = 3.725e-09 , s = 3.68

[16] h = 9.313e-10 , s = 3.68

[17] h = 2.328e-10 , s = 3.68

[18] h = 5.821e-11 , s = 3.68

[19] h = 1.455e-11 , s = 3.68

[20] h = 3.638e-12 , s = 3.68

[#0] WARNING:Integration -- RooRombergIntegrator::integral: integral of model_mean over range (-6,6) did not converge after 20 steps

[1] h = 1 , s = 0

[2] h = 0.25 , s = 6

[3] h = 0.0625 , s = 3

[4] h = 0.01562 , s = 4.5

[5] h = 0.003906 , s = 3.75

[6] h = 0.0009766 , s = 3.375

[7] h = 0.0002441 , s = 3.562

[8] h = 6.104e-05 , s = 3.656

[9] h = 1.526e-05 , s = 3.703

[10] h = 3.815e-06 , s = 3.68

[11] h = 9.537e-07 , s = 3.691

[12] h = 2.384e-07 , s = 3.686

[13] h = 5.96e-08 , s = 3.683

[14] h = 1.49e-08 , s = 3.681

[15] h = 3.725e-09 , s = 3.68

[16] h = 9.313e-10 , s = 3.68

[17] h = 2.328e-10 , s = 3.68

[18] h = 5.821e-11 , s = 3.68

[19] h = 1.455e-11 , s = 3.68

[20] h = 3.638e-12 , s = 3.68

prevFCN = 2175.251788 a=2.083,

prevFCN = 2171.25988 a=1.92,

prevFCN = 2172.379556 a=2, mean=1.438, [#0] WARNING:Integration -- RooRombergIntegrator::integral: integral of model_mean over range (-6,6) did not converge after 20 steps

[1] h = 1 , s = 0

[2] h = 0.25 , s = 6

[3] h = 0.0625 , s = 3

[4] h = 0.01562 , s = 4.5

[5] h = 0.003906 , s = 3.75

[6] h = 0.0009766 , s = 4.125

[7] h = 0.0002441 , s = 3.938

[8] h = 6.104e-05 , s = 4.031

[9] h = 1.526e-05 , s = 3.984

[10] h = 3.815e-06 , s = 4.008

[11] h = 9.537e-07 , s = 3.996

[12] h = 2.384e-07 , s = 4.002

[13] h = 5.96e-08 , s = 3.999

[14] h = 1.49e-08 , s = 4

[15] h = 3.725e-09 , s = 4

[16] h = 9.313e-10 , s = 4

[17] h = 2.328e-10 , s = 4

[18] h = 5.821e-11 , s = 4

[19] h = 1.455e-11 , s = 4

[20] h = 3.638e-12 , s = 4

[#0] WARNING:Integration -- RooRombergIntegrator::integral: integral of model_mean over range (-6,6) did not converge after 20 steps

[1] h = 1 , s = 0

[2] h = 0.25 , s = 6

[3] h = 0.0625 , s = 3

[4] h = 0.01562 , s = 4.5

[5] h = 0.003906 , s = 3.75

[6] h = 0.0009766 , s = 4.125

[7] h = 0.0002441 , s = 3.938

[8] h = 6.104e-05 , s = 4.031

[9] h = 1.526e-05 , s = 3.984

[10] h = 3.815e-06 , s = 4.008

[11] h = 9.537e-07 , s = 3.996

[12] h = 2.384e-07 , s = 4.002

[13] h = 5.96e-08 , s = 3.999

[14] h = 1.49e-08 , s = 4

[15] h = 3.725e-09 , s = 4

[16] h = 9.313e-10 , s = 4

[17] h = 2.328e-10 , s = 4

[18] h = 5.821e-11 , s = 4

[19] h = 1.455e-11 , s = 4

[20] h = 3.638e-12 , s = 4

prevFCN = 2171.25988 mean=-1.438,

prevFCN = 2171.25988 mean=1.465,

prevFCN = 2171.25988 mean=-1.465,

prevFCN = 2171.25988 mean=0, [#1] INFO:Minimization -- RooAbsMinimizerFcn::setOptimizeConst: deactivating const optimization

[#0] WARNING:Eval -- The FFT convolution 'model' will run with 50 bins. A decent accuracy for difficult convolutions is typically only reached with n >= 1000. Suggest to increase the number of bins of the observable 'mean'.

[#1] INFO:NumericIntegration -- RooRealIntegral::init(gx_Int[mean,x]) using numeric integrator RooIntegrator1D to calculate Int(mean)

[#1] INFO:NumericIntegration -- RooRealIntegral::init(model_mean_Int[mean]) using numeric integrator RooIntegrator1D to calculate Int(mean)

[#0] WARNING:Integration -- RooRombergIntegrator::integral: integral of model_mean over range (-6,6) did not converge after 20 steps

[1] h = 1 , s = 0

[2] h = 0.25 , s = 6

[3] h = 0.0625 , s = 3

[4] h = 0.01562 , s = 4.5

[5] h = 0.003906 , s = 3.75

[6] h = 0.0009766 , s = 4.125

[7] h = 0.0002441 , s = 3.938

[8] h = 6.104e-05 , s = 4.031

[9] h = 1.526e-05 , s = 3.984

[10] h = 3.815e-06 , s = 4.008

[11] h = 9.537e-07 , s = 3.996

[12] h = 2.384e-07 , s = 4.002

[13] h = 5.96e-08 , s = 3.999

[14] h = 1.49e-08 , s = 4

[15] h = 3.725e-09 , s = 4

[16] h = 9.313e-10 , s = 4

[17] h = 2.328e-10 , s = 4

[18] h = 5.821e-11 , s = 4

[19] h = 1.455e-11 , s = 4

[20] h = 3.638e-12 , s = 4

[#1] INFO:Caching -- RooAbsCachedPdf::getCache(model) creating new cache 0x558317c48700 with pdf gx_CONV_model_mean_CACHE_Obs[x,mean]_NORM_x_mean for nset (x,mean) with code 1

[#0] WARNING:Eval -- The FFT convolution 'model' will run with 50 bins. A decent accuracy for difficult convolutions is typically only reached with n >= 1000. Suggest to increase the number of bins of the observable 'mean'.

[#1] INFO:Caching -- RooAbsCachedPdf::getCache(model) creating new cache 0x558317c48700 with pdf gx_CONV_model_mean_CACHE_Obs[x,mean]_NORM_x for nset (x) with code 3 from preexisting content.

ROOT: tutorials/roofit/rf211_paramconv.C File Reference (2024)
Top Articles
2024 Hair Color Trends: Celebrity-Inspired Alluring Shades - Hairstyles Weekly
Paleo Meatloaf With Mushrooms Recipe
Smsgt Promotion List
Jin Wigs Thomaston Ga
Sallisaw Bin Store
Black Swan Movie Online Free
Craigslist Free Stuff Merced Ca
What Is a Megapixel: Essential Guide [Megapixels Explained]
glizzy - Wiktionary, the free dictionary
Erste Schritte für deine Flipboard Magazine — Ein Blogger-Guide -
Monkey Werx Sitrep 2022
Taterz Salad
Warren County Skyward
They Cloned Tyrone Showtimes Near Showbiz Cinemas - Kingwood
Selinas Gold Full Movie Netflix
Gw2 Rank Doesnt Matter Here
Ta Travel Center Las Cruces Photos
Watch Valimai (2022) Full HD Tamil Movie Online on ZEE5
Slmd Skincare Appointment
C And B Tracy
What Times What Equals 82
Enloe Bell Schedule
Tuition Fee Compensation
How to Be an Extra in a Movie (and What to Expect)
Isaimini 2023: Tamil Movies Download HD Hollywood
Kbh Client Portal
My Eschedule Greatpeople Me
افضل موقع سكسي عربي
855-392-7812
BNSF Railway / RAILROADS | Trains and Railroads
Quattrocento, Italienische Kunst des 15. Jahrhunderts
Nenas Spa San Salvador
Gmc For Sale Craigslist
Myrtle Beach Armslist
Meagan Flaherty Tells Kelli Off
On-Campus Student Employment
Iconnect Seton
Claudia Capertoni Only Fans
O'reilly's In Mathis Texas
Usm.instructure
Lohud Rockland Obituaries
Spearmint Rhino Coi Roll Call
Alfyn Concoct
2005 Lund Boat For Sale in Ham Lake, MN Lot #67597***
Ice Quartz Osrs
Beauty TikTok Star Mireya Rios' Magical Wedding on the Beaches of Mexico
Watch Stephen Miller Have A Full Meltdown When Asked To Back Up Crime Claim With Facts
Kingsport Weather Channel
Thekat103.7
Lesson 2 Homework 4.1 Answer Key
Latest Posts
Article information

Author: Terrell Hackett

Last Updated:

Views: 6801

Rating: 4.1 / 5 (52 voted)

Reviews: 91% of readers found this page helpful

Author information

Name: Terrell Hackett

Birthday: 1992-03-17

Address: Suite 453 459 Gibson Squares, East Adriane, AK 71925-5692

Phone: +21811810803470

Job: Chief Representative

Hobby: Board games, Rock climbing, Ghost hunting, Origami, Kabaddi, Mushroom hunting, Gaming

Introduction: My name is Terrell Hackett, I am a gleaming, brainy, courageous, helpful, healthy, cooperative, graceful person who loves writing and wants to share my knowledge and understanding with you.