CMS 3D CMS Logo

Functions

/data/refman/pasoursint/CMSSW_6_1_2_SLHC2_patch1/src/DataFormats/L1GlobalMuonTrigger/src/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 147 of file L1MuGMTExtendedCand.cc.

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

                                                               {

  if ( !id.empty() ) {
    s << ( (L1MuGMTCand const &) id ) <<
      setiosflags(ios::showpoint | ios::fixed) 
      << "rank = " << setw(3) << id.rank() << "  "
      << "idxdtcsc = " << setw(1) << id.getDTCSCIndex() << "  "
      << "idxrpc = " << setw(1) << id.getRPCIndex() << "  "
      << "isFwd = " << setw(1) << id.isFwd() << "  "
      << "isRPC = " << setw(1) << id.isRPC() ;
  }
  return s;

}