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
37 enum BasisSign { Both=0, Plus=+1, Minus=-1 } ;
38
39 // Constructors, assignment etc
41 RooGaussModel(const char *name, const char *title, RooAbsRealLValue& x,
43 RooGaussModel(const char *name, const char *title, RooAbsRealLValue& x,
45 RooGaussModel(const char *name, const char *title, RooAbsRealLValue& x,
46 RooAbsReal& mean, RooAbsReal& sigma, RooAbsReal& meanSF, RooAbsReal& sigmaSF) ;
47 RooGaussModel(const RooGaussModel& other, const char* name=0);
48 virtual TObject* clone(const char* newname) const { return new RooGaussModel(*this,newname) ; }
49 virtual ~RooGaussModel();
50
51 virtual Int_t basisCode(const char* name) const ;
52 virtual Int_t getAnalyticalIntegral(RooArgSet& allVars, RooArgSet& analVars, const char* rangeName=0) const ;
53 virtual Double_t analyticalIntegral(Int_t code, const char* rangeName) const ;
54
55 Int_t getGenerator(const RooArgSet& directVars, RooArgSet &generateVars, Bool_t staticInitOK=kTRUE) const;
56 void generateEvent(Int_t code);
57
59
60 void advertiseAymptoticIntegral(Bool_t flag) { _asympInt = flag ; } // added FMV,07/24/03
61
62protected:
63
64 virtual Double_t evaluate() const ;
65
66 // Calculate common normalization factors
67 std::complex<Double_t> evalCerfInt(Double_t sign, Double_t wt, Double_t tau, Double_t umin, Double_t umax, Double_t c) const;
68
70
71 Bool_t _asympInt ; // added FMV,07/24/03
72
77
78 ClassDef(RooGaussModel,1) // Gaussian Resolution Model
79};
80
81#endif
#define c(i)
Definition RSha256.hxx:101
const Bool_t kFALSE
Definition RtypesCore.h:101
double Double_t
Definition RtypesCore.h:59
const Bool_t kTRUE
Definition RtypesCore.h:100
#define ClassDef(name, id)
Definition Rtypes.h:325
char name[80]
Definition TGX11.cxx:110
RooAbsRealLValue is the common abstract base class for objects that represent a real value that may a...
RooAbsReal is the common abstract base class for objects that represent a real value and implements f...
Definition RooAbsReal.h:64
RooArgSet is a container object that can hold multiple RooAbsArg objects.
Definition RooArgSet.h:35
Class RooGaussModel implements a RooResolutionModel that models a Gaussian distribution.
RooRealProxy sigma
RooRealProxy msf
virtual ~RooGaussModel()
Destructor.
std::complex< Double_t > evalCerfInt(Double_t sign, Double_t wt, Double_t tau, Double_t umin, Double_t umax, Double_t c) const
void advertiseFlatScaleFactorIntegral(Bool_t flag)
virtual Double_t analyticalIntegral(Int_t code, const char *rangeName) const
Implements the actual analytical integral(s) advertised by getAnalyticalIntegral.
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...
virtual Double_t evaluate() const
Evaluate this PDF / function / constant. Needs to be overridden by all derived classes.
void generateEvent(Int_t code)
Interface for generation of an event using the algorithm corresponding to the specified code.
virtual Int_t basisCode(const char *name) const
void advertiseAymptoticIntegral(Bool_t flag)
virtual Int_t getAnalyticalIntegral(RooArgSet &allVars, RooArgSet &analVars, const char *rangeName=0) const
Interface function getAnalyticalIntergral advertises the analytical integrals that are supported.
RooRealProxy mean
virtual TObject * clone(const char *newname) const
RooRealProxy ssf
RooResolutionModel is the base class for PDFs that represent a resolution model that can be convolute...
RooTemplateProxy< RooAbsRealLValue > x
Mother of all ROOT objects.
Definition TObject.h:41