The Gaudi Framework  v30r3 (a5ef0a68)
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 {
9 
21  {
23  int m_level;
24 
25  public:
27  RootCompressionSettings( const std::string& settings );
28 
30  int level() const { return m_level; }
31  };
32 }
33 
34 #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.