#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) |
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; }