#include "Alignment/MuonAlignment/interface/AlignableDTBarrel.h"
#include "CondFormats/Alignment/interface/Alignments.h"
#include "CondFormats/Alignment/interface/AlignmentErrors.h"
#include "CondFormats/Alignment/interface/AlignmentSorter.h"
#include "FWCore/MessageLogger/interface/MessageLogger.h"
Go to the source code of this file.
Functions | |
std::ostream & | operator<< (std::ostream &os, const AlignableDTBarrel &b) |
Output Half Barrel information. |
Definition in file AlignableDTBarrel.cc.
std::ostream& operator<< | ( | std::ostream & | os, | |
const AlignableDTBarrel & | b | |||
) |
Output Half Barrel information.
Printout muon Barrel information (not recursive).
Definition at line 86 of file AlignableDTBarrel.cc.
References lat::endl(), Alignable::globalPosition(), Alignable::globalRotation(), PV3DBase< T, PVType, FrameType >::perp(), PV3DBase< T, PVType, FrameType >::phi(), AlignableDTBarrel::theDTWheels, and PV3DBase< T, PVType, FrameType >::z().
00087 { 00088 00089 os << "This DTBarrel contains " << b.theDTWheels.size() << " Barrel wheels" << std::endl; 00090 os << "(phi, r, z) = (" << b.globalPosition().phi() << "," 00091 << b.globalPosition().perp() << "," << b.globalPosition().z(); 00092 os << "), orientation:" << std::endl<< b.globalRotation() << std::endl; 00093 return os; 00094 00095 }