Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
RooDecay.h
Go to the documentation of this file.
1/*****************************************************************************
2 * Project: RooFit *
3 * Package: RooFitModels *
4 * File: $Id: RooDecay.h,v 1.11 2007/05/11 09:13:07 verkerke Exp $
5 * Authors: *
6 * WV, Wouter Verkerke, UC Santa Barbara, verkerke@slac.stanford.edu *
7 * DK, David Kirkby, UC Irvine, dkirkby@uci.edu *
8 * *
9 * Copyright (c) 2000-2005, Regents of the University of California *
10 * and Stanford University. All rights reserved. *
11 * *
12 * Redistribution and use in source and binary forms, *
13 * with or without modification, are permitted according to the terms *
14 * listed in LICENSE (http://roofit.sourceforge.net/license.txt) *
15 *****************************************************************************/
16#ifndef ROO_DECAY
17#define ROO_DECAY
18
19#include "RooAbsAnaConvPdf.h"
20#include "RooRealProxy.h"
21
22class RooDecay : public RooAbsAnaConvPdf {
23public:
24
26
27 // Constructors, assignment etc
28 inline RooDecay() { }
29 RooDecay(const char *name, const char *title, RooRealVar& t,
30 RooAbsReal& tau, const RooResolutionModel& model, DecayType type) ;
31 RooDecay(const RooDecay& other, const char* name=nullptr);
32 TObject* clone(const char* newname) const override { return new RooDecay(*this,newname) ; }
33
34 double coefficient(Int_t basisIndex) const override ;
35
36 Int_t getGenerator(const RooArgSet& directVars, RooArgSet &generateVars, bool staticInitOK=true) const override;
37 void generateEvent(Int_t code) override;
38
39protected:
40
45
46 ClassDefOverride(RooDecay,1) // General decay function p.d.f
47};
48
49#endif
#define ClassDefOverride(name, id)
Definition Rtypes.h:341
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void char Point_t Rectangle_t WindowAttributes_t Float_t Float_t Float_t Int_t Int_t UInt_t UInt_t Rectangle_t Int_t Int_t Window_t TString Int_t GCValues_t GetPrimarySelectionOwner GetDisplay GetScreen GetColormap GetNativeEvent const char const char dpyName wid window const char font_name cursor keysym reg const char only_if_exist regb h Point_t winding char text const char depth char const char Int_t count const char ColorStruct_t color const char Pixmap_t Pixmap_t PictureAttributes_t attr const char char ret_data h unsigned char height h Atom_t Int_t ULong_t ULong_t unsigned char prop_list Atom_t Atom_t Atom_t Time_t type
char name[80]
Definition TGX11.cxx:110
Base class for PDFs that represent a physics model that can be analytically convolved with a resoluti...
Abstract base class for objects that represent a real value and implements functionality common to al...
Definition RooAbsReal.h:59
RooArgSet is a container object that can hold multiple RooAbsArg objects.
Definition RooArgSet.h:55
Single or double sided decay function that can be analytically convolved with any RooResolutionModel ...
Definition RooDecay.h:22
double coefficient(Int_t basisIndex) const override
Definition RooDecay.cxx:84
RooDecay()
Definition RooDecay.h:28
@ DoubleSided
Definition RooDecay.h:25
@ SingleSided
Definition RooDecay.h:25
@ Flipped
Definition RooDecay.h:25
Int_t getGenerator(const RooArgSet &directVars, RooArgSet &generateVars, bool staticInitOK=true) const override
Load generatedVars with the subset of directVars that we can generate events for, and return a code t...
Definition RooDecay.cxx:91
Int_t _basisExp
Definition RooDecay.h:44
RooRealProxy _t
Definition RooDecay.h:41
RooRealProxy _tau
Definition RooDecay.h:42
TObject * clone(const char *newname) const override
Definition RooDecay.h:32
void generateEvent(Int_t code) override
Interface for generation of an event using the algorithm corresponding to the specified code.
Definition RooDecay.cxx:99
DecayType _type
Definition RooDecay.h:43
Variable that can be changed from the outside.
Definition RooRealVar.h:37
RooResolutionModel is the base class for PDFs that represent a resolution model that can be convolute...
Mother of all ROOT objects.
Definition TObject.h:41