CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions | Static Public Member Functions | Private Attributes | Static Private Attributes
PeriodicBinFinderInPhi< T > Class Template Reference

#include <MagBLayer.h>

Inheritance diagram for PeriodicBinFinderInPhi< T >:
BaseBinFinder< T >

Public Member Functions

virtual int binIndex (T phi) const
 returns an index in the valid range for the bin that contains phi More...
 
virtual int binIndex (int i) const
 returns an index in the valid range, modulo Nbins More...
 
virtual T binPosition (int ind) const
 the middle of the bin in radians More...
 
 PeriodicBinFinderInPhi ()
 
 PeriodicBinFinderInPhi (T firstPhi, int nbins)
 
- Public Member Functions inherited from BaseBinFinder< T >
 BaseBinFinder ()
 
virtual ~BaseBinFinder ()
 

Static Public Member Functions

static constexpr T pi ()
 
static constexpr T twoPi ()
 

Private Attributes

T theInvPhiStep =0
 
int theNbins =0
 
T thePhiOffset =0
 
T thePhiStep =0
 

Static Private Attributes

static constexpr T piC = 3.141592653589793238
 
static constexpr T twoPiC = 2*piC
 

Detailed Description

template<class T>
class PeriodicBinFinderInPhi< T >

Periodic Bin Finder around a circle for (almost) equidistant bins. Phi is the angle on the circle in radians.

Definition at line 21 of file MagBLayer.h.

Constructor & Destructor Documentation

template<class T>
PeriodicBinFinderInPhi< T >::PeriodicBinFinderInPhi ( )
inline

Definition at line 16 of file PeriodicBinFinderInPhi.h.

16 {}
template<class T>
PeriodicBinFinderInPhi< T >::PeriodicBinFinderInPhi ( T  firstPhi,
int  nbins 
)
inline

Member Function Documentation

template<class T>
virtual int PeriodicBinFinderInPhi< T >::binIndex ( T  phi) const
inlinevirtual
template<class T>
virtual int PeriodicBinFinderInPhi< T >::binIndex ( int  i) const
inlinevirtual

returns an index in the valid range, modulo Nbins

Implements BaseBinFinder< T >.

Definition at line 30 of file PeriodicBinFinderInPhi.h.

30  {
31  int ind = i % theNbins;
32  return ind < 0 ? ind+theNbins : ind;
33  }
int i
Definition: DBlmapReader.cc:9
template<class T>
virtual T PeriodicBinFinderInPhi< T >::binPosition ( int  ind) const
inlinevirtual

the middle of the bin in radians

Implements BaseBinFinder< T >.

Definition at line 36 of file PeriodicBinFinderInPhi.h.

36  {
37  return thePhiOffset + thePhiStep * ( T(ind) + T(0.5));
38  }
long double T
template<class T>
static constexpr T PeriodicBinFinderInPhi< T >::pi ( )
inlinestatic

Definition at line 40 of file PeriodicBinFinderInPhi.h.

40 { return piC;}
template<class T>
static constexpr T PeriodicBinFinderInPhi< T >::twoPi ( )
inlinestatic

Definition at line 41 of file PeriodicBinFinderInPhi.h.

41 { return twoPiC;}

Member Data Documentation

template<class T>
constexpr T PeriodicBinFinderInPhi< T >::piC = 3.141592653589793238
staticprivate

Definition at line 45 of file PeriodicBinFinderInPhi.h.

Referenced by PeriodicBinFinderInPhi< float >::pi().

template<class T>
T PeriodicBinFinderInPhi< T >::theInvPhiStep =0
private

Definition at line 52 of file PeriodicBinFinderInPhi.h.

Referenced by PeriodicBinFinderInPhi< float >::binIndex().

template<class T>
int PeriodicBinFinderInPhi< T >::theNbins =0
private

Definition at line 50 of file PeriodicBinFinderInPhi.h.

Referenced by PeriodicBinFinderInPhi< float >::binIndex().

template<class T>
T PeriodicBinFinderInPhi< T >::thePhiOffset =0
private
template<class T>
T PeriodicBinFinderInPhi< T >::thePhiStep =0
private
template<class T>
constexpr T PeriodicBinFinderInPhi< T >::twoPiC = 2*piC
staticprivate