/***************************************************************************** * Project: RooFit * * Package: RooFitModels * * File: $Id$ * 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_MULTI_VAR_GAUSSIAN #define ROO_MULTI_VAR_GAUSSIAN #include "RooAbsPdf.h" #include "RooListProxy.h" #include "TMatrixDSym.h" #include "TMatrixD.h" #include "TVectorD.h" class RooRealVar; class RooFitResult ; #include #include class RooMultiVarGaussian : public RooAbsPdf { public: RooMultiVarGaussian() {} ; RooMultiVarGaussian(const char *name, const char *title, const RooArgList& xvec, const RooArgList& mu, const TMatrixDSym& covMatrix) ; RooMultiVarGaussian(const char *name, const char *title, const RooArgList& xvec, const RooFitResult& fr, Bool_t reduceToConditional=kTRUE) ; RooMultiVarGaussian(const char *name, const char *title, const RooArgList& xvec, const TVectorD& mu, const TMatrixDSym& covMatrix) ; RooMultiVarGaussian(const char *name, const char *title, const RooArgList& xvec,const TMatrixDSym& covMatrix) ; void setAnaIntZ(Double_t z) { _z = z ; } RooMultiVarGaussian(const RooMultiVarGaussian& other, const char* name=0) ; virtual TObject* clone(const char* newname) const { return new RooMultiVarGaussian(*this,newname); } inline virtual ~RooMultiVarGaussian() { } 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 initGenerator(Int_t code) ; void generateEvent(Int_t code); const TMatrixDSym& covarianceMatrix() const { return _cov ; } class AnaIntData { public: TMatrixD S22bar ; Double_t S22det ; std::vector pmap ; Int_t nint ; } ; class GenData { public: TMatrixD UT ; std::vector omap ; std::vector pmap ; TVectorD mu1 ; TVectorD mu2 ; TMatrixD S12S22I ; } ; class BitBlock { public: BitBlock() : b0(0), b1(0), b2(0), b3(0) {} ; void setBit(Int_t ibit) ; Bool_t getBit(Int_t ibit) ; Bool_t operator==(const BitBlock& other) ; Int_t b0 ; Int_t b1 ; Int_t b2 ; Int_t b3 ; } ; static void blockDecompose(const TMatrixD& input, const std::vector& map1, const std::vector& map2, TMatrixDSym& S11, TMatrixD& S12, TMatrixD& S21, TMatrixDSym& S22) ; protected: void decodeCode(Int_t code, std::vector& map1, std::vector& map2) const; AnaIntData& anaIntData(Int_t code) const ; GenData& genData(Int_t code) const ; mutable std::map _anaIntCache ; //! mutable std::map _genCache ; //! mutable std::vector _aicMap ; //! RooListProxy _x ; RooListProxy _mu ; TMatrixDSym _cov ; TMatrixDSym _covI ; Double_t _det ; Double_t _z ; void syncMuVec() const ; mutable TVectorD _muVec ; //! Do not persist Double_t evaluate() const ; private: ClassDef(RooMultiVarGaussian,1) // Multivariate Gaussian PDF with correlations }; #endif