Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
RooSpHarmonic.cxx
Go to the documentation of this file.
1/*****************************************************************************
2 * Project: RooFit *
3 * Package: RooFitModels *
4 * File: $Id$
5 * Authors: *
6 * GR, Gerhard Raven, Nikhef & VU, Gerhard.Raven@nikhef.nl
7 * *
8 * Copyright (c) 2010, Nikhef & VU. All rights reserved.
9 * *
10 * Redistribution and use in source and binary forms, *
11 * with or without modification, are permitted according to the terms *
12 * listed in LICENSE (http://roofit.sourceforge.net/license.txt) *
13 *****************************************************************************/
14
15/** \class RooSpHarmonic
16 \ingroup Roofit
17
18 Implementation of the so-called real spherical harmonics, using the orthonormal normalization,
19which are related to spherical harmonics as:
20\f[
21 Y_{l0} = Y_l^0 (m=0) \\
22 Y_{lm} = \frac{1}{\sqrt{2}} \left( Y_l^m + (-1)^m Y_l^{-m} \right) (m>0) \\
23 Y_{lm} = \frac{1}{i\sqrt{2}} \left( Y_l^{|m|} - (-1)^{|m|} Y_l^{-|m|} \right) (m<0)
24\f]
25
26which implies:
27\f[
28Y_{l0}(\cos\theta,\phi) = N_{l0} P_l^0 (\cos\theta) (m=0)
29Y_{lm}(\cos\theta,\phi) = \sqrt{2} N_{lm} P_l^m (\cos\theta) cos(|m|\phi) (m>0)
30Y_{lm}(\cos\theta,\phi) = \sqrt{2} N_{l|m|} P_l^{|m|}(\cos\theta) sin(|m|\phi) (m<0)
31\f]
32
33where
34\f[
35 N_{lm} = \sqrt{ \frac{2l+1}{4\pi} \frac{ (l-m)! }{ (l+m)! } }
36\f]
37
38Note that the normalization corresponds to the orthonormal case,
39and thus we have \f$ \int d\cos\theta d\phi Y_{lm} Y_{l'm'} = \delta_{ll'} \delta{mm'}\f$
40
41Note that in addition, this code can also represent the product of two
42(real) spherical harmonics -- it actually uses the fact that \f$Y_{00} = \sqrt{\frac{1}{4\pi}}\f$
43in order to represent a single spherical harmonics by multiplying it
44by \f$\sqrt{4\pi} Y_00\f$, as this makes it trivial to compute the analytical
45integrals, using the orthogonality properties of \f$Y_l^m\f$...
46
47**/
48
49#include "RooSpHarmonic.h"
50#include "Math/SpecFunc.h"
51#include "TMath.h"
52
53#include <cmath>
54
55////////////////////////////////////////////////////////////////////////////////
56
57namespace {
58 inline double N(int l, int m=0) {
59 double n = sqrt( double(2*l+1)/(4*TMath::Pi())*TMath::Factorial(l-m)/TMath::Factorial(l+m) );
60 return m==0 ? n : TMath::Sqrt2() * n;
61 }
62}
63
64////////////////////////////////////////////////////////////////////////////////
65
67 _n(0),
68 _sgn1(0),
69 _sgn2(0)
70{
71}
72
73////////////////////////////////////////////////////////////////////////////////
74
75RooSpHarmonic::RooSpHarmonic(const char* name, const char* title, RooAbsReal& ctheta, RooAbsReal& phi, int l, int m)
76 : RooLegendre(name, title,ctheta,l,m<0?-m:m)
77 , _phi("phi", "phi", this, phi)
78 , _n( 2*sqrt(TMath::Pi()))
79 , _sgn1( m==0 ? 0 : m<0 ? -1 : +1 )
80 , _sgn2( 0 )
81{
82}
83
84////////////////////////////////////////////////////////////////////////////////
85
86RooSpHarmonic::RooSpHarmonic(const char* name, const char* title, RooAbsReal& ctheta, RooAbsReal& phi, int l1, int m1, int l2, int m2)
87 : RooLegendre(name, title,ctheta,l1, m1<0?-m1:m1,l2,m2<0?-m2:m2)
88 , _phi("phi", "phi", this, phi)
89 , _n(1)
90 , _sgn1( m1==0 ? 0 : m1<0 ? -1 : +1 )
91 , _sgn2( m2==0 ? 0 : m2<0 ? -1 : +1 )
92{
93}
94
95////////////////////////////////////////////////////////////////////////////////
96
99 , _phi("phi", this,other._phi)
100 , _n(other._n)
101 , _sgn1( other._sgn1 )
102 , _sgn2( other._sgn2 )
103{
104}
105
106////////////////////////////////////////////////////////////////////////////////
107
109{
110 double n = _n*N(_l1,_m1)*N(_l2,_m2)*RooLegendre::evaluate();
111 if (_sgn1!=0) n *= (_sgn1<0 ? sin(_m1*_phi) : cos(_m1*_phi) );
112 if (_sgn2!=0) n *= (_sgn2<0 ? sin(_m2*_phi) : cos(_m2*_phi) );
113 return n;
114}
115
116////////////////////////////////////////////////////////////////////////////////
117
118namespace {
119 bool fullRange(const RooRealProxy& x, const char* range, bool phi)
120 {
121 if (phi) {
122 return range == nullptr || strlen(range) == 0
123 ? std::abs(x.max() - x.min() - TMath::TwoPi()) < 1.e-8
124 : std::abs(x.max(range) - x.min(range) - TMath::TwoPi()) < 1.e-8;
125 }
126
127 return range == nullptr || strlen(range) == 0
128 ? std::abs(x.min() + 1.) < 1.e-8 && std::abs(x.max() - 1.) < 1.e-8
129 : std::abs(x.min(range) + 1.) < 1.e-8 && std::abs(x.max(range) - 1.) < 1.e-8;
130 }
131}
132
133////////////////////////////////////////////////////////////////////////////////
134/// TODO: check that phi.max - phi.min = 2 pi... ctheta.max = +1, and ctheta.min = -1
135/// we don't support indefinite integrals. maybe one day, when there is a use for it.
136
138{
139 // we don't support indefinite integrals... maybe one day, when there is a use for it.....
140 bool cthetaOK = fullRange(_ctheta, rangeName, false);
141 bool phiOK = fullRange(_phi, rangeName, true );
142 if (cthetaOK && phiOK && matchArgs(allVars, analVars, _ctheta, _phi)) return 3;
143 if ( phiOK && matchArgs(allVars, analVars, _phi)) return 2;
145}
146
147////////////////////////////////////////////////////////////////////////////////
148
149double RooSpHarmonic::analyticalIntegral(Int_t code, const char* range) const
150{
151 if (code==3) {
152 return (_l1==_l2 && _sgn1*_m1==_sgn2*_m2 ) ? _n : 0 ;
153 } else if (code == 2) {
154 if ( _sgn1*_m1 != _sgn2*_m2) return 0;
155 return ( _m1==0 ? 2 : 1 ) * TMath::Pi()*_n*N(_l1,_m1)*N(_l2,_m2)*RooLegendre::evaluate();
156 } else {
158 if (_sgn1!=0) n *= (_sgn1<0 ? sin(_m1*_phi) : cos(_m1*_phi) );
159 if (_sgn2!=0) n *= (_sgn2<0 ? sin(_m2*_phi) : cos(_m2*_phi) );
160 return n;
161 }
162}
163
165 return RooLegendre::getMaxVal(vars);
166}
167
168double RooSpHarmonic::maxVal( Int_t code) const {
169 double n = _n*N(_l1,_m1)*N(_l2,_m2);
170 return n*RooLegendre::maxVal(code);
171}
ROOT::Detail::TRangeCast< T, true > TRangeDynCast
TRangeDynCast is an adapter class that allows the typed iteration through a TCollection.
#define N
char name[80]
Definition TGX11.cxx:142
Abstract base class for objects that represent a real value and implements functionality common to al...
Definition RooAbsReal.h:63
bool matchArgs(const RooArgSet &allDeps, RooArgSet &analDeps, const RooArgProxy &a, const Proxies &... proxies) const
Definition RooAbsReal.h:425
RooArgSet is a container object that can hold multiple RooAbsArg objects.
Definition RooArgSet.h:24
Compute the associated Legendre polynomials using ROOT::Math::assoc_legendre().
Definition RooLegendre.h:20
double evaluate() const override
Note: P_0^0 = 1, so P_l^m = P_l^m P_0^0.
Int_t getMaxVal(const RooArgSet &vars) const override
Advertise capability to determine maximum value of function for given set of observables.
double analyticalIntegral(Int_t code, const char *rangeName=nullptr) const override
this was verified to match mathematica for l1 in [0,2], m1 in [0,l1], l2 in [l1,4],...
Int_t getAnalyticalIntegral(RooArgSet &allVars, RooArgSet &analVars, const char *rangeName=nullptr) const override
Interface function getAnalyticalIntergral advertises the analytical integrals that are supported.
RooRealProxy _ctheta
Definition RooLegendre.h:39
double maxVal(Int_t code) const override
Return maximum value for set of observables identified by code assigned in getMaxVal.
Implementation of the so-called real spherical harmonics, using the orthonormal normalization,...
Int_t getAnalyticalIntegral(RooArgSet &allVars, RooArgSet &analVars, const char *rangeName=nullptr) const override
TODO: check that phi.max - phi.min = 2 pi... ctheta.max = +1, and ctheta.min = -1 we don't support in...
RooRealProxy _phi
Int_t getMaxVal(const RooArgSet &vars) const override
Advertise capability to determine maximum value of function for given set of observables.
double maxVal(Int_t code) const override
Return maximum value for set of observables identified by code assigned in getMaxVal.
double evaluate() const override
Note: P_0^0 = 1, so P_l^m = P_l^m P_0^0.
double analyticalIntegral(Int_t code, const char *rangeName=nullptr) const override
this was verified to match mathematica for l1 in [0,2], m1 in [0,l1], l2 in [l1,4],...
Double_t x[n]
Definition legend1.C:17
const Int_t n
Definition legend1.C:16
TMath.
Definition TMathBase.h:35
Double_t Factorial(Int_t i)
Computes factorial(n).
Definition TMath.cxx:252
constexpr Double_t Sqrt2()
Definition TMath.h:89
constexpr Double_t Pi()
Definition TMath.h:40
constexpr Double_t TwoPi()
Definition TMath.h:47
TMarker m
Definition textangle.C:8
TLine l
Definition textangle.C:4