CMS 3D CMS Logo

FileFormat.h
Go to the documentation of this file.
1 
2 #ifndef L1Trigger_DemonstratorTools_FileFormat_h
3 #define L1Trigger_DemonstratorTools_FileFormat_h
4 
5 #include <iosfwd>
6 
7 namespace l1t::demo {
8 
9  enum class FileFormat {
10  APx,
11  EMPv1, //< Format used in EMP until version 0.6.x
12  EMPv2, //< Format used in EMP from verison 0.7.0
13  X2O
14  };
15 
16  std::ostream& operator<<(std::ostream&, FileFormat);
17 
18 } // namespace l1t::demo
19 
20 #endif
std::ostream & operator<<(std::ostream &, FileFormat)
Definition: FileFormat.cc:8