CMS 3D CMS Logo

List of all members | Public Member Functions | Private Member Functions | Private Attributes
fftjetcms::MagnitudeDependent< T > Class Template Reference

#include <ScaleCalculators.h>

Inheritance diagram for fftjetcms::MagnitudeDependent< T >:

Public Member Functions

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

Private Member Functions

 MagnitudeDependent ()=delete
 

Private Attributes

const fftjet::Functor1< double, double > * f1_
 
const bool ownsPointer_
 

Detailed Description

template<class T>
class fftjetcms::MagnitudeDependent< T >

Definition at line 114 of file ScaleCalculators.h.

Constructor & Destructor Documentation

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

Definition at line 117 of file ScaleCalculators.h.

119  : f1_(f1), ownsPointer_(takeOwnership) {}
const fftjet::Functor1< double, double > * f1_
template<class T >
fftjetcms::MagnitudeDependent< T >::~MagnitudeDependent ( )
inlineoverride

Definition at line 121 of file ScaleCalculators.h.

121 {if (ownsPointer_) delete f1_;}
const fftjet::Functor1< double, double > * f1_
template<class T >
fftjetcms::MagnitudeDependent< T >::MagnitudeDependent ( )
privatedelete

Member Function Documentation

template<class T >
double fftjetcms::MagnitudeDependent< T >::operator() ( const T r) const
inlineoverride

Definition at line 123 of file ScaleCalculators.h.

124  {return (*f1_)(r.magnitude());}
const fftjet::Functor1< double, double > * f1_

Member Data Documentation

template<class T >
const fftjet::Functor1<double,double>* fftjetcms::MagnitudeDependent< T >::f1_
private

Definition at line 128 of file ScaleCalculators.h.

template<class T >
const bool fftjetcms::MagnitudeDependent< T >::ownsPointer_
private

Definition at line 129 of file ScaleCalculators.h.