/*****************************************************************************
* Project: RooFit *
* Package: RooFitModels *
* File: $Id: RooCBShape.rdl,v 1.9 2005/02/25 14:25:04 wverkerke 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_CB_SHAPE
#define ROO_CB_SHAPE
#include "RooAbsPdf.h"
#include "RooRealProxy.h"
class RooRealVar;
class RooCBShape : public RooAbsPdf {
public:
RooCBShape(const char *name, const char *title, RooAbsReal& _m,
RooAbsReal& _m0, RooAbsReal& _sigma,
RooAbsReal& _alpha, RooAbsReal& _n);
RooCBShape(const RooCBShape& other, const char* name = 0);
virtual TObject* clone(const char* newname) const { return new RooCBShape(*this,newname); }
inline virtual ~RooCBShape() { }
virtual Int_t getAnalyticalIntegral( RooArgSet& allVars, RooArgSet& analVars, const char* rangeName=0 ) const;
virtual Double_t analyticalIntegral( Int_t code, const char* rangeName=0 ) const;
// Optimized accept/reject generator support
virtual Int_t getMaxVal(const RooArgSet& vars) const ;
virtual Double_t maxVal(Int_t code) ;
protected:
Double_t ApproxErf(Double_t arg) const ;
RooRealProxy m;
RooRealProxy m0;
RooRealProxy sigma;
RooRealProxy alpha;
RooRealProxy n;
Double_t evaluate() const;
private:
ClassDef(RooCBShape,0) // Crystal Ball lineshape PDF
};
#endif
syntax highlighted by Code2HTML, v. 0.9.1