Hi, I’m estimating UL of Nsig with using model pdf(defined as Nsigsignal_pdf + Nbkgbackground_pdf).
I setted Nsig as POI and all other parameters(Nbkg and pdf shape parameters) as Nuisance parameters and used RooDataHist to estimate UL.
I tried 2 ways:
-
CLs method (I followed the example in this link CLS limit calculation — RooStatsWorkbook documentation )
-
Bayesian approach using the formula in the attahced image
I mean I got NLL from createNLL() and createProfile() in RooStats::ProfileLikelihoodCalculator and convert this NLL to Likelihood(Nsig) by using exp(-NLL).
(this is Likelihood(Nsig) that I got by taking exp(-NLL))
And by calculating the fraction between integration of Likelihood(Nsig) on (0,UL of Nsig) and integration of this Likelihood(Nsig) on (0,Maximum of Nsig), I searched the smallest UL of Nsig value satisfying this fraction is greater than 0.9
And I can see the result.
If I know correctly, the CLs method is conservative way to estimate UL.
so I expected the CLs UL will be higher than bayesian UL.
But the actual result was not.
I saw the CLs UL(~16) < Bayesian UL(~20)
it seems not so big difference but slightly CLs UL is higher than Bayesian UL.
so, I would like to ask experts about this.
The CLs UL should alway higher than bayesian…?
or Is this something that happens sometimes?
Any comments and opinion about this would be helpful for me.
thanks