]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TPC/AliTPCExBTwist.h
Correction classes + the Demo
[u/mrichter/AliRoot.git] / TPC / AliTPCExBTwist.h
CommitLineData
0116859c 1#ifndef ALI_TPC_EXB_TWIST_H
2#define ALI_TPC_EXB_TWIST_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// AliTPCExBTwist class //
10// The class calculates the space point distortions due to a mismatch //
11// of the E and B field axis (original code from STAR) //
12// The class allows "effective Omega Tau" corrections. //
13// //
14// date: 27/04/2010 //
15// Authors: Jim Thomas, Magnus Mager, Stefan Rossegger //
16////////////////////////////////////////////////////////////////////////////
17
18#include "AliTPCCorrection.h"
19
20class AliTPCExBTwist : public AliTPCCorrection {
21public:
22 AliTPCExBTwist();
23 virtual ~AliTPCExBTwist();
24
25 // common setters and getters for ExB
26 virtual void SetOmegaTauT1T2(Float_t omegaTau,Float_t t1,Float_t t2) {
27 const Float_t wt1=t1*omegaTau;
28 fC1=wt1/(1.+wt1*wt1);
29 const Float_t wt2=t2*omegaTau;
30 fC2=wt2*wt2/(1.+wt2*wt2);
31 };
32 void SetC1C2(Float_t c1,Float_t c2) {fC1=c1;fC2=c2;} // CAUTION: USE WITH CARE
33 Float_t GetC1() const {return fC1;}
34 Float_t GetC2() const {return fC2;}
35
36 // setters and getters for twist
37 void SetXTwist(Float_t xTwist) {fXTwist=xTwist;}
38 void SetYTwist(Float_t yTwist) {fYTwist=yTwist;}
39 Float_t GetXTwist() const {return fXTwist;}
40 Float_t GetYTwist() const {return fYTwist;}
41
42 virtual void Print(Option_t* option="") const;
43
44protected:
45 virtual void GetCorrection(const Float_t x[],const Short_t roc,Float_t dx[]);
46
47private:
48 Float_t fC1; // coefficient C1 (compare Jim Thomas's notes for definitions)
49 Float_t fC2; // coefficient C2 (compare Jim Thomas's notes for definitions)
50
51 Float_t fXTwist; // Twist of E to B field in X-Z [rad]
52 Float_t fYTwist; // Twist of E to B field in Y-Z [rad]
53
54 ClassDef(AliTPCExBTwist,1);
55};
56
57#endif