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 }
00019
00020
00021