]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TPC/AliTPCComposedCorrection.h
restore threshold getters after parameter dynamics update (fw v. >= A012)
[u/mrichter/AliRoot.git] / TPC / AliTPCComposedCorrection.h
1 #ifndef ALI_TPC_COMPOSED_CORRECTION_H
2 #define ALI_TPC_COMPOSED_CORRECTION_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 // AliTPCComposedCorrection class                                             //
10 //                                                                            //
11 // This class is creating a correction that is composed out of smaller        //
12 // corrections.                                                               //
13 // There are two ways the sub-corrections can be combined into this one:      //
14 // 1. kParallel: All corrections are applied at the given position x and      //
15 //    the dx terms are summed up (this commutes).                             //
16 // 2. kQueue: The corrections are called in order. The first one at the       //
17 //    given position x resulting in dx1, the second one is called at          //
18 //    the corrected position (x+dx1) resulting in dx2, the third one          //
19 //    is then called at position (x+dx1+dx2) and so forth. dx=dx1+dx2+...     //
20 //    is returned.                                                            //
21 // For the inverse of the correction this is taken into account by reversing  //
22 // the order the corrections are applied in the kQueue case (no issue for     //
23 // kParallel).                                                                //
24 //                                                                            //
25 // date: 27/04/2010                                                           //
26 // Authors: Magnus Mager, Stefan Rossegger, Jim Thomas                       //
27 ////////////////////////////////////////////////////////////////////////////////
28
29 #include "AliTPCCorrection.h"
30 #include "TVectorD.h"
31
32 class TCollection;
33 class TTimeStamp;
34
35 class AliTPCComposedCorrection : public AliTPCCorrection {
36 public:
37   enum CompositionType {kParallel,kQueue};
38
39   AliTPCComposedCorrection();
40   AliTPCComposedCorrection(TCollection *corrections,CompositionType mode);
41   virtual ~AliTPCComposedCorrection();
42
43   void SetOmegaTauT1T2(Float_t omegaTau,Float_t t1,Float_t t2);
44
45   TCollection* GetCorrections() const {return fCorrections;}
46   void SetCorrections(const TCollection *corrections) {fCorrections=(TCollection*)corrections;}
47   CompositionType GetMode() const {return fMode;}
48   void SetMode(CompositionType mode) {fMode=mode;}
49
50   virtual void GetCorrection(const Float_t x[],const Short_t roc,Float_t dx[]);
51   virtual void GetDistortion(const Float_t x[],const Short_t roc,Float_t dx[]);
52
53   virtual void Print(Option_t* option="") const;
54
55   // initialization and update functions
56   virtual void Init();
57   virtual void Update(const TTimeStamp &timeStamp);
58   void SetWeights(TVectorD * weights){fWeights= (TVectorD*) weights->Clone();}
59   const  TVectorD * GetWeights() const {return fWeights;}
60
61 private:
62   TCollection *fCorrections; // The corrections this one is composed of.
63   CompositionType fMode;     // The way to apply the corrections (see general class documentation)
64   TVectorD        *fWeights;  // optional vector with weights - used for fit benchmarking
65   AliTPCComposedCorrection & operator = (const AliTPCComposedCorrection);
66   AliTPCComposedCorrection(const AliTPCComposedCorrection&); //dummy copy contructor
67
68   ClassDef(AliTPCComposedCorrection,2);
69 };
70
71 #endif