![]() |
![]() |
#include "Alignment/MuonAlignment/interface/AlignableDTStation.h"
#include "FWCore/MessageLogger/interface/MessageLogger.h"
Go to the source code of this file.
Functions | |
std::ostream & | operator<< (std::ostream &os, const AlignableDTStation &b) |
Output Station information. |
Definition in file AlignableDTStation.cc.
std::ostream& operator<< | ( | std::ostream & | os, | |
const AlignableDTStation & | b | |||
) |
Output Station information.
Printout muon DT Station information (not recursive).
Definition at line 84 of file AlignableDTStation.cc.
References lat::endl(), Alignable::globalPosition(), Alignable::globalRotation(), PV3DBase< T, PVType, FrameType >::perp(), PV3DBase< T, PVType, FrameType >::phi(), AlignableDTStation::theDTChambers, and PV3DBase< T, PVType, FrameType >::z().
00085 { 00086 00087 os << "This DT Station contains " << b.theDTChambers.size() << " DT chambers" << std::endl; 00088 os << "(phi, r, z) = (" << b.globalPosition().phi() << "," 00089 << b.globalPosition().perp() << "," << b.globalPosition().z(); 00090 os << "), orientation:" << std::endl<< b.globalRotation() << std::endl; 00091 return os; 00092 00093 }