1 |
loizides |
1.1 |
//--------------------------------------------------------------------------------------------------
|
2 |
|
|
// $Id: BeamSpot.h,v 1.2 2008/12/09 17:46:59 loizides Exp $
|
3 |
|
|
//
|
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 |
|
|
static void SetAlgoFractions(Double_t lzo, Double_t gz, Double_t bz);
|
24 |
|
|
static void SetStaticMalloc(Bool_t b);
|
25 |
|
|
static void SetVerbose(Int_t vl);
|
26 |
|
|
static void SetZipMode(Int_t zm);
|
27 |
|
|
|
28 |
|
|
ClassDef(OptInt, 0) // Interface to OptIO parameters
|
29 |
|
|
};
|
30 |
|
|
}
|
31 |
|
|
#endif
|