CMS 3D CMS Logo

Functions
L1MuBMTrack.cc File Reference
#include "DataFormats/L1TMuon/interface/L1MuBMTrack.h"
#include <iostream>
#include <iomanip>
#include "DataFormats/L1TMuon/interface/BMTF/L1MuBMSecProcId.h"
#include "DataFormats/L1TMuon/interface/L1MuBMTrackSegPhi.h"
#include "DataFormats/L1TMuon/interface/L1MuBMTrackSegEta.h"

Go to the source code of this file.

Functions

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

Function Documentation

◆ operator<<()

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

Definition at line 274 of file L1MuBMTrack.cc.

References relativeConstraints::empty, alignBH_cfg::fixed, and alignCSCRings::s.

274  {
275  if (!id.empty()) {
276  s << setiosflags(ios::showpoint | ios::fixed) << "pt = " << setw(3) << id.hwPt() << " "
277  << "charge = " << setw(2) << id.hwSign() << " "
278  << "eta = " << setw(2)
279  << id.hwEta()
280  //<< " (" << setw(1) << id.finehalo_packed() << ") "
281  << "phi = " << setw(3) << id.hwPhi() << " "
282  << "quality = " << setw(1) << id.hwQual() << '\t' << "bx = " << setw(2) << id.bx();
283  }
284  return s;
285 }