#include <Range.h>
Public Member Functions | |
bool | empty () const |
bool | inside (const T &value) const |
const T & | max () const |
T | mean () const |
const T & | min () const |
Range () | |
Range (const T &aMin, const T &aMax) | |
Range (const std::pair< T, T > &aPair) | |
void | sort () |
Define a range [aMin,aMax]
muonisolation::Range< T >::Range | ( | void | ) | [inline] |
muonisolation::Range< T >::Range | ( | const T & | aMin, |
const T & | aMax | ||
) | [inline] |
muonisolation::Range< T >::Range | ( | const std::pair< T, T > & | aPair | ) | [inline] |
bool muonisolation::Range< T >::empty | ( | void | ) | const [inline] |
Definition at line 29 of file Range.h.
Referenced by muonisolation::Range< float >::sort().
{ return (this->second < this->first); }
bool muonisolation::Range< T >::inside | ( | const T & | value | ) | const [inline] |
const T& muonisolation::Range< T >::max | ( | ) | const [inline] |
Definition at line 25 of file Range.h.
Referenced by L3MuonCombinedRelativeIsolationProducer::produce().
{ return this->second; }
T muonisolation::Range< T >::mean | ( | ) | const [inline] |
const T& muonisolation::Range< T >::min | ( | ) | const [inline] |
Definition at line 23 of file Range.h.
Referenced by L3MuonCombinedRelativeIsolationProducer::produce().
{ return this->first; }