Logo ROOT   6.30.04
Reference Guide
 All Namespaces Files Pages
RooHypatia2.h
Go to the documentation of this file.
1 // Author: Stephan Hageboeck, CERN, Oct 2019
2 // Based on RooIpatia2 by Diego Martinez Santos, Nikhef, Diego.Martinez.Santos@cern.ch
3 /*****************************************************************************
4  * Project: RooFit *
5  * Authors: *
6  * WV, Wouter Verkerke, UC Santa Barbara, verkerke@slac.stanford.edu *
7  * DK, David Kirkby, UC Irvine, dkirkby@uci.edu *
8  * *
9  * Copyright (c) 2000-2019, 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 
17 #ifndef ROOHYPATIA2
18 #define ROOHYPATIA2
19 
20 #include "RooAbsPdf.h"
21 #include "RooRealProxy.h"
22 
23 class RooAbsReal;
24 
25 class RooHypatia2 : public RooAbsPdf {
26 public:
27  RooHypatia2() {} ;
28  RooHypatia2(const char *name, const char *title,
29  RooAbsReal& x, RooAbsReal& lambda, RooAbsReal& zeta, RooAbsReal& beta,
30  RooAbsReal& sigma, RooAbsReal& mu, RooAbsReal& a, RooAbsReal& n, RooAbsReal& a2, RooAbsReal& n2);
31  RooHypatia2(const RooHypatia2& other, const char* name=0);
32  virtual TObject* clone(const char* newname) const override { return new RooHypatia2(*this,newname); }
33  inline virtual ~RooHypatia2() { }
34 
35  /* Analytical integrals need testing.
36 
37  Int_t getAnalyticalIntegral(RooArgSet& allVars, RooArgSet& analVars, const char* rangeName=0) const override;
38  double analyticalIntegral(Int_t code, const char* rangeName=0) const override;
39 
40  */
41 
42 
43 private:
44  RooRealProxy _x;
45  RooRealProxy _lambda;
46  RooRealProxy _zeta;
47  RooRealProxy _beta;
48  RooRealProxy _sigma;
49  RooRealProxy _mu;
50  RooRealProxy _a;
51  RooRealProxy _n;
52  RooRealProxy _a2;
53  RooRealProxy _n2;
54 
55  Double_t evaluate() const override;
56  RooSpan<double> evaluateBatch(std::size_t begin, std::size_t batchSize) const override;
57 
58  /// \cond CLASS_DEF_DOXY
59  ClassDefOverride(RooHypatia2, 1);
60  /// \endcond
61 };
62 
63 #endif