Loading [MathJax]/extensions/tex2jax.js
The Gaudi Framework  v31r0 (aeb156f0)
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
RootCompressionSettings.h
Go to the documentation of this file.
1 #ifndef ROOTCOMPRESSIONSETTINGS_H
2 #define ROOTCOMPRESSIONSETTINGS_H 1
3 
4 // STD
5 #include <string>
6 
7 namespace RootHistCnv {
8 
21  int m_level;
22 
23  public:
25  RootCompressionSettings( const std::string& settings );
26 
28  int level() const { return m_level; }
29  };
30 } // namespace RootHistCnv
31 
32 #endif // ROOTCOMPRESSIONSETTINGS_H
STL class.
Simple class to decode a ROOT compression settings string, of the form &#39;<Alg>:<level>&#39; into the integ...
RootCompressionSettings(const std::string &settings)
Standard constructor.
int m_level
The cached ROOT compression level int.