/***************************************************************************** * Project: RooFit * * Package: RooFitModels * * File: $Id: RooGaussian3.h,v 1.1 2008/12/16 10:47:36 asarti Exp $ * Authors: * * WV, Wouter Verkerke, UC Santa Barbara, verkerke@slac.stanford.edu * * DK, David Kirkby, UC Irvine, dkirkby@uci.edu * * * * Copyright (c) 2000-2005, Regents of the University of California * * and Stanford University. All rights reserved. * * * * Redistribution and use in source and binary forms, * * with or without modification, are permitted according to the terms * * listed in LICENSE (http://roofit.sourceforge.net/license.txt) * *****************************************************************************/ #ifndef ROO_GAUSSIAN3 #define ROO_GAUSSIAN3 #include "RooAbsPdf.h" #include "RooRealProxy.h" class RooRealVar; class RooGaussian3 : public RooAbsPdf { public: RooGaussian3() {} ; RooGaussian3(const char *name, const char *title, RooAbsReal& _x, RooAbsReal& _mean, RooAbsReal& _sigma); RooGaussian3(const RooGaussian3& other, const char* name=0) ; virtual TObject* clone(const char* newname) const { return new RooGaussian3(*this,newname); } inline virtual ~RooGaussian3() { } Int_t getAnalyticalIntegral(RooArgSet& allVars, RooArgSet& analVars, const char* rangeName=0) const ; Double_t analyticalIntegral(Int_t code, const char* rangeName=0) const ; Int_t getGenerator(const RooArgSet& directVars, RooArgSet &generateVars, Bool_t staticInitOK=kTRUE) const; void generateEvent(Int_t code); protected: RooRealProxy x ; RooRealProxy mean ; RooRealProxy sigma ; Double_t evaluate() const ; private: ClassDef(RooGaussian3,1) // Gaussian PDF }; #endif