'Limit Example' RooStats tutorial macro #101 This tutorial shows an example of creating a simple model for a number counting experiment with uncertainty on both the background rate and signal efficiency.
We then use a Confidence Interval Calculator to set a limit on the signal.
Processing /mnt/build/workspace/root-makedoc-v610/rootspi/rdoc/src/v6-10-00-patches/tutorials/roostats/rs101_limitexample.C...
void rs101_limitexample()
{
wspace->
factory(
"Poisson::countingModel(obs[150,0,300], sum(s[50,0,120]*ratioSigEff[1.,0,3.],b[100]*ratioBkgEff[1.,0.,3.]))");
wspace->
factory(
"Gaussian::sigConstraint(gSigEff[1,0,3],ratioSigEff,0.05)");
wspace->
factory(
"Gaussian::bkgConstraint(gSigBkg[1,0,3],ratioBkgEff,0.2)");
wspace->
factory(
"PROD::modelWithConstraints(countingModel,sigConstraint,bkgConstraint)");
RooAbsPdf* modelWithConstraints = wspace->
pdf(
"modelWithConstraints");
RooArgSet constrainedParams(*ratioSigEff, *ratioBkgEff);
RooArgSet all(*s, *ratioBkgEff, *ratioSigEff);
modelConfig.
SetPdf(*modelWithConstraints);
modelConfig.
SetName(
"ModelConfig");
plc.SetTestSize(.05);
plotInt.SetTitle("Profile Likelihood Ratio and Posterior for S");
plotInt.Draw();
fc.UseAdaptiveSampling(true);
fc.FluctuateNumDataEntries(false);
fc.SetNBins(100);
fc.SetTestSize(.05);
fcint = fc.GetInterval();
mc.SetNumIters(20000);
mc.SetTestSize(.05);
mc.SetNumBurnInSteps(40);
mc.SetProposalFunction(*pdfProp);
mc.SetLeftSideTailFraction(0.5);
cout <<
"Profile lower limit on s = " << ((
LikelihoodInterval*) lrinterval)->LowerLimit(*s) << endl;
cout <<
"Profile upper limit on s = " << ((
LikelihoodInterval*) lrinterval)->UpperLimit(*s) << endl;
cout << "FC lower limit on s = " << fcll << endl;
cout << "FC upper limit on s = " << fcul << endl;
}
cout << "MCMC lower limit on s = " << mcll << endl;
cout << "MCMC upper limit on s = " << mcul << endl;
cout << "MCMC Actual confidence level: "
assert(chainData);
std::cout <<
"plotting the chain data - nentries = " << chainData->
numEntries() << std::endl;
assert(chain);
chain->SetMarkerStyle(6);
chain->SetMarkerColor(kRed);
chain->Draw("s:ratioSigEff:ratioBkgEff","nll_MarkovChain_local_","box");
assert(parScanData);
std::cout <<
"plotting the scanned points used in the frequentist construction - npoints = " << parScanData->
numEntries() << std::endl;
for (
int ievt = 0; ievt < parScanData->
numEntries(); ++ievt) {
}
delete wspace;
delete lrinterval;
delete mcInt;
delete fcint;
}
- Author
- Kyle Cranmer
Definition in file rs101_limitexample.C.