#include "L1Trigger/DTTrackFinder/src/L1MuDTSecProcId.h"
#include <iostream>
#include <iomanip>
#include <cstdlib>
Go to the source code of this file.
Functions | |
ostream & | operator<< (ostream &s, const L1MuDTSecProcId &id) |
ostream& operator<< | ( | ostream & | s, | |
const L1MuDTSecProcId & | id | |||
) |
Definition at line 143 of file L1MuDTSecProcId.cc.
00143 { 00144 00145 s.setf(ios::right,ios::adjustfield); 00146 s << "Sector Processor ( " << setw(2) << id.wheel() << "," 00147 << setw(2) << id.sector() << " )"; 00148 return s; 00149 00150 }