CMS 3D CMS Logo

Functions
L1MuBMTrackSegLoc.cc File Reference
#include "DataFormats/L1TMuon/interface/BMTF/L1MuBMTrackSegLoc.h"
#include <iostream>
#include <iomanip>
#include <cstdlib>
#include <cassert>

Go to the source code of this file.

Functions

ostream & operator<< (ostream &s, const L1MuBMTrackSegLoc &id)
 

Function Documentation

◆ operator<<()

ostream& operator<< ( ostream &  s,
const L1MuBMTrackSegLoc id 
)

Definition at line 130 of file L1MuBMTrackSegLoc.cc.

References alignCSCRings::s.

130  {
131  s.setf(ios::right, ios::adjustfield);
132  s << "wheel = " << setw(2) << id.wheel() << " "
133  << "sector = " << setw(2) << id.sector() << " "
134  << "station = " << setw(1) << id.station();
135 
136  return s;
137 }