CMS 3D CMS Logo

Public Member Functions | Private Member Functions | Private Attributes

fftjetcms::CompositeFunctor< T > Class Template Reference

#include <ScaleCalculators.h>

List of all members.

Public Member Functions

 CompositeFunctor (const fftjet::Functor1< double, double > *f1, const fftjet::Functor1< double, T > *f2, const bool takeOwnership=false)
double operator() (const T &r) const
 ~CompositeFunctor ()

Private Member Functions

 CompositeFunctor ()

Private Attributes

const fftjet::Functor1< double,
double > * 
f1_
const fftjet::Functor1< double,
T > * 
f2_
const bool ownsPointers_

Detailed Description

template<class T>
class fftjetcms::CompositeFunctor< T >

Definition at line 65 of file ScaleCalculators.h.


Constructor & Destructor Documentation

template<class T >
fftjetcms::CompositeFunctor< T >::CompositeFunctor ( const fftjet::Functor1< double, double > *  f1,
const fftjet::Functor1< double, T > *  f2,
const bool  takeOwnership = false 
) [inline]

Definition at line 68 of file ScaleCalculators.h.

            : f1_(f1), f2_(f2), ownsPointers_(takeOwnership) {}
template<class T >
fftjetcms::CompositeFunctor< T >::~CompositeFunctor ( ) [inline]
template<class T >
fftjetcms::CompositeFunctor< T >::CompositeFunctor ( ) [private]

Member Function Documentation

template<class T >
double fftjetcms::CompositeFunctor< T >::operator() ( const T r) const [inline]

Definition at line 76 of file ScaleCalculators.h.

References fftjetcms::CompositeFunctor< T >::f1_, and alignCSCRings::r.

{return (*f1_)((*f2_)(r));}

Member Data Documentation

template<class T >
const fftjet::Functor1<double,double>* fftjetcms::CompositeFunctor< T >::f1_ [private]
template<class T >
const fftjet::Functor1<double,T>* fftjetcms::CompositeFunctor< T >::f2_ [private]
template<class T >
const bool fftjetcms::CompositeFunctor< T >::ownsPointers_ [private]