CMS 3D CMS Logo

Classes | Functions
CTPPSRPAlignmentCorrectionData.h File Reference
#include "CondFormats/Serialization/interface/Serializable.h"
#include "DataFormats/Math/interface/Vector3D.h"
#include <Math/Rotation3D.h>
#include <Math/RotationZYX.h>
#include <vector>

Go to the source code of this file.

Classes

class  CTPPSRPAlignmentCorrectionData
 Alignment correction for an element of the CT-PPS detector. Within the geometry description, every sensor (more generally every element) is given its translation and rotation. These two quantities shall be understood in local-to-global coordinate transform. That is, if r_l is a point in local coordinate system and x_g in global, then it holds. More...
 

Functions

std::ostream & operator<< (std::ostream &s, const CTPPSRPAlignmentCorrectionData &corr)
 

Function Documentation

std::ostream& operator<< ( std::ostream &  s,
const CTPPSRPAlignmentCorrectionData corr 
)

Definition at line 74 of file CTPPSRPAlignmentCorrectionData.cc.

References alignBH_cfg::fixed, CTPPSRPAlignmentCorrectionData::getRotX(), CTPPSRPAlignmentCorrectionData::getRotXUnc(), CTPPSRPAlignmentCorrectionData::getRotY(), CTPPSRPAlignmentCorrectionData::getRotYUnc(), CTPPSRPAlignmentCorrectionData::getRotZ(), CTPPSRPAlignmentCorrectionData::getRotZUnc(), CTPPSRPAlignmentCorrectionData::getShX(), CTPPSRPAlignmentCorrectionData::getShXUnc(), CTPPSRPAlignmentCorrectionData::getShY(), CTPPSRPAlignmentCorrectionData::getShYUnc(), CTPPSRPAlignmentCorrectionData::getShZ(), CTPPSRPAlignmentCorrectionData::getShZUnc(), and alignCSCRings::s.

75 {
76  s << fixed
77  << "shift (um) " << std::setprecision(1)
78  << "x = " << corr.getShX()*1E3 << " +- " << corr.getShXUnc()*1E3
79  << ", y = " << corr.getShY()*1E3 << " +- " << corr.getShYUnc()*1E3
80  << ", z = " << corr.getShZ()*1E3 << " +- " << corr.getShZUnc()*1E3
81  << ", rotation (mrad) " << std::setprecision(1)
82  << "x = " << corr.getRotX()*1E3 << " +- " << corr.getRotXUnc()*1E3
83  << ", y = " << corr.getRotY()*1E3 << " +- " << corr.getRotYUnc()*1E3
84  << ", z = " << corr.getRotZ()*1E3 << " +- " << corr.getRotZUnc()*1E3;
85 
86  return s;
87 }