CMS 3D CMS Logo

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

#include <ScaleCalculators.h>

Inheritance diagram for fftjetcms::CompositeFunctor< T >:

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.

71  : f1_(f1), f2_(f2), ownsPointers_(takeOwnership) {}
const fftjet::Functor1< double, double > * f1_
const fftjet::Functor1< double, T > * f2_
template<class T >
fftjetcms::CompositeFunctor< T >::~CompositeFunctor ( )
inline

Definition at line 73 of file ScaleCalculators.h.

References fftjetcms::CompositeFunctor< T >::f1_, fftjetcms::CompositeFunctor< T >::f2_, and fftjetcms::CompositeFunctor< T >::ownsPointers_.

74  {if (ownsPointers_) {delete f1_; delete f2_;}}
const fftjet::Functor1< double, double > * f1_
const fftjet::Functor1< double, T > * f2_
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.

76 {return (*f1_)((*f2_)(r));}
const fftjet::Functor1< double, double > * f1_

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