File indexing completed on 2024-04-06 12:19:39
0001
0002 #include "L1Trigger/DemonstratorTools/interface/FileFormat.h"
0003
0004 #include <ostream>
0005
0006 namespace l1t::demo {
0007
0008 std::ostream& operator<<(std::ostream& os, FileFormat format) {
0009 switch (format) {
0010 case FileFormat::APx:
0011 os << "APx";
0012 break;
0013 case FileFormat::EMPv1:
0014 os << "EMPv1";
0015 break;
0016 case FileFormat::EMPv2:
0017 os << "EMPv2";
0018 break;
0019 case FileFormat::X2O:
0020 os << "X2O";
0021 }
0022 return os;
0023 }
0024
0025 }