#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. |
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 Alignable::globalPosition(), Alignable::globalRotation(), and AlignableDTWheel::theDTStations.
{ os << "This DTWheel contains " << b.theDTStations.size() << " DT stations" << std::endl; os << "(phi, r, z) = (" << b.globalPosition().phi() << "," << b.globalPosition().perp() << "," << b.globalPosition().z(); os << "), orientation:" << std::endl<< b.globalRotation() << std::endl; return os; }