CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
Classes | Functions
DTSurveyChamber.h File Reference
#include <vector>
#include "TMath.h"
#include "TMatrixD.h"

Go to the source code of this file.

Classes

class  DTSurveyChamber
 

Functions

std::ostream & operator<< (std::ostream &, const DTSurveyChamber &)
 

Function Documentation

std::ostream& operator<< ( std::ostream &  ,
const DTSurveyChamber  
)

Definition at line 102 of file DTSurveyChamber.cc.

References DTSurveyChamber::getAlpha(), DTSurveyChamber::getAlphaError(), DTSurveyChamber::getBeta(), DTSurveyChamber::getBetaError(), DTSurveyChamber::getDeltaX(), DTSurveyChamber::getDeltaXError(), DTSurveyChamber::getDeltaY(), DTSurveyChamber::getDeltaYError(), DTSurveyChamber::getDeltaZ(), DTSurveyChamber::getDeltaZError(), DTSurveyChamber::getGamma(), DTSurveyChamber::getGammaError(), and DTSurveyChamber::getId().

102  {
103 
104  flujo << obj.getId() << " "
105  << obj.getDeltaX() << " " << obj.getDeltaXError() << " "
106  << obj.getDeltaY() << " " << obj.getDeltaYError() << " "
107  << obj.getDeltaZ() << " " << obj.getDeltaZError() << " "
108  << obj.getAlpha() << " " << obj.getAlphaError() << " "
109  << obj.getBeta() << " " << obj.getBetaError() << " "
110  << obj.getGamma() << " " << obj.getGammaError() << std::endl;
111  return flujo;
112 
113 }