]> git.uio.no Git - u/mrichter/AliRoot.git/blob - STEER/AliHMPIDPIDResponse.h
ALIROOT-5592 AliAODTrack::GetIntegratedTimes() breaks old analysis code
[u/mrichter/AliRoot.git] / STEER / AliHMPIDPIDResponse.h
1 #ifndef AliHMPIDPIDResponse_h
2 #define AliHMPIDPIDResponse_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 //                                                                      //
9 // AliHMPIDPIDResponse                                                          //
10 //                                                                      //
11 // HMPID class to perfom pattern recognition based on Hough transfrom   //
12 //                                                                      //
13 //////////////////////////////////////////////////////////////////////////
14
15
16 #include <TNamed.h>        //base class
17
18 class AliESDtrack;
19
20 class AliHMPIDPIDResponse : public TNamed 
21 {
22 public : 
23              AliHMPIDPIDResponse();    //ctor
24     virtual ~AliHMPIDPIDResponse() {;} //dtor
25     Double_t CosTheta(Float_t *mod, Int_t species);
26     Double_t Resolution(Double_t thetaCerTh, AliESDtrack *pTrk);   //Find the sigma for a given ThetaCerTh
27
28 //
29 protected:
30   
31 private:
32   AliHMPIDPIDResponse(const AliHMPIDPIDResponse& r);                //dummy copy constructor
33   AliHMPIDPIDResponse &operator=(const AliHMPIDPIDResponse& r);     //dummy assignment operator
34 //
35   ClassDef(AliHMPIDPIDResponse,0)
36 };
37
38 #endif // #ifdef AliHMPIDPIDResponse_cxx
39