25 using namespace RooFit ;
28 void rf310_sliceplot()
39 RooCategory mixState(
"mixState",
"B0/B0bar mixing state") ;
40 RooCategory tagFlav(
"tagFlav",
"Flavour of the tagged B0") ;
43 mixState.defineType(
"mixed",-1) ;
44 mixState.defineType(
"unmixed",1) ;
45 tagFlav.defineType(
"B0",1) ;
46 tagFlav.defineType(
"B0bar",-1) ;
49 RooRealVar dm(
"dm",
"delta m(B)",0.472,0.,1.0) ;
50 RooRealVar tau(
"tau",
"B0 decay time",1.547,1.0,2.0) ;
51 RooRealVar w(
"w",
"Flavor Mistag rate",0.03,0.0,1.0) ;
52 RooRealVar dw(
"dw",
"Flavor Mistag rate difference between B0 and B0bar",0.01) ;
60 RooBMixDecay bmix_gm1(
"bmix",
"decay",dt,mixState,tagFlav,tau,dm,
w,dw,gm1,
RooBMixDecay::DoubleSided) ;
71 RooPlot* frame = dt.frame(
Title(
"Inclusive decay distribution")) ;
73 bmix_gm1.plotOn(frame) ;
81 RooPlot* frame2 = dt.frame(
Title(
"Decay distribution of mixed events")) ;
82 data->
plotOn(frame2,
Cut(
"mixState==mixState::mixed")) ;
85 bmix_gm1.plotOn(frame2,
Slice(mixState,
"mixed")) ;
88 RooPlot* frame3 = dt.frame(
Title(
"Decay distribution of unmixed events")) ;
89 data->
plotOn(frame3,
Cut(
"mixState==mixState::unmixed")) ;
92 bmix_gm1.plotOn(frame3,
Slice(mixState,
"unmixed")) ;
96 TCanvas* c =
new TCanvas(
"rf310_sliceplot",
"rf310_sliceplot",1200,400) ;
virtual void SetTitleOffset(Float_t offset=1)
Set distance between the axis and the axis title Offset is a correction factor with respect to the "s...
RooCmdArg Cut(const char *cutSpec)
RooCmdArg Title(const char *name)
Class RooBMixDecay is a RooAbsAnaConvPdf implementation that describes the decay of B mesons with the...
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.
RooRealVar represents a fundamental (non-derived) real valued object.
RooDataSet is a container class to hold unbinned data.
RooCategory represents a fundamental (non-derived) discrete value object.
A RooPlot is a plot frame and a container for graphics objects within that frame. ...
RooCmdArg Slice(const RooArgSet &sliceSet)
virtual void Draw(Option_t *options=0)
Draw this plot and all of the elements it contains.
Class RooGaussModel implements a RooResolutionModel that models a Gaussian distribution.