Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
RooUniform.h
Go to the documentation of this file.
1/*****************************************************************************
2 * Project: RooFit *
3 * Package: RooFitModels *
4 * File: $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#ifndef ROO_UNIFORM
17#define ROO_UNIFORM
18
19#include "RooAbsPdf.h"
20#include "RooListProxy.h"
21
22class RooRealVar;
23
24class RooUniform : public RooAbsPdf {
25public:
27 RooUniform(const char *name, const char *title, const RooArgSet& _x);
28 RooUniform(const RooUniform& other, const char* name=nullptr) ;
29 TObject* clone(const char* newname) const override { return new RooUniform(*this,newname); }
30 inline ~RooUniform() override { }
31
32 Int_t getAnalyticalIntegral(RooArgSet& allVars, RooArgSet& analVars, const char* rangeName=nullptr) const override ;
33 double analyticalIntegral(Int_t code, const char* rangeName=nullptr) const override ;
34
35 Int_t getGenerator(const RooArgSet& directVars, RooArgSet &generateVars, bool staticInitOK=true) const override;
36 void generateEvent(Int_t code) override;
37
38protected:
39
41
42 double evaluate() const override ;
43 RooSpan<double> evaluateSpan(RooBatchCompute::RunContext& evalData, const RooArgSet* /*normSet*/ = nullptr) const override;
44
45
46private:
47
48 ClassDefOverride(RooUniform,1) // Flat PDF in N dimensions
49};
50
51#endif
#define ClassDefOverride(name, id)
Definition Rtypes.h:341
char name[80]
Definition TGX11.cxx:110
RooArgSet is a container object that can hold multiple RooAbsArg objects.
Definition RooArgSet.h:55
RooRealVar represents a variable that can be changed from the outside.
Definition RooRealVar.h:40
A simple container to hold a batch of data values.
Definition RooSpan.h:34
Flat p.d.f.
Definition RooUniform.h:24
Int_t getAnalyticalIntegral(RooArgSet &allVars, RooArgSet &analVars, const char *rangeName=nullptr) const override
Advertise analytical integral.
double evaluate() const override
Evaluate this PDF / function / constant. Needs to be overridden by all derived classes.
~RooUniform() override
Definition RooUniform.h:30
double analyticalIntegral(Int_t code, const char *rangeName=nullptr) const override
Implement analytical integral.
RooSpan< double > evaluateSpan(RooBatchCompute::RunContext &evalData, const RooArgSet *=nullptr) const override
Compute multiple values of the uniform distribution (effectively return a span with ones)
TObject * clone(const char *newname) const override
Definition RooUniform.h:29
RooListProxy x
Definition RooUniform.h:40
Int_t getGenerator(const RooArgSet &directVars, RooArgSet &generateVars, bool staticInitOK=true) const override
Advertise internal generator.
void generateEvent(Int_t code) override
Implement internal generator.
Mother of all ROOT objects.
Definition TObject.h:41
This struct enables passing computation data around between elements of a computation graph.
Definition RunContext.h:32