#include "L1Trigger/DTTrackFinder/src/L1MuDTAddressArray.h"
#include <iostream>
#include <iomanip>
#include <vector>
#include <cassert>
Go to the source code of this file.
Functions | |
ostream & | operator<< (ostream &s, const L1MuDTAddressArray &adrarr) |
ostream& operator<< | ( | ostream & | s, | |
const L1MuDTAddressArray & | adrarr | |||
) |
Definition at line 246 of file L1MuDTAddressArray.cc.
References L1MuDTAddressArray::station().
00246 { 00247 00248 s.setf(ios::right,ios::adjustfield); 00249 for ( int stat = 1; stat <= 4; stat++ ) { 00250 s << "stat " << stat << ": " << setw(2) << adrarr.station(stat) << " "; 00251 } 00252 00253 return s; 00254 00255 }