#include "DataFormats/Math/interface/Point3D.h"
#include <iostream>
#include <cmath>
#include <vector>
Go to the source code of this file.
Classes | |
class | HFShowerPhoton |
Typedefs | |
typedef std::vector < HFShowerPhoton > | HFShowerPhotonCollection |
Functions | |
std::ostream & | operator<< (std::ostream &, const HFShowerPhoton &) |
typedef std::vector<HFShowerPhoton> HFShowerPhotonCollection |
Definition at line 40 of file HFShowerPhoton.h.
std::ostream& operator<< | ( | std::ostream & | , |
const HFShowerPhoton & | |||
) |
Definition at line 25 of file HFShowerPhoton.cc.
References HFShowerPhoton::lambda(), HFShowerPhoton::t(), HFShowerPhoton::x(), HFShowerPhoton::y(), and HFShowerPhoton::z().
{ os << "X " << std::setw(6) << it.x() << " Y " << std::setw(6) << it.y() << " Z " << std::setw(6) << it.z() << " t " << std::setw(6) << it.t() << " lambda " << it.lambda(); return os; }