#include "L1Trigger/DTTrackFinder/src/L1MuDTTrackSegEta.h"
#include <iostream>
#include <iomanip>
#include <algorithm>
#include <bitset>
#include "L1Trigger/DTTrackFinder/src/L1MuDTTrackSegLoc.h"
Go to the source code of this file.
Functions | |
ostream & | operator<< (ostream &s, const L1MuDTTrackSegEta &id) |
ostream& operator<< | ( | ostream & | s, | |
const L1MuDTTrackSegEta & | id | |||
) |
Definition at line 141 of file L1MuDTTrackSegEta.cc.
References L1MuDTTrackSegEta::position(), and L1MuDTTrackSegEta::quality().
00141 { 00142 00143 s.setf(ios::right,ios::adjustfield); 00144 s << (id.m_location) << "\t" 00145 << "position : " << bitset<7>(id.position()) << " " 00146 << "quality : " << bitset<7>(id.quality()); 00147 00148 return s; 00149 00150 }