]> git.uio.no Git - u/mrichter/AliRoot.git/blob - OADB/AliOADBCentrality.cxx
Coding rule violations corrected.
[u/mrichter/AliRoot.git] / OADB / AliOADBCentrality.cxx
1 /**************************************************************************
2  * Copyright(c) 1998-2007, ALICE Experiment at CERN, All rights reserved. *
3  *                                                                        *
4  * Author: The ALICE Off-line Project.                                    *
5  * Contributors are mentioned in the code where appropriate.              *
6  *                                                                        *
7  * Permission to use, copy, modify and distribute this software and its   *
8  * documentation strictly for non-commercial purposes is hereby granted   *
9  * without fee, provided that the above copyright notice appears in all   *
10  * copies and that both the copyright notice and this permission notice   *
11  * appear in the supporting documentation. The authors make no claims     *
12  * about the suitability of this software for any purpose. It is          *
13  * provided "as is" without express or implied warranty.                  *
14  **************************************************************************/
15
16 /* $Id$ */
17
18 //-------------------------------------------------------------------------
19 //     OADB class for run dependent centrality scaling and 
20 //     data for centrality determination
21 //     Author: Andreas Morsch, CERN
22 //-------------------------------------------------------------------------
23
24
25
26
27 #include "AliOADBCentrality.h"
28 ClassImp(AliOADBCentrality);
29
30 //______________________________________________________________________________
31 AliOADBCentrality::AliOADBCentrality() : 
32   TNamed(),
33   fV0MScaleFactor(1.),
34   fSPDScaleFactor(1.),
35   fTPCScaleFactor(1.),
36   f1DHistos(),
37   f2DHistos()
38 {
39   // Default constructor
40 }
41
42 AliOADBCentrality::AliOADBCentrality(char* name) : 
43   TNamed(name, "Centrality Scaling"),
44   fV0MScaleFactor(1.),
45   fSPDScaleFactor(1.),
46   fTPCScaleFactor(1.),
47   f1DHistos(),
48   f2DHistos()
49 {
50   // Constructor
51 }
52
53
54 //______________________________________________________________________________
55 AliOADBCentrality::~AliOADBCentrality() 
56 {
57   // destructor
58 }