CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
Functions
RadialStripTopology.cc File Reference
#include <Geometry/CommonTopologies/interface/RadialStripTopology.h>
#include "FWCore/Utilities/interface/Exception.h"

Go to the source code of this file.

Functions

std::ostream & operator<< (std::ostream &os, const RadialStripTopology &rst)
 

Function Documentation

std::ostream& operator<< ( std::ostream &  os,
const RadialStripTopology rst 
)

Definition at line 10 of file RadialStripTopology.cc.

References RadialStripTopology::centreToIntersection(), RadialStripTopology::detHeight(), RadialStripTopology::nstrips(), RadialStripTopology::phiOfOneEdge(), RadialStripTopology::phiPitch(), RadialStripTopology::yAxisOrientation(), and RadialStripTopology::yCentreOfStripPlane().

10  {
11  os << "RadialStripTopology " << std::endl
12  << " " << std::endl
13  << "number of strips " << rst.nstrips() << std::endl
14  << "centre to whereStripsMeet " << rst.centreToIntersection() << std::endl
15  << "detector height in y " << rst.detHeight() << std::endl
16  << "angular width of strips " << rst.phiPitch() << std::endl
17  << "phi of one edge " << rst.phiOfOneEdge() << std::endl
18  << "y axis orientation " << rst.yAxisOrientation() << std::endl
19  << "y of centre of strip plane " << rst.yCentreOfStripPlane() << std::endl;
20  return os;
21 }
virtual float centreToIntersection() const =0
virtual float yAxisOrientation() const =0
virtual float phiPitch(void) const =0
virtual float detHeight() const =0
virtual int nstrips() const =0
virtual float yCentreOfStripPlane() const =0
virtual float phiOfOneEdge() const =0