#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. |
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 Alignable::globalPosition(), Alignable::globalRotation(), and AlignableDTStation::theDTChambers.
{ os << "This DT Station contains " << b.theDTChambers.size() << " DT chambers" << 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; }