1 /**************************************************************************
2 * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * Author: The ALICE Off-line Project. *
5 * Contributors are mentioned in the code where appropriate. *
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 **************************************************************************/
18 //-----------------------------------------------------------------------------
19 // Class AliMUONTriggerResponseV1
21 // Trigger chamber response
22 // with cluster size activated
23 //-----------------------------------------------------------------------------
25 #include "AliMUONResponseTriggerV1.h"
27 #include "AliMUONDigit.h"
28 #include "AliMUONGeometryTransformer.h"
29 #include "AliMUONConstants.h"
32 #include "AliMpSegmentation.h"
33 #include "AliMpVSegmentation.h"
34 #include "AliMpCathodType.h"
42 ClassImp(AliMUONResponseTriggerV1)
49 return static_cast<AliMUON*>(gAlice->GetModule("MUON"));
52 void Global2Local(Int_t detElemId, Double_t xg, Double_t yg, Double_t zg,
53 Double_t& xl, Double_t& yl, Double_t& zl)
55 // ideally should be :
57 // AliMUONGeometry::Global2Local(detElemId,xg,yg,zg,x,y,z);
58 // but while waiting for this geometry singleton, let's go through
61 const AliMUONGeometryTransformer* transformer = muon()->GetGeometryTransformer();
62 transformer->Global2Local(detElemId,xg,yg,zg,xl,yl,zl);
67 //------------------------------------------------------------------
68 AliMUONResponseTriggerV1::AliMUONResponseTriggerV1()
69 : AliMUONResponseTrigger(),
75 /// default constructor
80 //------------------------------------------------------------------
81 AliMUONResponseTriggerV1::AliMUONResponseTriggerV1(Float_t hv)
82 : AliMUONResponseTrigger(),
92 //------------------------------------------------------------------
93 AliMUONResponseTriggerV1::~AliMUONResponseTriggerV1()
98 //------------------------------------------------------------------
99 void AliMUONResponseTriggerV1::SetParameters(Float_t hv)
101 /// initialize parameters accoring to HV
102 /// (see V.Barret B.Espagnon and P.Rosnet Alice/note xxx)
103 fA = 6.089 * hv - 52.70;
105 fC = 4.3e-4 * hv - 3.5e-3;
108 //------------------------------------------------------------------
109 Int_t AliMUONResponseTriggerV1::SetGenerCluster()
111 /// Set the GenerCluster parameter and return 1
112 fGenerCluster = gRandom->Rndm();
116 //------------------------------------------------------------------
117 Float_t AliMUONResponseTriggerV1::FireStripProb(Float_t x4, Float_t theta)
120 /// parametrisation of the probability that a strip neighbour of the main
121 /// strip is fired (V.Barret B.Espagnon and P.Rosnet INT/DIM/01-04 (2001)
122 /// WARNING : need to convert x4 from cm to mm
125 (TMath::Cos(theta)*fA/(fA+TMath::Cos(theta)*TMath::Power(x4*10.,fB))+fC)/
126 (TMath::Cos(theta)+fC);
129 //------------------------------------------------------------------
130 void AliMUONResponseTriggerV1::DisIntegrate(const AliMUONHit& hit, TList& digits)
132 /// Generate digits (on each cathode) from 1 hit, with cluster-size
137 Float_t xhit = hit.X();
138 Float_t yhit = hit.Y();
139 Float_t zhit = 0; // FIXME : should it be hit.Z() ?
140 Int_t detElemId = hit.DetElemId();
143 Global2Local(detElemId,xhit,yhit,zhit,x,y,z);
145 Float_t tof = hit.Age();
146 Int_t twentyNano(100);
147 if (tof<AliMUONConstants::TriggerTofLimit())
152 Bool_t isTrig[2]={kTRUE, kTRUE};
154 for ( Int_t cath = AliMp::kCath0; cath <= AliMp::kCath1; ++cath )
156 const AliMpVSegmentation* seg
157 = AliMpSegmentation::Instance()
158 ->GetMpSegmentation(detElemId,AliMp::GetCathodType(cath));
160 AliMpPad pad = seg->PadByPosition(x,y,kFALSE);
161 Int_t ix = pad.GetIx();
162 Int_t iy = pad.GetIy();
164 AliMUONDigit* d = new AliMUONDigit(detElemId,pad.GetLocalBoardId(0),
165 pad.GetLocalBoardChannel(0),
169 d->SetCharge(twentyNano);
171 if(fTriggerEfficiency){
173 Int_t nboard = pad.GetLocalBoardId(0);
174 fTriggerEfficiency->IsTriggered(detElemId, nboard,
175 isTrig[0], isTrig[1]);
177 if(!isTrig[cath]) continue;
182 SetGenerCluster(); // 1 randum number per cathode (to be checked)
184 Int_t xList[10], yList[10];
185 Neighbours(cath,ix,iy,xList,yList);
187 // cout << " detElemId cath ix iy = " << detElemId << " " << cath
188 // << " " << ix << " " << iy << "\n";
189 // for (Int_t i=0; i<10; i++) cout << " " << xList[i] << " " << yList[i];
192 Int_t qp = 0; // fired/no-fired strip = 1/0
193 for (Int_t i=0; i<10; i++) { // loop on neighbors
194 if (i==0||i==5||qp!=0) { // built-up cluster
196 // need to iterate in iy/ix for bending/non-bending plane
197 Int_t ixNeigh = ( cath == 0 ) ? ix : xList[i];
198 Int_t iyNeigh = ( cath == 0 ) ? yList[i] : iy;
200 AliMpPad padNeigh = seg->PadByIndices(ixNeigh,iyNeigh,kFALSE);
201 if(padNeigh.IsValid()){ // existing neighbourg
203 Int_t dix=-(ixNeigh-ix);
204 Int_t diy=-(iyNeigh-iy);
205 Float_t xlocalNeigh = padNeigh.GetPositionX();
206 Float_t ylocalNeigh = padNeigh.GetPositionY();
207 Float_t dpx = padNeigh.GetDimensionX();
208 Float_t dpy = padNeigh.GetDimensionY();
209 Float_t distX = TMath::Abs((Float_t)dix) * ((Float_t)dix * dpx + xlocalNeigh - x);
210 Float_t distY = TMath::Abs((Float_t)diy) * ((Float_t)diy * dpy + ylocalNeigh - y);
211 Float_t dist = TMath::Sqrt(distX*distX+distY*distY);
213 // cout << " here " << dist << " " << fGenerCluster << " " << FireStripProb(dist,0) << "\n";
215 if (fGenerCluster<FireStripProb(dist,0)) qp = 1;
218 if (qp == 1) { // this digit is fired
219 AliMUONDigit* dNeigh = new AliMUONDigit(detElemId,padNeigh.GetLocalBoardId(0),
220 padNeigh.GetLocalBoardChannel(0),
223 dNeigh->SetPadXY(ixNeigh,iyNeigh);
224 dNeigh->SetCharge(twentyNano);
228 } // built-up cluster
229 } // loop on neighbors
233 //------------------------------------------------------------------
234 void AliMUONResponseTriggerV1::Neighbours(const Int_t cath,
235 const Int_t ix, const Int_t iy,
236 Int_t Xlist[10], Int_t Ylist[10])
238 ///-----------------BENDING----------------------------------------- /n
239 /// Returns list of 10 next neighbours for given X strip (ix, iy) /n
240 /// neighbour number 4 in the list - /n
241 /// neighbour number 3 in the list | /n
242 /// neighbour number 2 in the list |_ Upper part /n
243 /// neighbour number 1 in the list | /n
244 /// neighbour number 0 in the list - /n
245 /// X strip (ix, iy) /n
246 /// neighbour number 5 in the list - /n
247 /// neighbour number 6 in the list | _ Lower part /n
248 /// neighbour number 7 in the list | /n
249 /// neighbour number 8 in the list | /n
250 /// neighbour number 9 in the list - /n
252 ///-----------------NON-BENDING------------------------------------- /n
253 /// Returns list of 10 next neighbours for given Y strip (ix, iy) /n
254 /// neighbour number 9 8 7 6 5 (Y strip (ix, iy)) 0 1 2 3 4 in the list /n
255 /// |_______| |_______/ /n
259 for (Int_t i=0; i<10; i++) {
264 Int_t iList[10]={9,8,7,6,5, 0,1,2,3,4};
266 // need to iterate in iy/ix for bending/non-bending plane
267 Int_t iNeigh = ( cath == 0 ) ? iy : ix;
270 for (Int_t j=iNeigh-5; j<=iNeigh+5; j++){
271 if (j == iNeigh) continue;
272 // need to iterate in iy/ix for bending/non-bending plane
273 Int_t ixNeigh = ( cath == 0 ) ? ix : j;
274 Int_t iyNeigh = ( cath == 0 ) ? j : iy;
276 // cout << " " << cath << " " << ix << " " << iy
277 // << " " << ixNeigh << " " << iyNeigh << "\n";
279 Xlist[iList[i]]=ixNeigh;
280 Ylist[iList[i]]=iyNeigh;