#include "Alignment/MuonAlignment/interface/AlignableCSCStation.h"
#include "FWCore/MessageLogger/interface/MessageLogger.h"
Go to the source code of this file.
Functions | |
std::ostream & | operator<< (std::ostream &os, const AlignableCSCStation &b) |
Output Station information. |
std::ostream& operator<< | ( | std::ostream & | os, |
const AlignableCSCStation & | b | ||
) |
Output Station information.
Printout muon CSC Station information (not recursive)
Definition at line 93 of file AlignableCSCStation.cc.
References Alignable::globalPosition(), Alignable::globalRotation(), and AlignableCSCStation::theCSCRings.
{ os << "This CSC Station contains " << b.theCSCRings.size() << " CSC rings" << 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; }