]> git.uio.no Git - u/mrichter/AliRoot.git/blame - STEER/ESD/AliESDUtils.h
Compatibility with ROOT trunk
[u/mrichter/AliRoot.git] / STEER / ESD / AliESDUtils.h
CommitLineData
e508972c 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
22class AliESDEvent;
a1ba8f31 23class AliVertexerTracks;
e508972c 24
25namespace AliESDUtils {
26
27 /********************************/
28 /* Centrality-related corrections */
29 /********************************/
30
a150e412 31 Float_t GetCorrV0(const AliESDEvent* esd, Float_t &v0CorrResc, Float_t *v0multChCorr = NULL, Float_t *v0multChCorrResc = NULL);
e508972c 32 Float_t GetCorrSPD2(Float_t spd2raw,Float_t zv);
da91e23e 33 Bool_t RefitESDVertexTracks(AliESDEvent* esdEv, Int_t algo=6, const Double_t* cuts=0);
e508972c 34}
35
36#endif