]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MUON/AliMUONRecoParam.cxx
Initialisation corrected.
[u/mrichter/AliRoot.git] / MUON / AliMUONRecoParam.cxx
1 /**************************************************************************
2 * Copyright(c) 1998-2007, 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 //-----------------------------------------------------------------------------
19 /// \class AliMUONRecoParam
20 ///
21 /// Class with MUON reconstruction parameters
22 ///
23 ///  \author Philippe Pillot
24 //-----------------------------------------------------------------------------
25
26
27
28 #include "AliMUONRecoParam.h"
29 #include "AliMUONPadStatusMaker.h"
30
31 #include "AliRecoParam.h"
32 #include "AliLog.h"
33
34 #include "AliCDBManager.h"
35 #include "AliCDBEntry.h"
36
37 #include <Riostream.h>
38
39 ClassImp(AliMUONRecoParam)
40
41
42 //_____________________________________________________________________________
43 AliMUONRecoParam::AliMUONRecoParam()
44 : AliDetectorRecoParam(),
45   fClusteringMode("MLEM"),
46   fTrackingMode("KALMAN"),
47   fMinBendingMomentum(0.),
48   fMaxBendingMomentum(0.),
49   fMaxNonBendingSlope(0.),
50   fMaxBendingSlope(0.),
51   fNonBendingVertexDispersion(0.),
52   fBendingVertexDispersion(0.),
53   fMaxNonBendingDistanceToTrack(0.),
54   fMaxBendingDistanceToTrack(0.),
55   fSigmaCutForTracking(0.),
56   fSigmaCutForImprovement(0.),
57   fSigmaCutForTrigger(0.),
58   fStripCutForTrigger(0.),
59   fMaxStripAreaForTrigger(0.),
60   fMaxNormChi2MatchTrigger(0.),
61   fPercentOfFullClusterInESD(10.),
62   fCombinedClusterTrackReco(kFALSE),
63   fTrackAllTracks(kFALSE),
64   fRecoverTracks(kFALSE),
65   fMakeTrackCandidatesFast(kFALSE),
66   fMakeMoreTrackCandidates(kFALSE),
67   fComplementTracks(kFALSE),
68   fImproveTracks(kFALSE),
69   fUseSmoother(kFALSE),
70   fSaveFullClusterInESD(kTRUE),
71   fCalibrationMode("NOGAIN"),
72   fBypassSt45(0),
73   fPadGoodnessMask(0),
74   fChargeSigmaCut(4.0),
75   fRemoveConnectedTracksInSt12(kFALSE),
76   fMaxTriggerTracks(0),
77   fMaxTrackCandidates(0),
78   fSelectTrackOnSlope(kFALSE),
79   fMissingPadFractionLimit(-1),
80   fFractionOfBuspatchOutsideOccupancyLimit(0),
81   fAverageNoisePadCharge(0.22875),
82   fClusterChargeCut(2.0),
83   fEventSizeSoftLimit(35.0),
84   fEventSizeHardLimit(45.0),
85   fTokenLostLimit(0.0),
86   fTryRecover(kFALSE)
87 {  
88   /// Constructor
89   
90   SetNameTitle("Dummy","Dummy");
91   for (Int_t iCh = 0; iCh < 10; iCh++) {
92     fUseChamber[iCh] = kTRUE;
93     fDefaultNonBendingReso[iCh] = 0.;
94     fDefaultBendingReso[iCh] = 0.;
95   }
96   for (Int_t iSt = 0; iSt < 5; iSt++) fRequestStation[iSt] = kTRUE;
97   SetDefaultLimits();
98 }
99
100 //_____________________________________________________________________________
101 AliMUONRecoParam::~AliMUONRecoParam() 
102 {
103   /// Destructor
104 }
105
106 //_____________________________________________________________________________
107 void
108 AliMUONRecoParam::BypassSt45(Bool_t st4, Bool_t st5)
109 {
110         /// Set the bypass status
111         
112         if ( st4 && st5 ) fBypassSt45 = 45;
113         else if ( st4 ) fBypassSt45 = 4;
114         else if ( st5 ) fBypassSt45 = 5;
115         else fBypassSt45 = 0;
116 }
117
118 //_____________________________________________________________________________
119 Option_t*
120 AliMUONRecoParam::GetCalibrationMode() const
121 {
122   /// Return the calibration mode. Can be : 
123   /// NOGAIN : only do pedestal subtraction
124   /// GAIN : do pedestal subtraction, and apply gain correction, but with a
125   ///        single capacitance value for all channels
126   /// INJECTIONGAIN : as GAIN, but with gain values taken as EMELEC factory values
127   /// GAINCONSTANTCAPA : as GAIN, but with a channel-dependent capacitance value
128   
129   return fCalibrationMode.Data();
130 }
131
132 //_____________________________________________________________________________
133 AliMUONRecoParam *AliMUONRecoParam::GetLowFluxParam() 
134 {
135   /// Return default reconstruction parameters for low flux environment
136   
137   AliMUONRecoParam *param = new AliMUONRecoParam();
138   param->SetLowFluxParam();
139   
140   return param;
141 }
142
143 //_____________________________________________________________________________
144 AliMUONRecoParam *AliMUONRecoParam::GetHighFluxParam() 
145 {
146   /// Return default reconstruction parameters for high flux environment
147   
148   AliMUONRecoParam *param = new AliMUONRecoParam();
149   param->SetHighFluxParam();
150  
151   return param;
152 }
153
154 //_____________________________________________________________________________
155 AliMUONRecoParam *AliMUONRecoParam::GetCosmicParam() 
156 {
157   /// Return default reconstruction parameters for high flux environment
158   
159   AliMUONRecoParam *param = new AliMUONRecoParam();
160   param->SetCosmicParam();
161   
162   return param;
163 }
164
165 //_____________________________________________________________________________
166 AliMUONRecoParam *AliMUONRecoParam::GetCalibrationParam() 
167 {
168   /// Return default (dummy) reconstruction parameters for calibration environment
169   
170   AliMUONRecoParam *param = new AliMUONRecoParam();
171   param->SetCalibrationParam();
172   
173   return param;
174 }
175
176
177 //_____________________________________________________________________________
178 void AliMUONRecoParam::SetLowFluxParam() 
179 {
180   /// Set reconstruction parameters for low flux environment
181   
182   SetNameTitle("Low Flux","Low Flux");
183   SetEventSpecie(AliRecoParam::kLowMult);
184   fMinBendingMomentum = 0.8;
185   fMaxBendingMomentum = 1.e10;
186   fMaxNonBendingSlope = 0.3;
187   fMaxBendingSlope = 0.4;
188   fSelectTrackOnSlope = kFALSE;
189   fNonBendingVertexDispersion = 70.;
190   fBendingVertexDispersion = 70.;
191   fMaxNonBendingDistanceToTrack = 1.;
192   fMaxBendingDistanceToTrack = 1.;
193   fSigmaCutForTracking = 6.;
194   fSigmaCutForImprovement = 5.;
195   fSigmaCutForTrigger = 4.;
196   fStripCutForTrigger = 1.;
197   fMaxStripAreaForTrigger = 3.;
198   fMaxNormChi2MatchTrigger = fSigmaCutForTrigger * fSigmaCutForTrigger;
199   fCombinedClusterTrackReco = kFALSE;
200   fTrackAllTracks = kTRUE;
201   fRecoverTracks = kTRUE;
202   fMakeTrackCandidatesFast = kFALSE;
203   fMakeMoreTrackCandidates = kFALSE;
204   fComplementTracks = kTRUE;
205   fImproveTracks = kTRUE;
206   fRemoveConnectedTracksInSt12 = kFALSE;
207   fUseSmoother = kTRUE;
208   for (Int_t iCh = 0; iCh < 10; iCh++) {
209     fUseChamber[iCh] = kTRUE;
210     fDefaultNonBendingReso[iCh] = 0.144;
211     fDefaultBendingReso[iCh] = 0.01;
212   }
213   for (Int_t iSt = 0; iSt < 5; iSt++) fRequestStation[iSt] = kTRUE;
214   fBypassSt45 = 0;
215   fMaxTriggerTracks = 100;
216   fMaxTrackCandidates = 10000;  
217 }
218
219 //_____________________________________________________________________________
220 void AliMUONRecoParam::SetHighFluxParam() 
221 {
222   /// Set reconstruction parameters for high flux environment
223   
224   SetNameTitle("High Flux","High Flux");
225   SetEventSpecie(AliRecoParam::kHighMult);
226   fMinBendingMomentum = 0.8;
227   fMaxBendingMomentum = 1.e10;
228   fMaxNonBendingSlope = 0.3;
229   fMaxBendingSlope = 0.4;
230   fSelectTrackOnSlope = kFALSE;
231   fNonBendingVertexDispersion = 70.;
232   fBendingVertexDispersion = 70.;
233   fMaxNonBendingDistanceToTrack = 1.;
234   fMaxBendingDistanceToTrack = 1.;
235   fSigmaCutForTracking = 6.;
236   fSigmaCutForImprovement = 5.;
237   fSigmaCutForTrigger = 4.;
238   fStripCutForTrigger = 1.;
239   fMaxStripAreaForTrigger = 3.;
240   fMaxNormChi2MatchTrigger = fSigmaCutForTrigger * fSigmaCutForTrigger;
241   fCombinedClusterTrackReco = kFALSE;
242   fTrackAllTracks = kTRUE;
243   fRecoverTracks = kTRUE;
244   fMakeTrackCandidatesFast = kFALSE;
245   fMakeMoreTrackCandidates = kFALSE;
246   fComplementTracks = kTRUE;
247   fImproveTracks = kTRUE;
248   fRemoveConnectedTracksInSt12 = kFALSE;
249   fUseSmoother = kTRUE;
250   for (Int_t iCh = 0; iCh < 10; iCh++) {
251     fUseChamber[iCh] = kTRUE;
252     fDefaultNonBendingReso[iCh] = 0.144;
253     fDefaultBendingReso[iCh] = 0.01;
254   }
255   for (Int_t iSt = 0; iSt < 5; iSt++) fRequestStation[iSt] = kTRUE;
256   fBypassSt45 = 0;
257   fMaxTriggerTracks = 100;
258   fMaxTrackCandidates = 10000;
259 }
260
261 //_____________________________________________________________________________
262 void AliMUONRecoParam::SetCosmicParam() 
263 {
264   /// Set reconstruction parameters for high flux environment
265   
266   SetNameTitle("Cosmic","Cosmic");
267   SetEventSpecie(AliRecoParam::kCosmic);
268   fMinBendingMomentum = 0.8;
269   fMaxBendingMomentum = 1.e10;
270   fMaxNonBendingSlope = 0.3;
271   fMaxBendingSlope = 0.4;
272   fSelectTrackOnSlope = kTRUE;
273   fNonBendingVertexDispersion = 170.;
274   fBendingVertexDispersion = 170.;
275   fMaxNonBendingDistanceToTrack = 1.;
276   fMaxBendingDistanceToTrack = 1.;
277   fSigmaCutForTracking = 7.;
278   fSigmaCutForImprovement = 6.;
279   fSigmaCutForTrigger = 4.;
280   fStripCutForTrigger = 1.5;
281   fMaxStripAreaForTrigger = 3.;
282   fMaxNormChi2MatchTrigger = fSigmaCutForTrigger * fSigmaCutForTrigger;
283   fPercentOfFullClusterInESD = 100.;
284   fCombinedClusterTrackReco = kFALSE;
285   fTrackAllTracks = kTRUE;
286   fRecoverTracks = kTRUE;
287   fMakeTrackCandidatesFast = kFALSE;
288   fMakeMoreTrackCandidates = kFALSE;
289   fComplementTracks = kTRUE;
290   fImproveTracks = kTRUE;
291   fRemoveConnectedTracksInSt12 = kTRUE;
292   fUseSmoother = kTRUE;
293   fSaveFullClusterInESD = kTRUE;
294   for (Int_t iCh = 0; iCh < 10; iCh++) {
295     fUseChamber[iCh] = kTRUE;
296     fDefaultNonBendingReso[iCh] = 0.4;
297     fDefaultBendingReso[iCh] = 0.4;
298   }
299   fRequestStation[0] = kTRUE;
300   fRequestStation[1] = kTRUE;
301   fRequestStation[2] = kTRUE;
302   fRequestStation[3] = kTRUE;
303   fRequestStation[4] = kTRUE;
304   fBypassSt45 = 0;
305   fPadGoodnessMask = 0x400BE80; // Ped Mean is Zero | Ped Mean Too Low | Ped Mean Too High | Ped Sigma Too Low | Ped Sigma Too High | Ped is missing | HV is missing | manu occupancy too high
306   fMaxTriggerTracks = 100;
307   fMaxTrackCandidates = 10000;
308   
309   SetPedMeanLimits(20, 700);
310   SetManuOccupancyLimits(-1.,0.01); // reject manu above occ=1%
311
312   SetBuspatchOccupancyLimits(-1,0.05);  
313   SetFractionOfBuspatchOutsideOccupancyLimit(0.10); // 10 %
314 }
315
316
317 //_____________________________________________________________________________
318 void AliMUONRecoParam::SetCalibrationParam() 
319 {
320   /// Set (dummy) reconstruction parameters for calibration environment
321   
322   SetNameTitle("Calibration","Calibration");
323   SetEventSpecie(AliRecoParam::kCalib);
324
325   fPedMeanLimits[0] = 5000;
326   fPedMeanLimits[1] = 0;
327
328   fPadGoodnessMask = 0x8C00; // Pedestal is missing | is too low | too high
329
330 }
331
332 //_____________________________________________________________________________
333 UInt_t
334 AliMUONRecoParam::RequestedStationMask() const
335 {
336   /// Get the mask of the requested station, i.e. an integer where 
337   /// bit n is set to one if the station n was requested
338   
339   UInt_t m(0);
340   
341   for ( Int_t i = 0; i < 5; ++i ) 
342   {
343     if ( RequestStation(i) ) m |= ( 1 << i );
344   }
345   return m;
346 }
347
348 //_____________________________________________________________________________
349 void AliMUONRecoParam::Print(Option_t *option) const
350 {
351   /// print reconstruction parameters
352   /// if option = FULL then print also unused parameters
353   
354   cout<<endl<<"\t------MUON Reconstruction parameters ("<<GetName()<<")------"<<endl;
355   
356   if (IsDefault()) cout<<"\t\t*** Parameters used by default ***"<<endl;
357   
358   cout<<Form("Calibration mode = %s",fCalibrationMode.Data())<<endl;
359   cout<<Form("Clustering mode = %s",fClusteringMode.Data())<<endl;
360   cout<<Form("Tracking mode = %s",fTrackingMode.Data())<<endl;
361
362         TString bypass;
363         
364         if ( BypassSt45() )
365         {
366                 bypass = "stations 4 and 5";
367         }
368         else if ( BypassSt4() ) 
369         {
370                 bypass = "station 4";
371         }
372         else if ( BypassSt5() ) 
373         {
374                 bypass = "station 5";
375         }
376         
377   if (bypass.Length()) cout << "Will bypass " << bypass.Data() << " (replacing real clusters by generated ones from trigger tracks)" << endl;
378   
379   if (fCombinedClusterTrackReco) cout<<"Combined cluster/track reconstruction: ON"<<endl;
380   else cout<<"Combined cluster/track reconstruction: OFF"<<endl;
381   
382   if (fSaveFullClusterInESD) cout<<Form("Save all cluster info in ESD for %5.2f %% of events",fPercentOfFullClusterInESD)<<endl;
383   else cout<<"Save partial cluster info in ESD"<<endl;
384     
385   cout<<"Selection of track candidates:"<<endl;
386   if (fSelectTrackOnSlope) cout<<Form("\t- Non-bending slope < %5.2f",fMaxNonBendingSlope)<<endl;
387   else cout<<"\t- Impact parameter < 3 * vertex dispersion in the non-bending direction"<<endl;
388   cout<<Form("\t- if B!=0: Bending momentum > %5.2f",fMinBendingMomentum)<<endl;
389   if (fSelectTrackOnSlope) cout<<Form("\t  if B==0: Bending slope < %5.2f",fMaxBendingSlope)<<endl;
390   else cout<<"\t  if B==0: Impact parameter < 3 * vertex dispersion in the bending direction"<<endl;
391   
392   cout<<Form("Vertex dispersion (used to estimate initial bending momentum resolution) = (%5.2f,%5.2f)",fNonBendingVertexDispersion,fBendingVertexDispersion)<<endl;
393   
394   cout<<Form("Maximum distance to track = (%5.2f,%5.2f)",fMaxNonBendingDistanceToTrack,fMaxBendingDistanceToTrack)<<endl;
395   
396   cout<<Form("Sigma cut for tracking = %5.2f",fSigmaCutForTracking)<<endl;
397
398   cout<<Form("Sigma cut for trigger hit pattern = %5.2f",fSigmaCutForTrigger)<<endl;
399
400   cout<<Form("Cut in strips for trigger chamber efficiency = %5.2f",fStripCutForTrigger)<<endl;
401
402   cout<<Form("Max search area in strips for trigger chamber efficiency = %5.2f",fMaxStripAreaForTrigger)<<endl;
403
404   if (fTrackAllTracks) cout<<"Track all the possible candidates"<<endl;
405   else cout<<"Track only the best candidates"<<endl;
406   
407   if (strstr(option,"FULL")) {
408     cout<<"Make track candidates assuming linear propagation between stations 4 and 5: ";
409     if (fMakeTrackCandidatesFast) cout<<"ON"<<endl;
410     else cout<<"OFF"<<endl;
411   } else if (fMakeTrackCandidatesFast)
412     cout<<"Make track candidates assuming linear propagation between stations 4 and 5"<<endl;
413   
414   if (strstr(option,"FULL")) {
415     cout<<"Make track candidates starting from 1 cluster in each of the stations 4 and 5: ";
416     if (fMakeMoreTrackCandidates) cout<<"ON"<<endl;
417     else cout<<"OFF"<<endl;
418   } else if (fMakeMoreTrackCandidates)
419     cout<<"Make track candidates starting from 1 cluster in each of the stations 4 and 5"<<endl;
420   
421   if (strstr(option,"FULL")) {
422     cout<<"Try to recover tracks getting lost during tracking: ";
423     if (fRecoverTracks) cout<<"ON"<<endl;
424     else cout<<"OFF"<<endl;
425   } else if (fRecoverTracks)
426     cout<<"Try to recover tracks getting lost during tracking"<<endl;
427   
428   if (strstr(option,"FULL")) {
429     cout<<"Try to complete the reconstructed tracks by adding missing clusters: ";
430     if (fComplementTracks) cout<<"ON"<<endl;
431     else cout<<"OFF"<<endl;
432   } else if (fComplementTracks)
433     cout<<"Try to complete the reconstructed tracks by adding missing clusters"<<endl;
434   
435   if (strstr(option,"FULL")) {
436     cout<<"Try to improve the reconstructed tracks by removing bad clusters: ";
437     if (fImproveTracks) cout<<Form("ON (sigma cut = %5.2f)",fSigmaCutForImprovement)<<endl;
438     else cout<<"OFF"<<endl;
439   } else if (fImproveTracks)
440     cout<<Form("Try to improve the reconstructed tracks by removing bad clusters (sigma cut = %5.2f)",fSigmaCutForImprovement)<<endl;
441   
442   if (fRemoveConnectedTracksInSt12) cout<<"Remove tracks sharing one cluster or more in any station"<<endl;
443   else cout<<"Remove tracks sharing one cluster or more in stations 3, 4 and 5"<<endl;
444   
445   if (strstr(option,"FULL")) {
446     cout<<"Use smoother to compute final track parameters, etc, at each cluster (used for Kalman tracking only): ";
447     if (fUseSmoother) cout<<"ON"<<endl;
448     else cout<<"OFF"<<endl;
449   } else if (fUseSmoother)
450     cout<<"Use smoother to compute final track parameters, etc, at each cluster"<<endl;
451   
452   cout<<Form("Maximum normalized chi2 of tracking/trigger track matching = %5.2f",fMaxNormChi2MatchTrigger)<<endl;
453   
454   Bool_t discardedCh = kFALSE;
455   Int_t ch = 0;
456   do {
457     if (!UseChamber(ch)) {
458       if (!discardedCh) {
459         cout<<"Discarded chambers(1..): "<<ch+1;
460         discardedCh = kTRUE;
461       }
462       else cout<<" "<<ch+1;
463     }
464   } while (++ch < 10);
465   if (discardedCh) cout<<endl;
466   
467   Bool_t discardedSt = kFALSE;
468   Int_t st = 0;
469   do {
470     if (!RequestStation(st)) {
471       if (!discardedSt) {
472         cout<<"Not requested stations(1..): "<<st+1;
473         discardedSt = kTRUE;
474       }
475       else cout<<" "<<st+1;
476     }
477   } while (++st < 5);
478   if (discardedSt) cout<<endl;
479   
480   cout << Form("Pad goodness policy mask is 0x%x",PadGoodnessMask()) << endl;
481   cout << "Which means we reject pads having the condition = " <<
482   AliMUONPadStatusMaker::AsCondition(PadGoodnessMask()).Data() << endl;
483   
484   cout << "The pad limits we are using are :" << endl;
485   
486   for ( int ichamber = 0; ichamber < 10; ++ichamber ) 
487   {
488     cout << Form("HV Ch %d must be >= %5.2f",ichamber,HVLimit(ichamber)) << endl;
489   }
490
491   cout << Form("%7.2f <= Pedestal mean <= %7.2f",PedMeanLowLimit(),PedMeanHighLimit()) << endl;
492   cout << Form("%7.2f <= Pedestal sigma <= %7.2f",PedSigmaLowLimit(),PedSigmaHighLimit()) << endl;
493   cout << Form("%e <= Gain linear term <= %e",GainA1LowLimit(),GainA1HighLimit()) << endl;
494   cout << Form("%e <= Gain quadratic term <= %e",GainA2LowLimit(),GainA2HighLimit()) << endl;
495   cout << Form("%5.0f <= Gain threshold term <= %5.0f",GainThresLowLimit(),GainThresHighLimit()) << endl;
496     
497   cout << Form("And we cut on charge >= %7.2f x ( pedestal sigma ) ",ChargeSigmaCut()) << endl;
498   
499   cout << "Occupancy limits are :" << endl;
500   
501   cout << Form("%e <= Manu occupancy < %7.2f",ManuOccupancyLowLimit(),ManuOccupancyHighLimit()) << endl;
502   cout << Form("%e <= Buspatch occupancy < %7.2f",BuspatchOccupancyLowLimit(),BuspatchOccupancyHighLimit()) << endl;
503   cout << Form("%e <= DE occupancy < %7.2f",DEOccupancyLowLimit(),DEOccupancyHighLimit()) << endl;
504   
505   cout << "'QAChecker' limits" << endl;  
506   cout << Form("FractionOfBuspatchOutsideOccupancyLimit = %5.2f %%",FractionOfBuspatchOutsideOccupancyLimit()*100.0) << endl;
507   cout << Form("Event size limit = %5.2f KB/event (soft) and %5.2f KB/event (hard)",fEventSizeSoftLimit,fEventSizeHardLimit) << endl;
508   if ( fTokenLostLimit > 0 )
509   {
510     cout << Form("We tolerate up to %5.2f %% token lost errors per event",fTokenLostLimit) << endl;
511   }
512   else
513   {
514     cout << "We dot not tolerate any token lost error !" << endl;
515   }
516   
517   cout << "chamber non bending resolution = |";
518   for (Int_t iCh = 0; iCh < 10; iCh++) cout << Form(" %6.3f |",fDefaultNonBendingReso[iCh]);
519   cout << endl;
520   cout << "chamber bending resolution = |";
521   for (Int_t iCh = 0; iCh < 10; iCh++) cout << Form(" %6.3f |",fDefaultBendingReso[iCh]);
522   cout << endl;
523   cout<<Form("maximum number of trigger tracks above which the tracking is cancelled = %d",fMaxTriggerTracks)<<endl;
524   cout<<Form("maximum number of track candidates above which the tracking is abandonned = %d",fMaxTrackCandidates)<<endl;
525
526   cout << Form("The average noise pad charge is assumed to be %7.2f fC",AverageNoisePadCharge()) << endl;
527   cout << Form("and clusters below %5.2f times this noise charge (i.e. %7.2f fC) are discarded",
528                ClusterChargeCut(),ClusterChargeCut()*AverageNoisePadCharge()) << endl;
529   cout << Form("Note that LowestPadCharge is then %7.2f fC",LowestPadCharge()) << endl;
530   
531   if (TryRecover())
532   {
533     cout << "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!" << endl;
534     cout << "!!! WILL TRY TO RECOVER CORRUPTED RAW DATA !!!" << endl;
535     cout << "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!" << endl;    
536   }
537   cout<<"\t-----------------------------------------------------"<<endl<<endl;
538   
539 }
540
541 //_____________________________________________________________________________
542 void
543 AliMUONRecoParam::SetHVLimit(Int_t chamberId, Double_t value)
544 {
545   /// Set the HV limit for a given chamber (or all chambers 
546   /// if chamberId==-1
547   
548   if ( chamberId == -1 ) 
549   {
550     for ( Int_t i = 0; i < 10; ++i ) 
551     {
552       fHVLimit[i] = value;
553     }
554   }
555   else if ( chamberId >= 0 && chamberId < 10 ) 
556   {
557     fHVLimit[chamberId]=value;
558   }
559   else
560   {
561     AliError(Form("chamberId = %d is not a valid chamberId",chamberId));
562   }
563 }
564
565 //_____________________________________________________________________________
566 Double_t AliMUONRecoParam::HVLimit(Int_t chamberId) const
567 {
568   /// Get the HV limit for a given chamber
569   if ( chamberId >= 0 && chamberId < 10 )
570   {
571     return fHVLimit[chamberId];
572   }
573   AliError(Form("chamberId = %d is not a valid chamberId",chamberId));
574
575   return 0.0;
576 }
577
578 //_____________________________________________________________________________
579 void
580 AliMUONRecoParam::SetDefaultLimits()
581 {
582         /// Set the default limits and pad goodness policy
583
584   fHVSt12Limits[0]=1500; // kept for backward compatibility only
585         fHVSt12Limits[1]=2000; // kept for backward compatibility only
586         fHVSt345Limits[0]=1500; // kept for backward compatibility only
587         fHVSt345Limits[1]=2000; // kept for backward compatibility only
588   
589   SetHVLimit(-1,1600); // this one is the real HV limit used now
590   
591         fPedMeanLimits[0] = 20;
592         fPedMeanLimits[1] = 1024;
593         
594         fPedSigmaLimits[0] = 0.6;
595         fPedSigmaLimits[1] = 100;
596
597         fGainA1Limits[0] = 0.1;
598         fGainA1Limits[1] = 10;
599
600         fGainA2Limits[0] = -1E30;
601         fGainA2Limits[1] = 1E30;
602         
603         fGainThresLimits[0] = 0;
604         fGainThresLimits[1] = 4095;
605         
606         fPadGoodnessMask = 0x8080; // Ped is missing | HV is missing
607
608   fManuOccupancyLimits[0] = -1.0; 
609   fManuOccupancyLimits[1] = 1.0;
610
611   fBuspatchOccupancyLimits[0] = 1E-6; 
612   fBuspatchOccupancyLimits[1] = 1.0;
613
614   fDEOccupancyLimits[0] = -1.0; 
615   fDEOccupancyLimits[1] = 1.0;
616
617   fMissingPadFractionLimit = -1; // DEPRECATED
618   fFractionOfBuspatchOutsideOccupancyLimit = 0.05; // 5 % 
619
620   ChargeSigmaCut(4.0); // pad with charge < 4.0 x sigma will be removed (where sigma is the actual noise of that very pad, i.e. not the average)
621   
622   AverageNoisePadCharge(0.22875); // 0.22875 coulombs ~ 1.5 ADC channels
623
624   ClusterChargeCut(2.0); // will cut cluster below 2.0 x LowestPadCharge()
625   
626   SetEventSizeLimits(35.0,45.0);
627   
628   SetTokenLostLimit(0.0);
629   
630   fTryRecover = kFALSE;
631 }
632
633
634 //-----------------------------------------------------------------------
635 TObjArray* 
636 AliMUONRecoParam::Create(const char* settings)
637 {
638   /// Create pre-defined recoparam array, according to settings.
639   /// settings is case-insensitive.
640   ///
641   /// Currently defined are :
642   ///
643   /// "cosmics" :
644   ///      Cosmic (default)
645   ///      Calibration
646   /// "ppideal"
647   ///      LowFlux (default)
648   ///      Calibration
649   /// "ppreal"
650   ///      LowFlux (modified to reconstruct real p-p data)
651   ///      Calibration
652   /// "pprealsim"
653   ///      LowFlux (modified to reconstruct realistic p-p simulation)
654   ///      Calibration
655   
656   AliMUONRecoParam* param(0x0);
657   
658   AliRecoParam::EventSpecie_t defaultParam = AliRecoParam::kLowMult;
659   
660   TString stype(settings);
661   stype.ToLower();
662   
663   if ( stype == "cosmics" )
664   {
665     // set parameters for cosmic runs
666     param = AliMUONRecoParam::GetCosmicParam();
667     defaultParam = AliRecoParam::kCosmic;
668   }
669   else if ( stype == "ppideal" ) 
670   {
671     // set default lowFlux parameters
672     param = AliMUONRecoParam::GetLowFluxParam();
673   }
674   else if ( stype == "ppreal" || stype == "pprealsim" || stype == "pprealnofield" ) 
675   {      
676     // common parameters for p-p data and realistic p-p simu
677     param = AliMUONRecoParam::GetLowFluxParam();
678     param->SaveFullClusterInESD(kTRUE, 100.);
679     for (Int_t iCh=0; iCh<10; iCh++) 
680     {
681       param->SetDefaultNonBendingReso(iCh,0.4);
682       param->SetDefaultBendingReso(iCh,0.4);
683     }
684     param->SetSigmaCutForTracking(7.);
685     param->SetStripCutForTrigger(1.5);
686     param->SetSigmaCutForTrigger(6.);
687     param->ImproveTracks(kTRUE, 6.);
688     param->SetPedMeanLimits(20, 700);
689     param->SetManuOccupancyLimits(-1.,0.01);
690     param->SetBuspatchOccupancyLimits(-1.,0.01);  
691     param->SetFractionOfBuspatchOutsideOccupancyLimit(0.05); // 5 %
692     param->SetEventSizeLimits(45., 65.);
693     
694     // specific parameters for p-p data or realistic p-p simu
695     if ( stype == "ppreal" || stype == "pprealnofield" )
696     {
697       param->SetPadGoodnessMask(0x400BE9B);
698     }
699     else
700     {
701       param->SetPadGoodnessMask(0x8080);      
702     }
703     
704     if ( stype == "pprealnofield" )
705     {
706       param->TryRecover(kTRUE);
707     }
708   }
709   else if ( stype == "pbpbreal" || stype == "pbpbrealsim" ) 
710   {      
711     // common parameters for Pb-Pb data and realistic Pb-Pb simu
712     param = AliMUONRecoParam::GetHighFluxParam();
713     defaultParam = AliRecoParam::kHighMult;
714     param->SaveFullClusterInESD(kTRUE, 100.);
715     for (Int_t iCh=0; iCh<10; iCh++) 
716     {
717       param->SetDefaultNonBendingReso(iCh,0.2);
718       param->SetDefaultBendingReso(iCh,0.2);
719     }
720     param->SetSigmaCutForTracking(5.);
721     param->SetStripCutForTrigger(1.5);
722     param->SetSigmaCutForTrigger(4.);
723     param->ImproveTracks(kTRUE, 4.);
724     param->SetPedMeanLimits(20, 700);
725     param->SetManuOccupancyLimits(-1.,0.01);
726     param->SetBuspatchOccupancyLimits(-1.,0.01);  
727     param->SetFractionOfBuspatchOutsideOccupancyLimit(0.05); // 5 %
728     param->SetEventSizeLimits(100., 150.);
729     
730     // specific parameters for Pb-Pb data or realistic Pb-Pb simu
731     if ( stype == "pbpbreal" )
732     {
733       param->SetPadGoodnessMask(0x400BE9B);
734     }
735     else
736     {
737       param->SetPadGoodnessMask(0x8080);      
738     }
739   }
740   else
741   {
742     AliErrorClass("Unknown settings !");
743     return 0x0;
744   }
745
746   TObjArray* recoParams = new TObjArray;
747
748   recoParams->AddLast(param);
749   
750   // set (dummy) parameters for calibration runs
751   param = AliMUONRecoParam::GetCalibrationParam();
752   recoParams->AddLast(param);
753   
754   // set parameters for Pb-Pb runs
755   // param = AliMUONRecoParam::GetHighFluxParam();
756   // recoParams.AddLast(param);
757   
758   // identify default parameters (exit if identification failed)
759   Bool_t defaultIsSet = kFALSE;
760   TIter next(recoParams);
761   while ( (param = static_cast<AliMUONRecoParam*>(next())) ) 
762   {
763     if (param->GetEventSpecie() == defaultParam) 
764     {
765       param->SetAsDefault();
766       defaultIsSet = kTRUE;
767     }
768     param->Print("FULL");
769   }
770   
771   if (!defaultIsSet) 
772   {
773     AliErrorClass("The default reconstruction parameters are not set! Exiting...");
774     return 0x0;
775   }  
776   
777   return recoParams;
778 }
779
780 //______________________________________________________________________________
781 void 
782 AliMUONRecoParam::Show(Int_t runNumber, const char* ocdb)
783 {
784   /// Show what we have in the designated OCDB for that run, as far as RecoParams are concerned
785   
786   AliCDBManager::Instance()->SetDefaultStorage(ocdb);
787   AliCDBManager::Instance()->SetRun(runNumber);
788   
789   AliCDBEntry* entry = AliCDBManager::Instance()->Get("MUON/Calib/RecoParam");
790   
791   if (!entry) return;
792   
793   TObject* o = entry->GetObject();
794   
795   if ( o->IsA() == TObjArray::Class() ) 
796   {
797     TObjArray* array = static_cast<TObjArray*>(o);
798     for ( Int_t i = 0; i <= array->GetLast(); ++i ) 
799     {
800       AliDetectorRecoParam* p = static_cast<AliDetectorRecoParam*>(array->At(i));
801       cout << Form("array[%d]=%s %s %s",i,
802                    p ? p->ClassName() : "",
803                    p ? AliRecoParam::GetEventSpecieName(AliRecoParam::Convert(p->GetEventSpecie())) :"",
804                    p ? ( p->IsDefault() ? "default" : "") : "" ) << endl;
805     }
806     cout << "=========== dumps below ====== " << endl;
807     
808     for ( Int_t i = 0; i <= array->GetLast(); ++i ) 
809     {
810       AliDetectorRecoParam* p = static_cast<AliDetectorRecoParam*>(array->At(i));
811       if ( p ) p->Print("");
812     }
813   }
814   else
815   {
816     o->Print();
817   }
818 }