]> git.uio.no Git - u/mrichter/AliRoot.git/blame - STEER/AliESDUtils.h
put delete before placement new, mem. leak possible in case entries==0 because of...
[u/mrichter/AliRoot.git] / STEER / 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;
23
24namespace AliESDUtils {
25
26 /********************************/
27 /* Centrality-related corrections */
28 /********************************/
29
a150e412 30 Float_t GetCorrV0(const AliESDEvent* esd, Float_t &v0CorrResc, Float_t *v0multChCorr = NULL, Float_t *v0multChCorrResc = NULL);
e508972c 31 Float_t GetCorrSPD2(Float_t spd2raw,Float_t zv);
32}
33
34#endif