ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitCommon/OptIO/interface/OptInt.h
Revision: 1.1
Committed: Tue Feb 24 11:56:42 2009 UTC (16 years, 2 months ago) by loizides
Content type: text/plain
Branch: MAIN
Log Message:
Preload lib for compression improvements.

File Contents

# User Rev Content
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