Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 // -*- Mode: C++; c-basic-offset: 2; indent-tabs-mode: t; tab-width: 8; -*-
0002 
0003 #include "DataFormats/EcalDigi/interface/EBSrFlag.h"
0004 
0005 std::ostream& operator<<(std::ostream& s, const EBSrFlag& digi) {
0006   s << digi.id() << " " << digi.flagName() << "(0x" << digi.value() << ")";
0007   return s;
0008 }