![]() |
![]() |
#include "Alignment/MuonAlignment/interface/AlignableCSCRing.h"
#include "FWCore/MessageLogger/interface/MessageLogger.h"
Go to the source code of this file.
Functions | |
std::ostream & | operator<< (std::ostream &os, const AlignableCSCRing &b) |
Output Ring information. |
Definition in file AlignableCSCRing.cc.
std::ostream& operator<< | ( | std::ostream & | os, | |
const AlignableCSCRing & | b | |||
) |
Output Ring information.
Printout muon CSC Ring information (not recursive).
Definition at line 93 of file AlignableCSCRing.cc.
References lat::endl(), Alignable::globalPosition(), Alignable::globalRotation(), PV3DBase< T, PVType, FrameType >::perp(), PV3DBase< T, PVType, FrameType >::phi(), AlignableCSCRing::theCSCChambers, and PV3DBase< T, PVType, FrameType >::z().
00094 { 00095 00096 os << "This CSC Ring contains " << b.theCSCChambers.size() << " CSC chambers" << std::endl; 00097 os << "(phi, r, z) = (" << b.globalPosition().phi() << "," 00098 << b.globalPosition().perp() << "," << b.globalPosition().z(); 00099 os << "), orientation:" << std::endl<< b.globalRotation() << std::endl; 00100 return os; 00101 00102 }