CMS 3D CMS Logo

List of all members | Public Member Functions | Private Member Functions | Private Attributes | Friends
ScalingExponential Class Reference

#include <ScalingExponential.h>

Public Member Functions

bool operator!= (const ScalingExponential &r) const
 
double operator() (const double x) const
 
bool operator== (const ScalingExponential &r) const
 
 ScalingExponential ()
 
 ScalingExponential (const double p0, const double p1, const bool isLinear=false)
 

Private Member Functions

template<class Archive >
void serialize (Archive &ar, unsigned)
 

Private Attributes

uint8_t linear_
 
double p0_
 
double p1_
 

Friends

class boost::serialization::access
 

Detailed Description

Definition at line 10 of file ScalingExponential.h.

Constructor & Destructor Documentation

◆ ScalingExponential() [1/2]

ScalingExponential::ScalingExponential ( )
inline

Definition at line 12 of file ScalingExponential.h.

◆ ScalingExponential() [2/2]

ScalingExponential::ScalingExponential ( const double  p0,
const double  p1,
const bool  isLinear = false 
)
inline

Definition at line 14 of file ScalingExponential.h.

Member Function Documentation

◆ operator!=()

bool ScalingExponential::operator!= ( const ScalingExponential r) const
inline

Definition at line 26 of file ScalingExponential.h.

References alignCSCRings::r.

26 { return !(*this == r); }

◆ operator()()

double ScalingExponential::operator() ( const double  x) const
inline

◆ operator==()

bool ScalingExponential::operator== ( const ScalingExponential r) const
inline

Definition at line 22 of file ScalingExponential.h.

References linear_, p0_, p1_, and alignCSCRings::r.

22  {
23  return p0_ == r.p0_ && p1_ == r.p1_ && linear_ == r.linear_;
24  }

◆ serialize()

template<class Archive >
void ScalingExponential::serialize ( Archive &  ar,
unsigned   
)
inlineprivate

Definition at line 36 of file ScalingExponential.h.

References linear_, p0_, and p1_.

Friends And Related Function Documentation

◆ boost::serialization::access

friend class boost::serialization::access
friend

Definition at line 33 of file ScalingExponential.h.

Member Data Documentation

◆ linear_

uint8_t ScalingExponential::linear_
private

Definition at line 31 of file ScalingExponential.h.

Referenced by operator()(), operator==(), and serialize().

◆ p0_

double ScalingExponential::p0_
private

Definition at line 29 of file ScalingExponential.h.

Referenced by operator()(), operator==(), and serialize().

◆ p1_

double ScalingExponential::p1_
private

Definition at line 30 of file ScalingExponential.h.

Referenced by operator()(), operator==(), and serialize().