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