CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
Functions
SubjetFilterAlgorithm.cc File Reference
#include "RecoJets/JetAlgorithms/interface/SubjetFilterAlgorithm.h"
#include <fastjet/ClusterSequenceArea.hh>
#include <iostream>
#include <iomanip>
#include <sstream>
#include <cmath>

Go to the source code of this file.

Functions

ostream & operator<< (ostream &ostr, fastjet::PseudoJet &jet)
 does the actual work for printing out a jet More...
 

Function Documentation

ostream & operator<< ( ostream &  ostr,
fastjet::PseudoJet &  jet 
)

does the actual work for printing out a jet

Definition at line 257 of file SubjetFilterAlgorithm.cc.

257  {
258  ostr << "pt=" <<setw(10)<<jet.perp()
259  << " eta="<<setw(6) <<jet.eta()
260  << " m=" <<setw(10)<<jet.m();
261  return ostr;
262 }