]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PWG1/AliESDresolMakerFast.h
Changing fabs into TMath::Abs
[u/mrichter/AliRoot.git] / PWG1 / AliESDresolMakerFast.h
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>
15 class TTree;
16 class TObjArray; 
17 class TCut;
18 //
19 class 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