CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
Functions
AlignableDTChamber.cc File Reference
#include "Alignment/MuonAlignment/interface/AlignableDTChamber.h"
#include "Alignment/MuonAlignment/interface/AlignableDTSuperLayer.h"

Go to the source code of this file.

Functions

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

Detailed Description

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

Definition in file AlignableDTChamber.cc.

Function Documentation

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

Printout the DetUnits in the DT chamber.

Definition at line 28 of file AlignableDTChamber.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().

28  {
29  const auto& theDets = r.components();
30 
31  os << " This DTChamber contains " << theDets.size() << " units" << std::endl;
32  os << " position = " << r.globalPosition() << std::endl;
33  os << " (phi, r, z)= (" << r.globalPosition().phi() << "," << r.globalPosition().perp() << ","
34  << r.globalPosition().z();
35  os << "), orientation:" << std::endl << r.globalRotation() << std::endl;
36 
37  os << " total displacement and rotation: " << r.displacement() << std::endl;
38  os << r.rotation() << std::endl;
39 
40  for (const auto& idet : theDets) {
41  const auto& comp = idet->components();
42 
43  for (unsigned int i = 0; i < comp.size(); ++i) {
44  os << " Det position, phi, r: " << comp[i]->globalPosition() << " , " << comp[i]->globalPosition().phi()
45  << " , " << comp[i]->globalPosition().perp() << std::endl;
46  os << " local position, phi, r: " << r.surface().toLocal(comp[i]->globalPosition()) << " , "
47  << r.surface().toLocal(comp[i]->globalPosition()).phi() << " , "
48  << r.surface().toLocal(comp[i]->globalPosition()).perp() << std::endl;
49  }
50  }
51 
52  return os;
53 }
T perp() const
Definition: PV3DBase.h:69
const GlobalVector & displacement() const
Return change of the global position since the creation of the object.
Definition: Alignable.h:141
Geom::Phi< T > phi() const
Definition: PV3DBase.h:66
const Alignables & components() const override
Return vector of direct components.
const RotationType & globalRotation() const
Return the global orientation of the object.
Definition: Alignable.h:138
const RotationType & rotation() const
Return change of orientation since the creation of the object.
Definition: Alignable.h:144
align::RotationType toLocal(const align::RotationType &) const
Return in local frame a rotation given in global frame.
T z() const
Definition: PV3DBase.h:61
const AlignableSurface & surface() const
Return the Surface (global position and orientation) of the object.
Definition: Alignable.h:132
const PositionType & globalPosition() const
Return the global position of the object.
Definition: Alignable.h:135