#include "../interface/PFJetAlgorithm.h"
#include <iostream>
#include <set>
#include <TVector2.h>
Go to the source code of this file.
Functions | |
ostream & | operator<< (ostream &out, const PFJetAlgorithm::Jet &jet) |
ostream& operator<< | ( | ostream & | out, | |
const PFJetAlgorithm::Jet & | jet | |||
) |
Definition at line 9 of file PFJetAlgorithm.cc.
References GenMuonPlsPt100GeV_cfg::cout, PFJetAlgorithm::Jet::fMomentum, and PFJetAlgorithm::Jet::fVecIndexes.
00009 { 00010 if(!out) return out; 00011 cout<<"jet "<<jet.fVecIndexes.size()<<" particles, E_T = "<<jet.fMomentum.Et()<<" eta/phi " 00012 <<jet.fMomentum.Eta()<<" "<<jet.fMomentum.Phi(); 00013 return out; 00014 }