CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
Functions
L1MuDTTrackSegLoc.cc File Reference
#include "L1Trigger/DTTrackFinder/src/L1MuDTTrackSegLoc.h"
#include <iostream>
#include <iomanip>
#include <cstdlib>
#include <cassert>

Go to the source code of this file.

Functions

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

Function Documentation

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

Definition at line 141 of file L1MuDTTrackSegLoc.cc.

References alignCSCRings::s.

141  {
142 
143  s.setf(ios::right,ios::adjustfield);
144  s << "wheel = " << setw(2) << id.wheel() << " "
145  << "sector = " << setw(2) << id.sector() << " "
146  << "station = " << setw(1) << id.station();
147 
148  return s;
149 
150 }