Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:04:01

0001 /****************************************************************************
0002 *
0003 * This is a part of TOTEM offline software.
0004 * Authors: 
0005 *   Maciej Wróbel (wroblisko@gmail.com)
0006 *   Jan Kašpar (jan.kaspar@gmail.com)
0007 *    
0008 ****************************************************************************/
0009 
0010 #include "DataFormats/CTPPSDigi/interface/TotemVFATStatus.h"
0011 
0012 #include <ostream>
0013 
0014 std::ostream& operator<<(std::ostream& s, const TotemVFATStatus& st) {
0015   return s << "miss=" << st.status[0] << ",ID=" << st.status[1] << ",foot=" << st.status[2] << ",CRC=" << st.status[3]
0016            << ",EC=" << st.status[4] << ",BC=" << st.status[5] << ",fm=" << st.status[6] << ",pm=" << st.status[7];
0017 }