CMS 3D CMS Logo

Classes | Functions
TRange.h File Reference
#include <iostream>
#include <utility>
#include <algorithm>

Go to the source code of this file.

Classes

class  TRange< T >
 

Functions

template<class T >
std::ostream & operator<< (std::ostream &out, const TRange< T > &r)
 

Function Documentation

template<class T >
std::ostream& operator<< ( std::ostream &  out,
const TRange< T > &  r 
)

Definition at line 68 of file TRange.h.

References MillePedeFileConverter_cfg::out, and alignCSCRings::r.

68  {
69  return out << "(" << r.min() << "," << r.max() << ")";
70 }
const T & min() const
lower edge of range
Definition: TRange.h:20
const T & max() const
upper edge of range
Definition: TRange.h:23