]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TRD/AliTRDtransform.h
Coding rules
[u/mrichter/AliRoot.git] / TRD / AliTRDtransform.h
1 #ifndef ALITRDTRANSFORM_H
2 #define ALITRDTRANSFORM_H
3 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4  * See cxx source for full Copyright notice                               */
5
6 /* $Id$ */
7
8 ////////////////////////////////////////////////////////////////////////////
9 //                                                                        //
10 //  Transforms clusters into space points with calibrated positions       //
11 //  defined in the local tracking system                                  //
12 //                                                                        //
13 ////////////////////////////////////////////////////////////////////////////
14
15 #include "TObject.h"
16 //#include "../TPC/AliTransform.h"
17
18 class TGeoHMatrix;
19
20 class AliTRDgeometry;
21 class AliTRDcluster;
22 class AliTRDCommonParam;
23 class AliTRDcalibDB;
24 class AliTRDCalROC;
25 class AliTRDCalDet;
26 class AliTRDpadPlane;
27
28 //class AliTRDtransform : public AliTransform {
29 class AliTRDtransform : public TObject {
30 public:
31   AliTRDtransform();
32   AliTRDtransform(Int_t det);
33   AliTRDtransform(const AliTRDtransform &t);
34   virtual ~AliTRDtransform();
35   AliTRDtransform &operator=(const AliTRDtransform &t) { *(new(this) AliTRDtransform(t));
36                                                           return *this; }
37
38   virtual Bool_t   Transform(AliTRDcluster *c);
39   virtual void     Recalibrate(AliTRDcluster *c, Bool_t setDet = kTRUE);
40
41           void     SetDetector(Int_t det);
42
43 protected:
44   AliTRDgeometry     *fGeo;                 //  TRD geometry
45   Int_t               fDetector;            //  Detector number
46
47   AliTRDCommonParam  *fParam;               //  TRD common parameters
48
49   AliTRDcalibDB      *fCalibration;         //  TRD calibration interface object
50   AliTRDCalROC       *fCalVdriftROC;        //  Pad wise Vdrift calibration object
51   AliTRDCalROC       *fCalT0ROC;            //  Pad wise T0 calibration object
52   AliTRDCalROC       *fCalPRFROC;           //  Pad wise PRF calibration object
53   const AliTRDCalDet *fCalVdriftDet;        //  ROC wise Vdrift calibration object
54   const AliTRDCalDet *fCalT0Det;            //  ROC wise T0 calibration object
55   Double_t            fCalVdriftDetValue;   //  ROC wise Vdrift calibration value
56   Double_t            fCalT0DetValue;       //  ROC wise T0 calibration value
57
58   Double_t            fSamplingFrequency;   //  ADC sampling frequency
59
60   AliTRDpadPlane     *fPadPlane;            //  The current pad plane object
61   Double_t            fZShiftIdeal;         //  Needed to define Z-position relative to middle of chamber
62
63   TGeoHMatrix        *fMatrix;              //  Transformation matrix for a given chamber
64
65   ClassDef(AliTRDtransform, 2)              //  Transforms clusters
66
67 };
68
69 #endif