CMS 3D CMS Logo

Functions
AlignableDTWheel.cc File Reference
#include "Alignment/MuonAlignment/interface/AlignableDTWheel.h"
#include "FWCore/MessageLogger/interface/MessageLogger.h"

Go to the source code of this file.

Functions

std::ostream & operator<< (std::ostream &os, const AlignableDTWheel &b)
 Output Wheel information. More...
 

Detailed Description

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

Definition in file AlignableDTWheel.cc.

Function Documentation

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

Output Wheel information.

Printout muon DT wheel information (not recursive)

Definition at line 80 of file AlignableDTWheel.cc.

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

81 {
82 
83  os << "This DTWheel contains " << b.theDTStations.size() << " DT stations" << std::endl;
84  os << "(phi, r, z) = (" << b.globalPosition().phi() << ","
85  << b.globalPosition().perp() << "," << b.globalPosition().z();
86  os << "), orientation:" << std::endl<< b.globalRotation() << std::endl;
87  return os;
88 
89 }
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< AlignableDTStation * > theDTStations
const PositionType & globalPosition() const
Return the global position of the object.
Definition: Alignable.h:138