CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
Classes | Typedefs | Functions
HFShowerPhoton.h File Reference
#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 Documentation

Definition at line 40 of file HFShowerPhoton.h.

Function Documentation

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().

25  {
26  os << "X " << std::setw(6) << it.x() << " Y " << std::setw(6)
27  << it.y() << " Z " << std::setw(6) << it.z() << " t " << std::setw(6)
28  << it.t() << " lambda " << it.lambda();
29  return os;
30 }