]> git.uio.no Git - u/mrichter/AliRoot.git/blob - STEER/ESD/AliESDUtils.h
Parameterizes the dependence of VZERO (A,C) on the Zvertex
[u/mrichter/AliRoot.git] / STEER / ESD / 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 class AliVertexerTracks;
24
25 namespace AliESDUtils {
26
27   /********************************/
28   /* Centrality-related corrections */
29   /********************************/
30
31   Float_t GetCorrV0(const AliESDEvent* esd, Float_t &v0CorrResc, Float_t *v0multChCorr = NULL, Float_t *v0multChCorrResc = NULL);
32   Float_t GetCorrSPD2(Float_t spd2raw,Float_t zv);
33   Bool_t  RefitESDVertexTracks(AliESDEvent* esdEv, Int_t algo=6, const Double_t* cuts=0);
34   Float_t GetCorrV0A(Float_t v0araw,Float_t zv);
35   Float_t GetCorrV0C(Float_t v0craw,Float_t zv);
36 }  
37
38 #endif