#include <Geometry/CommonTopologies/interface/RadialStripTopology.h>
#include <FWCore/MessageLogger/interface/MessageLogger.h>
#include <Utilities/General/interface/CMSexception.h>
#include <iostream>
#include <cmath>
#include <algorithm>
Go to the source code of this file.
Functions | |
std::ostream & | operator<< (std::ostream &os, const RadialStripTopology &rst) |
std::ostream& operator<< | ( | std::ostream & | os, | |
const RadialStripTopology & | rst | |||
) |
Definition at line 242 of file RadialStripTopology.cc.
References RadialStripTopology::centreToIntersection(), RadialStripTopology::detHeight(), lat::endl(), RadialStripTopology::nstrips(), RadialStripTopology::phiOfOneEdge(), RadialStripTopology::phiPitch(), RadialStripTopology::yAxisOrientation(), and RadialStripTopology::yCentreOfStripPlane().
00243 { 00244 os << "RadialStripTopology " << std::endl 00245 << " " << std::endl 00246 << "number of strips " << rst.nstrips() << std::endl 00247 << "centre to whereStripsMeet " << rst.centreToIntersection() << std::endl 00248 << "detector height in y " << rst.detHeight() << std::endl 00249 << "angular width of strips " << rst.phiPitch() << std::endl 00250 << "phi of one edge " << rst.phiOfOneEdge() << std::endl 00251 << "y axis orientation " << rst.yAxisOrientation() << std::endl 00252 << "y of centre of strip plane " << rst.yCentreOfStripPlane() << std::endl; 00253 return os; 00254 }