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

◆ operator<<()

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

Definition at line 124 of file L1MuGMTExtendedCand.cc.

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

124  {
125  if (!id.empty()) {
126  s << ((L1MuGMTCand const&)id) << setiosflags(ios::showpoint | ios::fixed) << "rank = " << setw(3) << id.rank()
127  << " "
128  << "idxdtcsc = " << setw(1) << id.getDTCSCIndex() << " "
129  << "idxrpc = " << setw(1) << id.getRPCIndex() << " "
130  << "isFwd = " << setw(1) << id.isFwd() << " "
131  << "isRPC = " << setw(1) << id.isRPC();
132  }
133  return s;
134 }