]> git.uio.no Git - u/mrichter/AliRoot.git/blob - HMPID/AliHMPIDQADataMakerSim.cxx
84a6d1221b5d2979c7a8cda73e4edf71558a638b
[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")
51 {
52   // ctor
53 }
54
55 //____________________________________________________________________________ 
56 AliHMPIDQADataMakerSim::AliHMPIDQADataMakerSim(const AliHMPIDQADataMakerSim& qadm) :
57   AliQADataMakerSim() 
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
89 //____________________________________________________________________________ 
90 void AliHMPIDQADataMakerSim::InitDigits()
91 {
92   // create Digits histograms in Digits subdir
93   const Bool_t expert   = kTRUE ; 
94   const Bool_t image    = kTRUE ; 
95   
96   TH1F *hDigChEvt = new TH1F("hDigChEvt","Chamber occupancy per event;Occupanc [%];Entries",AliHMPIDParam::kMaxCh+1,AliHMPIDParam::kMinCh,AliHMPIDParam::kMaxCh+1);
97   TH1F *hDigPcEvt = new TH1F("hDigPcEvt","PC occupancy",156,-1,77);
98   TH2F *hDigMap[7];
99   TH1F *hDigQ[42];
100   for(Int_t iCh =0; iCh < 7; iCh++){
101     hDigMap[iCh] = new TH2F(Form("MapCh%i",iCh),Form("Digit Map in Chamber %i;Digit #;Entries",iCh),159,0,159,143,0,143);
102     for(Int_t iPc =0; iPc < 6; iPc++ ){
103       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);
104     }
105   }
106   
107   Add2DigitsList(hDigChEvt,0, !expert, image);
108   Add2DigitsList(hDigPcEvt,1,expert, !image);
109   for(Int_t iMap=0; iMap < 7; iMap++) Add2DigitsList(hDigMap[iMap],2+iMap,expert, !image);
110   for(Int_t iH =0; iH < 42 ; iH++) Add2DigitsList(hDigQ[iH]    ,9+iH,expert,!image);
111 }
112
113 //____________________________________________________________________________ 
114 void AliHMPIDQADataMakerSim::InitSDigits()
115 {
116   // create SDigits histograms in SDigits subdir
117   const Bool_t expert   = kTRUE ; 
118   const Bool_t image    = kTRUE ; 
119
120   TH1F   *hSDigits     = new TH1F("hHmpidSDigits",    "SDigits Q  distribution in HMPID;QDC;Entries",  500, 0., 5000.) ; 
121   Add2SDigitsList(hSDigits,0, !expert, image);
122 }
123
124 //____________________________________________________________________________ 
125
126 void AliHMPIDQADataMakerSim::MakeHits(TClonesArray * data)
127 {
128  //
129  //filling QA histos for Hits
130  //
131   TClonesArray * hits = dynamic_cast<TClonesArray *>(data) ; 
132   if (!hits){
133     AliError("Wrong type of hits container") ; 
134   } else {
135     TIter next(hits); 
136     AliHMPIDHit * hit ; 
137     while ( (hit = dynamic_cast<AliHMPIDHit *>(next())) ) {
138       if(hit->Pid()<500000) GetHitsData(0)->Fill(hit->Q()) ;
139       if(hit->Pid()<500000) GetHitsData(hit->Ch()+1)->Fill(hit->LorsX(),hit->LorsY());
140     }
141   } 
142
143 }
144 //___________________________________________________________________________
145 void AliHMPIDQADataMakerSim::MakeHits(TTree * data)
146 {
147 //
148 //Opening of the Hit TTree 
149 //
150  TClonesArray *pHits=new TClonesArray("AliHMPIDHit");  data->SetBranchAddress("HMPID",&pHits);
151   for(Int_t iEnt=0;iEnt<data->GetEntriesFast();iEnt++){//entries loop
152     data->GetEntry(iEnt);
153     MakeHits(pHits);
154   }//entries loop
155 }
156 //____________________________________________________________________________
157 void AliHMPIDQADataMakerSim::MakeDigits(TClonesArray * data)
158 {
159  //
160  //filling QA histos for Digits
161  //
162
163   TObjArray *chamber = dynamic_cast<TObjArray*>(data);
164   if ( !chamber) {
165     AliError("Wrong type of digits container") ; 
166   } else {
167     for(Int_t i =0; i< chamber->GetEntries(); i++)
168       {
169         TClonesArray * digits = dynamic_cast<TClonesArray*>(chamber->At(i)); 
170         GetDigitsData(0)->Fill(i,digits->GetEntriesFast()/(48.*80.*6.));
171         TIter next(digits); 
172         AliHMPIDDigit * digit; 
173         while ( (digit = dynamic_cast<AliHMPIDDigit *>(next())) ) {
174           GetDigitsData(1)->Fill(10.*i+digit->Pc(),1./(48.*80.));
175           GetDigitsData(2+i)->Fill(digit->PadChX(),digit->PadChY());
176           GetDigitsData(9+i*6+digit->Pc())->Fill(digit->Q());
177         }  
178       }
179   }
180 }
181 //___________________________________________________________________________
182 void AliHMPIDQADataMakerSim::MakeDigits(TTree * data)
183 {
184 //
185 //Opening the Digit Tree
186 //
187  TObjArray *pObjDig=new TObjArray(AliHMPIDParam::kMaxCh+1);
188   for(Int_t iCh=AliHMPIDParam::kMinCh;iCh<=AliHMPIDParam::kMaxCh;iCh++){
189     TClonesArray *pCA=new TClonesArray("AliHMPIDDigit");
190     pObjDig->AddAt(pCA,iCh);
191   }
192
193   pObjDig->SetOwner(kTRUE);
194
195   for(Int_t iCh=AliHMPIDParam::kMinCh;iCh<=AliHMPIDParam::kMaxCh;iCh++){
196     data->SetBranchAddress(Form("HMPID%i",iCh),&(*pObjDig)[iCh]);
197   }
198   data->GetEntry(0);
199
200    MakeDigits((TClonesArray *)pObjDig);
201 }
202 //____________________________________________________________________________
203
204 void AliHMPIDQADataMakerSim::MakeSDigits(TClonesArray * data)
205 {
206  //
207  //filling QA histos for SDigits
208  //
209   TClonesArray * sdigits = dynamic_cast<TClonesArray *>(data) ; 
210   if (!sdigits) {
211     AliError("Wrong type of sdigits container") ; 
212   } else {
213     TIter next(sdigits) ; 
214     AliHMPIDDigit * sdigit ; 
215     while ( (sdigit = dynamic_cast<AliHMPIDDigit *>(next())) ) {
216             GetSDigitsData(0)->Fill(sdigit->Q());
217     } 
218   }
219 }
220 //___________________________________________________________________________
221 void AliHMPIDQADataMakerSim::MakeSDigits(TTree * data)
222 {
223  //
224  // Opening the SDigit Tree
225  //
226  TClonesArray * sdigits = new TClonesArray("AliHMPIDDigit", 1000) ;
227
228   TBranch * branch = data->GetBranch("HMPID") ;
229   if ( ! branch ) {
230     AliError("HMPID SDigit Tree not found") ;
231     return;
232   }
233   branch->SetAddress(&sdigits) ;
234   branch->GetEntry(0) ;
235   MakeSDigits(sdigits) ;
236 }
237 //____________________________________________________________________________
238 void AliHMPIDQADataMakerSim::StartOfDetectorCycle()
239 {
240   //Detector specific actions at start of cycle
241   
242 }
243
244 void AliHMPIDQADataMakerSim::EndOfDetectorCycle(AliQAv1::TASKINDEX_t task, TObjArray **obj)
245 {
246   //Detector specific actions at end of cycle
247   // do the QA checking
248   AliQAChecker::Instance()->Run(AliQAv1::kHMPID, task, obj) ;  
249 }
250