Classes | Namespaces | Functions
SRVector3D.h File Reference
#include <cmath>
#include <iostream>
#include "TVector3.h"

Go to the source code of this file.

Classes

class  caf::SRVector3D
 A 3-vector with more efficient storage than TVector3. More...
 

Namespaces

 caf
 Common Analysis Files.
 

Functions

std::ostream & operator<< (std::ostream &stream, const caf::SRVector3D &vec)
 

Function Documentation

std::ostream& operator<< ( std::ostream &  stream,
const caf::SRVector3D vec 
)

Definition at line 41 of file SRVector3D.cxx.

42 {
43  stream << "(" << vec.x << "," << vec.y << "," << vec.z << ")";
44  return stream;
45 }