CMS 3D CMS Logo

Functions

/data/refman/pasoursint/CMSSW_5_3_8_patch3/src/Alignment/MuonAlignment/src/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.

Detailed Description

Date:
2011/09/15 10:07:07
Revision:
1.6
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 83 of file AlignableDTWheel.cc.

References Alignable::globalPosition(), Alignable::globalRotation(), and AlignableDTWheel::theDTStations.

{

  os << "This DTWheel contains " << b.theDTStations.size() << " DT stations" << 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;

}