CMS 3D CMS Logo

Functions
AlignableDTSuperLayer.cc File Reference
#include "Alignment/MuonAlignment/interface/AlignableDTSuperLayer.h"

Go to the source code of this file.

Functions

std::ostream & operator<< (std::ostream &os, const AlignableDTSuperLayer &r)
 Printout the DetUnits in the CSC chamber. More...
 

Detailed Description

Date
2008/03/26 21:59:30
Revision
1.1
Author
Andre Sznajder - UERJ(Brazil)

Definition in file AlignableDTSuperLayer.cc.

Function Documentation

std::ostream& operator<< ( std::ostream &  os,
const AlignableDTSuperLayer r 
)

Printout the DetUnits in the CSC chamber.

Definition at line 18 of file AlignableDTSuperLayer.cc.

References AlCaHLTBitMon_QueryRunRegistry::comp, AlignableComposite::components(), Alignable::displacement(), Alignable::globalPosition(), Alignable::globalRotation(), mps_fire::i, PV3DBase< T, PVType, FrameType >::perp(), PV3DBase< T, PVType, FrameType >::phi(), Alignable::rotation(), Alignable::surface(), AlignableSurface::toLocal(), and PV3DBase< T, PVType, FrameType >::z().

18  {
19  std::vector<Alignable*> theDets = r.components();
20 
21  os << " This DTSuperLayer contains " << theDets.size() << " units" << std::endl ;
22  os << " position = " << r.globalPosition() << std::endl;
23  os << " (phi, r, z)= (" << r.globalPosition().phi() << "," << r.globalPosition().perp() << "," << r.globalPosition().z();
24  os << "), orientation:" << std::endl<< r.globalRotation() << std::endl;
25 
26  os << " total displacement and rotation: " << r.displacement() << std::endl;
27  os << r.rotation() << std::endl;
28 
29  for (std::vector<Alignable*>::const_iterator idet = theDets.begin(); idet != theDets.end(); ++idet) {
30  const align::Alignables& comp = (*idet)->components();
31 
32  for (unsigned int i = 0; i < comp.size(); ++i) {
33  os << " Det position, phi, r: "
34  << comp[i]->globalPosition() << " , "
35  << comp[i]->globalPosition().phi() << " , "
36  << comp[i]->globalPosition().perp() << std::endl;
37  os << " local position, phi, r: "
38  << r.surface().toLocal(comp[i]->globalPosition()) << " , "
39  << r.surface().toLocal(comp[i]->globalPosition()).phi() << " , "
40  << r.surface().toLocal(comp[i]->globalPosition()).perp() << std::endl;
41  }
42  }
43 
44  return os;
45 }
T perp() const
Definition: PV3DBase.h:72
const GlobalVector & displacement() const
Return change of the global position since the creation of the object.
Definition: Alignable.h:144
Geom::Phi< T > phi() const
Definition: PV3DBase.h:69
const RotationType & globalRotation() const
Return the global orientation of the object.
Definition: Alignable.h:141
const RotationType & rotation() const
Return change of orientation since the creation of the object.
Definition: Alignable.h:147
align::RotationType toLocal(const align::RotationType &) const
Return in local frame a rotation given in global frame.
T z() const
Definition: PV3DBase.h:64
const AlignableSurface & surface() const
Return the Surface (global position and orientation) of the object.
Definition: Alignable.h:135
std::vector< Alignable * > Alignables
Definition: Utilities.h:31
virtual Alignables components() const
Return vector of direct components.
const PositionType & globalPosition() const
Return the global position of the object.
Definition: Alignable.h:138