ROOT logo
/*****************************************************************************
 * Project: RooFit                                                           *
 * Package: RooFitModels                                                     *
 *    File: $Id: RooArgusBG.h,v 1.13 2007/07/12 20:30:49 wouter 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_ARGUS_BG
#define ROO_ARGUS_BG

#include "RooAbsPdf.h"
#include "RooRealProxy.h"

class RooRealVar;
class RooAbsReal;

class RooArgusBG : public RooAbsPdf {
public:
  RooArgusBG() {} ;
  RooArgusBG(const char *name, const char *title, 
	     RooAbsReal& _m, RooAbsReal& _m0, RooAbsReal& _c);
  RooArgusBG(const char *name, const char *title, 
	     RooAbsReal& _m, RooAbsReal& _m0, RooAbsReal& _c, RooAbsReal& _p);
  RooArgusBG(const RooArgusBG& other,const char* name=0) ;
  virtual TObject* clone(const char* newname) const { return new RooArgusBG(*this,newname); }
  inline virtual ~RooArgusBG() { }

  Int_t getAnalyticalIntegral(RooArgSet& allVars, RooArgSet& analVars, const char* rangeName=0) const ;
  Double_t analyticalIntegral(Int_t code, const char* rangeName=0) const ;

protected:
  RooRealProxy m ;
  RooRealProxy m0 ;
  RooRealProxy c ;
  RooRealProxy p ;

  Double_t evaluate() const ;
//   void initGenerator();

private:
  ClassDef(RooArgusBG,1) // Argus background shape PDF
};

#endif
 RooArgusBG.h:1
 RooArgusBG.h:2
 RooArgusBG.h:3
 RooArgusBG.h:4
 RooArgusBG.h:5
 RooArgusBG.h:6
 RooArgusBG.h:7
 RooArgusBG.h:8
 RooArgusBG.h:9
 RooArgusBG.h:10
 RooArgusBG.h:11
 RooArgusBG.h:12
 RooArgusBG.h:13
 RooArgusBG.h:14
 RooArgusBG.h:15
 RooArgusBG.h:16
 RooArgusBG.h:17
 RooArgusBG.h:18
 RooArgusBG.h:19
 RooArgusBG.h:20
 RooArgusBG.h:21
 RooArgusBG.h:22
 RooArgusBG.h:23
 RooArgusBG.h:24
 RooArgusBG.h:25
 RooArgusBG.h:26
 RooArgusBG.h:27
 RooArgusBG.h:28
 RooArgusBG.h:29
 RooArgusBG.h:30
 RooArgusBG.h:31
 RooArgusBG.h:32
 RooArgusBG.h:33
 RooArgusBG.h:34
 RooArgusBG.h:35
 RooArgusBG.h:36
 RooArgusBG.h:37
 RooArgusBG.h:38
 RooArgusBG.h:39
 RooArgusBG.h:40
 RooArgusBG.h:41
 RooArgusBG.h:42
 RooArgusBG.h:43
 RooArgusBG.h:44
 RooArgusBG.h:45
 RooArgusBG.h:46
 RooArgusBG.h:47
 RooArgusBG.h:48
 RooArgusBG.h:49
 RooArgusBG.h:50
 RooArgusBG.h:51
 RooArgusBG.h:52