#include "DataFormats/CaloTowers/interface/CaloTower.h"
Go to the source code of this file.
Functions | |
std::ostream & | operator<< (std::ostream &s, const CaloTower &ct) |
std::ostream& operator<< | ( | std::ostream & | s, | |
const CaloTower & | ct | |||
) |
Definition at line 52 of file CaloTower.cc.
References CaloTower::emEt(), reco::Particle::et(), reco::Particle::eta(), CaloTower::hadEt(), CaloTower::id(), CaloTower::outerEt(), and reco::Particle::phi().
00052 { 00053 return s << ct.id() << ":" << ct.et() << " GeV ET (EM=" << ct.emEt() << 00054 " HAD=" << ct.hadEt() << " OUTER=" << ct.outerEt() << ") (" << ct.eta() << "," << ct.phi() << ")"; 00055 }