CMS 3D CMS Logo

Functions

/data/refman/pasoursint/CMSSW_5_3_10_patch2/src/Geometry/CommonTopologies/src/RadialStripTopology.cc File Reference

#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)

Function Documentation

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

Definition at line 132 of file RadialStripTopology.cc.

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

                                                                            {
  os  << "RadialStripTopology " << std::endl
      << " " << std::endl
      << "number of strips          " << rst.nstrips() << std::endl
      << "centre to whereStripsMeet " << rst.centreToIntersection() << std::endl
      << "detector height in y      " << rst.detHeight() << std::endl
      << "angular width of strips   " << rst.phiPitch() << std::endl
      << "phi of one edge           " << rst.phiOfOneEdge() << std::endl
      << "y axis orientation        " << rst.yAxisOrientation() << std::endl
      << "y of centre of strip plane " << rst.yCentreOfStripPlane() << std::endl;
  return os;
}