Logo ROOT   6.30.04
Reference Guide
 All Namespaces Files Pages
RooGaussian.h
Go to the documentation of this file.
1 /*****************************************************************************
2  * Project: RooFit *
3  * Package: RooFitModels *
4  * File: $Id: RooGaussian.h,v 1.16 2007/07/12 20:30:49 wouter 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_GAUSSIAN
17 #define ROO_GAUSSIAN
18 
19 #include "RooAbsPdf.h"
20 #include "RooRealProxy.h"
21 #include "RooTrace.h"
22 
23 class RooRealVar;
24 
25 class RooGaussian : public RooAbsPdf {
26 public:
27  RooGaussian() { };
28  RooGaussian(const char *name, const char *title,
29  RooAbsReal& _x, RooAbsReal& _mean, RooAbsReal& _sigma);
30  RooGaussian(const RooGaussian& other, const char* name=0);
31  virtual TObject* clone(const char* newname) const override {
32  return new RooGaussian(*this,newname);
33  }
34  inline virtual ~RooGaussian() { }
35 
36  Int_t getAnalyticalIntegral(RooArgSet& allVars, RooArgSet& analVars, const char* rangeName=0) const override;
37  Double_t analyticalIntegral(Int_t code, const char* rangeName=0) const override;
38 
39  Int_t getGenerator(const RooArgSet& directVars, RooArgSet &generateVars, Bool_t staticInitOK=kTRUE) const override;
40  void generateEvent(Int_t code) override;
41 
42 protected:
43 
44  RooRealProxy x ;
45  RooRealProxy mean ;
46  RooRealProxy sigma ;
47 
48  Double_t evaluate() const override;
49  RooSpan<double> evaluateBatch(std::size_t begin, std::size_t batchSize) const override;
50 
51 private:
52 
53  ClassDefOverride(RooGaussian,1) // Gaussian PDF
54 };
55 
56 #endif