CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
IntegrandThetaFunction.h
Go to the documentation of this file.
1 #ifndef PhysicsTools_IsolationUtils_IntegrandThetaFunction_h
2 #define PhysicsTools_IsolationUtils_IntegrandThetaFunction_h
3 
4 // -*- C++ -*-
5 //
6 // Package: IntegrandThetaFunction
7 // Class: IntegrandThetaFunction
8 //
17 //
18 // Original Author: Christian Veelken, UC Davis
19 // Created: Thu Nov 2 13:47:40 CST 2006
20 //
21 //
22 
23 // ROOT include files
24 #include <Math/ParamFunction.h>
25 #include <Math/Integrator.h>
26 
28 
29 //
30 // class declaration
31 //
32 
33 class IntegrandThetaFunction : public ROOT::Math::ParamFunction<ROOT::Math::IParametricGradFunctionOneDim>
34 {
35  public:
39 
41 
42  void SetParameterTheta0(double theta0);
43  void SetParameterPhi0(double phi0);
44  void SetParameterAlpha(double alpha);
45 
46  virtual ROOT::Math::IGenFunction* Clone () const { return new IntegrandThetaFunction(*this); }
47 
48  private:
49  void SetParameters(double* param);
50 
51  double DoEval(double x) const;
52  virtual double DoEvalPar(double, const double*) const;
53  double DoDerivative(double x) const;
54  virtual double DoParameterDerivative(double, const double*, unsigned int) const;
55  void DoParameterGradient(double x, double* paramGradient) const;
56 
57  mutable double theta0_; // polar angle of cone axis
58  mutable double phi0_; // azimuth angle of cone axis
59  mutable double alpha_; // opening angle of cone (measured from cone axis)
60 
62 
63  static const unsigned int debugLevel_ = 0;
64 };
65 
66 #endif
IntegralOverPhiFunction * fPhi_
float alpha
Definition: AMPTWrapper.h:95
virtual double DoEvalPar(double, const double *) const
static const unsigned int debugLevel_
virtual ROOT::Math::IGenFunction * Clone() const
IntegrandThetaFunction & operator=(const IntegrandThetaFunction &bluePrint)
double DoDerivative(double x) const
void SetParameterPhi0(double phi0)
void SetParameterAlpha(double alpha)
double DoEval(double x) const
void SetParameterTheta0(double theta0)
virtual double DoParameterDerivative(double, const double *, unsigned int) const
void SetParameters(double *param)
void DoParameterGradient(double x, double *paramGradient) const