All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups 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 
20  {
21 
22  public:
23 
25  RootCompressionSettings( const std::string & settings );
26 
29 
30  public:
31 
33  int level() const { return m_level; }
34 
35  private:
36 
38  std::string m_compSettings;
39 
41  int m_level;
42 
43  };
44 
45 }
46 
47 #endif // ROOTCOMPRESSIONSETTINGS_H
std::string m_compSettings
The compression settings string.
Simple class to decode a ROOT compression settings string, of the form ':' into the integ...
RootCompressionSettings(const std::string &settings)
Standard constructor.
int m_level
The cached ROOT compression level int.