// Simple toy tests of the TUnfold package // Author: Stefan Schmitt // DESY, 14.10.2008 // Version 16, parallel to changes in TUnfold // // History: // Version 15, use L-curve scan to scan the average correlation #include #include #include #include #include #include #include #include #include using namespace std; /////////////////////////////////////////////////////////////////////// // // Test program for the class TUnfoldSys // // Simple toy tests of the TUnfold package // // Pseudo data (5000 events) are unfilded into three components // The unfolding is performed once without and once with area constraint // // The pulls show that the result is biased if no constraint is applied // This is because the true data errors are not used, and instead the // sqrt(data) errors are used. // /////////////////////////////////////////////////////////////////////// TRandom *rnd=0; Int_t GenerateGenEvent(Int_t nmax,const Double_t *probability) { // choose an integer random number in the range [0,nmax] // (the generator level bin) // depending on the probabilities // probability[0],probability[1],...probability[nmax-1] Double_t f=rnd->Rndm(); Int_t r=0; while((r=probability[r])) { f -= probability[r]; r++; } return r; } Double_t GenerateRecEvent(const Double_t *shapeParm) { // return a coordinate (the reconstructed variable) // depending on shapeParm[] // shapeParm[0]: fraction of events with Gaussian distribution // shapeParm[1]: mean of Gaussian // shapeParm[2]: width of Gaussian // (1-shapeParm[0]): fraction of events with flat distribution // shapeParm[3]: minimum of flat component // shapeParm[4]: maximum of flat component Double_t f=rnd->Rndm(); Double_t r; if(fGaus(shapeParm[1],shapeParm[2]); } else { r=rnd->Rndm()*(shapeParm[4]-shapeParm[3])+shapeParm[3]; } return r; } void testUnfold4() { // switch on histogram errors TH1::SetDefaultSumw2(); // random generator rnd=new TRandom3(); // data and MC number of events Double_t const nData0= 1000.0; Double_t const nMC0 = 50000.0; // Binning // reconstructed variable (0-10) Int_t const nDet=15; Double_t const xminDet=0.0; Double_t const xmaxDet=15.0; // signal binning (three shapes: 0,1,2) Int_t const nGen=3; Double_t const xminGen=-0.5; Double_t const xmaxGen= 2.5; // parameters // fraction of events per signal shape static const Double_t genFrac[]={0.4,0.4,0.2}; // signal shapes static const Double_t genShape[][5]= {{1.0,2.0,1.5,0.,15.}, {1.0,7.0,2.5,0.,15.}, {0.0,0.0,0.0,0.,15.}}; // define DATA histograms // observed data distribution TH1D *histDetDATA=new TH1D("Yrec",";DATA(Yrec)",nDet,xminDet,xmaxDet); // define MC histograms // matrix of migrations TH2D *histGenDetMC=new TH2D("Yrec%Xgen","MC(Xgen,Yrec)", nGen,xminGen,xmaxGen,nDet,xminDet,xmaxDet); TH1D *histUnfold=new TH1D("Xgen",";DATA(Xgen)",nGen,xminGen,xmaxGen); TH1D **histPullNC=new TH1D* [nGen]; TH1D **histPullArea=new TH1D* [nGen]; for(int i=0;iReset(); histGenDetMC->Reset(); Int_t nData=rnd->Poisson(nData0); for(Int_t i=0;iFill(yObs); } Int_t nMC=rnd->Poisson(nMC0); for(Int_t i=0;iFill(iGen,yObs); } /* for(Int_t ix=0;ix<=histGenDetMC->GetNbinsX()+1;ix++) { for(Int_t iy=0;iy<=histGenDetMC->GetNbinsY()+1;iy++) { cout<GetBinContent(ix,iy)<<"\n"; } } */ //======================== // unfolding TUnfoldSys unfold(histGenDetMC,TUnfold::kHistMapOutputHoriz, TUnfold::kRegModeSize,TUnfold::kEConstraintNone); // define the input vector (the measured data distribution) unfold.SetInput(histDetDATA); // run the unfolding unfold.ScanLcurve(50,0.,0.,0,0,0); // fill pull distributions without constraint unfold.GetOutput(histUnfold); for(int i=0;iFill((histUnfold->GetBinContent(i+1)-genFrac[i]*nData0)/ histUnfold->GetBinError(i+1)); } // repeat unfolding on the same data, now with Area constraint unfold.SetConstraint(TUnfold::kEConstraintArea); // run the unfolding unfold.ScanLcurve(50,0.,0.,0,0,0); // fill pull distributions with constraint unfold.GetOutput(histUnfold); for(int i=0;iFill((histUnfold->GetBinContent(i+1)-genFrac[i]*nData0)/ histUnfold->GetBinError(i+1)); } } TCanvas output; output.Divide(3,2); for(int i=0;iFit("gaus"); histPullNC[i]->Draw(); } for(int i=0;iFit("gaus"); histPullArea[i]->Draw(); } output.SaveAs("testUnfold4.ps"); }