CMS 3D CMS Logo

Functions
L1MuGMTExtendedCand.cc File Reference
#include "DataFormats/L1GlobalMuonTrigger/interface/L1MuGMTExtendedCand.h"
#include <iostream>
#include <iomanip>
#include <cmath>
#include "FWCore/MessageLogger/interface/MessageLogger.h"

Go to the source code of this file.

Functions

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

Function Documentation

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

Definition at line 145 of file L1MuGMTExtendedCand.cc.

References L1MuGMTCand::empty(), alignBH_cfg::fixed, and alignCSCRings::s.

145  {
146 
147  if ( !id.empty() ) {
148  s << ( (L1MuGMTCand const &) id ) <<
149  setiosflags(ios::showpoint | ios::fixed)
150  << "rank = " << setw(3) << id.rank() << " "
151  << "idxdtcsc = " << setw(1) << id.getDTCSCIndex() << " "
152  << "idxrpc = " << setw(1) << id.getRPCIndex() << " "
153  << "isFwd = " << setw(1) << id.isFwd() << " "
154  << "isRPC = " << setw(1) << id.isRPC() ;
155  }
156  return s;
157 
158 }