Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
RooGaussModel.h
Go to the documentation of this file.
1/*****************************************************************************
2 * Project: RooFit *
3 * Package: RooFitModels *
4 * File: $Id: RooGaussModel.h,v 1.21 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_GAUSS_MODEL
17#define ROO_GAUSS_MODEL
18
19#include "RooResolutionModel.h"
20#include "RooRealProxy.h"
21
22#include <cmath>
23#include <complex>
24
26public:
27 // Constructors, assignment etc
28 RooGaussModel() = default;
29 RooGaussModel(const char *name, const char *title, RooAbsRealLValue& x,
31 RooGaussModel(const char *name, const char *title, RooAbsRealLValue& x,
33 RooGaussModel(const char *name, const char *title, RooAbsRealLValue& x,
34 RooAbsReal& mean, RooAbsReal& sigma, RooAbsReal& meanSF, RooAbsReal& sigmaSF) ;
35 RooGaussModel(const RooGaussModel& other, const char* name=nullptr);
36 TObject* clone(const char* newname) const override { return new RooGaussModel(*this,newname) ; }
37
38 Int_t basisCode(const char* name) const override ;
39 Int_t getAnalyticalIntegral(RooArgSet& allVars, RooArgSet& analVars, const char* rangeName=nullptr) const override ;
40 double analyticalIntegral(Int_t code, const char* rangeName) const override ;
41
42 Int_t getGenerator(const RooArgSet& directVars, RooArgSet &generateVars, bool staticInitOK=true) const override;
43 void generateEvent(Int_t code) override;
44
45 void advertiseFlatScaleFactorIntegral(bool flag) { _flatSFInt = flag ; }
46
47 void advertiseAymptoticIntegral(bool flag) { _asympInt = flag ; } // added FMV,07/24/03
48
49 void doEval(RooFit::EvalContext &) const override;
50
51 bool canComputeBatchWithCuda() const override;
52
53protected:
54
55 double evaluate() const override ;
56 static double evaluate(double x, double mean, double sigma, double param1, double param2, int basisCode);
57
58 // Calculate common normalization factors
59 std::complex<double> evalCerfInt(double sign, double wt, double tau, double umin, double umax, double c) const;
60
61private:
62 bool _flatSFInt = false;
63
64 bool _asympInt = false; // added FMV,07/24/03
65
70
71 ClassDefOverride(RooGaussModel,1) // Gaussian Resolution Model
72};
73
74#endif
#define c(i)
Definition RSha256.hxx:101
#define ClassDefOverride(name, id)
Definition Rtypes.h:341
char name[80]
Definition TGX11.cxx:110
Abstract base class for objects that represent a real value that may appear on the left hand side of ...
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
Class RooGaussModel implements a RooResolutionModel that models a Gaussian distribution.
RooRealProxy sigma
double evaluate() const override
Evaluate this PDF / function / constant. Needs to be overridden by all derived classes.
std::complex< double > evalCerfInt(double sign, double wt, double tau, double umin, double umax, double c) const
TObject * clone(const char *newname) const override
RooRealProxy msf
void doEval(RooFit::EvalContext &) const override
Base function for computing multiple values of a RooAbsReal.
Int_t getAnalyticalIntegral(RooArgSet &allVars, RooArgSet &analVars, const char *rangeName=nullptr) const override
Interface function getAnalyticalIntergral advertises the analytical integrals that are supported.
void advertiseFlatScaleFactorIntegral(bool flag)
void generateEvent(Int_t code) override
Interface for generation of an event using the algorithm corresponding to the specified code.
RooGaussModel()=default
void advertiseAymptoticIntegral(bool flag)
bool canComputeBatchWithCuda() const override
Int_t basisCode(const char *name) const override
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...
RooRealProxy mean
double analyticalIntegral(Int_t code, const char *rangeName) const override
Implements the actual analytical integral(s) advertised by getAnalyticalIntegral.
RooRealProxy ssf
RooResolutionModel is the base class for PDFs that represent a resolution model that can be convolute...
RooTemplateProxy< RooAbsRealLValue > x
Dependent/convolution variable.
Mother of all ROOT objects.
Definition TObject.h:41