CMS 3D CMS Logo

Public Member Functions | Private Member Functions | Private Attributes

fftjetcms::ProductFunctor< T > Class Template Reference

#include <ScaleCalculators.h>

List of all members.

Public Member Functions

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

Private Member Functions

 ProductFunctor ()

Private Attributes

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

Detailed Description

template<class T>
class fftjetcms::ProductFunctor< T >

Definition at line 88 of file ScaleCalculators.h.


Constructor & Destructor Documentation

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

Definition at line 91 of file ScaleCalculators.h.

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

Member Function Documentation

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

Definition at line 99 of file ScaleCalculators.h.

References fftjetcms::ProductFunctor< T >::f1_, fftjetcms::ProductFunctor< T >::f2_, and csvReporter::r.

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

Member Data Documentation

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

Definition at line 106 of file ScaleCalculators.h.

Referenced by fftjetcms::ProductFunctor< T >::~ProductFunctor().