/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
PhysicsTools/IsolationUtils/interface/IntegralOverPhiFunction.h
68 строк
2 KB
Cms Build
Clang-Format
03 июн 2019, 06:45
03 июн 2019, 06:45
d4f6565
Код
Авторство
О чём код?
#ifndef PhysicsTools_IsolationUtils_IntegralOverPhiFunction_h #define PhysicsTools_IsolationUtils_IntegralOverPhiFunction_h // -*- C++ -*- // // Package: IntegralOverPhiFunction // Class: IntegralOverPhiFunction // /**\class IntegralOverPhiFunction IntegralOverPhiFunction.cc PhysicsTools/IsolationUtils/src/IntegralOverPhiFunction.cc Description: auxialiary class for fixed area isolation cone computation (this class performs the integration over the azimuthal angle) Implementation: imported into CMSSW on 05/18/2007 */ // // Original Author: Christian Veelken, UC Davis // Created: Thu Nov 2 13:47:40 CST 2006 // // // ROOT include files #include <Math/ParamFunction.h> // // class declaration // class IntegralOverPhiFunction : public ROOT::Math::ParamFunction<ROOT::Math::IParametricGradFunctionOneDim> { public: IntegralOverPhiFunction(); ~IntegralOverPhiFunction() override; void SetParameterTheta0(double theta0); void SetParameterPhi0(double phi0); void SetParameterAlpha(double alpha); ROOT::Math::IGenFunction* Clone() const override { return new IntegralOverPhiFunction(*this); } private: void SetParameters(double const* param) override; double DoEval(double x) const override; double DoEvalPar(double x, const double* param) const override; double DoDerivative(double x) const; double DoParameterDerivative(double, const double*, unsigned int) const override; void DoParameterGradient(double x, double* paramGradient) const; mutable double theta0_; // polar angle of cone axis mutable double phi0_; // azimuth angle of cone axis mutable double alpha_; // opening angle of cone (measured from cone axis) // !!! ONLY FOR TESTING mutable unsigned int numSolutionMin1_; mutable unsigned int numSolutionMax1_; mutable unsigned int numSolutionMin2_; mutable unsigned int numSolutionMax2_; mutable unsigned int numSolutionMin3_; mutable unsigned int numSolutionMax3_; mutable unsigned int numSolutionMin4_; mutable unsigned int numSolutionMax4_; // FOR TESTING ONLY !!! static const unsigned int debugLevel_ = 0; }; #endif