93 Double_t lowRange = 00, highRange = 200;
96 RooRealVar invMass(
"invMass",
"M_{inv}", lowRange, highRange,
"GeV");
97 RooRealVar isolation(
"isolation",
"isolation", 0., 20.,
"GeV");
104 std::cout <<
"make z model" << std::endl;
106 RooRealVar mZ(
"mZ",
"Z Mass", 91.2, lowRange, highRange);
107 RooRealVar sigmaZ(
"sigmaZ",
"Width of Gaussian", 2,0,10,
"GeV");
108 RooGaussian mZModel(
"mZModel",
"Z+jets Model", invMass, mZ, sigmaZ);
118 "z isolation decay constant", -1);
119 RooExponential zIsolationModel(
"zIsolationModel",
"z isolation model",
120 isolation, zIsolDecayConst);
123 RooProdPdf zModel(
"zModel",
"4-d model for Z",
129 std::cout <<
"make qcd model" << std::endl;
135 RooRealVar qcdMassDecayConst(
"qcdMassDecayConst",
136 "Decay const for QCD mass spectrum",
137 -0.01, -100, 100,
"1/GeV");
139 invMass, qcdMassDecayConst);
147 "Et resolution constant", -.1);
148 RooExponential qcdIsolationModel(
"qcdIsolationModel",
"QCD isolation model",
149 isolation, qcdIsolDecayConst);
152 RooProdPdf qcdModel(
"qcdModel",
"2-d model for QCD",
153 RooArgSet(qcdMassModel, qcdIsolationModel));
160 RooRealVar zYield(
"zYield",
"fitted yield for Z",50 ,0.,1000) ;
161 RooRealVar qcdYield(
"qcdYield",
"fitted yield for QCD", 100 ,0.,1000) ;
164 std::cout <<
"make full model" << std::endl;
171 model.graphVizTree(
"fullModel.dot");
173 std::cout <<
"import model" << std::endl;
183 Int_t nEvents = 1000;
191 std::cout <<
"make data set and import to workspace" << std::endl;
201 std::cout <<
"Calculate sWeights" << std::endl;
231 *data, model,
RooArgList(*zYield,*qcdYield) );
236 std::cout <<
"Check SWeights:" << std::endl;
239 std::cout << std::endl <<
"Yield of Z is " 240 << zYield->
getVal() <<
". From sWeights it is " 244 std::cout <<
"Yield of QCD is " 245 << qcdYield->
getVal() <<
". From sWeights it is " 249 for(
Int_t i=0; i < 10; i++)
251 std::cout <<
"z Weight " << sData->
GetSWeight(i,
"zYield")
252 <<
" qcd Weight " << sData->
GetSWeight(i,
"qcdYield")
257 std::cout << std::endl;
260 std::cout <<
"import new dataset with sWeights" << std::endl;
270 std::cout <<
"make plots" << std::endl;
300 frame->
SetTitle(
"Fit of model to discriminating variable");
321 frame2->
SetTitle(
"isolation distribution for Z");
333 frame3->
SetTitle(
"isolation distribution for QCD");
virtual const char * GetName() const
Returns name of object.
RooAddPdf is an efficient implementation of a sum of PDFs of the form.
virtual RooPlot * plotOn(RooPlot *frame, const RooCmdArg &arg1=RooCmdArg::none(), const RooCmdArg &arg2=RooCmdArg::none(), const RooCmdArg &arg3=RooCmdArg::none(), const RooCmdArg &arg4=RooCmdArg::none(), const RooCmdArg &arg5=RooCmdArg::none(), const RooCmdArg &arg6=RooCmdArg::none(), const RooCmdArg &arg7=RooCmdArg::none(), const RooCmdArg &arg8=RooCmdArg::none()) const
Plot dataset on specified frame.
RooCmdArg LineColor(Color_t color)
RooProdPdf is an efficient implementation of a product of PDFs of the form.
Double_t getVal(const RooArgSet *set=0) const
TVirtualPad * cd(Int_t subpadnumber=0)
Set current canvas & pad.
void SetTitle(const char *name)
Set the title of the RooPlot to 'title'.
static RooMsgService & instance()
Return reference to singleton instance.
virtual RooPlot * plotOn(RooPlot *frame, const RooCmdArg &arg1=RooCmdArg::none(), const RooCmdArg &arg2=RooCmdArg::none(), const RooCmdArg &arg3=RooCmdArg::none(), const RooCmdArg &arg4=RooCmdArg::none(), const RooCmdArg &arg5=RooCmdArg::none(), const RooCmdArg &arg6=RooCmdArg::none(), const RooCmdArg &arg7=RooCmdArg::none(), const RooCmdArg &arg8=RooCmdArg::none(), const RooCmdArg &arg9=RooCmdArg::none(), const RooCmdArg &arg10=RooCmdArg::none()) const
Plot (project) PDF on specified frame.
RooCmdArg Extended(Bool_t flag=kTRUE)
Double_t GetYieldFromSWeight(const char *sVariable) const
Sum the SWeights for a particular specie over all events This should equal the total (weighted) yield...
RooCmdArg DataError(Int_t)
RooCmdArg LineStyle(Style_t style)
Double_t GetSWeight(Int_t numEvent, const char *sVariable) const
RooConstVar represent a constant real-valued object.
RooRealVar represents a fundamental (non-derived) real valued object.
RooAbsData * data(const char *name) const
Retrieve dataset (binned or unbinned) with given name. A null pointer is returned if not found...
RooCmdArg Rename(const char *suffix)
void setSilentMode(Bool_t flag)
RooDataSet is a container class to hold unbinned data.
virtual const RooArgSet * get(Int_t index) const
Return RooArgSet with coordinates of event 'index'.
RooPlot * frame(const RooCmdArg &arg1, const RooCmdArg &arg2=RooCmdArg::none(), const RooCmdArg &arg3=RooCmdArg::none(), const RooCmdArg &arg4=RooCmdArg::none(), const RooCmdArg &arg5=RooCmdArg::none(), const RooCmdArg &arg6=RooCmdArg::none(), const RooCmdArg &arg7=RooCmdArg::none(), const RooCmdArg &arg8=RooCmdArg::none()) const
A RooPlot is a plot frame and a container for graphics objects within that frame. ...
Namespace for the RooStats classes.
RooAbsPdf * pdf(const char *name) const
Retrieve p.d.f (RooAbsPdf) with given name. A null pointer is returned if not found.
RooCmdArg Components(const RooArgSet &compSet)
RooRealVar * var(const char *name) const
Retrieve real-valued variable (RooRealVar) with given name. A null pointer is returned if not found...
RooAbsPdf is the abstract interface for all probability density functions The class provides hybrid a...
virtual void Divide(Int_t nx=1, Int_t ny=1, Float_t xmargin=0.01, Float_t ymargin=0.01, Int_t color=0)
Automatic pad generation by division.
Bool_t import(const RooAbsArg &arg, const RooCmdArg &arg1=RooCmdArg(), const RooCmdArg &arg2=RooCmdArg(), const RooCmdArg &arg3=RooCmdArg(), const RooCmdArg &arg4=RooCmdArg(), const RooCmdArg &arg5=RooCmdArg(), const RooCmdArg &arg6=RooCmdArg(), const RooCmdArg &arg7=RooCmdArg(), const RooCmdArg &arg8=RooCmdArg(), const RooCmdArg &arg9=RooCmdArg())
Import a RooAbsArg object, e.g.
RooDataSet * generate(const RooArgSet &whatVars, Int_t nEvents, const RooCmdArg &arg1, const RooCmdArg &arg2=RooCmdArg::none(), const RooCmdArg &arg3=RooCmdArg::none(), const RooCmdArg &arg4=RooCmdArg::none(), const RooCmdArg &arg5=RooCmdArg::none())
Generate a new dataset containing the specified variables with events sampled from our distribution...
virtual RooFitResult * fitTo(RooAbsData &data, const RooCmdArg &arg1=RooCmdArg::none(), const RooCmdArg &arg2=RooCmdArg::none(), const RooCmdArg &arg3=RooCmdArg::none(), const RooCmdArg &arg4=RooCmdArg::none(), const RooCmdArg &arg5=RooCmdArg::none(), const RooCmdArg &arg6=RooCmdArg::none(), const RooCmdArg &arg7=RooCmdArg::none(), const RooCmdArg &arg8=RooCmdArg::none())
Fit PDF to given dataset.
Double_t GetSumOfEventSWeight(Int_t numEvent) const
Sum the SWeights for a particular event.
This class calculates sWeights used to create an sPlot.
The RooWorkspace is a persistable container for RooFit projects.
virtual void Draw(Option_t *options=0)
Draw this plot and all of the elements it contains.
virtual const char * GetTitle() const
Returns title of object.