]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MUON/AliMUONTrackHitPattern.cxx
Rewritten using VStores (Laurent)
[u/mrichter/AliRoot.git] / MUON / AliMUONTrackHitPattern.cxx
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 ////////////////////////////////////
17 ///
18 /// \class AliMUONTrackHitPattern
19 ///
20 /// This class propagates tracks to trigger chambers 
21 /// searching for fired strips.
22 ///
23 /// To each track, a hit pattern for trigger chambers is set.
24 /// The hit pattern is a UShort_t with 8 bits used:
25 ///
26 ///            1  1  0  1    1  1  0  1
27 ///           |           |            |
28 ///            ----------- ------------
29 /// chamber:  11 12 13 14 | 11 12 13 14
30 /// cathode:    bending   | non-bending
31 ///
32 /// The main method is:
33 /// * GetHitPattern
34 ///
35 ///  \author Diego Stocco
36 ///
37 ////////////////////////////////////
38
39
40 #include "AliMUONTrackHitPattern.h"
41
42 #include "AliLog.h"
43 #include "AliMUONConstants.h"
44 #include "AliMUONVDigit.h"
45 #include "AliMUONDigitMaker.h"
46 #include "AliMUONDigitStoreV1.h"
47 #include "AliMUONGeometryTransformer.h"
48 #include "AliMUONLocalTrigger.h"
49 #include "AliMUONLocalTriggerBoard.h"
50 #include "AliMUONTrack.h"
51 #include "AliMUONTrackExtrap.h"
52 #include "AliMUONTrackParam.h"
53 #include "AliMUONVTrackStore.h"
54 #include "AliMUONVTriggerStore.h"
55 #include "AliMagF.h"
56 #include "AliMpPad.h"
57 #include "AliMpSegmentation.h"
58 #include "AliMpVSegmentation.h"
59 #include "AliTracker.h"
60 #include <Riostream.h>
61 #include <TArrayS.h>
62 #include <TClonesArray.h>
63 #include <TMath.h>
64 #include <TMatrixD.h>
65
66 /// \cond CLASSIMP
67 ClassImp(AliMUONTrackHitPattern) // Class implementation in ROOT context
68 /// \endcond
69
70
71 //______________________________________________________________________________
72 AliMUONTrackHitPattern::AliMUONTrackHitPattern(const AliMUONGeometryTransformer& transformer,
73                                                const AliMUONDigitMaker& digitMaker)
74     : TObject(),
75       fTransformer(transformer),
76       fDigitMaker(digitMaker)
77 {
78     /// Default constructor
79
80     // Set magnetic field
81     const AliMagF* kField = AliTracker::GetFieldMap();
82     if (!kField) AliFatal("No field available");
83     AliMUONTrackExtrap::SetField(kField);
84 }
85
86
87 //______________________________________________________________________________
88 AliMUONTrackHitPattern::~AliMUONTrackHitPattern(void)
89 {
90   /// Destructor
91 }
92
93
94 //______________________________________________________________________________
95 void AliMUONTrackHitPattern::GetHitPattern(AliMUONVTrackStore& trackStore,
96                                            const AliMUONVTriggerStore& triggerStore) const
97 {
98     //
99     /// Main method:
100     /// Loops on reco tracks, extrapolates them to trigger chambers
101     /// and searches for matching digits
102     //
103     
104     const Int_t kMask[2][4]= {{0x80, 0x40, 0x20, 0x10},
105                               {0x08, 0x04, 0x02, 0x01}};
106     Bool_t isMatch[2];
107
108     UShort_t pattern=0;
109     
110     AliMUONDigitStoreV1 digitStore;
111     
112     TriggerDigits(triggerStore,digitStore);
113     
114     AliMUONTrack* muonTrack;
115     TIter next(trackStore.CreateIterator());
116     
117     while ( ( muonTrack = static_cast<AliMUONTrack*>(next()) ) )
118     {
119       pattern = 0;
120       AliMUONTrackParam *trackParam = static_cast<AliMUONTrackParam*> 
121         (muonTrack->GetTrackParamAtHit()->Last());
122       
123       for(Int_t ch=0; ch<4; ++ch)
124       {
125         AliMUONTrackExtrap::ExtrapToZCov(trackParam, AliMUONConstants::DefaultChamberZ(10+ch));
126         FindPadMatchingTrack(digitStore,*trackParam, isMatch, ch);
127         for(Int_t cath=0; cath<2; ++cath)
128         {
129           if(isMatch[cath]) pattern |= kMask[cath][ch];
130             }
131       }
132       muonTrack->SetHitsPatternInTrigCh(pattern);
133     }
134 }
135
136
137 //______________________________________________________________________________
138 void 
139 AliMUONTrackHitPattern::FindPadMatchingTrack(AliMUONVDigitStore& digitStore,
140                                              const AliMUONTrackParam& trackParam,
141                                              Bool_t isMatch[2], Int_t /*iChamber*/) const
142 {
143     //
144     /// Given track position, searches for matching digits.
145     //
146
147     Float_t minMatchDist[2];
148
149     for(Int_t cath=0; cath<2; ++cath)
150     {
151       isMatch[cath]=kFALSE;
152       minMatchDist[cath]=9999.;
153     }
154
155     TIter next(digitStore.CreateIterator());
156     AliMUONVDigit* mDigit;
157     
158     while ( ( mDigit = static_cast<AliMUONVDigit*>(next()) ) )
159     {
160       Int_t currDetElemId = mDigit->DetElemId();
161       Int_t cathode = mDigit->Cathode();
162       Int_t ix = mDigit->PadX();
163       Int_t iy = mDigit->PadY();
164       Float_t xpad, ypad, zpad;
165       const AliMpVSegmentation* seg = AliMpSegmentation::Instance()
166         ->GetMpSegmentation(currDetElemId,AliMp::GetCathodType(cathode));
167       
168       AliMpPad pad = seg->PadByIndices(AliMpIntPair(ix,iy),kTRUE);
169       Float_t xlocal1 = pad.Position().X();
170       Float_t ylocal1 = pad.Position().Y();
171       Float_t dpx = pad.Dimensions().X();
172       Float_t dpy = pad.Dimensions().Y();
173       fTransformer.Local2Global(currDetElemId, xlocal1, ylocal1, 0, xpad, ypad, zpad);
174       Float_t matchDist = MinDistanceFromPad(xpad, ypad, zpad, dpx, dpy, trackParam);
175       if(matchDist>minMatchDist[cathode])continue;
176       isMatch[cathode] = kTRUE;
177       minMatchDist[cathode] = matchDist;
178     }
179 }
180
181
182 //______________________________________________________________________________
183 Float_t 
184 AliMUONTrackHitPattern::MinDistanceFromPad(Float_t xPad, Float_t yPad, Float_t zPad,
185                                            Float_t dpx, Float_t dpy, 
186                                            const AliMUONTrackParam& trackParam) const
187 {
188     //
189     /// Decides if the digit belongs to the track.
190     //
191     Float_t xTrackAtPad = trackParam.GetNonBendingCoor();
192     Float_t yTrackAtPad = trackParam.GetBendingCoor();
193
194     Float_t sigmaX, sigmaY, sigmaMS;
195     GetPosUncertainty(trackParam, zPad, sigmaX, sigmaY, sigmaMS);
196
197     Float_t maxDistX = 3.*(sigmaX + sigmaMS); // in cm
198     Float_t maxDistY = 3.*(sigmaY + sigmaMS); // in cm
199
200     Float_t deltaX = TMath::Abs(xPad-xTrackAtPad)-dpx;
201     Float_t deltaY = TMath::Abs(yPad-yTrackAtPad)-dpy;
202
203     Float_t matchDist = 99999.;
204     if(deltaX<=maxDistX && deltaY<=maxDistY) matchDist = TMath::Max(deltaX, deltaY);
205     return matchDist;
206 }
207
208
209 //______________________________________________________________________________
210 void 
211 AliMUONTrackHitPattern::GetPosUncertainty(const AliMUONTrackParam& trackParam,
212                                           Float_t zChamber, 
213                                           Float_t &sigmaX, Float_t &sigmaY, 
214                                           Float_t &sigmaMS) const
215 {
216     //
217     /// Returns uncertainties on extrapolated position.
218     /// Takes into account Branson plane corrections in the iron wall.
219     //
220
221     const Float_t kAlpha = 0.1123; // GeV/c
222     
223     // Find a better way to get such parameters ???
224     const Float_t kZFilterIn = 1471.; // From STRUCT/SHILConst2.h
225     const Float_t kZFilterOut = kZFilterIn + 120.; // From STRUCT/SHILConst2.h
226     
227     const Float_t kZBranson = - (kZFilterIn + (kZFilterOut - kZFilterIn)*2./3. ); // - sign because distance are positive
228     Float_t zDistFromWall = TMath::Abs(zChamber - kZBranson);
229     Float_t zDistFromLastTrackCh = TMath::Abs(zChamber - AliMUONConstants::DefaultChamberZ(9));
230
231     TMatrixD *covParam = trackParam.GetCovariances();
232     
233     sigmaX = (*covParam)(0,0);
234     sigmaY = (*covParam)(2,2);
235
236     // If covariance matrix is not extrapolated, use "reasonable" errors
237     // (To be removed as soon as covariance matrix is correctly propagated).
238     if (sigmaX==0.)sigmaX = 0.003 * zDistFromLastTrackCh;
239     if (sigmaY==0.)sigmaY = 0.004 * zDistFromLastTrackCh;
240
241     Float_t p = trackParam.P();
242     Float_t thetaMS = kAlpha/p;
243     sigmaMS = zDistFromWall * TMath::Tan(thetaMS);
244 }
245
246
247 //______________________________________________________________________________
248 Bool_t 
249 AliMUONTrackHitPattern::TriggerDigits(const AliMUONVTriggerStore& triggerStore,
250                                       AliMUONVDigitStore& digitStore) const
251 {
252   //
253   /// make (S)Digit for trigger
254   //
255   
256   digitStore.Clear();
257   
258   AliMUONLocalTrigger* locTrg;
259   TIter next(triggerStore.CreateLocalIterator());
260   
261   while ( ( locTrg = static_cast<AliMUONLocalTrigger*>(next()) ) ) 
262   {
263     TArrayS xyPattern[2];
264     xyPattern[0].Set(4);
265     xyPattern[1].Set(4);
266     
267     xyPattern[0].AddAt(locTrg->GetX1Pattern(),0);
268     xyPattern[0].AddAt(locTrg->GetX2Pattern(),1);
269     xyPattern[0].AddAt(locTrg->GetX3Pattern(),2);
270     xyPattern[0].AddAt(locTrg->GetX4Pattern(),3);
271     
272     xyPattern[1].AddAt(locTrg->GetY1Pattern(),0);
273     xyPattern[1].AddAt(locTrg->GetY2Pattern(),1);
274     xyPattern[1].AddAt(locTrg->GetY3Pattern(),2);
275     xyPattern[1].AddAt(locTrg->GetY4Pattern(),3);
276     
277     for(Int_t cath=0; cath<2; ++cath)
278     {
279       for(Int_t ch=0; ch<4; ++ch)
280       {
281         if(xyPattern[cath][ch]==0) continue;
282       }
283     }
284     
285     Int_t nBoard = locTrg->LoCircuit();
286     fDigitMaker.TriggerDigits(nBoard, xyPattern, digitStore);
287   }
288   return kTRUE;
289 }