1 |
loizides |
1.1 |
//--------------------------------------------------------------------------------------------------
|
2 |
loizides |
1.2 |
// $Id: OptInt.h,v 1.1 2009/02/24 11:56:42 loizides Exp $
|
3 |
loizides |
1.1 |
//
|
4 |
|
|
// OptInt
|
5 |
|
|
//
|
6 |
|
|
// Interface to set some of the optimized IO parameters.
|
7 |
|
|
//
|
8 |
|
|
// Authors: C.Loizides
|
9 |
|
|
//--------------------------------------------------------------------------------------------------
|
10 |
|
|
|
11 |
|
|
#ifndef MITCOMMON_OPTIO_OPTINT_H
|
12 |
|
|
#define MITCOMMON_OPTIO_OPTINT_H
|
13 |
|
|
|
14 |
|
|
#include <TObject.h>
|
15 |
|
|
|
16 |
|
|
namespace mithep
|
17 |
|
|
{
|
18 |
|
|
class OptInt
|
19 |
|
|
{
|
20 |
|
|
public:
|
21 |
|
|
OptInt() {}
|
22 |
|
|
|
23 |
loizides |
1.2 |
static void SetAlgoFractions(Double_t lzo, Double_t gz, Double_t bz, Double_t lzma);
|
24 |
|
|
static void SetBzipFraction(Double_t f);
|
25 |
|
|
static void SetGzipFraction(Double_t f);
|
26 |
|
|
static void SetLzmaFraction(Double_t f);
|
27 |
|
|
static void SetLzoFraction(Double_t f);
|
28 |
loizides |
1.1 |
static void SetStaticMalloc(Bool_t b);
|
29 |
|
|
static void SetVerbose(Int_t vl);
|
30 |
|
|
static void SetZipMode(Int_t zm);
|
31 |
|
|
|
32 |
|
|
ClassDef(OptInt, 0) // Interface to OptIO parameters
|
33 |
|
|
};
|
34 |
|
|
}
|
35 |
|
|
#endif
|