]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MUON/AliMUONCheck.cxx
added mono-cathods removal in real Pb-Pb settings
[u/mrichter/AliRoot.git] / MUON / AliMUONCheck.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 // $Id$
17
18 //-----------------------------------------------------------------------------
19 /// \class AliMUONCheck
20 ///
21 /// This class check the ESD tree, providing the matching with the trigger
22 /// response and designing useful plots (Pt, Y, ITS vertex, multiplicity).
23 ///  Note that there is a special flag to turn on for pdc06 production. 
24 /// It also checks the TR tree giving hit densities on the two first and 
25 /// last planes of the spectrometer as well as the time of flight on these planes.
26 /// MUONkine() provides event stack and check if the event are generated with 
27 /// at least one muon and two muons (for PDC06).
28 /// DumpDigit() as a replacement of the function from MUONCheck.C macro.
29 ///
30 /// \author Frederic Yermia, INFN Torino
31 //-----------------------------------------------------------------------------
32
33 #include "AliMUONCheck.h"
34 #include "AliMUONConstants.h"
35 #include "AliMUONMCDataInterface.h"
36 #include "AliMUONDataInterface.h"
37 #include "AliMpCDB.h"
38 #include "AliMpSegmentation.h"
39 #include "AliMpVSegmentation.h"
40 #include "AliMpDEManager.h"
41 #include "AliMpCDB.h"
42 #include "AliMUONVDigitStore.h"
43
44 #include "AliRunLoader.h"
45 #include "AliLoader.h"
46 #include "AliStack.h"
47 #include "AliTrackReference.h"
48 #include "AliTracker.h"
49 #include "AliESDEvent.h"
50 #include "AliESDMuonTrack.h"
51 #include "AliESDVertex.h"
52 #include "AliMagF.h"
53 #include "AliLog.h"
54
55 #include <TSystem.h>
56 #include <TCanvas.h>
57 #include <TLorentzVector.h>
58 #include <TFile.h>
59 #include <TH1.h>
60 #include <TParticle.h>
61
62 /// \cond CLASSIMP
63 ClassImp(AliMUONCheck)
64 /// \endcond
65
66 //_____________________________________________________________________________
67 const TString& AliMUONCheck::GetDefaultOutFileName()
68 {
69   /// Default output file name 
70   static const TString kDefaultOutFileName = "output.txt";
71   return kDefaultOutFileName;
72 }  
73
74 //_____________________________________________________________________________
75 AliMUONCheck::AliMUONCheck(const char* galiceFile, const char* esdFile,Int_t firstEvent, Int_t lastEvent,const char* outDir) 
76 : TObject(),
77 fFileName(galiceFile),
78 fFileNameSim(),
79 fesdFileName(esdFile),
80 fkOutDir(outDir),
81 fOutFileName(GetDefaultOutFileName()),
82 fFirstEvent(firstEvent),
83 fLastEvent(lastEvent)
84 {
85   /// ctor  
86 }
87
88 //_____________________________________________________________________________
89 AliMUONCheck::AliMUONCheck(const char* galiceFile, const char* galiceFileSim,
90                            const char* esdFile,Int_t firstEvent, Int_t lastEvent,
91                            const char* outDir) 
92 : TObject(),
93 fFileName(galiceFile),
94 fFileNameSim(galiceFileSim),
95 fesdFileName(esdFile),
96 fkOutDir(outDir),
97 fOutFileName(GetDefaultOutFileName()),
98 fFirstEvent(firstEvent),
99 fLastEvent(lastEvent)
100 {
101   /// ctor
102 }
103
104 //_____________________________________________________________________________
105 AliMUONCheck::~AliMUONCheck()
106 {
107   /// Destructor
108 }
109
110 //_____________________________________________________________________________
111 void
112 AliMUONCheck::CheckESD(Bool_t pdc06TriggerResponse) 
113 {
114   /// Check ESD files
115   
116   // Histograms
117   TH1F * fhMUONVertex ; //! 
118   TH1F * fhMUONMult   ; //!
119   
120   // create histograms 
121   fhMUONVertex = new TH1F("hMUONVertex","ITS Vertex"                ,100, -25., 25.);
122   fhMUONMult   = new TH1F("hMUONMult"  ,"Multiplicity of ESD tracks",10,  -0.5, 9.5);
123   
124   TH1F *hY = new TH1F("hY","Rapidity",100,-5.,-1.);
125   TH1F *hPt = new TH1F("hPt","Pt",100, 0.,20.);
126   
127   // ------------->open the ESD file
128   TFile* esdFile = TFile::Open(fesdFileName.Data());
129   
130   if (!esdFile || !esdFile->IsOpen()) 
131   {
132     AliError(Form("Error opening %s file \n",fesdFileName.Data()));
133     return;
134   }
135   
136   Int_t fSPLowpt=0     ; //!
137   Int_t fSPHighpt=0    ; //!
138   Int_t fSPAllpt=0     ; //!
139   Int_t fSMLowpt=0     ; //!
140   Int_t fSMHighpt =0   ; //!
141   Int_t fSMAllpt=0     ; //!
142   Int_t fSULowpt=0     ; //!
143   Int_t fSUHighpt=0    ; //!
144   Int_t fSUAllpt=0     ; //!
145   Int_t fUSLowpt=0     ; //!
146   Int_t fUSHighpt=0    ; //!
147   Int_t fUSAllpt=0     ; //! 
148   Int_t fLSLowpt=0     ; //!
149   Int_t fLSHighpt=0    ; //! 
150   Int_t fLSAllpt=0     ; //!
151   
152   Int_t fSLowpt=0      ; //!
153   Int_t fSHighpt=0     ; //!
154   
155   Int_t fnTrackTrig=0  ; //!
156   Int_t ftracktot=0    ; //!
157   Int_t effMatch=0     ; //!
158   
159   TLorentzVector fV1;
160   Float_t muonMass = 0.105658389;
161   Double_t thetaX, thetaY, pYZ;
162   Double_t fPxRec1, fPyRec1, fPzRec1, fE1;
163   
164   AliESDEvent* fESD = new AliESDEvent();
165   TTree* tree = (TTree*) esdFile->Get("esdTree");
166   if (!tree) 
167   {
168     Error("CheckESD", "no ESD tree found");
169     AliError(Form("no ESD tree found"));
170     return ;
171   }
172   fESD->ReadFromTree(tree);
173   
174   Int_t fnevents = tree->GetEntries();
175   Int_t endOfLoop = fLastEvent+1;
176   
177   if ( fLastEvent == -1 ) endOfLoop = fnevents;
178   Int_t ievent=0;
179   Int_t nev=0;
180   
181   for (ievent = fFirstEvent; ievent < endOfLoop; ++ievent ) 
182   {
183     nev++;    
184     if (tree->GetEvent(ievent) <= 0) 
185     {
186       Error("CheckESD", "no ESD object found for event %d", ievent);
187       return ;
188     }
189     AliESDVertex* vertex = (AliESDVertex*) fESD->GetVertex();
190     
191     Double_t zVertex = 0. ;
192     if (vertex) zVertex = vertex->GetZ();
193     
194     Int_t nTracks = (Int_t)fESD->GetNumberOfMuonTracks() ;
195     ULong64_t trigword=fESD->GetTriggerMask();
196     
197     if(pdc06TriggerResponse)
198     {
199       if (trigword & 0x01) {
200         fSPLowpt++;
201       }
202       
203       if (trigword & 0x02){
204         fSPHighpt++;
205       }
206       if (trigword & 0x04){
207         fSPAllpt++;
208       } 
209       if (trigword & 0x08){
210         fSMLowpt++;
211       }  
212       if (trigword & 0x010){
213         fSMHighpt++;
214       }
215       if (trigword & 0x020){
216         fSMAllpt++;
217       } 
218       if (trigword & 0x040){
219         fSULowpt++;
220       }  
221       if (trigword & 0x080){
222         fSUHighpt++;
223       }   
224       if (trigword & 0x100){
225         fSUAllpt++;
226       }  
227       if (trigword & 0x200){
228         fUSLowpt++;
229       }
230       
231       if (trigword & 0x400){
232         fUSHighpt++;
233       }
234       if (trigword & 0x800){
235         fUSAllpt++;
236       }
237       if (trigword & 0x1000){
238         fLSLowpt++;
239       }
240       
241       if (trigword & 0x2000){
242         fLSHighpt++;
243       }
244       
245       if (trigword & 0x4000){
246         fLSAllpt++;
247       }
248     }// if pdc06TriggerResponse
249     else {
250       if (trigword & 0x01) {
251         fSLowpt++;
252       }
253       
254       if (trigword & 0x02){
255         fSHighpt++;
256       }
257       if (trigword & 0x04){
258         fLSLowpt++;
259       } 
260       if (trigword & 0x08){
261         fLSHighpt++;
262       }  
263       if (trigword & 0x010){
264         fUSLowpt++;
265       }
266       if (trigword & 0x020){
267         fUSHighpt++;
268       }
269     }
270     
271     Int_t tracktrig=0;
272     
273     for ( Int_t iTrack1 = 0; iTrack1<nTracks; ++iTrack1 ) 
274     { //1st loop
275       AliESDMuonTrack* muonTrack = fESD->GetMuonTrack(iTrack1);
276       
277       // skip fake tracks (ghosts)
278       if (!muonTrack->ContainTrackerData()) continue;
279       
280       ftracktot++;
281       
282       thetaX = muonTrack->GetThetaX();
283       thetaY = muonTrack->GetThetaY();
284       pYZ     =  1./TMath::Abs(muonTrack->GetInverseBendingMomentum());
285       
286       fPzRec1  = - pYZ / TMath::Sqrt(1.0 + TMath::Tan(thetaY)*TMath::Tan(thetaY));
287       fPxRec1  = fPzRec1 * TMath::Tan(thetaX);
288       fPyRec1  = fPzRec1 * TMath::Tan(thetaY);
289       fE1 = TMath::Sqrt(muonMass * muonMass + fPxRec1 * fPxRec1 + fPyRec1 * fPyRec1 + fPzRec1 * fPzRec1);
290       fV1.SetPxPyPzE(fPxRec1, fPyRec1, fPzRec1, fE1);
291       // -----------> transverse momentum
292       Float_t pt1 = fV1.Pt();
293       // ----------->Rapidity
294       Float_t y1 = fV1.Rapidity();
295       
296       if(muonTrack->GetMatchTrigger()) 
297       {
298         fnTrackTrig++;
299         tracktrig++;
300       }
301       hY->Fill(y1);
302       hPt->Fill(pt1);
303     } // loop on track
304     
305     fhMUONVertex->Fill(zVertex) ;
306     fhMUONMult->Fill(Float_t(nTracks)) ;
307     
308   } // loop over events
309   
310   AliInfo(Form("Terminate %s:", GetName())) ;
311   
312   effMatch=100*fnTrackTrig/ftracktot;
313   
314   if(pdc06TriggerResponse)
315   {
316     printf("=================================================================\n") ;
317     printf("================  %s ESD SUMMARY    ==============\n", GetName()) ;
318     printf("                                                   \n") ;
319     printf("         Total number of processed events  %d      \n", nev) ;
320     printf("\n")  ;
321     printf("\n")  ;
322     printf("Table 1:                                         \n") ;
323     printf(" Global Trigger output       Low pt  High pt   All\n") ;
324     printf(" number of Single Plus      :\t");
325     printf("%i\t%i\t%i\t", fSPLowpt, fSPHighpt, fSPAllpt) ;
326     printf("\n");
327     printf(" number of Single Minus     :\t");
328     printf("%i\t%i\t%i\t", fSMLowpt, fSMHighpt, fSMAllpt) ;
329     printf("\n");
330     printf(" number of Single Undefined :\t"); 
331     printf("%i\t%i\t%i\t", fSULowpt, fSUHighpt, fSUAllpt) ;
332     printf("\n");
333     printf(" number of UnlikeSign pair  :\t"); 
334     printf("%i\t%i\t%i\t", fUSLowpt, fUSHighpt, fUSAllpt) ;
335     printf("\n");
336     printf(" number of LikeSign pair    :\t");  
337     printf("%i\t%i\t%i\t", fLSLowpt, fLSHighpt, fLSAllpt) ;
338     printf("\n");
339     printf("===================================================\n") ;
340     printf("\n") ;
341     printf("matching efficiency with the trigger for single tracks = %2d %% \n", effMatch);
342     printf("================================================================\n") ;  printf("\n") ;
343     
344   }//if(pdc06TriggerResponse)
345   
346   gSystem->cd(fkOutDir);
347   
348   FILE *outtxt=fopen(fOutFileName.Data(),"a");
349   
350   if(pdc06TriggerResponse){
351     fprintf(outtxt,"                                                   \n");
352     fprintf(outtxt,"===================================================\n");
353     fprintf(outtxt,"================      ESD SUMMARY    ==============\n");
354     fprintf(outtxt,"                                                   \n");
355     fprintf(outtxt,"    Total number of processed events  %d      \n", nev); 
356     fprintf(outtxt,"\n");
357     fprintf(outtxt,"\n");
358     fprintf(outtxt,"Table 1:                                         \n");
359     fprintf(outtxt," Global Trigger output       Low pt  High pt   All\n");
360     fprintf(outtxt," number of Single Plus      :\t");
361     fprintf(outtxt,"%i\t%i\t%i\t",fSPLowpt,fSPHighpt,fSPAllpt);
362     fprintf(outtxt,"\n");
363     fprintf(outtxt," number of Single Minus     :\t");
364     fprintf(outtxt,"%i\t%i\t%i\t",fSMLowpt,fSMHighpt,fSMAllpt);
365     fprintf(outtxt,"\n");
366     fprintf(outtxt," number of Single Undefined :\t"); 
367     fprintf(outtxt,"%i\t%i\t%i\t",fSULowpt,fSUHighpt,fSUAllpt);
368     fprintf(outtxt,"\n");
369     fprintf(outtxt," number of UnlikeSign pair  :\t"); 
370     fprintf(outtxt,"%i\t%i\t%i\t",fUSLowpt,fUSHighpt,fUSAllpt);
371     fprintf(outtxt,"\n");
372     fprintf(outtxt," number of LikeSign pair    :\t");  
373     fprintf(outtxt,"%i\t%i\t%i\t",fLSLowpt,fLSHighpt, fLSAllpt);
374     fprintf(outtxt,"\n");
375     fprintf(outtxt,"===================================================\n");
376     fprintf(outtxt,"\n");
377     fprintf(outtxt,"matching efficiency with the trigger for single tracks = %2d %% \n", effMatch);
378   }//if(pdc06TriggerResponse)
379   
380   else {
381     
382     fprintf(outtxt,"                                                   \n");
383     fprintf(outtxt,"===================================================\n");
384     fprintf(outtxt,"================      ESD SUMMARY    ==============\n");
385     fprintf(outtxt,"                                                   \n");
386     fprintf(outtxt,"    Total number of processed events  %d      \n", nev); 
387     fprintf(outtxt,"\n");
388     fprintf(outtxt,"\n");
389     fprintf(outtxt,"Table 1:                                         \n");
390     fprintf(outtxt," Global Trigger output       Low pt  High pt     \n");
391     fprintf(outtxt," number of Single       :\t");
392     fprintf(outtxt,"%i\t%i\t",fSLowpt,fSHighpt);
393     fprintf(outtxt,"\n");
394     fprintf(outtxt," number of UnlikeSign pair :\t"); 
395     fprintf(outtxt,"%i\t%i\t",fUSLowpt,fUSHighpt);
396     fprintf(outtxt,"\n");
397     fprintf(outtxt," number of LikeSign pair    :\t");  
398     fprintf(outtxt,"%i\t%i\t",fLSLowpt,fLSHighpt);
399     fprintf(outtxt,"\n");
400     fprintf(outtxt,"===================================================\n");
401     fprintf(outtxt,"\n");
402     fprintf(outtxt,"matching efficiency with the trigger for single tracks = %2d %% \n", effMatch);
403   }//else
404   fclose(outtxt);
405   
406   TCanvas * c1 = new TCanvas("c1", "ESD", 400, 10, 600, 700) ;
407   c1->Divide(1,2) ;
408   c1->cd(1) ;
409   fhMUONVertex->Draw() ;
410   c1->cd(2) ;
411   fhMUONMult->Draw() ;  
412   c1->Print("VertexAndMul.eps") ; 
413   TCanvas *c2 = new TCanvas("c2","ESD",400,10,600,700);
414   c2->Divide(1,2);
415   c2->cd(1);
416   hY->Draw();
417   c2->cd(2);
418   hPt->Draw();
419   c2->Print("YandPt.eps") ; 
420 }
421
422 //_____________________________________________________________________________
423 void
424 AliMUONCheck::CheckKine() 
425 {
426   /// Check Stack 
427   
428   AliMUONMCDataInterface diSim(fFileNameSim.Data());
429   if (!diSim.IsValid()) return;
430   
431   Int_t fnevents = diSim.NumberOfEvents();
432   
433   Int_t endOfLoop = fLastEvent+1;
434   
435   if ( fLastEvent == -1 ) endOfLoop = fnevents;
436   
437   Int_t nev=0;
438   Int_t nmu=0;
439   Int_t nonemu=0;
440   Int_t ndimu=0;
441   
442   for ( Int_t ievent = fFirstEvent; ievent < endOfLoop; ++ievent ) 
443   {
444     Int_t nmu2=0;
445     ++nev;  
446     
447     AliStack* stack = diSim.Stack(ievent);
448     Int_t npa = stack->GetNprimary();
449     Int_t npb = stack->GetNtrack(); 
450     printf("Primary particles  %i   \n",npa); 
451     printf("Sec particles  %i   \n",npb); 
452     printf("=================================================================\n") ;
453     printf("Primary particles listing:  \n"); 
454     printf("=================================================================\n") ;
455     for (Int_t i=0; i<npa; ++i) 
456     {
457       TParticle *p  = stack->Particle(i);
458       p->Print("");
459       Int_t pdg=p->GetPdgCode(); 
460       
461       if (TMath::Abs(pdg) == 13)
462       {
463         ++nmu2;
464       }
465     }
466     printf("=================================================================\n") ;
467     printf("=================================================================\n") ;
468     
469     printf("Secondaries particles listing:  \n"); 
470     printf("=================================================================\n") ;
471     for (Int_t i=npa; i<npb; ++i) 
472     {
473       stack->Particle(i)->Print("");
474     }
475     
476     printf("=================================================================\n") ; 
477     printf(">>> Event %d, Number of primary particles is %d \n",ievent, npa); 
478     printf(">>> Event %d, Number of secondary articles is %d \n",ievent, npb-npa); 
479     printf("=================================================================\n");
480     if(nmu2>0)
481     {
482       printf(">>> Okay!!! Event %d with at least one muon on primary stack! \n",ievent); 
483       ++nonemu;
484     }
485     
486     if(nmu2==0)
487     {
488       printf(">>> Warning!!! Event %d without muon on primary stack! \n",ievent);     
489       ++nmu;
490     }
491     
492     if(nmu2>1)
493     {
494       printf(">>> Okay!!! Event %d with at least two muons on primary stack! \n",ievent); 
495       ++ndimu; 
496     }
497     printf("=================================================================\n");  
498     printf("                                                                  \n");
499     printf("                                                                  \n") ;
500   }//ievent
501   
502   printf("=================================================================\n") ;
503   printf("               Total number of processed events  %d               \n", nev) ;
504   printf("                                                                 \n") ;
505   
506   if(nmu>0)
507   {
508     printf("--->                       WARNING!!!                       <---\n"); 
509     printf(" %i events without muon on primary stack \n",nmu); 
510   }
511   
512   if(nmu==0)
513   {
514     printf("--->                          OKAY!!!                        <---\n"); 
515     printf("  %i events generated with at least one muon on primary stack \n",nonemu);
516   }
517   
518   if(ndimu>0)
519   {
520     printf("--->                          OKAY!!!                        <---\n"); 
521     printf("  %i events generated with at least two muons on primary stack \n",ndimu); 
522   }
523   
524   printf("                                                                 \n") ;
525   printf("***                       Leaving MuonKine()                 *** \n");
526   printf("**************************************************************** \n");
527   
528   gSystem->cd(fkOutDir);
529   FILE *outtxt=fopen(fOutFileName.Data(),"a");
530   fprintf(outtxt,"                                                   \n");
531   fprintf(outtxt,"=================================================================\n");
532   fprintf(outtxt,"================         MUONkine SUMMARY        ================\n");
533   fprintf(outtxt,"\n");
534   fprintf(outtxt,"=================================================================\n");
535   fprintf(outtxt,"               Total number of processed events  %d              \n", nev) ;
536   fprintf(outtxt,"                                                                 \n");
537   
538   if(nmu>0)
539   {
540     fprintf(outtxt,"                        ---> WARNING!!! <---                     \n"); 
541     fprintf(outtxt,"  %i events without muon on primary stack \n",nmu); 
542   }
543   
544   if(nmu==0)
545   {
546     fprintf(outtxt,"                         ---> OKAY!!! <---                       \n"); 
547     fprintf(outtxt,"  %i events generated with at least one muon on primary stack \n",nonemu); 
548   }
549   
550   if(ndimu>0)
551   {
552     fprintf(outtxt,"                         ---> OKAY!!! <---                       \n"); 
553     fprintf(outtxt,"  %i events generated with at least two muons on primary stack \n",ndimu); 
554   }
555   
556   fprintf(outtxt,"                                                                 \n") ;
557   fprintf(outtxt,"***                       Leaving MuonKine()                 *** \n");
558   fprintf(outtxt,"**************************************************************** \n");
559   fclose(outtxt);
560 }
561
562 //_____________________________________________________________________________
563 void
564 AliMUONCheck::CheckTrackRef() 
565 {
566   /// Check TrackRef files
567   
568   AliMUONMCDataInterface diSim(fFileNameSim.Data());
569   if ( !diSim.IsValid() ) return;
570   
571   Int_t flag11=0,flag12=0,flag13=0,flag14=0;
572   
573   TH1F *tof01= new TH1F("tof01","TOF for first tracking plane",100,0.,100);
574   tof01->SetXTitle("tof (ns)");
575   TH1F *tof14= new TH1F("tof14","TOF for MT22",100,0.,100);
576   tof14->SetXTitle("tof (ns)");
577   
578   TH1F   *hitDensity[4];
579   hitDensity[0] =  new TH1F("TR_dhits01","",30,0,300);
580   hitDensity[0]->SetFillColor(3);
581   hitDensity[0]->SetXTitle("R (cm)");
582   hitDensity[1] =  new TH1F("TR_dhits10","",30,0,300);
583   hitDensity[1]->SetFillColor(3);
584   hitDensity[1]->SetXTitle("R (cm)");
585   hitDensity[2] =  new TH1F("TR_dhits11","",30,0,300);
586   hitDensity[2]->SetFillColor(3);
587   hitDensity[2]->SetXTitle("R (cm)");
588   hitDensity[3] =  new TH1F("TR_dhits14","",30,0,300);
589   hitDensity[3]->SetFillColor(3);
590   hitDensity[3]->SetXTitle("R (cm)");
591   
592   Int_t fnevents = diSim.NumberOfEvents();
593   
594   Int_t endOfLoop = fLastEvent+1;
595   
596   if ( fLastEvent == -1 ) endOfLoop = fnevents;
597   
598   Int_t nev=0;
599   Int_t ntot=fLastEvent+1-fFirstEvent;
600   
601   for ( Int_t ievent = fFirstEvent; ievent < endOfLoop; ++ievent ) 
602   {
603     Int_t  save=-99;
604     ++nev;  
605     
606     Int_t nentries = diSim.NumberOfTrackRefs(ievent);
607     
608     for ( Int_t l=0; l<nentries; ++l )
609     {
610       TClonesArray* trackRefs = diSim.TrackRefs(ievent,l);
611       if (!trackRefs) continue;
612       
613       Int_t nnn = trackRefs->GetEntriesFast();
614       
615       for ( Int_t k=0; k<nnn; ++k ) 
616       {
617         AliTrackReference *tref = static_cast<AliTrackReference*>(trackRefs->UncheckedAt(k));
618         Int_t label = tref->GetTrack();
619         Float_t x     =    tref->X();        // x-pos of hit
620         Float_t y     =    tref->Y();        // y-pos
621         Float_t z     = tref->Z();
622         
623         Float_t r=TMath::Sqrt(x*x+y*y);
624         Float_t time =    tref->GetTime();  
625         
626         Float_t wgt=1/(2*10*TMath::Pi()*r)/(ntot);
627         
628         if (save!=label){
629           save=label;
630           flag11=0;
631           flag12=0;
632           flag13=0;
633           flag14=0;
634         }
635         
636         if (save==label){
637           
638           //Ch 1, z=-526.16
639           if (z<=-521&& z>=-531&&flag11==0){
640             flag11=1;
641             hitDensity[0]->Fill(r,wgt);
642             tof01->Fill(1000000000*time,1);
643           };
644           
645           //Ch 10, z=-1437.6
646           if (z<=-1432&&z>=-1442&&flag12==0){
647             flag12=1;
648             hitDensity[1]->Fill(r,wgt);
649           }
650           
651           //Ch 11, z=-1603.5
652           if (z<=-1598&& z>=-1608&&flag13==0){
653             flag13=1;
654             hitDensity[2]->Fill(r,wgt);
655           };
656           
657           //ch 14 z=-1720.5    
658           if(z<=-1715&&z>=-1725&&flag14==0){
659             flag14=1;
660             hitDensity[3]->Fill(r,wgt);
661             tof14->Fill(1000000000*time,1);
662           }; 
663           
664         }//if save==label
665         
666       }//hits de tTR
667       
668     }//entree de tTR 
669     
670   }//evt loop
671   
672   gSystem->cd(fkOutDir);
673   TCanvas *c6 = new TCanvas("c6","TOF",400,10,600,700);
674   c6->Divide(1,2);
675   c6->cd(1);
676   
677   tof01->Draw();
678   c6->cd(2);
679   tof14->Draw();
680   c6->Print("tof_on_trigger.ps");
681   
682   TCanvas *c5 = new TCanvas("c5","TRef:Hits Density",400,10,600,700);
683   c5->Divide(2,2);
684   c5->cd(1);
685   hitDensity[0]->Draw();
686   c5->cd(2);
687   hitDensity[1]->Draw();
688   c5->cd(3);
689   hitDensity[2]->Draw();
690   c5->cd(4);
691   hitDensity[3]->Draw();
692   c5->Print("TR_Hit_densities.ps");
693   printf("=================================================================\n") ;
694   printf("================  %s Tref SUMMARY    ==============\n", GetName()) ;
695   printf("                                                   \n") ;
696   printf("         Total number of processed events  %d      \n", nev) ;
697   printf("***                Leaving TRef()               *** \n");
698   printf("*************************************************** \n");
699 }
700
701 //_____________________________________________________________________________
702 void 
703 AliMUONCheck::CheckOccupancy(Bool_t perDetEle) const
704 {
705   /// Check occupancy for the first event selected
706   
707   Int_t dEoccupancyBending[14][26];
708   Int_t dEoccupancyNonBending[14][26];
709   Int_t cHoccupancyBending[14];
710   Int_t cHoccupancyNonBending[14];
711   Int_t totaloccupancyBending =0;
712   Int_t totaloccupancyNonBending =0;
713   
714   Int_t dEchannelsBending[14][26];
715   Int_t dEchannelsNonBending[14][26];
716   Int_t cHchannelsBending[14];
717   Int_t cHchannelsNonBending[14];
718   Int_t totalchannelsBending =0;
719   Int_t totalchannelsNonBending =0;
720   
721   Int_t nchambers = AliMUONConstants::NCh();
722   
723   AliMUONDataInterface di(fFileNameSim);
724   
725   AliMUONVDigitStore* digitStore = di.DigitStore(fFirstEvent);
726   
727   // Compute values
728   for (Int_t ichamber=0; ichamber<nchambers; ++ichamber) 
729   {
730     cHchannelsBending[ichamber]=0;
731     cHchannelsNonBending[ichamber]=0;
732     cHoccupancyBending[ichamber]=0;
733     cHoccupancyNonBending[ichamber]=0;
734     
735     for (Int_t idetele=0; idetele<26; idetele++) 
736     {
737       Int_t detele = 100*(ichamber +1)+idetele;
738       
739       if ( AliMpDEManager::IsValidDetElemId(detele) ) 
740       {
741         Int_t cathode(0);
742         
743         const AliMpVSegmentation* segbend = AliMpSegmentation::Instance()
744         ->GetMpSegmentation(detele, AliMp::kCath0);
745         const AliMpVSegmentation* segnonbend = AliMpSegmentation::Instance()
746           ->GetMpSegmentation(detele, AliMp::kCath1);
747         
748         if (AliMpDEManager::GetPlaneType(detele, AliMp::kCath0) != AliMp::kBendingPlane ) 
749         {
750           const AliMpVSegmentation* tmp = segbend;
751           segbend    =  segnonbend;
752           segnonbend =  tmp;
753           cathode = 1;
754         }  
755         
756         Int_t nchannels = segbend->NofPads();
757         Int_t ndigits = digitStore->GetSize(detele,cathode);
758               dEchannelsBending[ichamber][idetele] = nchannels;
759         dEoccupancyBending[ichamber][idetele] = ndigits;
760               cHchannelsBending[ichamber] += nchannels;
761         cHoccupancyBending[ichamber] += ndigits;
762               totalchannelsBending += nchannels;
763         totaloccupancyBending += ndigits;
764         
765         nchannels = segnonbend->NofPads();
766         ndigits = digitStore->GetSize(detele,1-cathode);
767         
768               dEchannelsNonBending[ichamber][idetele] = nchannels;
769         dEoccupancyNonBending[ichamber][idetele] = ndigits;
770               cHchannelsNonBending[ichamber] += nchannels;
771               cHoccupancyNonBending[ichamber] += ndigits;
772               totalchannelsNonBending += nchannels;
773               totaloccupancyNonBending += ndigits;
774             }
775       if (perDetEle) 
776       {
777         printf(">>> Detection element %4d has %5d channels in bending and %5d channels in nonbending \n",
778                detele, dEchannelsBending[ichamber][idetele], dEchannelsNonBending[ichamber][idetele] ); 
779       }
780     }
781     printf(">>> Chamber %2d has %6d channels in bending and %6d channels in nonbending \n",
782            ichamber+1,  cHchannelsBending[ichamber], cHchannelsNonBending[ichamber]);
783   }
784   printf(">>Spectrometer has  %7d channels in bending and %7d channels in nonbending \n",
785          totalchannelsBending, totalchannelsNonBending);
786   
787   // Output values
788   
789   for ( Int_t ichamber = 0; ichamber < nchambers; ++ichamber ) 
790   {
791     printf(">>> Chamber %2d  nChannels Bending %5d  nChannels NonBending %5d \n", 
792          ichamber+1, 
793          cHoccupancyBending[ichamber],
794          cHoccupancyNonBending[ichamber]);  
795     if ( cHchannelsBending[ichamber] != 0 && cHchannelsBending[ichamber] ) {               
796       printf(">>> Chamber %2d  Occupancy Bending %5.2f %%  Occupancy NonBending %5.2f %% \n", 
797            ichamber+1, 
798            100.*((Float_t) cHoccupancyBending[ichamber])/((Float_t) cHchannelsBending[ichamber]),
799            100.*((Float_t) cHoccupancyNonBending[ichamber])/((Float_t) cHchannelsBending[ichamber]));
800     }
801   
802     if ( perDetEle )
803     {
804       for(Int_t idetele=0; idetele<26; idetele++) 
805       {
806         Int_t detele = idetele + 100*(ichamber+1);
807         if ( AliMpDEManager::IsValidDetElemId(detele) ) 
808         {
809           printf(">>> DetEle %4d nChannels Bending %5d  nChannels NonBending %5d \n", 
810                idetele+100*(ichamber+1), 
811                dEoccupancyBending[ichamber][idetele],
812                dEoccupancyNonBending[ichamber][idetele]);  
813                
814           if ( dEchannelsBending[ichamber][idetele] != 0 && dEchannelsBending[ichamber][idetele] !=0 ) {     
815             printf(">>> DetEle %4d Occupancy Bending %5.2f %%  Occupancy NonBending %5.2f %% \n", 
816                  idetele+100*(ichamber+1), 
817                  100.*((Float_t) dEoccupancyBending[ichamber][idetele])/((Float_t) dEchannelsBending[ichamber][idetele]),
818                  100.*((Float_t) dEoccupancyNonBending[ichamber][idetele])/((Float_t) dEchannelsBending[ichamber][idetele]));
819           }       
820         }
821       }
822     }
823   }
824
825   if ( totalchannelsBending != 0 && totalchannelsNonBending != 0 ) {
826     printf(">>> Muon Spectrometer  Occupancy Bending %5.2f %%  Occupancy NonBending %5.2f %% \n",  
827          100.*((Float_t) totaloccupancyBending)/((Float_t) totalchannelsBending),
828          100.*((Float_t) totaloccupancyNonBending)/((Float_t) totalchannelsNonBending));
829   }       
830 }
831
832 //_____________________________________________________________________________
833 void AliMUONCheck::SetEventsToCheck(Int_t firstEvent, Int_t lastEvent)
834 {
835   /// Set first and last event number to check
836   
837   fFirstEvent = firstEvent;
838   fLastEvent = lastEvent;
839 }