CMS 3D CMS Logo

AlignableDTSuperLayer.cc
Go to the documentation of this file.
1 
9 
11 {
13  // DO NOT let the chamber position become an average of the layers
14  this->theSurface = geomDet->surface();
15 }
16 
18 std::ostream& operator<< (std::ostream &os, const AlignableDTSuperLayer & r) {
19  const auto& 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 (const auto& idet: theDets) {
30  const auto& 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 }
const Alignables & components() const override
Return vector of direct components.
T perp() const
Definition: PV3DBase.h:72
A muon DT SuperLayer ( an AlignableDet )
const GlobalVector & displacement() const
Return change of the global position since the creation of the object.
Definition: Alignable.h:144
friend std::ostream & operator<<(std::ostream &, const AlignableDTSuperLayer &)
Printout the DetUnits in the CSC chamber.
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 Plane & surface() const
The nominal surface of the GeomDet.
Definition: GeomDet.h:42
const RotationType & rotation() const
Return change of orientation since the creation of the object.
Definition: Alignable.h:147
StructureType theStructureType
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
AlignableDTSuperLayer(const GeomDet *geomDet)
Constructor.
const PositionType & globalPosition() const
Return the global position of the object.
Definition: Alignable.h:138
AlignableSurface theSurface
Definition: Alignable.h:246