Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 #ifndef CondCore_CondHDF5ESSource_Compression_h
0002 #define CondCore_CondHDF5ESSource_Compression_h
0003 // -*- C++ -*-
0004 //
0005 // Package:     CondCore/CondHDF5ESSource
0006 // Class  :     Compression
0007 //
0008 /**\class Compression Compression.h "Compression.h"
0009 
0010  Description: Which Compression algorithm is being used
0011 
0012  Usage:
0013     <usage>
0014 
0015 */
0016 //
0017 // Original Author:  Christopher Jones
0018 //         Created:  Thu, 20 Jul 2023 14:29:25 GMT
0019 //
0020 
0021 // system include files
0022 
0023 // user include files
0024 
0025 // forward declarations
0026 
0027 namespace cond::hdf5 {
0028   enum class Compression { kNone, kZLIB, kLZMA };
0029 }
0030 
0031 #endif