CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
Functions
L1MuBMTrack.cc File Reference
#include "L1Trigger/L1TMuonBarrel/interface/L1MuBMTrack.h"
#include <iostream>
#include <iomanip>
#include "L1Trigger/L1TMuonBarrel/src/L1MuBMSecProcId.h"
#include "L1Trigger/L1TMuonBarrel/src/L1MuBMTrackSegPhi.h"
#include "L1Trigger/L1TMuonBarrel/src/L1MuBMTrackSegEta.h"
#include "CondFormats/L1TObjects/interface/L1MuTriggerPtScale.h"
#include "CondFormats/DataRecord/interface/L1MuTriggerPtScaleRcd.h"
#include "CondFormats/L1TObjects/interface/L1MuPacking.h"

Go to the source code of this file.

Functions

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

Function Documentation

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

Definition at line 307 of file L1MuBMTrack.cc.

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

307  {
308 
309  if ( !id.empty() ) {
310  s << setiosflags(ios::showpoint | ios::fixed)
311  << "pt = " << setw(3) << id.hwPt() << " "
312  << "charge = " << setw(2) << id.hwSign() << " "
313  << "eta = " << setw(2) << id.hwEta()
314  //<< " (" << setw(1) << id.finehalo_packed() << ") "
315  << "phi = " << setw(3) << id.hwPhi() << " "
316  << "quality = " << setw(1) << id.hwQual() << '\t'
317  << "bx = " << setw(2) << id.bx();
318  }
319  return s;
320 
321 }