Go to the source code of this file.
- Date
- 2008/03/26 21:59:25
- Revision
- 1.10
- Author
- Andre Sznajder - UERJ(Brazil)
Definition in file AlignableDTChamber.cc.
◆ operator<<()
Printout the DetUnits in the DT chamber.
Definition at line 28 of file AlignableDTChamber.cc.
29 const auto& theDets =
r.components();
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;
37 os <<
" total displacement and rotation: " <<
r.displacement() << std::endl;
38 os <<
r.rotation() << std::endl;
40 for (
const auto& idet : theDets) {
41 const auto&
comp = idet->components();
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;
References AlCaHLTBitMon_QueryRunRegistry::comp, mps_fire::i, and alignCSCRings::r.