]> git.uio.no Git - u/mrichter/AliRoot.git/blob - CORRFW/AliCFFrame.cxx
corrected warnings
[u/mrichter/AliRoot.git] / CORRFW / AliCFFrame.cxx
1 /* $Id$ */
2 /**************************************************************************
3  * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4  *                                                                        *
5  * Author: The ALICE Off-line Project.                                    *
6  * Contributors are mentioned in the code where appropriate.              *
7  *                                                                        *
8  * Permission to use, copy, modify and distribute this software and its   *
9  * documentation strictly for non-commercial purposes is hereby granted   *
10  * without fee, provided that the above copyright notice appears in all   *
11  * copies and that both the copyright notice and this permission notice   *
12  * appear in the supporting documentation. The authors make no claims     *
13  * about the suitability of this software for any purpose. It is          *
14  * provided "as is" without express or implied warranty.                  *
15  **************************************************************************/
16 //--------------------------------------------------------------------//
17 //                                                                    //
18 // AliCFFrame Class                                                 //
19 // Class to accumulate data on an N-dimensional grid, to be used      //
20 // as input to get corrections for Reconstruction & Trigger efficiency// 
21 //                                                                    //
22 // -- Author : S.Arcelli                                              //
23 // Still to be done:                                                  //
24 // --Implement methods to merge cells                                 //
25 // --Interpolate among bins in a range                                // 
26 //--------------------------------------------------------------------//
27 //
28 //
29
30 #include "TSystem.h"
31 #include "TFile.h"
32 #include "AliLog.h"
33 #include "AliCFFrame.h"
34
35 //____________________________________________________________________
36 ClassImp(AliCFFrame)
37
38 //____________________________________________________________________
39 AliCFFrame::AliCFFrame() : 
40   TNamed()
41 {
42   // default constructor
43 }
44
45 //____________________________________________________________________
46 AliCFFrame::AliCFFrame(const Char_t* name, const Char_t* title) : 
47   TNamed(name,title)
48 {
49   // named constructor
50 }
51