CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
Functions
DTSurveyChamber.cc File Reference
#include <iostream>
#include "Alignment/SurveyAnalysis/interface/DTSurveyChamber.h"
#include "Alignment/SurveyAnalysis/interface/Chi2.h"

Go to the source code of this file.

Functions

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

Function Documentation

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

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 }
float getDeltaZError() const
float getDeltaYError() const
long getId() const
float getDeltaXError() const
float getDeltaZ() const
float getBeta() const
float getAlphaError() const
float getGammaError() const
float getDeltaX() const
float getAlpha() const
float getGamma() const
float getDeltaY() const
float getBetaError() const