00001 // $Id: VeloChannelID.cpp,v 1.1 2007/07/11 13:33:34 jonrob Exp $ 00002 00003 // local 00004 #include "Kernel/VeloChannelID.h" 00005 00006 //----------------------------------------------------------------------------- 00007 // Implementation file for class : VeloChannelID 00008 // 00009 // 2007-07-11 : Chris Jones 00010 //----------------------------------------------------------------------------- 00011 00012 std::ostream& LHCb::VeloChannelID::fillStream(std::ostream& s) const 00013 { 00014 s << "{ " << type() 00015 << " VeloChannelID : " << channelID() 00016 << " : strip=" << strip() 00017 << " sensor=" << sensor(); 00018 return s << " }"; 00019 }