]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PWGPP/TPC/AliESDresolMakerFast.h
PWGPP-4 Functionality to make a program snapshot -core file
[u/mrichter/AliRoot.git] / PWGPP / TPC / AliESDresolMakerFast.h
CommitLineData
7cc34f08 1#ifndef ALIESDRESOLMAKERFAST_H
2#define ALIESDRESOLMAKERFAST_H
3
4/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
5 * See cxx source for full Copyright notice */
6
7//-------------------------------------------------------------------------
8// ESD tracks and V0 resolution parameterization maker
9//
10// Origin: Marian Ivanov marian.ivanov@cern.ch
11//-------------------------------------------------------------------------
12
13#include "TObject.h"
14#include <TVectorD.h>
15class TTree;
16class TObjArray;
17class TCut;
18//
19class AliESDresolMakerFast : public TObject{
20 public:
21 AliESDresolMakerFast();
22 //
23 static TObjArray * MakeParamPrimFast(TTree * tree, TCut &cutDCA, Float_t fraction=-1, Int_t entries=100000);
24 static TObjArray * MakeParamRFast(TTree * tree, TCut &cutV0, Float_t fraction=-1, Int_t entries=100000);
25 // protected:
26 public:
27 //
28 ClassDef(AliESDresolMakerFast,1) // ESD resolution parametereization
29};
30
31
32
33#endif