Main Page   Namespace List   Class Hierarchy   Compound List   File List   Namespace Members   Compound Members   File Members  

CoreSamples.cxx

Go to the documentation of this file.
00001 #include "FastShowerUtils/CoreSamples.h"
00002 #include <iostream>
00003 //
00004 namespace FastShower{
00005   std::ostream& operator<<(std::ostream& ostr, const CoreSamples& cs){
00006     ostr<<"CoreSamples:"
00007         <<" slice0: "<<cs.slice0()
00008         <<" cell0: "<<cs.cell0()
00009         <<" cellSN: "<<cs.cellSN()
00010         <<" cellAN: "<<cs.cellAN()
00011         <<endl;
00012     return ostr;
00013   }
00014   std::ostream& operator<<(std::ostream& ostr, const CoreSamples* cs){
00015     ostr<<*cs<<endl;
00016     return ostr;
00017   }
00018 }//namespace
00019 
00020     
00021 

Generated on Tue Mar 18 11:49:56 2003 for FastShowerUtils by doxygen1.3-rc1