]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MUON/AliMUONMathieson.cxx
Mapping test macros (D. Guez, I. Hrivnacova)
[u/mrichter/AliRoot.git] / MUON / AliMUONMathieson.cxx
CommitLineData
7e4a628d 1/**************************************************************************
2 * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
3 * *
4 * Author: The ALICE Off-line Project. *
5 * Contributors are mentioned in the code where appropriate. *
6 * *
7 * Permission to use, copy, modify and distribute this software and its *
8 * documentation strictly for non-commercial purposes is hereby granted *
9 * without fee, provided that the above copyright notice appears in all *
10 * copies and that both the copyright notice and this permission notice *
11 * appear in the supporting documentation. The authors make no claims *
12 * about the suitability of this software for any purpose. It is *
13 * provided "as is" without express or implied warranty. *
14 **************************************************************************/
15
16/* $Id$ */
17
18#include <TMath.h>
19#include <TRandom.h>
20
21#include "AliMUONMathieson.h"
22#include "AliSegmentation.h"
23
24
25ClassImp(AliMUONMathieson)
26
27//__________________________________________________________________________
28AliMUONMathieson::AliMUONMathieson()
29{
30// Default constructor
31
32}
33
34 //__________________________________________________________________________
35void AliMUONMathieson::SetSqrtKx3AndDeriveKx2Kx4(Float_t SqrtKx3)
36{
37 // Set to "SqrtKx3" the Mathieson parameter K3 ("fSqrtKx3")
38 // in the X direction, perpendicular to the wires,
39 // and derive the Mathieson parameters K2 ("fKx2") and K4 ("fKx4")
40 // in the same direction
41 fSqrtKx3 = SqrtKx3;
42 fKx2 = TMath::Pi() / 2. * (1. - 0.5 * fSqrtKx3);
43 Float_t cx1 = fKx2 * fSqrtKx3 / 4. / TMath::ATan(Double_t(fSqrtKx3));
44 fKx4 = cx1 / fKx2 / fSqrtKx3;
45}
46
47 //__________________________________________________________________________
48void AliMUONMathieson::SetSqrtKy3AndDeriveKy2Ky4(Float_t SqrtKy3)
49{
50 // Set to "SqrtKy3" the Mathieson parameter K3 ("fSqrtKy3")
51 // in the Y direction, along the wires,
52 // and derive the Mathieson parameters K2 ("fKy2") and K4 ("fKy4")
53 // in the same direction
54 fSqrtKy3 = SqrtKy3;
55 fKy2 = TMath::Pi() / 2. * (1. - 0.5 * fSqrtKy3);
56 Float_t cy1 = fKy2 * fSqrtKy3 / 4. / TMath::ATan(Double_t(fSqrtKy3));
57 fKy4 = cy1 / fKy2 / fSqrtKy3;
58}
59
60// -------------------------------------------
61
62Float_t AliMUONMathieson::IntXY(AliSegmentation * segmentation)
63{
64// Calculate charge on current pad according to Mathieson distribution
65//
66 const Float_t kInversePitch = 1/fPitch;
67//
68// Integration limits defined by segmentation model
69//
70 Float_t xi1, xi2, yi1, yi2;
71 segmentation->IntegrationLimits(xi1,xi2,yi1,yi2);
72 xi1=xi1*kInversePitch;
73 xi2=xi2*kInversePitch;
74 yi1=yi1*kInversePitch;
75 yi2=yi2*kInversePitch;
76//
77// The Mathieson function
78 Double_t ux1=fSqrtKx3*TMath::TanH(fKx2*xi1);
79 Double_t ux2=fSqrtKx3*TMath::TanH(fKx2*xi2);
80
81 Double_t uy1=fSqrtKy3*TMath::TanH(fKy2*yi1);
82 Double_t uy2=fSqrtKy3*TMath::TanH(fKy2*yi2);
83
84
85 return Float_t(4.*fKx4*(TMath::ATan(ux2)-TMath::ATan(ux1))*
86 fKy4*(TMath::ATan(uy2)-TMath::ATan(uy1)));
87}
88
89
90
91
92
93
94
95
96
97