A muon CSC Chamber( an AlignableDet ) More...
#include <AlignableCSCChamber.h>
Public Member Functions | |
AlignableCSCChamber (const GeomDet *geomDet) | |
Constructor. | |
Friends | |
std::ostream & | operator<< (std::ostream &, const AlignableCSCChamber &) |
Printout the DetUnits in the CSC chamber. |
A muon CSC Chamber( an AlignableDet )
The alignable muon CSC chamber.
Definition at line 25 of file AlignableCSCChamber.h.
AlignableCSCChamber::AlignableCSCChamber | ( | const GeomDet * | geomDet | ) |
Constructor.
Definition at line 10 of file AlignableCSCChamber.cc.
References GeomDet::surface(), AlignableComposite::theStructureType, and Alignable::theSurface.
: AlignableDet(geomDet) { theStructureType = align::AlignableCSCChamber; // DO NOT let the chamber position become an average of the layers this->theSurface = geomDet->surface(); }
std::ostream& operator<< | ( | std::ostream & | os, |
const AlignableCSCChamber & | r | ||
) | [friend] |
Printout the DetUnits in the CSC chamber.
Definition at line 18 of file AlignableCSCChamber.cc.
{ std::vector<Alignable*> theDets = r.components(); os << " This CSCChamber contains " << theDets.size() << " units" << std::endl ; os << " position = " << r.globalPosition() << std::endl; os << " (phi, r, z)= (" << r.globalPosition().phi() << "," << r.globalPosition().perp() << "," << r.globalPosition().z(); os << "), orientation:" << std::endl<< r.globalRotation() << std::endl; os << " total displacement and rotation: " << r.displacement() << std::endl; os << r.rotation() << std::endl; for (std::vector<Alignable*>::const_iterator idet = theDets.begin(); idet != theDets.end(); ++idet) { const align::Alignables& comp = (*idet)->components(); for (unsigned int i = 0; i < comp.size(); ++i) { os << " Det position, phi, r: " << comp[i]->globalPosition() << " , " << comp[i]->globalPosition().phi() << " , " << comp[i]->globalPosition().perp() << std::endl; os << " local position, phi, r: " << r.surface().toLocal(comp[i]->globalPosition()) << " , " << r.surface().toLocal(comp[i]->globalPosition()).phi() << " , " << r.surface().toLocal(comp[i]->globalPosition()).perp() << std::endl; } } return os; }