ATLAS Offline Software
Loading...
Searching...
No Matches
ALinePar.h File Reference
#include "CLHEP/Geometry/Transform3D.h"
#include "GeoPrimitives/GeoPrimitives.h"
#include "MuonAlignmentData/MuonAlignmentPar.h"
#include <array>
#include <climits>
#include <iostream>
Include dependency graph for ALinePar.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  ALinePar

Functions

std::ostream & operator<< (std::ostream &, const ALinePar &par)

Function Documentation

◆ operator<<()

std::ostream & operator<< ( std::ostream & ostr,
const ALinePar & par )

Definition at line 9 of file ALinePar.cxx.

9 {
10 using Parameter = ALinePar::Parameter;
11 ostr<<"ALine AMDB id (name,eta,phi,job)=(";
12 ostr<<par.AmdbStation()<<",";
13 ostr<<par.AmdbEta()<<",";
14 ostr<<par.AmdbPhi()<<",";
15 ostr<<par.AmdbJob()<<"), ";
16 ostr<<"translation (S/Y,Z,T/X)= (";
17 ostr<<par.getParameter(Parameter::transS)<<",";
18 ostr<<par.getParameter(Parameter::transZ)<<",";
19 ostr<<par.getParameter(Parameter::transT)<<"), ";
20 ostr<<"rotation angle";
21 ostr<<" around S="<<par.getParameter(Parameter::rotS)<<",";
22 ostr<<" around Z="<<par.getParameter(Parameter::rotZ)<<",";
23 ostr<<" around T="<<par.getParameter(Parameter::rotT)<<" ";
24 return ostr;
25}
Parameter
amdb frame (s, z, t) = chamber frame (y, z, x)
Definition ALinePar.h:23