Logo ROOT   6.30.04
Reference Guide
 All Namespaces Files Pages
RooParametricStepFunction.h
Go to the documentation of this file.
1 /*****************************************************************************
2  * Project: RooFit *
3  * Package: RooFitModels *
4  * File: $Id: RooParametricStepFunction.h,v 1.5 2007/05/11 09:13:07 verkerke Exp $
5  * Authors: *
6  * Aaron Roodman, Stanford Linear Accelerator Center, Stanford University *
7  * *
8  * Copyright (c) 2000-2005, Stanford University. All rights reserved. *
9  *
10  * *
11  * Redistribution and use in source and binary forms, *
12  * with or without modification, are permitted according to the terms *
13  * listed in LICENSE (http://roofit.sourceforge.net/license.txt) *
14  *****************************************************************************/
15 #ifndef ROO_PARAMETRIC_STEP_FUNCTION
16 #define ROO_PARAMETRIC_STEP_FUNCTION
17 
18 #include "TArrayD.h"
19 #include "RooAbsPdf.h"
20 #include "RooRealProxy.h"
21 #include "RooListProxy.h"
22 
23 class RooRealVar;
24 class RooArgList ;
25 
26 class RooParametricStepFunction : public RooAbsPdf {
27 public:
28 
29  RooParametricStepFunction() : _nBins(0), _coefIter(0) {}
30 
31  RooParametricStepFunction(const char *name, const char *title,
32  RooAbsReal& x, const RooArgList& coefList, TArrayD& limits, Int_t nBins=1) ;
33 
34  RooParametricStepFunction(const RooParametricStepFunction& other, const char* name = 0);
35  virtual TObject* clone(const char* newname) const { return new RooParametricStepFunction(*this, newname); }
36  virtual ~RooParametricStepFunction() ;
37 
38  Int_t getAnalyticalIntegral(RooArgSet& allVars, RooArgSet& analVars, const char* rangeName=0) const ;
39  Double_t analyticalIntegral(Int_t code, const char* rangeName=0) const ;
40  Int_t getnBins();
41  Double_t* getLimits();
42 
43 protected:
44 
45  Double_t lastBinValue() const ;
46 
47  RooRealProxy _x;
48  RooListProxy _coefList ;
49  TArrayD _limits;
50  Int_t _nBins ;
51  TIterator* _coefIter ; //! do not persist
52 
53  Double_t evaluate() const;
54 
55  ClassDef(RooParametricStepFunction,1) // Parametric Step Function Pdf
56 };
57 
58 #endif