CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
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 58 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().

58  {
59  os << "This DT Station contains " << b.theDTChambers.size() << " DT chambers" << std::endl;
60  os << "(phi, r, z) = (" << b.globalPosition().phi() << "," << b.globalPosition().perp() << ","
61  << b.globalPosition().z();
62  os << "), orientation:" << std::endl << b.globalRotation() << std::endl;
63  return os;
64 }
T perp() const
Definition: PV3DBase.h:69
Geom::Phi< T > phi() const
Definition: PV3DBase.h:66
const RotationType & globalRotation() const
Return the global orientation of the object.
Definition: Alignable.h:138
T z() const
Definition: PV3DBase.h:61
std::vector< AlignableDTChamber * > theDTChambers
const PositionType & globalPosition() const
Return the global position of the object.
Definition: Alignable.h:135