]> git.uio.no Git - u/mrichter/AliRoot.git/blame - RICH/AliRICHChamber.cxx
Using the same optimization in the compiler and in the linker
[u/mrichter/AliRoot.git] / RICH / AliRICHChamber.cxx
CommitLineData
2e5f0f7b 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
2e5f0f7b 16#include "AliRICHChamber.h"
a277aaca 17#include "AliRICHConst.h" //for kR2d
853634d3 18#include "AliRICHParam.h"
2e5f0f7b 19#include <TRandom.h>
488e98ba 20#include <TRotMatrix.h>
853634d3 21#include "AliRICHTresholdMap.h"
22#include "AliSegmentation.h"
23#include "AliRICHSegmentationV0.h"
24#include "AliRICHGeometry.h"
25#include "AliRICHResponse.h"
2e5f0f7b 26
27ClassImp(AliRICHChamber)
853634d3 28//______________________________________________________________________________
2e5f0f7b 29AliRICHChamber::AliRICHChamber()
853634d3 30{//default ctor
31 fpParam=0;
32 fpRotMatrix=0;
33
2e5f0f7b 34 fSegmentation = 0;
4faf338d 35 fResponse = 0;
36 fGeometry = 0;
37 fTresh = 0;
ef42d733 38 for(Int_t i=0; i<50; ++i) fIndexMap[i] = 0;
2e5f0f7b 39}
853634d3 40//______________________________________________________________________________
41AliRICHChamber::AliRICHChamber(Int_t iModuleN,AliRICHParam *pParam)
42{//named ctor. Defines all geometry parameters for the given module.
3ea9cb08 43 // 6 7 |----> X
44 // 3 4 5 |
45 // 1 2 V Z
46 SetCenter(0,pParam->Offset()-pParam->GapThickness()/2,0);//put to up position
853634d3 47 switch(iModuleN){
853634d3 48 case 1:
0ffe413c 49 RotateX(-pParam->AngleYZ());
3ea9cb08 50 RotateZ(-pParam->AngleXY());
853634d3 51 fName="RICHc1";fTitle="RICH chamber 1";
52 break;
53 case 2:
3ea9cb08 54 RotateZ(-pParam->AngleXY());
853634d3 55 fName="RICHc2";fTitle="RICH chamber 2";
56 break;
57 case 3:
3ea9cb08 58 RotateX(-pParam->AngleYZ());
853634d3 59 fName="RICHc3";fTitle="RICH chamber 3";
60 break;
3ea9cb08 61 case 4:
62 fName="RICHc4";fTitle="RICH chamber 4"; //no turns
853634d3 63 break;
64 case 5:
3ea9cb08 65 RotateX(pParam->AngleYZ());
853634d3 66 fName="RICHc5";fTitle="RICH chamber 5";
67 break;
68 case 6:
3ea9cb08 69 RotateZ(pParam->AngleXY());
853634d3 70 fName="RICHc6";fTitle="RICH chamber 6";
71 break;
3ea9cb08 72 case 7:
73 RotateX(pParam->AngleYZ());
74 RotateZ(pParam->AngleXY());
75 fName="RICHc7";fTitle="RICH chamber 7";
76 break;
853634d3 77 default:
78 Fatal("named ctor","Wrong chamber number %i, check muster class ctor",iModuleN);
79 }//switch(iModuleN)
80 RotateZ(pParam->AngleRot());//apply common rotation
a277aaca 81 fpRotMatrix=new TRotMatrix("rot"+fName,"rot"+fName, Rot().ThetaX()*kR2d, Rot().PhiX()*kR2d,
82 Rot().ThetaY()*kR2d, Rot().PhiY()*kR2d,
83 Rot().ThetaZ()*kR2d, Rot().PhiZ()*kR2d);
853634d3 84 fpParam=pParam;
c60862bf 85 fX=fCenterV3.X();fY=fCenterV3.Y();fZ=fCenterV3.Z();
853634d3 86}
87//______________________________________________________________________________
2e5f0f7b 88
0ffe413c 89void AliRICHChamber::LocaltoGlobal(Float_t local[3],Float_t global[3])
853634d3 90{//Local coordinates to global coordinates transformation
237c933d 91
2d857021 92 Double_t *pMatrix;
93 pMatrix = fpRotMatrix->GetMatrix();
0ffe413c 94 global[0]=local[0]*pMatrix[0]+local[1]*pMatrix[3]+local[2]*pMatrix[6];
95 global[1]=local[0]*pMatrix[1]+local[1]*pMatrix[4]+local[2]*pMatrix[7];
96 global[2]=local[0]*pMatrix[2]+local[1]*pMatrix[5]+local[2]*pMatrix[8];
97 global[0]+=fX;
98 global[1]+=fY;
99 global[2]+=fZ;
2e5f0f7b 100}
101
0ffe413c 102void AliRICHChamber::GlobaltoLocal(Float_t global[3],Float_t local[3])
853634d3 103{// Global coordinates to local coordinates transformation
2d857021 104 TMatrix matrixCopy(3,3);
105 Double_t *pMatrixOrig = fpRotMatrix->GetMatrix();
2e5f0f7b 106 for(Int_t i=0;i<3;i++)
107 {
108 for(Int_t j=0;j<3;j++)
2d857021 109 matrixCopy(j,i)=pMatrixOrig[j+3*i];
2e5f0f7b 110 }
2d857021 111 matrixCopy.Invert();
0ffe413c 112 local[0] = global[0] - fX;
113 local[1] = global[1] - fY;
114 local[2] = global[2] - fZ;
115 local[0]=local[0]*matrixCopy(0,0)+local[1]*matrixCopy(0,1)+local[2]*matrixCopy(0,2);
116 local[1]=local[0]*matrixCopy(1,0)+local[1]*matrixCopy(1,1)+local[2]*matrixCopy(1,2);
117 local[2]=local[0]*matrixCopy(2,0)+local[1]*matrixCopy(2,1)+local[2]*matrixCopy(2,2);
2e5f0f7b 118}
119
2e5f0f7b 120void AliRICHChamber::DisIntegration(Float_t eloss, Float_t xhit, Float_t yhit,
3ea9cb08 121 Int_t& iNpads,Float_t cluster[5][500],ResponseType res)
122{//Generates pad hits (simulated cluster) using the segmentation and the response model
0ffe413c 123
124 Float_t local[3],global[3];
3ea9cb08 125// Width of the integration area
126 Float_t dx=(fResponse->SigmaIntegration())*(fResponse->ChargeSpreadX());
127 Float_t dy=(fResponse->SigmaIntegration())*(fResponse->ChargeSpreadY());
128// Get pulse height from energy loss and generate feedback photons
129 Float_t qtot=0;
130 local[0]=xhit;
131//z-position of the wires relative to the RICH mother volume (2 mm before CsI) old value: 6.076 ???????
132 local[1]=1.276 + fGeometry->GetGapThickness()/2 - .2;
133 local[2]=yhit;
2e5f0f7b 134
3ea9cb08 135 LocaltoGlobal(local,global);
2e5f0f7b 136
0ffe413c 137
138
3ea9cb08 139//To calculate wire sag, the origin of y-position must be the middle of the photcathode
140 AliRICHSegmentationV0* segmentation = (AliRICHSegmentationV0*) GetSegmentationModel();
141 Float_t newy;
142 if (yhit>0)
143 newy = yhit - segmentation->GetPadPlaneLength()/2;
144 else
145 newy = yhit + segmentation->GetPadPlaneLength()/2;
0ffe413c 146
3ea9cb08 147 if(res==kMip){
148 qtot = fResponse->IntPH(eloss, newy);
0ffe413c 149 fResponse->FeedBackPhotons(global,qtot);
150 }else if(res==kPhoton){
3ea9cb08 151 qtot = fResponse->IntPH(newy);
0ffe413c 152 fResponse->FeedBackPhotons(global,qtot);
3ea9cb08 153 }
2e5f0f7b 154
2e5f0f7b 155 // Loop Over Pads
0ffe413c 156
3ea9cb08 157 Float_t qcheck=0, qp=0;
0ffe413c 158
3ea9cb08 159 iNpads=0;
0ffe413c 160 for(fSegmentation->FirstPad(xhit, yhit, 0, dx, dy);
161 fSegmentation->MorePads();
3ea9cb08 162 fSegmentation->NextPad()) {
163 qp= fResponse->IntXY(fSegmentation);
164 qp= TMath::Abs(qp);
165 if(qp >1.e-4){
166 qcheck+=qp;
167 cluster[0][iNpads]=qp*qtot;// --- store signal information
168 cluster[1][iNpads]=fSegmentation->Ix();
169 cluster[2][iNpads]=fSegmentation->Iy();
170 cluster[3][iNpads]=fSegmentation->ISector();
0ffe413c 171 iNpads++;
3ea9cb08 172 }
173 }//pad loop
853634d3 174}//void AliRICHChamber::DisIntegration(...
0ffe413c 175//__________________________________________________________________________________________________
4faf338d 176void AliRICHChamber::GenerateTresholds()
0ffe413c 177{//Generates random treshold charges for all pads
4faf338d 178 Int_t nx = fSegmentation->Npx();
179 Int_t ny = fSegmentation->Npy();
180
4faf338d 181 fTresh = new AliRICHTresholdMap(fSegmentation);
853634d3 182 for(Int_t i=-nx/2;i<nx/2;i++){
183 for(Int_t j=-ny/2;j<ny/2;j++){
184 Int_t pedestal = (Int_t)(gRandom->Gaus(50, 10));
185 fTresh->SetHit(i,j,pedestal);
4faf338d 186 }
853634d3 187 }
188}//void AliRICHChamber::GenerateTresholds()
0ffe413c 189//__________________________________________________________________________________________________
cc23c5c6 190void AliRICHChamber::Print(Option_t *) const
853634d3 191{
0ffe413c 192 printf("%s r=%8.3f theta=%5.1f phi=%5.1f x=%8.3f y=%8.3f z=%8.3f %6.2f,%6.2f %6.2f,%6.2f %6.2f,%6.2f\n",fName.Data(),
193 Rho(), ThetaD(),PhiD(), X(), Y(), Z(),
3ea9cb08 194 ThetaXd(),PhiXd(),ThetaYd(),PhiYd(),ThetaZd(),PhiZd());
853634d3 195}//void AliRICHChamber::Print(Option_t *option)const
0ffe413c 196//__________________________________________________________________________________________________
c60862bf 197void AliRICHChamber::SetChamberTransform(Float_t x,Float_t y,Float_t z,TRotMatrix *pRotMatrix)
198{
199 SetCenter(x,y,z);
543d5224 200 fpRotMatrix=pRotMatrix;
c60862bf 201}