ROOT  6.06/09
Reference Guide
RooLandau.cxx
Go to the documentation of this file.
1 /*****************************************************************************
2  * Project: RooFit *
3  * Package: RooFitModels *
4  * @(#)root/roofit:$Id$
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 
17 //////////////////////////////////////////////////////////////////////////////
18 //
19 // BEGIN_HTML
20 // Landau Distribution p.d.f
21 // END_HTML
22 //
23 
24 #include "TMath.h"
25 #include "RooFit.h"
26 
27 #include "RooLandau.h"
28 #include "RooLandau.h"
29 #include "RooRandom.h"
30 
31 #include "TError.h"
32 
33 using namespace std;
34 
36 
37 
38 ////////////////////////////////////////////////////////////////////////////////
39 
40 RooLandau::RooLandau(const char *name, const char *title, RooAbsReal& _x, RooAbsReal& _mean, RooAbsReal& _sigma) :
41  RooAbsPdf(name,title),
42  x("x","Dependent",this,_x),
43  mean("mean","Mean",this,_mean),
44  sigma("sigma","Width",this,_sigma)
45 {
46 }
47 
48 
49 ////////////////////////////////////////////////////////////////////////////////
50 
51 RooLandau::RooLandau(const RooLandau& other, const char* name) :
52  RooAbsPdf(other,name),
53  x("x",this,other.x),
54  mean("mean",this,other.mean),
55  sigma("sigma",this,other.sigma)
56 {
57 }
58 
59 
60 ////////////////////////////////////////////////////////////////////////////////
61 
63 {
64  return TMath::Landau(x, mean, sigma);
65 }
66 
67 
68 ////////////////////////////////////////////////////////////////////////////////
69 
70 Int_t RooLandau::getGenerator(const RooArgSet& directVars, RooArgSet &generateVars, Bool_t /*staticInitOK*/) const
71 {
72  if (matchArgs(directVars,generateVars,x)) return 1 ;
73  return 0 ;
74 }
75 
76 
77 ////////////////////////////////////////////////////////////////////////////////
78 
80 {
81  R__ASSERT(code==1) ;
82  Double_t xgen ;
83  while(1) {
85  if (xgen<x.max() && xgen>x.min()) {
86  x = xgen ;
87  break;
88  }
89  }
90  return;
91 }
92 
93 
Double_t Landau(Double_t x, Double_t mpv=0, Double_t sigma=1, Bool_t norm=kFALSE)
The LANDAU function.
Definition: TMath.cxx:473
RooLandau()
Definition: RooLandau.h:26
#define R__ASSERT(e)
Definition: TError.h:98
int Int_t
Definition: RtypesCore.h:41
bool Bool_t
Definition: RtypesCore.h:59
STL namespace.
RooRealProxy mean
Definition: RooLandau.h:38
Double_t x[n]
Definition: legend1.C:17
void generateEvent(Int_t code)
Interface for generation of anan event using the algorithm corresponding to the specified code...
Definition: RooLandau.cxx:79
static TRandom * randomGenerator()
Return a pointer to a singleton random-number generator implementation.
Definition: RooRandom.cxx:53
Int_t getGenerator(const RooArgSet &directVars, RooArgSet &generateVars, Bool_t staticInitOK=kTRUE) const
Load generatedVars with the subset of directVars that we can generate events for, and return a code t...
Definition: RooLandau.cxx:70
Double_t Mean(Long64_t n, const T *a, const Double_t *w=0)
Definition: TMath.h:824
ClassImp(RooLandau) RooLandau
Definition: RooLandau.cxx:35
RooRealProxy x
Definition: RooLandau.h:37
double Double_t
Definition: RtypesCore.h:55
RooAbsReal is the common abstract base class for objects that represent a real value and implements f...
Definition: RooAbsReal.h:53
#define name(a, b)
Definition: linkTestLib0.cpp:5
RooAbsPdf is the abstract interface for all probability density functions The class provides hybrid a...
Definition: RooAbsPdf.h:41
Double_t min(const char *rname=0) const
Definition: RooRealProxy.h:56
Bool_t matchArgs(const RooArgSet &allDeps, RooArgSet &numDeps, const RooArgProxy &a) const
Utility function for use in getAnalyticalIntegral().
Double_t evaluate() const
Definition: RooLandau.cxx:62
virtual Double_t Landau(Double_t mean=0, Double_t sigma=1)
Generate a random number following a Landau distribution with location parameter mu and scale paramet...
Definition: TRandom.cxx:340
Double_t max(const char *rname=0) const
Definition: RooRealProxy.h:57
RooRealProxy sigma
Definition: RooLandau.h:39