CMS 3D CMS Logo

Functions
AlignableDTStation.cc File Reference
#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. More...
 

Detailed Description

Date
2008/04/10 16:36:41
Revision
1.5
Author
Andre Sznajder - UERJ(Brazil)

Definition in file AlignableDTStation.cc.

Function Documentation

std::ostream& operator<< ( std::ostream &  os,
const AlignableDTStation b 
)

Output Station information.

Printout muon DT Station information (not recursive)

Definition at line 82 of file AlignableDTStation.cc.

References Alignable::globalPosition(), Alignable::globalRotation(), PV3DBase< T, PVType, FrameType >::perp(), PV3DBase< T, PVType, FrameType >::phi(), AlignableDTStation::theDTChambers, and PV3DBase< T, PVType, FrameType >::z().

83 {
84 
85  os << "This DT Station contains " << b.theDTChambers.size() << " DT chambers" << std::endl;
86  os << "(phi, r, z) = (" << b.globalPosition().phi() << ","
87  << b.globalPosition().perp() << "," << b.globalPosition().z();
88  os << "), orientation:" << std::endl<< b.globalRotation() << std::endl;
89  return os;
90 
91 }
T perp() const
Definition: PV3DBase.h:72
Geom::Phi< T > phi() const
Definition: PV3DBase.h:69
const RotationType & globalRotation() const
Return the global orientation of the object.
Definition: Alignable.h:141
T z() const
Definition: PV3DBase.h:64
std::vector< AlignableDTChamber * > theDTChambers
const PositionType & globalPosition() const
Return the global position of the object.
Definition: Alignable.h:138