]> git.uio.no Git - u/mrichter/AliRoot.git/blob - STEER/AliESDUtils.h
- save all canvases in png files in addition to root files
[u/mrichter/AliRoot.git] / STEER / AliESDUtils.h
1 // -*- mode: C++ -*- 
2 #ifndef ALIESDUTILS_H
3 #define ALIESDUTILS_H
4 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
5  * See cxx source for full Copyright notice                               */
6
7
8 /* $Id$ */
9
10 //-------------------------------------------------------------------------
11 //   AliESDUtils - This is a namespace that temporary provides general 
12 //                 purpose ESD utilities to avoid unnecessary dependencies
13 //                 between PWG libraries. To be removed/replaced by AODB
14 //                 framework.
15 //      
16 //-------------------------------------------------------------------------
17 // Author: Andrei Gheata
18
19 #ifndef ROOT_Rtypes
20 #include "Rtypes.h"
21 #endif
22 class AliESDEvent;
23
24 namespace AliESDUtils {
25
26   /********************************/
27   /* Centrality-related corrections */
28   /********************************/
29
30   Float_t GetCorrV0(const AliESDEvent* esd, Float_t &v0CorrResc);
31   Float_t GetCorrSPD2(Float_t spd2raw,Float_t zv);
32 }  
33
34 #endif