]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MUON/AliMUONRecoParam.h
In AliMUONReconstructor:
[u/mrichter/AliRoot.git] / MUON / AliMUONRecoParam.h
CommitLineData
7d5d0cc5 1#ifndef ALIMUONRECOPARAM_H
2#define ALIMUONRECOPARAM_H
3304fa09 3/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4* See cxx source for full Copyright notice */
5
bf4d93eb 6// $Id$
7
3304fa09 8/// \ingroup rec
9/// \class AliMUONRecoParam
10/// \brief Class with MUON reconstruction parameters
11///
12// Author: Philippe Pillot
13
15d30ed4 14#include "AliDetectorRecoParam.h"
3304fa09 15#include "TString.h"
35be7ed7 16#include <TMath.h>
3304fa09 17
15d30ed4 18class AliMUONRecoParam : public AliDetectorRecoParam
3304fa09 19{
20 public:
21 AliMUONRecoParam();
22 virtual ~AliMUONRecoParam();
23
24 static AliMUONRecoParam *GetLowFluxParam();
25 static AliMUONRecoParam *GetHighFluxParam();
0e894e58 26 static AliMUONRecoParam *GetCosmicParam();
c6e702f8 27 static AliMUONRecoParam *GetCalibrationParam();
3304fa09 28
9bf6860b 29 /// set the calibration mode (see GetCalibrationMode() for possible modes)
7332f213 30 void SetCalibrationMode(Option_t* mode) { fCalibrationMode = mode; fCalibrationMode.ToUpper();}
35be7ed7 31
9bf6860b 32 Option_t* GetCalibrationMode() const;
35be7ed7 33
3304fa09 34 /// set the clustering (pre-clustering) mode
7332f213 35 void SetClusteringMode(Option_t* mode) {fClusteringMode = mode; fClusteringMode.ToUpper();}
3304fa09 36 /// get the clustering (pre-clustering) mode
37 Option_t* GetClusteringMode() const {return fClusteringMode.Data();}
38
110edb51 39 /// Get the (truncated) average of sigmas of pedestal measurements, i.e. noise, of pads
40 Double_t AverageNoisePadCharge() const { return fAverageNoisePadCharge; }
41 /// Set the average of sigmas of pedestal measurements, i.e. noise, of pads
42 void AverageNoisePadCharge(Double_t noise) { fAverageNoisePadCharge = noise; }
43
44 /// Get the lowest charge we allow for pads
45 Double_t LowestPadCharge() const { return fChargeSigmaCut*fAverageNoisePadCharge; }
46
47 /// Get the cut applied to cut on cluster charge (the charge is cut if below fClusterChargeCut*LowestPadCharge())
48 Double_t ClusterChargeCut() const { return fClusterChargeCut; }
49 /// Set the cut applied to cut on cluster charge (the charge is cut if below fClusterChargeCut*LowestPadCharge())
50 void ClusterChargeCut(Double_t n) { fClusterChargeCut=n; }
51
52 /// Get the lowest possible cluster charge
53 Double_t LowestClusterCharge() const { return ClusterChargeCut()*LowestPadCharge(); }
54
3304fa09 55 /// set the tracking mode
7332f213 56 void SetTrackingMode(Option_t* mode) {fTrackingMode = mode; fTrackingMode.ToUpper();}
3304fa09 57 /// get the tracking mode
58 Option_t* GetTrackingMode() const {return fTrackingMode.Data();}
59
38bcf0ef 60 /// switch on/off the combined cluster/track reconstruction
61 void CombineClusterTrackReco(Bool_t flag) {fCombinedClusterTrackReco = flag;}
62 /// return kTRUE/kFALSE if the combined cluster/track reconstruction is on/off
63 Bool_t CombineClusterTrackReco() const {return fCombinedClusterTrackReco;}
64
0a18ba02 65 /// save all cluster info (including pads) in ESD, for the given percentage of events
66 void SaveFullClusterInESD(Bool_t flag, Double_t percentOfEvent = 100.) {fSaveFullClusterInESD = flag;
67 fPercentOfFullClusterInESD = (fSaveFullClusterInESD) ? percentOfEvent : 0.;}
68 /// return kTRUE/kFALSE depending on whether we save all cluster info in ESD or not
69 Bool_t SaveFullClusterInESD() const {return fSaveFullClusterInESD;}
70 /// return the percentage of events for which all cluster info are stored in ESD
71 Double_t GetPercentOfFullClusterInESD() const {return fPercentOfFullClusterInESD;}
72
3304fa09 73 /// set the minimum value (GeV/c) of momentum in bending plane
74 void SetMinBendingMomentum(Double_t val) {fMinBendingMomentum = val;}
75 /// return the minimum value (GeV/c) of momentum in bending plane
76 Double_t GetMinBendingMomentum() const {return fMinBendingMomentum;}
77 /// set the maximum value (GeV/c) of momentum in bending plane
78 void SetMaxBendingMomentum(Double_t val) {fMaxBendingMomentum = val;}
79 /// return the maximum value (GeV/c) of momentum in bending plane
80 Double_t GetMaxBendingMomentum() const {return fMaxBendingMomentum;}
6b191dea 81
9bf6860b 82 /// set the maximum value of the non bending slope
83 void SetMaxNonBendingSlope(Double_t val) {fMaxNonBendingSlope = val;}
84 /// return the maximum value of the non bending slope
85 Double_t GetMaxNonBendingSlope() const {return fMaxNonBendingSlope;}
9f093251 86 /// set the maximum value of the bending slope
87 void SetMaxBendingSlope(Double_t val) {fMaxBendingSlope = val;}
88 /// return the maximum value of the bending slope
89 Double_t GetMaxBendingSlope() const {return fMaxBendingSlope;}
3304fa09 90
6b191dea 91 /// switch on/off the track selection according to their slope (instead of their impact parameter)
92 void SelectOnTrackSlope(Bool_t flag) {fSelectTrackOnSlope = flag;}
93 /// return kTRUE/kFALSE if tracks are selected according to their slope/impact parameter
94 Bool_t SelectOnTrackSlope() const {return fSelectTrackOnSlope;}
95
ad6250dc 96 /// set the vertex dispersion (cm) in non bending plane
3304fa09 97 void SetNonBendingVertexDispersion(Double_t val) {fNonBendingVertexDispersion = val;}
ad6250dc 98 /// return the vertex dispersion (cm) in non bending plane
3304fa09 99 Double_t GetNonBendingVertexDispersion() const {return fNonBendingVertexDispersion;}
ad6250dc 100 /// set the vertex dispersion (cm) in bending plane
3304fa09 101 void SetBendingVertexDispersion(Double_t val) {fBendingVertexDispersion = val;}
ad6250dc 102 /// return the vertex dispersion (cm) in bending plane
3304fa09 103 Double_t GetBendingVertexDispersion() const {return fBendingVertexDispersion;}
104
105 /// set the maximum distance to the track to search for compatible cluster(s) in non bending direction
106 void SetMaxNonBendingDistanceToTrack(Double_t val) {fMaxNonBendingDistanceToTrack = val;}
107 /// return the maximum distance to the track to search for compatible cluster(s) in non bending direction
108 Double_t GetMaxNonBendingDistanceToTrack() const {return fMaxNonBendingDistanceToTrack;}
109 /// set the maximum distance to the track to search for compatible cluster(s) in bending direction
110 void SetMaxBendingDistanceToTrack(Double_t val) {fMaxBendingDistanceToTrack = val;}
111 /// return the maximum distance to the track to search for compatible cluster(s) in bending direction
112 Double_t GetMaxBendingDistanceToTrack() const {return fMaxBendingDistanceToTrack;}
113
114 /// set the cut in sigma to apply on cluster (local chi2) and track (global chi2) during tracking
115 void SetSigmaCutForTracking(Double_t val) {fSigmaCutForTracking = val;}
116 /// return the cut in sigma to apply on cluster (local chi2) and track (global chi2) during tracking
117 Double_t GetSigmaCutForTracking() const {return fSigmaCutForTracking;}
118
119 /// switch on/off the track improvement and keep the default cut in sigma to apply on cluster (local chi2)
120 void ImproveTracks(Bool_t flag) {fImproveTracks = flag;}
121 /// switch on/off the track improvement and set the cut in sigma to apply on cluster (local chi2)
122 void ImproveTracks(Bool_t flag, Double_t sigmaCut) {fImproveTracks = flag; fSigmaCutForImprovement = sigmaCut;}
123 /// return kTRUE/kFALSE if the track improvement is switch on/off
124 Bool_t ImproveTracks() const {return fImproveTracks;}
125 /// return the cut in sigma to apply on cluster (local chi2) during track improvement
126 Double_t GetSigmaCutForImprovement() const {return fSigmaCutForImprovement;}
35be7ed7 127
fda59e58 128 /// set the cut in sigma to apply on track during trigger hit pattern search
129 void SetSigmaCutForTrigger(Double_t val) {fSigmaCutForTrigger = val;}
130 /// return the cut in sigma to apply on track during trigger hit pattern search
131 Double_t GetSigmaCutForTrigger() const {return fSigmaCutForTrigger;}
b5270f21 132 /// set the cut in strips to apply on trigger track during trigger chamber efficiency
133 void SetStripCutForTrigger(Double_t val) {fStripCutForTrigger = val;}
134 /// return the cut in strips to apply on trigger track during trigger chamber efficiency
135 Double_t GetStripCutForTrigger() const {return fStripCutForTrigger;}
136 /// set the maximum search area in strips to apply on trigger track during trigger chamber efficiency
137 void SetMaxStripAreaForTrigger(Double_t val) {fMaxStripAreaForTrigger = val;}
138 /// return the maximum search area in strips to apply on trigger track during trigger chamber efficiency
139 Double_t GetMaxStripAreaForTrigger() const {return fMaxStripAreaForTrigger;}
3304fa09 140
141 /// set the maximum normalized chi2 of tracking/trigger track matching
142 void SetMaxNormChi2MatchTrigger(Double_t val) {fMaxNormChi2MatchTrigger = val;}
143 /// return the maximum normalized chi2 of tracking/trigger track matching
144 Double_t GetMaxNormChi2MatchTrigger() const {return fMaxNormChi2MatchTrigger;}
145
146 /// switch on/off the tracking of all the possible candidates (track only the best one if switched off)
147 void TrackAllTracks(Bool_t flag) {fTrackAllTracks = flag;}
38bcf0ef 148 /// return kTRUE/kFALSE if the tracking of all the possible candidates is switched on/off
3304fa09 149 Bool_t TrackAllTracks() const {return fTrackAllTracks;}
150
151 /// switch on/off the recovering of tracks being lost during reconstruction
152 void RecoverTracks(Bool_t flag) {fRecoverTracks = flag;}
38bcf0ef 153 /// return kTRUE/kFALSE if the recovering of tracks being lost during reconstruction is switched on/off
3304fa09 154 Bool_t RecoverTracks() const {return fRecoverTracks;}
155
156 /// switch on/off the fast building of track candidates (assuming linear propagation between stations 4 and 5)
157 void MakeTrackCandidatesFast(Bool_t flag) {fMakeTrackCandidatesFast = flag;}
38bcf0ef 158 /// return kTRUE/kFALSE if the fast building of track candidates is switched on/off
3304fa09 159 Bool_t MakeTrackCandidatesFast() const {return fMakeTrackCandidatesFast;}
160
9bf6860b 161 /// switch on/off the building of track candidates starting from 1 cluster in each of the stations 4 and 5
162 void MakeMoreTrackCandidates(Bool_t flag) {fMakeMoreTrackCandidates = flag;}
163 /// return kTRUE/kFALSE if the building of extra track candidates is switched on/off
164 Bool_t MakeMoreTrackCandidates() const {return fMakeMoreTrackCandidates;}
165
3304fa09 166 /// switch on/off the completion of reconstructed track
167 void ComplementTracks(Bool_t flag) {fComplementTracks = flag;}
38bcf0ef 168 /// return kTRUE/kFALSE if completion of the reconstructed track is switched on/off
3304fa09 169 Bool_t ComplementTracks() const {return fComplementTracks;}
170
c59f70b9 171 /// remove tracks sharing cluster in stations 1 or 2
172 void RemoveConnectedTracksInSt12(Bool_t flag) {fRemoveConnectedTracksInSt12 = flag;}
173 /// return kTRUE/kFALSE whether tracks sharing cluster in station 1 and 2 must be removed or not
174 Bool_t RemoveConnectedTracksInSt12() const {return fRemoveConnectedTracksInSt12;}
175
3304fa09 176 /// switch on/off the use of the smoother
177 void UseSmoother(Bool_t flag) {fUseSmoother = flag;}
38bcf0ef 178 /// return kTRUE/kFALSE if the use of the smoother is switched on/off
3304fa09 179 Bool_t UseSmoother() const {return fUseSmoother;}
180
9bf6860b 181 /// switch on/off a chamber in the reconstruction
182 void UseChamber(Int_t iCh, Bool_t flag) {if (iCh >= 0 && iCh < 10) fUseChamber[iCh] = flag;}
183 /// return kTRUE/kFALSE whether the chamber must be used or not
184 Bool_t UseChamber(Int_t iCh) const {return (iCh >= 0 && iCh < 10) ? fUseChamber[iCh] : kFALSE;}
185
186 /// request or not at least one cluster in the station to validate the track
187 void RequestStation(Int_t iSt, Bool_t flag) {if (iSt >= 0 && iSt < 5) fRequestStation[iSt] = flag;}
188 /// return kTRUE/kFALSE whether at least one cluster is requested in the station to validate the track
189 Bool_t RequestStation(Int_t iSt) const {return (iSt >= 0 && iSt < 5) ? fRequestStation[iSt] : kFALSE;}
9bdbee64 190 /// return an integer where first 5 bits are set to 1 if the corresponding station is requested
191 UInt_t RequestedStationMask() const;
9bf6860b 192
6cac085d 193 /// set the bypassSt45 value
35be7ed7 194 void BypassSt45(Bool_t st4, Bool_t st5);
195
9bf6860b 196 /// return kTRUE if we should replace clusters in St 4 and 5 by generated clusters from trigger tracks
004a9ccd 197 Bool_t BypassSt45() const { return fBypassSt45==45; }
9bf6860b 198
35be7ed7 199 /// return kTRUE if we should replace clusters in St 4 by generated clusters from trigger tracks
004a9ccd 200 Bool_t BypassSt4() const { return BypassSt45() || fBypassSt45==4 ; }
35be7ed7 201
202 /// return kTRUE if we should replace clusters in St 5 by generated clusters from trigger tracks
004a9ccd 203 Bool_t BypassSt5() const { return BypassSt45() || fBypassSt45==5 ; }
204
35be7ed7 205 /// Set Low and High threshold for St12 HV
206 void SetHVSt12Limits(float low, float high) { fHVSt12Limits[0]=low; fHVSt12Limits[1]=high; }
207 /// Retrieve low limit for St12's HV
208 Float_t HVSt12LowLimit() const { return fHVSt12Limits[0]; }
209 /// Retrieve high limit for St12's HV
210 Float_t HVSt12HighLimit() const { return fHVSt12Limits[1]; }
211
004a9ccd 212 /// Set Low and High threshold for St345 HV
35be7ed7 213 void SetHVSt345Limits(float low, float high) { fHVSt345Limits[0]=low; fHVSt345Limits[1]=high; }
214 /// Retrieve low limit for St345's HV
215 Float_t HVSt345LowLimit() const { return fHVSt345Limits[0]; }
216 /// Retrieve high limit for St345's HV
217 Float_t HVSt345HighLimit() const { return fHVSt345Limits[1]; }
218
004a9ccd 219 /// Set Low and High threshold for pedestal mean
35be7ed7 220 void SetPedMeanLimits(float low, float high) { fPedMeanLimits[0]=low; fPedMeanLimits[1]=high; }
221 /// Retrieve low limit of ped mean
222 Float_t PedMeanLowLimit() const { return fPedMeanLimits[0]; }
223 /// Retrieve high limit of ped mean
224 Float_t PedMeanHighLimit() const { return fPedMeanLimits[1]; }
225
004a9ccd 226 /// Set Low and High threshold for pedestal sigma
35be7ed7 227 void SetPedSigmaLimits(float low, float high) { fPedSigmaLimits[0]=low; fPedSigmaLimits[1]=high; }
228 /// Retrieve low limit of ped sigma
229 Float_t PedSigmaLowLimit() const { return fPedSigmaLimits[0]; }
230 /// Retrieve high limit of ped sigma
231 Float_t PedSigmaHighLimit() const { return fPedSigmaLimits[1]; }
232
233 /// Set Low and High threshold for gain a0 term
234 void SetGainA1Limits(float low, float high) { fGainA1Limits[0]=low; fGainA1Limits[1]=high; }
235 /// Retrieve low limit of a1 (linear term) gain parameter
236 Float_t GainA1LowLimit() const { return fGainA1Limits[0]; }
237 /// Retrieve high limit of a1 (linear term) gain parameter
238 Float_t GainA1HighLimit() const { return fGainA1Limits[1]; }
239
240 /// Set Low and High threshold for gain a1 term
241 void SetGainA2Limits(float low, float high) { fGainA2Limits[0]=low; fGainA2Limits[1]=high; }
242 /// Retrieve low limit of a2 (quadratic term) gain parameter
243 Float_t GainA2LowLimit() const { return fGainA2Limits[0]; }
244 /// Retrieve high limit of a2 (quadratic term) gain parameter
245 Float_t GainA2HighLimit() const { return fGainA2Limits[1]; }
246
247 /// Set Low and High threshold for gain threshold term
248 void SetGainThresLimits(float low, float high) { fGainThresLimits[0]=low; fGainThresLimits[1]=high; }
249 /// Retrieve low limit on threshold gain parameter
250 Float_t GainThresLowLimit() const { return fGainThresLimits[0]; }
251 /// Retrieve high limit on threshold gain parameter
252 Float_t GainThresHighLimit() const { return fGainThresLimits[1]; }
253
254 /// Set the goodness mask (see AliMUONPadStatusMapMaker)
255 void SetPadGoodnessMask(UInt_t mask) { fPadGoodnessMask=mask; }
256 /// Get the goodness mask
257 UInt_t PadGoodnessMask() const { return fPadGoodnessMask; }
3304fa09 258
170f4046 259 /// Number of sigma cut we must apply when cutting on adc-ped
260 Double_t ChargeSigmaCut() const { return fChargeSigmaCut; }
35be7ed7 261
170f4046 262 /// Number of sigma cut we must apply when cutting on adc-ped
263 void ChargeSigmaCut(Double_t value) { fChargeSigmaCut=value; }
35be7ed7 264
265 /// Set the default non bending resolution of chamber iCh
266 void SetDefaultNonBendingReso(Int_t iCh, Double_t val) {if (iCh >= 0 && iCh < 10) fDefaultNonBendingReso[iCh] = val;}
267 /// Get the default non bending resolution of chamber iCh
268 Double_t GetDefaultNonBendingReso(Int_t iCh) const {return (iCh >= 0 && iCh < 10) ? fDefaultNonBendingReso[iCh] : FLT_MAX;}
269 /// Set the default bending resolution of chamber iCh
270 void SetDefaultBendingReso(Int_t iCh, Double_t val) {if (iCh >= 0 && iCh < 10) fDefaultBendingReso[iCh] = val;}
271 /// Get the default bending resolution of chamber iCh
272 Double_t GetDefaultBendingReso(Int_t iCh) const {return (iCh >= 0 && iCh < 10) ? fDefaultBendingReso[iCh] : FLT_MAX;}
273
89c8d66d 274 /// Set the maximum number of trigger tracks above which the tracking is cancelled
275 void SetMaxTriggerTracks(Int_t maxTriggerTracks) {fMaxTriggerTracks = maxTriggerTracks;}
276 /// Get the maximum number of trigger tracks above which the tracking is cancelled
277 Int_t GetMaxTriggerTracks() const {return fMaxTriggerTracks;}
278
279 /// Set the maximum number of track candidates above which the tracking abort
280 void SetMaxTrackCandidates(Int_t maxTrackCandidates) {fMaxTrackCandidates = maxTrackCandidates;}
281 /// Get the maximum number of track candidates above which the tracking abort
282 Int_t GetMaxTrackCandidates() const {return fMaxTrackCandidates;}
283
7eafe398 284 /// Set the limits for the acceptable manu occupancy
285 void SetManuOccupancyLimits(float low, float high) { fManuOccupancyLimits[0]=low; fManuOccupancyLimits[1]=high; }
286 /// Retrieve low value of manu occupancy limit
287 Float_t ManuOccupancyLowLimit() const { return fManuOccupancyLimits[0]; }
288 /// Retrieve high value of manu occupancy limit
289 Float_t ManuOccupancyHighLimit() const { return fManuOccupancyLimits[1]; }
290
291 /// Set the limits for the acceptable bp occupancy
292 void SetBuspatchOccupancyLimits(float low, float high) { fBuspatchOccupancyLimits[0]=low; fBuspatchOccupancyLimits[1]=high; }
293 /// Retrieve low value of bp occupancy limit
294 Float_t BuspatchOccupancyLowLimit() const { return fBuspatchOccupancyLimits[0]; }
295 /// Retrieve high value of bp occupancy limit
296 Float_t BuspatchOccupancyHighLimit() const { return fBuspatchOccupancyLimits[1]; }
297
298 /// Set the limits for the acceptable DE occupancy
299 void SetDEOccupancyLimits(float low, float high) { fDEOccupancyLimits[0]=low; fDEOccupancyLimits[1]=high; }
300 /// Retrieve low value of DE occupancy limit
301 Float_t DEOccupancyLowLimit() const { return fDEOccupancyLimits[0]; }
302 /// Retrieve high value of DE occupancy limit
303 Float_t DEOccupancyHighLimit() const { return fDEOccupancyLimits[1]; }
35be7ed7 304
ece56eb9 305 /// Set the missing pad fraction limit
306 void SetMissingPadFractionLimit(float v) { fMissingPadFractionLimit = v; }
307 /// Get the missing pad fraction limit
308 Float_t MissingPadFractionLimit() const { return fMissingPadFractionLimit; }
309
310 /// Set the fraction of buspatches outside the occupancy limits
311 void SetFractionOfBuspatchOutsideOccupancyLimit(float v) { fFractionOfBuspatchOutsideOccupancyLimit = v; }
312 /// Get the fraction of buspatches outside the occupancy limits
313 Float_t FractionOfBuspatchOutsideOccupancyLimit() const { return fFractionOfBuspatchOutsideOccupancyLimit; }
314
7eafe398 315 virtual void Print(Option_t *option = "") const;
35be7ed7 316
317 private:
318
319 void SetDefaultLimits();
320
3304fa09 321 private:
322
323 /// clustering mode: NOCLUSTERING, PRECLUSTER, PRECLUSTERV2, PRECLUSTERV3, COG, <pre>
324 /// SIMPLEFIT, SIMPLEFITV3, MLEM:DRAW, MLEM, MLEMV2, MLEMV3 </pre>
325 TString fClusteringMode; ///< \brief name of the clustering (+ pre-clustering) mode
326
327 /// tracking mode: ORIGINAL, KALMAN
328 TString fTrackingMode; ///< \brief name of the tracking mode
329
330 Double32_t fMinBendingMomentum; ///< minimum value (GeV/c) of momentum in bending plane
331 Double32_t fMaxBendingMomentum; ///< maximum value (GeV/c) of momentum in bending plane
9bf6860b 332 Double32_t fMaxNonBendingSlope; ///< maximum value of the non bending slope
9f093251 333 Double32_t fMaxBendingSlope; ///< maximum value of the bending slope (used only if B = 0)
3304fa09 334
335 Double32_t fNonBendingVertexDispersion; ///< vertex dispersion (cm) in non bending plane (used for original tracking only)
336 Double32_t fBendingVertexDispersion; ///< vertex dispersion (cm) in bending plane (used for original tracking only)
337
338 Double32_t fMaxNonBendingDistanceToTrack; ///< maximum distance to the track to search for compatible cluster(s) in non bending direction
339 Double32_t fMaxBendingDistanceToTrack; ///< maximum distance to the track to search for compatible cluster(s) in bending direction
340
341 Double32_t fSigmaCutForTracking; ///< cut in sigma to apply on cluster (local chi2) and track (global chi2) during tracking
fda59e58 342
3304fa09 343 Double32_t fSigmaCutForImprovement; ///< cut in sigma to apply on cluster (local chi2) during track improvement
344
fda59e58 345 Double32_t fSigmaCutForTrigger; ///< cut in sigma to apply on track during trigger hit pattern search
b5270f21 346
347 Double32_t fStripCutForTrigger; ///< cut in strips to apply on trigger track during trigger chamber efficiency
348
349 Double32_t fMaxStripAreaForTrigger; ///< max. search area in strips to apply on trigger track during trigger chamber efficiency
fda59e58 350
3304fa09 351 Double32_t fMaxNormChi2MatchTrigger; ///< maximum normalized chi2 of tracking/trigger track matching
352
0a18ba02 353 Double32_t fPercentOfFullClusterInESD; ///< percentage of events for which all cluster info are stored in ESD
354
38bcf0ef 355 Bool_t fCombinedClusterTrackReco; ///< switch on/off the combined cluster/track reconstruction
356
3304fa09 357 Bool_t fTrackAllTracks; ///< kTRUE to track all the possible candidates; kFALSE to track only the best ones
358
359 Bool_t fRecoverTracks; ///< kTRUE to try to recover the tracks getting lost during reconstruction
360
361 Bool_t fMakeTrackCandidatesFast; ///< kTRUE to make candidate tracks assuming linear propagation between stations 4 and 5
362
9bf6860b 363 Bool_t fMakeMoreTrackCandidates; ///< kTRUE to make candidate tracks starting from 1 cluster in each of the stations 4 and 5
364
3304fa09 365 Bool_t fComplementTracks; ///< kTRUE to try to complete the reconstructed tracks by adding missing clusters
366
367 Bool_t fImproveTracks; ///< kTRUE to try to improve the reconstructed tracks by removing bad clusters
368
369 Bool_t fUseSmoother; ///< kTRUE to use the smoother to compute track parameters/covariances and local chi2 at each cluster (used for Kalman tracking only)
370
0a18ba02 371 Bool_t fSaveFullClusterInESD; ///< kTRUE to save all cluster info (including pads) in ESD
3304fa09 372
66cdf5b3 373 /// calibration mode: GAIN, NOGAIN, GAINCONSTANTCAPA, INJECTIONGAIN
35be7ed7 374 TString fCalibrationMode; ///<\brief calibration mode
de98fdc9 375
35be7ed7 376 Int_t fBypassSt45; ///< non-zero to use trigger tracks to generate "fake" clusters in St 4 and 5. Can be 0, 4, 5 or 45 only
9bf6860b 377
378 Bool_t fUseChamber[10]; ///< kTRUE to use the chamber i in the tracking algorithm
379
380 Bool_t fRequestStation[5]; ///< kTRUE to request at least one cluster in station i to validate the track
381
35be7ed7 382 Double32_t fGainA1Limits[2]; ///< Low and High threshold for gain a0 parameter
113ad708 383 Double32_t fGainA2Limits[2]; ///< Low and High threshold for gain a1 parameter
384 Double32_t fGainThresLimits[2]; ///< Low and High threshold for gain threshold parameter
385 Double32_t fHVSt12Limits[2]; ///< Low and High threshold for St12 HV
386 Double32_t fHVSt345Limits[2]; ///< Low and High threshold for St345 HV
387 Double32_t fPedMeanLimits[2]; ///< Low and High threshold for pedestal mean
388 Double32_t fPedSigmaLimits[2]; ///< Low and High threshold for pedestal sigma
35be7ed7 389
390 UInt_t fPadGoodnessMask; ///< goodness mask (see AliMUONPadStatusMaker)
391
392 Double32_t fChargeSigmaCut; ///< number of sigma to cut on adc-ped
393
394 Double32_t fDefaultNonBendingReso[10]; ///< default chamber resolution in the non-bending direction
395 Double32_t fDefaultBendingReso[10]; ///< default chamber resolution in the bending direction
170f4046 396
c59f70b9 397 Bool_t fRemoveConnectedTracksInSt12; ///< kTRUE to remove tracks sharing cluster in station 1 and 2
398
89c8d66d 399 Int_t fMaxTriggerTracks; ///< maximum number of trigger tracks above which the tracking is cancelled
400 Int_t fMaxTrackCandidates; ///< maximum number of track candidates above which the tracking abort
401
6b191dea 402 Bool_t fSelectTrackOnSlope; ///< select track candidates according to their slope (instead of their impact parameter)
403
7eafe398 404 Double32_t fManuOccupancyLimits[2]; ///< low and high thresholds for manu occupancy cut
405 Double32_t fBuspatchOccupancyLimits[2]; ///< low and high thresholds for bus patch occupancy cut
406 Double32_t fDEOccupancyLimits[2]; ///< low and high thresholds for DE occupancy cut
ece56eb9 407
408 Double32_t fMissingPadFractionLimit; ///< above this fraction, we consider we have too few pads alive...
409 Double32_t fFractionOfBuspatchOutsideOccupancyLimit; ///< above this limit, we consider we have too many buspatches out of the allowed occupancy range
410
110edb51 411 Double32_t fAverageNoisePadCharge; ///< the (truncated, typically at 10%) mean of the sigma of the pedestals, in femto-coulomb
412 Double32_t fClusterChargeCut; ///< the cluster is cut if its charge is below fClusterChargeCut*LowestPadCharge()
413
3304fa09 414 // functions
415 void SetLowFluxParam();
416 void SetHighFluxParam();
0e894e58 417 void SetCosmicParam();
c6e702f8 418 void SetCalibrationParam();
35be7ed7 419
110edb51 420 ClassDef(AliMUONRecoParam,166) // MUON reco parameters
3304fa09 421};
422
423#endif
424