Logo ROOT   6.30.04
Reference Guide
 All Namespaces Files Pages
RooNovosibirsk.h
Go to the documentation of this file.
1 /*****************************************************************************
2  * Project: RooFit *
3  * Package: RooFitModels *
4  * File: $Id: RooNovosibirsk.h,v 1.7 2007/07/12 20:30:49 wouter Exp $
5  * Authors: *
6  * DB, Dieter Best, UC Irvine, best@slac.stanford.edu *
7  * HT, Hirohisa Tanaka SLAC tanaka@slac.stanford.edu *
8  * *
9  * Copyright (c) 2000-2005, Regents of the University of California *
10  * and Stanford University. All rights reserved. *
11  * *
12  * Redistribution and use in source and binary forms, *
13  * with or without modification, are permitted according to the terms *
14  * listed in LICENSE (http://roofit.sourceforge.net/license.txt) *
15  *****************************************************************************/
16 #ifndef ROO_NOVOSIBIRSK
17 #define ROO_NOVOSIBIRSK
18 
19 #include "RooAbsPdf.h"
20 #include "RooRealProxy.h"
21 
22 class RooRealVar;
23 class RooAbsReal;
24 
25 class RooNovosibirsk : public RooAbsPdf {
26 public:
27  // Your constructor needs a name and title and then a list of the
28  // dependent variables and parameters used by this PDF. Use an
29  // underscore in the variable names to distinguish them from your
30  // own local versions.
31  RooNovosibirsk() {} ;
32  RooNovosibirsk(const char *name, const char *title,
33  RooAbsReal& _x, RooAbsReal& _peak,
34  RooAbsReal& _width, RooAbsReal& _tail);
35 
36  RooNovosibirsk(const RooNovosibirsk& other,const char* name=0) ;
37 
38  virtual TObject* clone(const char* newname) const { return new RooNovosibirsk(*this,newname); }
39 
40  Int_t getAnalyticalIntegral(RooArgSet& allVars, RooArgSet& analVars, const char* rangeName=0) const ;
41  Double_t analyticalIntegral(Int_t code, const char* rangeName=0) const ;
42 
43  // An empty constructor is usually ok
44  inline virtual ~RooNovosibirsk() { }
45 
46 protected:
47  Double_t evaluate() const;
48  RooSpan<double> evaluateBatch(std::size_t begin, std::size_t batchSize) const;
49 
50 
51 private:
52  RooRealProxy x;
53  RooRealProxy width;
54  RooRealProxy peak;
55  RooRealProxy tail;
56 
57  ClassDef(RooNovosibirsk,1) // Novosibirsk PDF
58 };
59 
60 #endif