]> git.uio.no Git - u/mrichter/AliRoot.git/blob - HMPID/AliHMPIDQADataMakerSim.cxx
Fixing a bug with DCA
[u/mrichter/AliRoot.git] / HMPID / AliHMPIDQADataMakerSim.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 /* $Id$ */
18
19 // --- ROOT system ---
20 #include <TClonesArray.h>
21 #include <TFile.h> 
22 #include <TH1F.h> 
23 #include <TH2F.h>
24 #include <Riostream.h>
25 // --- Standard library ---
26
27 // --- AliRoot header files ---
28 #include "AliESDCaloCluster.h"
29 #include "AliESDEvent.h"
30 #include "AliQAChecker.h"
31 #include "AliLog.h"
32 #include "AliHMPIDDigit.h"
33 #include "AliHMPIDHit.h"
34 #include "AliHMPIDCluster.h"
35 #include "AliHMPIDQADataMakerSim.h"
36 #include "AliHMPIDParam.h"
37 #include "AliHMPIDRawStream.h"
38 #include "AliLog.h"
39
40 //.
41 // HMPID AliHMPIDQADataMakerSim base class
42 // for QA of simulation
43 // here also errors are calculated
44 //.
45
46 ClassImp(AliHMPIDQADataMakerSim)
47            
48 //____________________________________________________________________________ 
49   AliHMPIDQADataMakerSim::AliHMPIDQADataMakerSim() : 
50   AliQADataMakerSim(AliQAv1::GetDetName(AliQAv1::kHMPID), "HMPID Quality Assurance Data Maker"), fChannel(0)
51 {
52   // ctor
53 }
54
55 //____________________________________________________________________________ 
56 AliHMPIDQADataMakerSim::AliHMPIDQADataMakerSim(const AliHMPIDQADataMakerSim& qadm) :
57   AliQADataMakerSim(),fChannel(0)
58 {
59   //copy ctor 
60   SetName((const char*)qadm.GetName()) ; 
61   SetTitle((const char*)qadm.GetTitle()); 
62 }
63
64 //__________________________________________________________________
65 AliHMPIDQADataMakerSim& AliHMPIDQADataMakerSim::operator = (const AliHMPIDQADataMakerSim& qadm )
66 {
67   // Equal operator.
68   this->~AliHMPIDQADataMakerSim();
69   new(this) AliHMPIDQADataMakerSim(qadm);
70   return *this;
71 }
72  
73 //____________________________________________________________________________ 
74 void AliHMPIDQADataMakerSim::InitHits()
75 {
76   // create Hits histograms in Hits subdir
77   const Bool_t expert   = kTRUE ; 
78   const Bool_t image    = kTRUE ; 
79   
80   TH1F *hHitQdc=new TH1F("HitQdc","HMPID Hit Qdc all chamber;QDC;Entries",500,0,4000);
81   Add2HitsList(hHitQdc,0, !expert, image);
82   TH2F *hHitMap[7];
83   for(Int_t iCh=0;iCh<7;iCh++) {
84     hHitMap[iCh]=new TH2F(Form("HMPID HitMap%i",iCh),Form("Ch%i;x_{Hit};y_{Hit};Entries",iCh),162,-1,161,146,-1,145);   
85     Add2HitsList(hHitMap[iCh],iCh+1,expert,!image);
86   }
87   //
88   ClonePerTrigClass(AliQAv1::kHITS); // this should be the last line
89 }
90
91 //____________________________________________________________________________ 
92 void AliHMPIDQADataMakerSim::InitDigits()
93 {
94   // create Digits histograms in Digits subdir
95   const Bool_t expert   = kTRUE ; 
96   const Bool_t image    = kTRUE ; 
97   
98   TH1F *hDigChEvt = new TH1F("hDigChEvt","Chamber occupancy per event;Occupanc [%];Entries",AliHMPIDParam::kMaxCh+1,AliHMPIDParam::kMinCh,AliHMPIDParam::kMaxCh+1);
99   TH1F *hDigPcEvt = new TH1F("hDigPcEvt","PC occupancy",156,-1,77);
100   TH2F *hDigMap[7];
101   TH1F *hDigQ[42];
102   for(Int_t iCh =0; iCh < 7; iCh++){
103     hDigMap[iCh] = new TH2F(Form("MapCh%i",iCh),Form("Digit Map in Chamber %i;Digit #;Entries",iCh),159,0,159,143,0,143);
104     for(Int_t iPc =0; iPc < 6; iPc++ ){
105       hDigQ[iCh*6+iPc] = new TH1F(Form("QCh%iPc%i        ",iCh,iPc),Form("Charge of digits (ADC) in Chamber %i and PC %i;Charge;Entries",iCh,iPc),4100,0,4100);
106     }
107   }
108   
109   Add2DigitsList(hDigChEvt,0, !expert, image);
110   Add2DigitsList(hDigPcEvt,1,expert, !image);
111   for(Int_t iMap=0; iMap < 7; iMap++) Add2DigitsList(hDigMap[iMap],2+iMap,expert, !image);
112   for(Int_t iH =0; iH < 42 ; iH++) Add2DigitsList(hDigQ[iH]    ,9+iH,expert,!image);
113   //
114   ClonePerTrigClass(AliQAv1::kDIGITS); // this should be the last line
115 }
116
117 //____________________________________________________________________________ 
118 void AliHMPIDQADataMakerSim::InitSDigits()
119 {
120   // create SDigits histograms in SDigits subdir
121   const Bool_t expert   = kTRUE ; 
122   const Bool_t image    = kTRUE ; 
123
124   TH1F   *hSDigits     = new TH1F("hHmpidSDigits",    "SDigits Q  distribution in HMPID;QDC;Entries",  500, 0., 5000.) ; 
125   Add2SDigitsList(hSDigits,0, !expert, image);
126   //
127   ClonePerTrigClass(AliQAv1::kSDIGITS); // this should be the last line}
128 }
129
130 //____________________________________________________________________________ 
131
132 void AliHMPIDQADataMakerSim::MakeHits()
133 {
134  //
135  //filling QA histos for Hits
136  //
137   
138   TIter next(fHitsArray); 
139   AliHMPIDHit * hit ; 
140   while ( (hit = dynamic_cast<AliHMPIDHit *>(next())) ) {
141     if(hit->Pid()<500000) FillHitsData(0,hit->Q()) ;
142     if(hit->Pid()<500000) FillHitsData(hit->Ch()+1,hit->LorsX(),hit->LorsY());
143   }
144
145
146 //___________________________________________________________________________
147 void AliHMPIDQADataMakerSim::MakeHits(TTree * data)
148 {
149 //
150 //Opening of the Hit TTree 
151 //
152  if (fHitsArray) 
153    fHitsArray->Clear() ; 
154   else 
155     fHitsArray=new TClonesArray("AliHMPIDHit");  
156   data->SetBranchAddress("HMPID",&fHitsArray);
157   for(Int_t iEnt=0;iEnt<data->GetEntriesFast();iEnt++){//entries loop
158     data->GetEntry(iEnt);
159     MakeHits();
160   }//entries loop
161 }
162 //___________________________________________________________________________
163 void AliHMPIDQADataMakerSim::MakeDigits()
164 {
165   //
166   //filling QA histos for Digits
167   //
168    
169   Int_t i = fChannel ; 
170   FillDigitsData(0,i,fDigitsArray->GetEntriesFast()/(48.*80.*6.));
171   TIter next(fDigitsArray); 
172   AliHMPIDDigit * digit; 
173   while ( (digit = dynamic_cast<AliHMPIDDigit *>(next())) ) {
174     FillDigitsData(1,10.*i+digit->Pc(),1./(48.*80.));
175     FillDigitsData(2+i,digit->PadChX(),digit->PadChY());
176     FillDigitsData(9+i*6+digit->Pc(),digit->Q());
177   }  
178 }  
179 //___________________________________________________________________________
180 void AliHMPIDQADataMakerSim::MakeDigits(TTree * data)
181 {
182   //
183   //Opening the Digit Tree
184   //
185   
186   if(fDigitsArray) 
187     fDigitsArray->Clear() ; 
188   else
189     fDigitsArray=new TClonesArray("AliHMPIDDigit");
190   
191   for(Int_t iCh=AliHMPIDParam::kMinCh;iCh<=AliHMPIDParam::kMaxCh;iCh++){
192     fChannel = iCh ; 
193     data->SetBranchAddress(Form("HMPID%i",iCh),&fDigitsArray);
194     data->GetEntry(0);
195     MakeDigits();
196     fDigitsArray->Clear() ; 
197   }
198 }
199
200 //____________________________________________________________________________
201
202 void AliHMPIDQADataMakerSim::MakeSDigits()
203 {
204  //
205  //filling QA histos for SDigits
206  //
207  
208   TIter next(fSDigitsArray) ; 
209   AliHMPIDDigit * sdigit ; 
210   while ( (sdigit = dynamic_cast<AliHMPIDDigit *>(next())) ) {
211     FillSDigitsData(0,sdigit->Q());
212   } 
213 }
214 //___________________________________________________________________________
215 void AliHMPIDQADataMakerSim::MakeSDigits(TTree * data)
216 {
217  //
218  // Opening the SDigit Tree
219  //
220  if (fSDigitsArray)
221    fSDigitsArray->Clear() ; 
222   else 
223     fSDigitsArray = new TClonesArray("AliHMPIDDigit", 1000) ;
224
225   TBranch * branch = data->GetBranch("HMPID") ;
226   if ( ! branch ) {
227     AliError("HMPID SDigit Tree not found") ;
228     return;
229   }
230   branch->SetAddress(&fSDigitsArray) ;
231   branch->GetEntry(0) ;
232   MakeSDigits() ;
233 }
234 //____________________________________________________________________________
235 void AliHMPIDQADataMakerSim::StartOfDetectorCycle()
236 {
237   //Detector specific actions at start of cycle
238   
239 }
240
241 void AliHMPIDQADataMakerSim::EndOfDetectorCycle(AliQAv1::TASKINDEX_t task, TObjArray **obj)
242 {
243   //Detector specific actions at end of cycle
244   // do the QA checking
245   ResetEventTrigClasses(); // reset triggers list to select all histos
246   AliQAChecker::Instance()->Run(AliQAv1::kHMPID, task, obj) ;  
247 }
248