CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
Classes | Functions
TruncatedPyramid.h File Reference
#include "Geometry/CaloGeometry/interface/CaloCellGeometry.h"
#include <CLHEP/Geometry/Point3D.h>
#include <CLHEP/Geometry/Plane3D.h>
#include <CLHEP/Geometry/Vector3D.h>
#include <CLHEP/Geometry/Transform3D.h>
#include <vector>

Go to the source code of this file.

Classes

class  TruncatedPyramid
 A base class to handle the particular shape of Ecal Xtals. Taken from ORCA Calorimetry Code. More...
 

Functions

std::ostream & operator<< (std::ostream &s, const TruncatedPyramid &cell)
 

Function Documentation

std::ostream& operator<< ( std::ostream &  s,
const TruncatedPyramid cell 
)

Definition at line 305 of file TruncatedPyramid.cc.

References CaloCellGeometry::getCorners(), TruncatedPyramid::getPhiAxis(), TruncatedPyramid::getThetaAxis(), mps_fire::i, and alignCSCRings::s.

305  {
306  s << "Center: " << ((const CaloCellGeometry&)cell).getPosition() << std::endl;
307  const float thetaaxis(cell.getThetaAxis());
308  const float phiaxis(cell.getPhiAxis());
309  s << "Axis: " << thetaaxis << " " << phiaxis << std::endl;
310  const CaloCellGeometry::CornersVec& corners(cell.getCorners());
311  for (unsigned int i = 0; i != corners.size(); ++i) {
312  s << "Corner: " << corners[i] << std::endl;
313  }
314  return s;
315 }
CCGFloat getPhiAxis() const
CCGFloat getThetaAxis() const
CornersVec const & getCorners() const
Returns the corner points of this cell&#39;s volume.