#include "Geometry/CaloGeometry/interface/PreshowerStrip.h"
#include <iostream>
Go to the source code of this file.
Functions | |
std::ostream & | operator<< (std::ostream &s, const PreshowerStrip &cell) |
std::ostream& operator<< | ( | std::ostream & | s, | |
const PreshowerStrip & | cell | |||
) |
Definition at line 40 of file PreshowerStrip.cc.
References PreshowerStrip::dx(), PreshowerStrip::dy(), PreshowerStrip::dz(), lat::endl(), and CaloCellGeometry::getPosition().
00041 { 00042 s << "Center: " << cell.getPosition() << std::endl ; 00043 s << "dx = " << cell.dx() << ", dy = " << cell.dy() << ", dz = " << cell.dz() << std::endl ; 00044 /* const CaloCellGeometry::CornerVec& corners ( cell.getCorners() ) ; 00045 for( unsigned int ci ( 0 ) ; ci != corners.size(); ci++ ) 00046 { 00047 s << "Corner: " << corners[ci] << std::endl; 00048 }*/ 00049 return s; 00050 }