CMS 3D CMS Logo

Public Types | Public Member Functions | Private Attributes

TrkCalIsolationAlgo< T1, C2 > Class Template Reference

#include <TrkCalIsolationAlgo.h>

List of all members.

Public Types

typedef double value_type

Public Member Functions

double operator() (const T1 &, const C2 &) const
 TrkCalIsolationAlgo (double dRMin, double dRMax)
 TrkCalIsolationAlgo ()
 ~TrkCalIsolationAlgo ()

Private Attributes

double dRMax_
double dRMin_

Detailed Description

template<typename T1, typename C2>
class TrkCalIsolationAlgo< T1, C2 >

Definition at line 10 of file TrkCalIsolationAlgo.h.


Member Typedef Documentation

template<typename T1 , typename C2 >
typedef double TrkCalIsolationAlgo< T1, C2 >::value_type

Definition at line 12 of file TrkCalIsolationAlgo.h.


Constructor & Destructor Documentation

template<typename T1 , typename C2 >
TrkCalIsolationAlgo< T1, C2 >::TrkCalIsolationAlgo ( )
template<typename T1 , typename C2 >
TrkCalIsolationAlgo< T1, C2 >::TrkCalIsolationAlgo ( double  dRMin,
double  dRMax 
) [inline]

Definition at line 14 of file TrkCalIsolationAlgo.h.

: dRMin_( dRMin ), dRMax_( dRMax ) { }
template<typename T1 , typename C2 >
TrkCalIsolationAlgo< T1, C2 >::~TrkCalIsolationAlgo ( ) [inline]

Definition at line 15 of file TrkCalIsolationAlgo.h.

{ } 

Member Function Documentation

template<typename T1 , typename C2 >
double TrkCalIsolationAlgo< T1, C2 >::operator() ( const T1 &  cand,
const C2 &  elements 
) const

Definition at line 28 of file TrkCalIsolationAlgo.h.

References deltaR(), and HTMLExport::elem().

                                                       {
  double etSum = 0;
  for( typename C2::const_iterator elem = elements.begin(); 
       elem != elements.end(); ++elem ) {
    double dR = deltaR( elem->eta(), elem->phi(), 
                        cand.outerEta(), cand.outerPhi() );
    if ( dR < dRMax_ && dR > dRMin_ ) {
      etSum += elem->et();
    }
  }
  return etSum;
}

Member Data Documentation

template<typename T1 , typename C2 >
double TrkCalIsolationAlgo< T1, C2 >::dRMax_ [private]

Definition at line 19 of file TrkCalIsolationAlgo.h.

template<typename T1 , typename C2 >
double TrkCalIsolationAlgo< T1, C2 >::dRMin_ [private]

Definition at line 19 of file TrkCalIsolationAlgo.h.