/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Alignment/MuonAlignment/src/AlignableCSCChamber.cc
51 строка
2 KB
Cms Build
Clang-Format
16 май 2019, 00:01
16 май 2019, 00:01
92500ad
Код
Авторство
О чём код?
/** \file * * $Date: 2008/03/26 21:59:18 $ * $Revision: 1.10 $ * \author Andre Sznajder - UERJ(Brazil) */ #include "Alignment/MuonAlignment/interface/AlignableCSCChamber.h" AlignableCSCChamber::AlignableCSCChamber(const GeomDet* geomDet) : AlignableDet(geomDet) { theStructureType = align::AlignableCSCChamber; // DO NOT let the chamber position become an average of the layers // FIXME: is this redundant? theSurface = geomDet->surface(); compConstraintType_ = Alignable::CompConstraintType::NONE; } void AlignableCSCChamber::update(const GeomDet* geomDet) { AlignableDet::update(geomDet); // DO NOT let the chamber position become an average of the layers // FIXME: is this redundant? theSurface = geomDet->surface(); } /// Printout the DetUnits in the CSC chamber std::ostream& operator<<(std::ostream& os, const AlignableCSCChamber& r) { const auto& 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 (const auto& idet : theDets) { const auto& 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; }