]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HMPID/Hdisp.C
new method (ProcessNoiseMap) added , it saves a new object in OCDB (OCDB/HMPID/Calib...
[u/mrichter/AliRoot.git] / HMPID / Hdisp.C
CommitLineData
c0d7adf8 1#if !defined(__CINT__) || defined(__MAKECINT__)
2
e9f11028 3#include <TSystem.h>
4#include <TFile.h>
06a9f120 5#include <TVirtualX.h>
e9f11028 6#include <TTree.h>
7#include <TButton.h>
8#include <TCanvas.h>
66298970 9#include <TCanvasImp.h>
06a9f120 10#include <TStyle.h>
45b05be5 11#include <TString.h>
e9f11028 12#include <TClonesArray.h>
13#include <TParticle.h>
14#include <TRandom.h>
15#include <TLatex.h>
45b05be5 16#include <TPDGCode.h>
e9f11028 17#include <TLegend.h>
18#include <TPolyMarker.h>
19#include <TBox.h>
6e06db1d 20#include <AliESDEvent.h>
e9f11028 21#include <AliCDBManager.h>
22#include <AliCDBEntry.h>
23#include "AliHMPIDHit.h"
24#include "AliHMPIDv2.h"
25#include "AliHMPIDReconstructor.h"
26#include "AliHMPIDRecon.h"
27#include "AliHMPIDParam.h"
28#include "AliHMPIDCluster.h"
e4290ede 29#include "AliTracker.h"
3e0a2e14 30#include "AliStack.h"
e4290ede 31
c0d7adf8 32#endif
33
66298970 34AliHMPIDParam *fParam;
64d57cb0 35TDatabasePDG *fPdg;
66298970 36
d5fc04a5 37TCanvas *fCanvas=0; Int_t fType=1; Int_t fEvt=-1; Int_t fNevt=0;
66298970 38TCanvasImp *fCanvasImp;
e9f11028 39TFile *fHitFile; TTree *fHitTree; TClonesArray *fHitLst; TPolyMarker *fRenMip[7]; TPolyMarker *fRenCko[7]; TPolyMarker *fRenFee[7];
40 TClonesArray *fSdiLst;
06a9f120 41TFile *fDigFile; TTree *fDigTree; TObjArray *fDigLst; TBox *fRenDig[7][160*144]; TBox *fBox[7][160*144];
64d57cb0 42TFile *fCluFile; TTree *fCluTree; TObjArray *fCluLst; TPolyMarker *fRenClu[7];
45b05be5 43TFile *fEsdFile; TTree *fEsdTree; AliESDEvent *fEsd; TPolyMarker *fRenTxC[7]; TPolyMarker *fRenRin[7];
e9f11028 44TFile *fCosFile; TTree *fCosTree;
45b05be5 45
46TButton *fHitMipBok,*fHitCkoBok,*fHitFeeBok,*fDigBok,*fCluBok,*fEsdBok;
47
48TString fStHitMip = "ON";
49TString fStHitCko = "ON";
50TString fStHitFee = "ON";
51TString fStDig = "ON";
52TString fStClu = "ON";
53TString fStEsd = "ON";
54
55Int_t fTimeArrow = 1;
56
06a9f120 57Int_t fMaxCharge = 200; //maximum charge to saturate color to red
58
66298970 59Int_t fChamN[9]={6,5,-1,4,3,2,-1,1,0};
60
61Int_t fTotPads[7],fTotClus[7];
62
d5fc04a5 63Int_t qSigmaCut=0;
64
65Int_t trigType=0;
66
e4290ede 67AliRunLoader *gAL=0;
d5fc04a5 68AliLoader *gDL=0; // detector loader (needed to get Digits and Clusters)
8282f9d0 69
06a9f120 70Int_t nDigs[7];
64d57cb0 71
b735cc6c 72enum EObjectType {kHitMip=kOpenTriangleUp,kHitCko=kOpenCircle,kHitFee=kOpenDiamond,kCluster=kStar,kTrack=kPlus,kRing=kFullDotSmall};
73 // kOpenTriangleUp Hit Mip
74 // kOpenCircle Hit Ckov
75 // kOpenDiamond Hit Feedback
76 // kStar Cluster
77 // kPlus Track
78 // kFullDotSmall Ring
79
e9f11028 80//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
81void CreateContainers()
82{//to create all containers
83 fHitLst=new TClonesArray("AliHMPIDHit");
84 fSdiLst=new TClonesArray("AliHMPIDDigit");
85 fDigLst=new TObjArray(7); for(Int_t i=0;i<7;i++) fDigLst->AddAt(new TClonesArray("AliHMPIDDigit"),i); fDigLst->SetOwner(kTRUE);
86 fCluLst=new TObjArray(7); for(Int_t i=0;i<7;i++) fCluLst->AddAt(new TClonesArray("AliHMPIDCluster"),i); fCluLst->SetOwner(kTRUE);
6e06db1d 87 fEsd =new AliESDEvent;
126b3e0e 88}
126b3e0e 89//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
e9f11028 90void CreateRenders()
91{
92 for(Int_t ch=0;ch<7;ch++){
b735cc6c 93 fRenMip[ch]=new TPolyMarker; fRenMip[ch]->SetMarkerStyle(kOpenTriangleUp);fRenMip[ch]->SetMarkerColor(kBlack) ;
94 fRenCko[ch]=new TPolyMarker; fRenCko[ch]->SetMarkerStyle(kOpenCircle); fRenCko[ch]->SetMarkerColor(kBlack) ;
95 fRenFee[ch]=new TPolyMarker; fRenFee[ch]->SetMarkerStyle(kOpenDiamond); fRenFee[ch]->SetMarkerColor(kBlack) ;
96 fRenClu[ch]=new TPolyMarker; fRenClu[ch]->SetMarkerStyle(kStar); fRenClu[ch]->SetMarkerColor(kMagenta);
97 fRenTxC[ch]=new TPolyMarker; fRenTxC[ch]->SetMarkerStyle(kPlus); fRenTxC[ch]->SetMarkerColor(kRed) ;
64d57cb0 98 fRenTxC[ch]->SetMarkerSize(3);
b735cc6c 99 fRenRin[ch]=new TPolyMarker; fRenRin[ch]->SetMarkerStyle(kFullDotSmall); fRenRin[ch]->SetMarkerColor(kMagenta);
64d57cb0 100
06a9f120 101 for(Int_t iDig=0;iDig<160*144;iDig++) {
102 fRenDig[ch][iDig] = new TBox;
103 fRenDig[ch][iDig]->SetFillStyle(1);
104 fBox[ch][iDig] = new TBox;
105 fBox[ch][iDig]->SetFillStyle(0);
106 }
e9f11028 107 }
108}//CreateRenders()
109//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
110void ClearRenders()
111{
112 for(Int_t ch=0;ch<7;ch++){
113 fRenTxC[ch]->SetPolyMarker(0);
114 fRenRin[ch]->SetPolyMarker(0);
115 fRenMip[ch]->SetPolyMarker(0);
116 fRenCko[ch]->SetPolyMarker(0);
117 fRenFee[ch]->SetPolyMarker(0);
06a9f120 118 nDigs[ch] = 0;
e9f11028 119 fRenClu[ch]->SetPolyMarker(0);
120 }
121}//ClearRenders()
122//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
123void PrintHits()
124{
125//Prints a list of HMPID hits for a given event. Default is event number 0.
126 if(!fHitTree) return;
127 Printf("List of HMPID hits for event %i",fEvt);
128 Int_t iTot=0;
129 for(Int_t iEnt=0;iEnt<fHitTree->GetEntries();iEnt++){//entries loop
130 fHitTree->GetEntry(iEnt);
131 fHitLst->Print();
132 iTot+=fHitLst->GetEntries();
133 }
134 Printf("totally %i hits for event %i",iTot,fEvt);
135}//PrintHits();
136//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
137void PrintSdis()
138{//prints a list of HMPID sdigits for a given event
139 Printf("List of HMPID sdigits for event %i",fEvt);
140 fSdiLst->Print();
141 Printf("totally %i sdigits for event %i",fSdiLst->GetEntries(),fEvt);
142}//PrintSdis()
143//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
144void PrintDigs()
145{//prints a list of HMPID digits
146 Printf("List of HMPID digits for event %i",fEvt);
86aed250 147// fDigLst->Print();
148
149 Int_t iTot=0;
150 for(Int_t iCh=0;iCh<7;iCh++) {
151 iTot+=((TClonesArray*)fDigLst->At(iCh))->GetEntries();
152
153 TClonesArray *pDigCham=(TClonesArray*)fDigLst->At(iCh); //get digs list for this chamber
154 for(Int_t iDig=0;iDig<pDigCham->GetEntries();iDig++){ //digs loop
155 AliHMPIDDigit *pDig = (AliHMPIDDigit*)pDigCham->At(iDig);
156 pDig->Print();
157 }//Digit loop
158 }//chamber loop
159
e9f11028 160 Printf("totally %i digits for event %i",iTot,fEvt);
8282f9d0 161}
162//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
e9f11028 163void PrintClus()
164{//prints a list of HMPID clusters for a given event
165 Printf("List of HMPID clusters for event %i",fEvt);
8282f9d0 166
86aed250 167// fCluLst->Print();
168
169 Int_t iTot=0; for(Int_t iCh=0;iCh<7;iCh++) {
170 iTot+=((TClonesArray*)fCluLst->At(iCh))->GetEntries();
171 TClonesArray *pClusCham=(TClonesArray*)fCluLst->At(iCh); //get clusters list for this chamber
172 for(Int_t iClu=0;iClu<pClusCham->GetEntries();iClu++){ //clusters loop
173 AliHMPIDCluster *pClu = (AliHMPIDCluster*)pClusCham->At(iClu); //get current cluster
174 pClu->Print();
175 }
176 }
e9f11028 177
178 Printf("totally %i clusters for event %i",iTot,fEvt);
8282f9d0 179}
180//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
e9f11028 181void PrintEsd()
182{//prints a list of HMPID Esd for a given event
183 Printf("List of HMPID ESD summary for event %i",fEvt);
184 for(Int_t iTrk=0;iTrk<fEsd->GetNumberOfTracks();iTrk++){
185 AliESDtrack *pTrk = fEsd->GetTrack(iTrk);
e31c5618 186
187 Double_t xout[3],pout[3];
188
189 pTrk->GetOuterPxPyPz(pout);
190 Double_t pMomOut = TMath::Sqrt(pout[0]*pout[0]+pout[1]*pout[1]+pout[2]*pout[2]);
191
e9f11028 192 Float_t x,y;Int_t q,nacc; pTrk->GetHMPIDmip(x,y,q,nacc);
c3f1200e 193 Float_t xra,yra,th,ph; pTrk->GetHMPIDtrk(xra,yra,th,ph);
194// Printf("xra %f yra %f th %f phi %f",xra,yra,th,ph);
e31c5618 195 Int_t ch,idx,size;
196 Int_t word = pTrk->GetHMPIDcluIdx();
197 ch = word/1000000;
198 word = word%1000000;
199 size = word/1000;
200 idx = word%1000;
c3f1200e 201 Double_t rout[3]; pTrk->GetOuterXYZ(rout);
202 vol = gGeoManager->FindNode(rout[0],rout[1],rout[2]);
43e51ec6 203 Printf("Trk %02i Ch.%2i (%5.2f,%5.2f) pOut %7.2f ThCer %7.3f phots %3i QMip %4i size %2i (idx %3i) in vol. %s",iTrk,ch,
204 xra,yra,pMomOut,pTrk->GetHMPIDsignal(),nacc,q,size,idx,vol->GetName());
e9f11028 205 }
206}//PrintEsd()
207//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
208void DrawChamber(Int_t iCh)
209{//used by Draw() to Draw() chamber structure
45b05be5 210 gPad->Range(-10,-10,AliHMPIDParam::SizeAllX()+5,AliHMPIDParam::SizeAllY()+5);
040e03e9 211 if(iCh>=0){TLatex txt; txt.SetTextSize(0.06); txt.DrawLatex(55,-9,Form("RICH %i",iCh));}
e9f11028 212
ae5a42aa 213 for(Int_t iPc=AliHMPIDParam::kMinPc;iPc<=AliHMPIDParam::kMaxPc;iPc++){
214 TBox *pBox=new TBox(AliHMPIDParam::MinPcX(iPc),AliHMPIDParam::MinPcY(iPc),
215 AliHMPIDParam::MaxPcX(iPc),AliHMPIDParam::MaxPcY(iPc));
e9f11028 216 pBox->SetFillStyle(0); pBox->Draw();
217 }//PC loop
218}//DrawChamber()
219//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
220void DrawLegend()
221{//used by Draw() to draw legend
222 Int_t nTxC=0,nMip=0,nCko=0,nFee=0,nDig=0,nClu=0;
223 for(Int_t ch=0;ch<7;ch++){
64d57cb0 224 nTxC+=fRenTxC[ch]->Size();
225 nMip+=fRenMip[ch]->Size();
226 nCko+=fRenCko[ch]->Size();
227 nFee+=fRenFee[ch]->Size();
228 nClu+=fRenClu[ch]->Size();
06a9f120 229 nDig+=nDigs[ch];
e9f11028 230 }
040e03e9 231 TLegend *pLeg=new TLegend(0.15,0.3,0.85,0.98);
e9f11028 232 pLeg->SetHeader(Form("Event %i Total %i",fEvt,fNevt));
040e03e9 233 pLeg->AddEntry(fRenTxC[0], Form("TRKxPC %i" ,nTxC),"p");
234 pLeg->AddEntry(fRenMip[0], Form("Mip hits %i" ,nMip),"p");
06a9f120 235 pLeg->AddEntry(fRenCko[0], Form("Ckov hits %i" ,nCko),"p");
236 pLeg->AddEntry(fRenFee[0], Form("Feed hits %i" ,nFee),"p");
040e03e9 237 pLeg->AddEntry(fRenDig[0][0],Form("Digs %i" ,nDig),"p");
238 pLeg->AddEntry(fRenClu[0], Form("Clus %i" ,nClu),"p");
e9f11028 239 pLeg->Draw();
040e03e9 240
241/* TLegend *pLeg2 = new TLegend(0.4,0.087,0.8,0.97);
242 pLeg2->SetHeader("");
243 pLeg2->AddEntry(fRenMip[0],Form("Mip hits %i" ,nMip),"p");
244 pLeg2->Draw();*/
245
d5fc04a5 246 TBox *pBox = new TBox(0.012,0.01,0.97,0.28);
040e03e9 247 pBox->Draw("l");
248
249 TText *pText = new TText(0.35,0.21, "ddl = (0....13)");
d5fc04a5 250 pText->SetTextSize(0.06);
040e03e9 251 pText->Draw();
252
d5fc04a5 253 TText *pText2 = new TText(0.09,0.15,"RICH n ---> ddl 2n (left) & 2n+1 (right)");
254 pText2->SetTextSize(0.06);
040e03e9 255 pText2->Draw();
256
d5fc04a5 257 TText *pText3 = new TText(0.1,0.09, "phcat (0,2,4) left, phcat (1,3,5) right");
258 pText3->SetTextSize(0.06);
040e03e9 259 pText3->Draw();
260
d5fc04a5 261 TText *pText4 = new TText(0.35,0.03, Form("sigma cut = %i",qSigmaCut));
262 pText4->SetTextSize(0.06);
263 pText4->Draw();
264
e9f11028 265}//DrawLegend()
266//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
267void Draw()
268{//draws all the objects of current event in given canvas
45b05be5 269 Int_t iPadN[7]={9,8,6,5,4,2,1};
06a9f120 270 Int_t sampleCol = fMaxCharge/gStyle->GetNumberOfColors();
e9f11028 271 for(Int_t iCh=0;iCh<7;iCh++){//chambers loop
45b05be5 272 fCanvas->cd(iPadN[iCh]);
e9f11028 273 gPad->SetEditable(kTRUE); gPad->Clear(); DrawChamber(iCh);
06a9f120 274
64d57cb0 275 if(fDigFile){
276 if(fStDig =="ON") {
277 for(Int_t iDig=0;iDig<nDigs[iCh];iDig++) {
278 Int_t charge = fRenDig[iCh][iDig]->GetUniqueID();
279 Int_t color = charge/sampleCol;if(color>=gStyle->GetNumberOfColors()) color = gStyle->GetNumberOfColors()-1;
280 fRenDig[iCh][iDig]->SetFillColor(gStyle->GetColorPalette(color));
281 fRenDig[iCh][iDig]->Draw();
282 fBox[iCh][iDig]->Draw();
283 }
06a9f120 284 }
285 }
64d57cb0 286
287 if(fEsdFile){if(fStEsd =="ON") fRenTxC[iCh]->Draw();}
288
289 if(fHitFile){
290 if(fStHitMip=="ON") fRenMip[iCh]->Draw();
291 if(fStHitFee=="ON") fRenFee[iCh]->Draw();
292 if(fStHitCko=="ON") fRenCko[iCh]->Draw();
293 }
294
295 if(fEsdFile){if(fStEsd =="ON") fRenRin[iCh]->Draw();}
296 if(fCluFile){if(fStClu =="ON") fRenClu[iCh]->Draw();}
e9f11028 297 gPad->SetEditable(kFALSE);
298 }//chambers loop
64d57cb0 299
e9f11028 300 fCanvas->cd(3); gPad->Clear(); DrawLegend();
45b05be5 301
302 fCanvas->cd(7);
303
64d57cb0 304 if(fHitFile){
305 fHitMipBok->SetTitle(Form("Mips %s",fStHitMip.Data())); fHitMipBok->Modified();
306 fHitCkoBok->SetTitle(Form("Ckov %s",fStHitCko.Data())); fHitCkoBok->Modified();
307 fHitFeeBok->SetTitle(Form("Fdbk %s",fStHitFee.Data())); fHitFeeBok->Modified();
308 }
45b05be5 309 if(fDigFile){fDigBok->SetTitle(fStDig); fDigBok->Modified();}
310 if(fCluFile){fCluBok->SetTitle(fStClu); fCluBok->Modified();}
311 if(fEsdFile){fEsdBok->SetTitle(fStEsd); fEsdBok->Modified();}
312
e9f11028 313}//Draw()
314//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
315void RenderHit(TClonesArray *pHitLst)
d5fc04a5 316{//used by ReadEvent() to render hits to polymarker structures, one per chamber
e9f11028 317 for(Int_t iHit=0;iHit<pHitLst->GetEntries();iHit++){ //hits loop
318 AliHMPIDHit *pHit = (AliHMPIDHit*)pHitLst->At(iHit); Int_t ch=pHit->Ch(); Float_t x=pHit->LorsX(); Float_t y=pHit->LorsY(); //get current hit
319 switch(pHit->Pid()){
320 case 50000050: fRenCko[ch]->SetNextPoint(x,y);break;
321 case 50000051: fRenFee[ch]->SetNextPoint(x,y);break;
322 default: fRenMip[ch]->SetNextPoint(x,y);break;
323 }//switch hit PID
64d57cb0 324// Printf("----------ihit %i ch %i chhit %i MIP %i CKO %i FEE %i",iHit,ch,pHit->Pid());
e9f11028 325 }//hits loop for this entry
326}//RenderHits()
327//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
e4290ede 328void RenderDig(TObjArray *pDigLst)
d5fc04a5 329{//used by ReadEvent() to render digs to Tbox structures, one per chamber
330
e4290ede 331 for(Int_t iCh=0;iCh<=6;iCh++){ //chambers loop
332 TClonesArray *pDigCham=(TClonesArray*)pDigLst->At(iCh); //get digs list for this chamber
06a9f120 333 nDigs[iCh] = 0;
66298970 334 fTotPads[iCh] = pDigCham->GetEntries();
d5fc04a5 335 Int_t iDigEff=0;
e4290ede 336 for(Int_t iDig=0;iDig<pDigCham->GetEntries();iDig++){ //digs loop
337 AliHMPIDDigit *pDig = (AliHMPIDDigit*)pDigCham->At(iDig); Float_t x=pDig->LorsX(); Float_t y=pDig->LorsY(); //get current hit
d5fc04a5 338 if((Int_t)pDig->Q()<=qSigmaCut) continue;
339 fRenDig[iCh][iDigEff]->SetX1(x-0.5*AliHMPIDParam::SizePadX());
340 fRenDig[iCh][iDigEff]->SetX2(x+0.5*AliHMPIDParam::SizePadX());
341 fRenDig[iCh][iDigEff]->SetY1(y-0.5*AliHMPIDParam::SizePadY());
342 fRenDig[iCh][iDigEff]->SetY2(y+0.5*AliHMPIDParam::SizePadY());
343 fRenDig[iCh][iDigEff]->SetUniqueID((Int_t)pDig->Q());
344 fBox[iCh][iDigEff]->SetX1(x-0.5*AliHMPIDParam::SizePadX());
345 fBox[iCh][iDigEff]->SetX2(x+0.5*AliHMPIDParam::SizePadX());
346 fBox[iCh][iDigEff]->SetY1(y-0.5*AliHMPIDParam::SizePadY());
347 fBox[iCh][iDigEff]->SetY2(y+0.5*AliHMPIDParam::SizePadY());
348 iDigEff++;
06a9f120 349 nDigs[iCh]++;
45b05be5 350 }//Digit loop
e4290ede 351 }//hits loop for this entry
352}//RenderHits()
353//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
354void RenderClu(TObjArray *pClus)
d5fc04a5 355{//used by ReadEvent() to render clusters to polymarker structures, one per chamber
e9f11028 356 for(Int_t iCh=0;iCh<=6;iCh++){ //chambers loop
357 TClonesArray *pClusCham=(TClonesArray*)pClus->At(iCh); //get clusters list for this chamber
66298970 358 fTotClus[iCh] = pClusCham->GetEntries();
e9f11028 359 for(Int_t iClu=0;iClu<pClusCham->GetEntries();iClu++){ //clusters loop
360 AliHMPIDCluster *pClu = (AliHMPIDCluster*)pClusCham->At(iClu); //get current cluster
64d57cb0 361 fRenClu[iCh]->SetNextPoint(pClu->X(),pClu->Y());
45b05be5 362// Printf("RenderClu: ch %i x %f y %f",iCh,pClu->X(),pClu->Y());
363 }//cluster loop
364 }//chamber loop for this entry
e9f11028 365}//RenderClus()
366//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
6e06db1d 367void RenderEsd(AliESDEvent *pEsd)
d5fc04a5 368{//used by ReadEvent() to render ESD to polymarker structures for rings and intersections one per chamber
e9f11028 369 AliHMPIDRecon rec;
370 for(Int_t iTrk=0;iTrk<pEsd->GetNumberOfTracks();iTrk++){//tracks loop to collect cerenkov rings and intersection points
371 AliESDtrack *pTrk=pEsd->GetTrack(iTrk); Int_t ch=pTrk->GetHMPIDcluIdx(); //get track and chamber intersected by it
39cd22e6 372 ch/=1000000;
39cd22e6 373 Float_t xPc,yPc,xRa,yRa,thRa,phRa;
64b18f18 374 pTrk->GetHMPIDtrk(xPc,yPc,thRa,phRa);;
375
376 xRa = xPc - (fParam->RadThick()+fParam->WinThick()+fParam->GapThick())*TMath::Cos(phRa)*TMath::Tan(thRa); //just linear extrapolation back to RAD
377 yRa = yPc - (fParam->RadThick()+fParam->WinThick()+fParam->GapThick())*TMath::Sin(phRa)*TMath::Tan(thRa);
378
d5fc04a5 379 if(ch<AliHMPIDParam::AliHMPIDParam::kMinCh||ch>AliHMPIDParam::kMaxCh) continue;//this track does not intersect any chamber
380 Int_t npTrk = fRenTxC[ch]->SetNextPoint(xRa,yRa); //add this intersection point
e9f11028 381 Float_t ckov=pTrk->GetHMPIDsignal(); //get ckov angle stored for this track
382 if(ckov>0){
383 rec.SetTrack(xRa,yRa,thRa,phRa);
3278403b 384 fRenRin[ch]->SetUniqueID(npTrk);
06a9f120 385 for(Int_t j=0;j<500;j++){
386 TVector2 pos; pos=rec.TracePhot(ckov,j*6.28/500.);
ae5a42aa 387 if(!AliHMPIDParam::IsInDead(pos.X(),pos.Y())) fRenRin[ch]->SetNextPoint(pos.X(),pos.Y());
e9f11028 388 }
389 }//if ckov is valid
390 }//tracks loop
391}//RenEsd()
a1d55ff3 392//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
3e0a2e14 393TString Stack(Int_t evt,Int_t tid)
394{
395// Prints some useful info from stack
396// Arguments: evt - event number. if not -1 print info only for that event
397// tid - track id. if not -1 then print it and all it's mothers if any
398// Returns: mother tid of the given tid if any
399 if(gAL->LoadHeader()) return -1;
400 if(gAL->LoadKinematics()) return -1;
401
402 gAL->GetEvent(evt);
403 AliStack *pStack=gAL->Stack();
404 TParticle *pTrack=pStack->Particle(tid);
405// Int_t mtid=pTrack->GetFirstMother();
406 TString str;
407 str.Append(Form("with P = %7.4f (%7.4f,%7.4f,%7.4f) GeV/c ",pTrack->P(),pTrack->Px(),pTrack->Py(),pTrack->Pz()));
408 gAL->UnloadHeader(); gAL->UnloadKinematics();
409 return str;
410}
411//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
c56e0a52 412void DispTB(TString t0,TString t1,TString t2,TString t3)
413{
414 fCanvasImp->SetStatusText(t0,0);
415 fCanvasImp->SetStatusText(t1,1);
416 fCanvasImp->SetStatusText(t2,2);
417 fCanvasImp->SetStatusText(t3,3);
418}
419//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
b8329f55 420Bool_t FindPos(TVector3 xyz,Int_t &cham,Int_t &sect,Int_t &gap,Int_t &padX,Int_t &padY)
421{
422// It finds the chamber parameters for a given point
423// Arguments: xyz coordinates of a given point in MARS
424// Returns: cham chamber ID ( 0-6 )
425// sect sector ID ( 0-5 )
426// padX X (integer) of the pad in X in the given sector (1-80)
427// padY Y (integer) of the pad in Y in the given sector (1-48)
428 cham = -1;
429 TGeoNode *node = gGeoManager->FindNode(xyz.X(),xyz.Y(),xyz.Z());
430 if(!node) return kFALSE;
431 TGeoVolume *vol = node->GetVolume();
432 if(!vol) return kFALSE;
433 TGeoManager *geo = vol->GetGeoManager();
434 if(!geo) return kFALSE;
435 Int_t i=0;
436 while(geo->GetMother(i)) {
437 TString s = geo->GetMother(i)->GetName();
438// if(s.Contains("Hcel_")) padX=(Int_t)(s.Remove(0,5)).Atof();
439// if(s.Contains("Hrow_")) padY=(Int_t)(s.Remove(0,5)).Atof();
440// if(s.Contains("Hsec_")) sect=(Int_t)(s.Remove(0,5)).Atof();
441// if(s.Contains("Hmp_")) cham=(Int_t)(s.Remove(0,4)).Atof();
442 if(s.Contains("Hcel_")) padX=geo->GetMother(i)->GetNumber();
443 if(s.Contains("Hrow_")) padY=geo->GetMother(i)->GetNumber();
444 if(s.Contains("Hsec_")) sect=geo->GetMother(i)->GetNumber();
445 if(s.Contains("Hmp_")) cham=geo->GetMother(i)->GetNumber();
446 i++;
447 }
448 return (cham==-1) ? kFALSE : kTRUE;
449}
450//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
b735cc6c 451void DisplayInfo(Int_t evt,Int_t px, Int_t py)
66298970 452{
c56e0a52 453 if(!gPad) return;
64d57cb0 454 TVirtualPad *pPad=gPad->GetSelectedPad();
455 Int_t padN = pPad->GetNumber()-1;
456 if(padN<0 || padN>8) return;
457 Int_t ch,pc,padX,padY;
458 ch = fChamN[padN];
459 if(ch<0) return;
460 TString text0,text1,text2,text3;
461
462 Float_t x=pPad->AbsPixeltoX(px); Float_t y=pPad->AbsPixeltoY(py);
463 fParam->Lors2Pad(x,y,pc,padX,padY);
464 TVector3 xyz=fParam->Lors2Mars(ch,x,y);
465
466 if(padX>=0&&padY>=0) {
d5fc04a5 467 text0.Append(Form("Pad(%i,%i)-LORS(%6.2f,%6.2f)-MARS(%7.2f,%7.2f,%7.2f) A(%6.2f,%6.2f)",padX,padY,x,y,xyz.X(),xyz.Y(),xyz.Z(),
468 xyz.Theta()*TMath::RadToDeg(),xyz.Phi()*TMath::RadToDeg()));
64d57cb0 469 text1.Append(Form("Module %i Sector %i",ch,pc));
c56e0a52 470 text2="";
3278403b 471 text3.Append(Form("Pads = %i - Clusters = %i - Occupancy %5.2f%%",fTotPads[ch],fTotClus[ch],100.*fTotPads[ch]/(144.*160.)));
64d57cb0 472 }
473
66298970 474 TObject *obj = fCanvas->GetSelected();
475 TString name = obj->GetName();
b735cc6c 476
477// Find object DIGIT
c56e0a52 478
b735cc6c 479 if(name=="") {DispTB(text0,text1,text2,text3);return;} // TLatex not interesting
c56e0a52 480
66298970 481 if(name.Contains("TBox")) {
64d57cb0 482 TBox *box = (TBox*)obj;
483 if(box->GetUniqueID()==0) return; // just black frame hit!
484 text2.Append(Form("charge = %i ADC",box->GetUniqueID()));
b735cc6c 485 DispTB(text0,text1,text2,text3);
486 return;
487 }
64d57cb0 488//
b735cc6c 489// Find object HITs CLUSTER TRACK and RING (based on TPolyMarker and symbol)
64d57cb0 490//
b735cc6c 491 TPolyMarker *b = (TPolyMarker*)obj;
64d57cb0 492
b735cc6c 493 const Int_t big = 9999;
64d57cb0 494
b735cc6c 495 // check if point is near one of the points
496 Int_t distance = big;
497 Int_t index=0;
64d57cb0 498
b735cc6c 499 Double_t *xPol = b->GetX();
500 Double_t *yPol = b->GetY();
64d57cb0 501
b735cc6c 502 for(Int_t i=0;i<b->Size();i++) {
503 Int_t pxp = pPad->XtoAbsPixel(pPad->XtoPad(xPol[i]));
504 Int_t pyp = pPad->YtoAbsPixel(pPad->YtoPad(yPol[i]));
505 Int_t d = TMath::Abs(pxp-px) + TMath::Abs(pyp-py);
506 if (d < distance) {distance = d; index=i;}
507 }
64d57cb0 508
b735cc6c 509 Int_t symbol = b->GetMarkerStyle();
510
511 // kOpenTriangleUp Hit Mip
512 // kOpenCircle Hit Ckov
513 // kOpenDiamond Hit Feedback
514 // kStar Cluster
515 // kPlus Track
516 // kFullDotSmall Ring
517
518 // Case Hit Mip of Hit Ckov or Hit Feedback
519 if(symbol==kHitMip || symbol==kHitCko || symbol==kHitFee) {
520 if(evt!=kButton1Down) return;
c56e0a52 521 TString nameHit;
522 Int_t iCko[7]={0,0,0,0,0,0,0};
523 Int_t iFee[7]={0,0,0,0,0,0,0};
524 Int_t iMip[7]={0,0,0,0,0,0,0};
525 Int_t iHit;
526 Int_t chHit;
527 Int_t indHit=0;
528
b735cc6c 529 Int_t indTrk = b->GetUniqueID(); // track index
530 for(Int_t iEnt=0;iEnt<fHitTree->GetEntries();iEnt++){//entries loop
531 fHitTree->GetEntry(iEnt);
532 for(iHit=0;iHit<fHitLst->GetEntries();iHit++) { //hits loop
533 AliHMPIDHit *pHit = (AliHMPIDHit*)fHitLst->At(iHit);
534 chHit = pHit->Ch();
535 Int_t pid = pHit->Pid();
536 if(pid==50000050) iCko[chHit]++;
537 else if(pid==50000051) iFee[chHit]++;
538 else iMip[chHit]++;
539
540 if(symbol==kHitMip && ch==chHit && index==iMip[chHit]-1) {indTrk=iEnt;indHit = iHit;break;}
541 if(symbol==kHitCko && ch==chHit && index==iCko[chHit]-1) {indTrk=iEnt;indHit = iHit;break;}
542 if(symbol==kHitFee && ch==chHit && index==iFee[chHit]-1) {indTrk=iEnt;indHit = iHit;break;}
543 }
544 }
b8329f55 545 fHitTree->GetEntry(indTrk);
b735cc6c 546 AliHMPIDHit *pHit = (AliHMPIDHit*)fHitLst->At(indHit);
547
3e0a2e14 548 Int_t tid = pHit->Tid();
549
550 TString str = Stack(fEvt,tid);
b8329f55 551
b735cc6c 552 Float_t x=pHit->LorsX();
553 Float_t y=pHit->LorsY();
554 Float_t charge = pHit->Q();
b8329f55 555
556 TVector3 v = fParam->Lors2Mars(pHit->Ch(),pHit->LorsX(),pHit->LorsY());
557 Int_t cham,sect,gap,padX,padY;
558 FindPos(v,cham,sect,gap,padX,padY);
559
b735cc6c 560 if(pHit->Pid()==50000050) {nameHit = " Cherenkov Photon ";}
561 else if(pHit->Pid()==50000051) {nameHit = " Feedback Photon ";}
562 else if(fPdg->GetParticle(pHit->Pid())) nameHit = fPdg->GetParticle(pHit->Pid())->GetName();
b8329f55 563 nameHit.Append(Form(" (tid %i)",tid));
564 text0="";text0.Append(Form("Hit(%5.2f,%6.2f) LORS - Pad Volume(%i,%i) - hit %i/%i",x,y,padX,padY,indHit+1,fHitLst->GetEntries()));
b735cc6c 565 text2="";text2.Append(Form("Q = %7.2f ADC",charge));
3e0a2e14 566 text3="";text3="Particle: "+ nameHit +" "+ str;
b735cc6c 567 } // Hit
568 else if (symbol==kCluster) {
569 TClonesArray *pClusCham=(TClonesArray*)fCluLst->At(ch); //get clusters list for this chamber
570 AliHMPIDCluster *pClu = (AliHMPIDCluster*)pClusCham->At(index); //get current cluster
571 text0="";text0.Append(Form("CLUSTER: x %6.2f y %6.2f",pClu->X(),pClu->Y()));
572 text2="";text2.Append(Form("charge = %i ADC",(Int_t)pClu->Q()));
64d57cb0 573 }
3278403b 574 else if (symbol==kTrack || symbol==kRing) {
575 if(symbol==kRing) index = b->GetUniqueID();
b735cc6c 576 AliESDtrack *pTrk=fEsd->GetTrack(index);
39cd22e6 577 Float_t xPc,yPc,thRa,phRa,xRa,yRa;
578 Int_t ch = AliHMPIDTracker::IntTrkCha(pTrk,xPc,yPc,xRa,yRa,thRa,phRa);
579 text0="";text0.Append(Form("TRACK n.%d: x %6.2f y %6.2f at PC plane in chamber %i",index,xPc,yPc,ch));
b735cc6c 580 text2="";text2.Append(Form("p = %7.2f GeV/c",pTrk->GetP()));
581 Float_t ckov=pTrk->GetHMPIDsignal();
3278403b 582 Double_t prob[5];
583 pTrk->GetHMPIDpid(prob);
b735cc6c 584 if(ckov>0){
585 Float_t x,y;Int_t q,nacc; pTrk->GetHMPIDmip(x,y,q,nacc);
ac66a50d 586 text3="";text3.Append(Form("Theta Cherenkov %5.3f with %i photons | e %5.1f%% | u %5.1f%% | pi %5.1f%% | K %5.1f%% | p %5.1f%%",
3278403b 587 pTrk->GetHMPIDsignal(),nacc,prob[0]*100,prob[1]*100,prob[2]*100,prob[3]*100,prob[4]*100));
b735cc6c 588 }
66298970 589 }
64d57cb0 590//Update toolbar status
c56e0a52 591
592 DispTB(text0,text1,text2,text3);
66298970 593}
594//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
595void CloseInfo()
596{
597}
598//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
e9f11028 599void DoZoom(Int_t evt, Int_t px, Int_t py, TObject *)
a1d55ff3 600{
66298970 601// Printf(" px %i py%i event %i",px,py,evt);
82692b45 602
603 if(evt== 1) evt = 5; //for laptop with touchpad: zoom in with left button
604 if(evt== 2) evt = 6; //for laptop with touchpad: zoom out with both buttons
605
b735cc6c 606 if(evt==kMouseMotion||evt==kButton1Down) DisplayInfo(evt,px,py);
82692b45 607// if(evt==11) CloseInfo();
64d57cb0 608 if(evt!=5 && evt!=6) return; //5- zoom in 6-zoom out
8282f9d0 609 const Int_t minZoom=64;
610 const Int_t maxZoom=2;
06a9f120 611 static Int_t zoom[7]={64,64,64,64,64,64,64}; //zoom level
8282f9d0 612
d73ece6a 613 // if(!obj->IsA()->InheritsFrom("TPad")) return; //current object is not pad
50e69536 614 TVirtualPad *pPad=gPad->GetSelectedPad();
06a9f120 615 Int_t padN = pPad->GetNumber()-1;
616 if(padN<0 || padN>8) return;
617
66298970 618 Int_t iCh = fChamN[padN];
06a9f120 619 if(iCh < 0) return;
620
621 if(evt==5&&zoom[iCh]==maxZoom) return;
622 if(evt==6&&zoom[iCh]==minZoom) return;
8282f9d0 623
624 Float_t x=pPad->AbsPixeltoX(px); Float_t y=pPad->AbsPixeltoY(py);
6ed6a312 625
06a9f120 626 if(evt==5){ zoom[iCh]=zoom[iCh]/2; pPad->Range(x-zoom[iCh]*2,y-zoom[iCh]*2,x+zoom[iCh]*2,y+zoom[iCh]*2);} //zoom in
66298970 627 if(evt==6){ zoom[iCh]=zoom[iCh]*2; pPad->Range(x-zoom[iCh]*2,y-zoom[iCh]*2,x+zoom[iCh]*2,y+zoom[iCh]*2);} //zoom out
06a9f120 628 if(zoom[iCh]==minZoom) pPad->Range(-10,-10,AliHMPIDParam::SizeAllX()+5,AliHMPIDParam::SizeAllY()+5);
629 ((TCanvas *)gTQSender)->SetTitle(Form("zoom x%i",minZoom/zoom[iCh]));
8282f9d0 630 pPad->Modified();
631 pPad->Update();
a1d55ff3 632}
8282f9d0 633//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
66298970 634void CheckStatus()
635{
64d57cb0 636 if(fHitFile){
637 if(fStHitMip=="OFF") {fHitMipBok->SetFillColor(kRed);} else {fHitMipBok->SetFillColor(18);}
638 if(fStHitCko=="OFF") {fHitCkoBok->SetFillColor(kRed);} else {fHitCkoBok->SetFillColor(18);}
639 if(fStHitFee=="OFF") {fHitFeeBok->SetFillColor(kRed);} else {fHitFeeBok->SetFillColor(18);}
640 }
641 if(fDigFile){if(fStDig =="OFF") {fDigBok->SetFillColor(kRed);} else {fDigBok->SetFillColor(18);}}
642 if(fCluFile){if(fStClu =="OFF") {fCluBok->SetFillColor(kRed);} else {fCluBok->SetFillColor(18);}}
643 if(fEsdFile){if(fStEsd =="OFF") {fEsdBok->SetFillColor(kRed);} else {fEsdBok->SetFillColor(18);}}
66298970 644}
645//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
45b05be5 646void GetEvent()
d73ece6a 647{
e9f11028 648 ClearRenders();
d5fc04a5 649
d5fc04a5 650 ReadEvent();
651
652 while(!Trigger()) {
653 Printf(" trigger %i for event %i",Trigger(),fEvt);
654 fEvt+=fTimeArrow;
655 ClearRenders();
656 ReadEvent();
657 }
658
06a9f120 659 CheckStatus();
e9f11028 660 Draw();
d73ece6a 661}
662//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
45b05be5 663void NextEvent()
664{
665 fTimeArrow = 1;
666 fEvt+=fTimeArrow;
667 GetEvent();
668}
669//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
670void PrevEvent()
671{
672 fTimeArrow = -1;
673 fEvt+=fTimeArrow;
674 GetEvent();
675}
676//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
677void End()
678{
679 gSystem->Exit(0);
680}
681//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
e9f11028 682void Hdisp()
683{//display events from files if any in current directory or simulated events
64d57cb0 684
66298970 685 fParam=AliHMPIDParam::Instance(); // first invocation of AliHMPIDParam to initialize geometry...
64d57cb0 686 fPdg = TDatabasePDG::Instance(); // first invocation of TDatabasePDG to retrieve particle infos...
687
e9f11028 688 CreateContainers();
689 CreateRenders();
d73ece6a 690
e9f11028 691 TString title="Session with";
d5fc04a5 692
693 LoadRunLoader();
694
e9f11028 695 if(gSystem->IsFileInIncludePath("HMPID.Hits.root")){// tries to open hits
696 fHitFile=TFile::Open("HMPID.Hits.root"); fNevt=fHitFile->GetNkeys(); fType=1; title+=Form(" HITS-%i ",fNevt);
697 }
6b155609 698
e9f11028 699 if(gSystem->IsFileInIncludePath("HMPID.Digits.root")){// tries to open clusters
e4290ede 700 fDigFile=TFile::Open("HMPID.Digits.root"); fNevt=fDigFile->GetNkeys(); fType=1; title+=Form(" DIGITS-%i ",fNevt);
701 }
6b155609 702
e9f11028 703 if(gSystem->IsFileInIncludePath("HMPID.RecPoints.root")){// tries to open clusters
704 fCluFile=TFile::Open("HMPID.RecPoints.root"); fNevt=fCluFile->GetNkeys(); fType=1; title+=Form(" CLUSTERS-%i ",fNevt);
e4290ede 705 }
d5fc04a5 706
707 if(gSystem->IsFileInIncludePath("cosmic.root")){ //clm: Check if cosmic file is in the folder
708 fCosFile=TFile::Open("cosmic.root"); fCosTree=(TTree*)fCosFile->Get("cosmic"); fNevt=fCosTree->GetEntries(); fType=2;
709 fCosTree->SetBranchAddress("Digs",&fDigLst); fCosTree->SetBranchAddress("Clus",&fCluLst);
710 }
711
e9f11028 712 if(gSystem->IsFileInIncludePath("AliESDs.root")){
566300ac 713 fEsdFile=TFile::Open("AliESDs.root");
714 if(fEsdFile) {
715 fEsdTree=(TTree*)fEsdFile->Get("esdTree");
716 fEsd->ReadFromTree(fEsdTree); fEsd->GetStdContent(); //clm: new ESD schema: see Task Force meeting 20th June, 2007
942536d9 717 if(fEsdTree) {
718 fNevt=fEsdTree->GetEntries(); fType=1; title+=Form(" ESD-%i ",fNevt);
719 } else {delete fEsdFile;fEsdFile=0x0;}
566300ac 720 } else {delete fEsdFile; delete fEsdTree;}
e9f11028 721 }
d5fc04a5 722
c56e0a52 723 fCanvas=new TCanvas("all","",-1024,768);fCanvas->SetWindowSize(1024,768);
66298970 724 fCanvasImp = fCanvas->GetCanvasImp();
725 fCanvasImp->ShowStatusBar();
45b05be5 726 fCanvas->Divide(3,3,0,0);// pAll->ToggleEditor();
e9f11028 727 fCanvas->Connect("ProcessedEvent(Int_t,Int_t,Int_t,TObject*)",0,0,"DoZoom(Int_t,Int_t,Int_t,TObject*)");
728 fCanvas->cd(7);
06a9f120 729 gStyle->SetPalette(1,0);
e9f11028 730 switch(fType){
731 case 1: fCanvas->SetTitle(title.Data());
45b05be5 732 TButton *pNxtBtn = new TButton("Next" ,"NextEvent()" ,0.0,0.0,0.3,0.1); pNxtBtn->Draw();
733 TButton *pPrvBtn = new TButton("Previous" ,"PrevEvent()" ,0.3,0.0,0.6,0.1); pPrvBtn->Draw();
734 if(fHitFile){TButton *pHitBtn = new TButton("Print hits","PrintHits()" ,0.0,0.2,0.3,0.3); pHitBtn->Draw();}
735 if(fDigFile){TButton *pDigBtn = new TButton("Print digs","PrintDigs()" ,0.0,0.4,0.3,0.5); pDigBtn->Draw();}
736 if(fCluFile){TButton *pCluBtn = new TButton("Print clus","PrintClus()" ,0.0,0.6,0.3,0.7); pCluBtn->Draw();}
737 if(fEsdFile){TButton *pEsdBtn = new TButton("Print ESD ","PrintEsd()" ,0.0,0.8,0.3,0.9); pEsdBtn->Draw();}
06a9f120 738 if(fHitFile){ fHitMipBok = new TButton(Form("Mip %s",fStHitMip.Data()),"SwitchHitMip()",0.3,0.16,0.6,0.22); fHitMipBok->Draw();}
45b05be5 739 if(fHitFile){ fHitCkoBok = new TButton(Form("Ckov %s",fStHitCko.Data()),"SwitchHitCko()",0.3,0.22,0.6,0.28); fHitCkoBok->Draw();}
740 if(fHitFile){ fHitFeeBok = new TButton(Form("Fdbk %s",fStHitFee.Data()),"SwitchHitFee()",0.3,0.28,0.6,0.34); fHitFeeBok->Draw();}
741 if(fDigFile){ fDigBok = new TButton(fStDig ,"SwitchDigs()" ,0.3,0.4,0.6,0.5); fDigBok->Draw();}
742 if(fCluFile){ fCluBok = new TButton(fStClu ,"SwitchClus()" ,0.3,0.6,0.6,0.7); fCluBok->Draw();}
743 if(fEsdFile){ fEsdBok = new TButton(fStEsd ,"SwitchEsd()" ,0.3,0.8,0.6,0.9); fEsdBok->Draw();}
06a9f120 744
745 if(fHitFile){TButton *fHitMipOnly = new TButton(" Only ","OnlyHitMip()",0.6,0.16,0.9,0.22); fHitMipOnly->Draw();}
746 if(fHitFile){TButton *fHitCkoOnly = new TButton(" Only ","OnlyHitCko()",0.6,0.22,0.9,0.28); fHitCkoOnly->Draw();}
747 if(fHitFile){TButton *fHitFeeOnly = new TButton(" Only ","OnlyHitFee()",0.6,0.28,0.9,0.34); fHitFeeOnly->Draw();}
748 if(fDigFile){TButton *fDigOnly = new TButton(" Only ","OnlyDigs()" ,0.6,0.40,0.9,0.50); fDigOnly->Draw();}
749 if(fCluFile){TButton *fCluOnly = new TButton(" Only ","OnlyClus()" ,0.6,0.60,0.9,0.70); fCluOnly->Draw();}
750 if(fEsdFile){TButton *fEsdOnly = new TButton(" Only ","OnlyEsd()" ,0.6,0.80,0.9,0.90); fEsdOnly->Draw();}
66298970 751 TButton *pAll = new TButton(" ALL ","All()" ,0.5,0.90,0.7,1.00); pAll->Draw();
06a9f120 752
753 TButton *pEnd = new TButton("Quit" ,"End()" ,0.6,0.0,0.9,0.1); pEnd->Draw();
e9f11028 754 break;
755 case 2: fCanvas->SetTitle("COSMIC");
45b05be5 756 TButton *pCosBtn = new TButton("Next" ,"NextEvent()",0.0,0.0,0.3,0.1); pCosBtn->Draw();
e9f11028 757
758 break;
759 case 3: fCanvas->SetTitle("SIMULATION");
45b05be5 760 TButton *pSimBtn = new TButton("Simulate" ,"NextEvent()",0.0,0.0,0.3,0.1); pSimBtn->Draw();
761 TButton *pHitBtn = new TButton("Print hits","PrintHits()",0.0,0.2,0.3,0.3); pHitBtn->Draw();
762 TButton *pDigBtn = new TButton("Print digs","PrintDigs()",0.0,0.4,0.3,0.5); pDigBtn->Draw();
763 TButton *pCluBtn = new TButton("Print clus","PrintClus()",0.0,0.6,0.3,0.7); pCluBtn->Draw();
764 TButton *pEsdBtn = new TButton("Print ESD" ,"PrintEsd()" ,0.0,0.8,0.3,0.9); pEsdBtn->Draw();
765 if(fHitFile){ fHitMipBok = new TButton(Form("Mips %s",fStHitMip.Data()),"SwitchHitMip()",0.3,0.16,0.6,0.22); fHitMipBok->Draw();}
766 if(fHitFile){ fHitCkoBok = new TButton(Form("Ckov %s",fStHitCko.Data()),"SwitchHitCko()",0.3,0.22,0.6,0.28); fHitCkoBok->Draw();}
767 if(fHitFile){ fHitFeeBok = new TButton(Form("Fdbk %s",fStHitFee.Data()),"SwitchHitFee()",0.3,0.28,0.6,0.34); fHitFeeBok->Draw();}
768 if(fDigFile){ fDigBok = new TButton(fStDig ,"SwitchDigs()" ,0.3,0.4,0.6,0.5); fDigBok->Draw();}
769 if(fCluFile){ fCluBok = new TButton(fStClu ,"SwitchClus()" ,0.3,0.6,0.6,0.7); fCluBok->Draw();}
770 if(fEsdFile){ fEsdBok = new TButton(fStEsd ,"SwitchEsd()" ,0.3,0.8,0.6,0.9); fEsdBok->Draw();}
06a9f120 771
772 if(fHitFile){TButton *fHitMipOnly = new TButton(" Only ","OnlyHitMip()",0.6,0.16,0.9,0.22); fHitMipOnly->Draw();}
773 if(fHitFile){TButton *fHitCkoOnly = new TButton(" Only ","OnlyHitCko()",0.6,0.22,0.9,0.28); fHitCkoOnly->Draw();}
774 if(fHitFile){TButton *fHitFeeOnly = new TButton(" Only ","OnlyHitFee()",0.6,0.28,0.9,0.34); fHitFeeOnly->Draw();}
775 if(fDigFile){TButton *fDigOnly = new TButton(" Only ","OnlyDigs()" ,0.6,0.40,0.9,0.50); fDigOnly->Draw();}
776 if(fCluFile){TButton *fCluOnly = new TButton(" Only ","OnlyClus()" ,0.6,0.60,0.9,0.70); fCluOnly->Draw();}
777 if(fEsdFile){TButton *fEsdOnly = new TButton(" Only ","OnlyEsd()" ,0.6,0.80,0.9,0.90); fEsdOnly->Draw();}
66298970 778 TButton *pSimAll = new TButton(" ALL ","All()" ,0.5,0.90,0.7,1.00); pSimAll->Draw();
e9f11028 779 break;
780 }
781
0112d781 782 NextEvent();
e9f11028 783
784}//Hdisp()
785//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
45b05be5 786void SwitchHitMip()
787{
788 fStHitMip=(fStHitMip=="OFF")? "ON":"OFF";
789 GetEvent();
790}
791//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
792void SwitchHitCko()
793{
794 fStHitCko=(fStHitCko=="OFF")? "ON":"OFF";
795 GetEvent();
796}
797//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
798void SwitchHitFee()
799{
800 fStHitFee=(fStHitFee=="OFF")? "ON":"OFF";
801 GetEvent();
802}
803//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
804void SwitchDigs()
805{
806 fStDig=(fStDig=="OFF")? "ON":"OFF";
807 GetEvent();
808}
809//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
810void SwitchClus()
811{
812 fStClu=(fStClu=="OFF")? "ON":"OFF";
813 GetEvent();
814}
815//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
816void SwitchEsd()
817{
818 fStEsd=(fStEsd=="OFF")? "ON":"OFF";
06a9f120 819 GetEvent();
820}
821//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
822void AllNo()
823{
64d57cb0 824 if(fHitFile) {
825 fStHitMip = "OFF";
826 fStHitCko = "OFF";
827 fStHitFee = "OFF";
828 }
829 if(fDigFile) fStDig = "OFF";
830 if(fCluFile) fStClu = "OFF";
831 if(fEsdFile) fStEsd = "OFF";
06a9f120 832}
833//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
834void AllYes()
835{
64d57cb0 836 if(fHitFile) {
837 fStHitMip = "ON";
838 fStHitCko = "ON";
839 fStHitFee = "ON";
840 }
06a9f120 841 if(fDigFile) fStDig = "ON";
842 if(fCluFile) fStClu = "ON";
843 if(fEsdFile) fStEsd = "ON";
844}
845//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
846void All()
847{
848 AllYes();
45b05be5 849 GetEvent();
850}
851//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
06a9f120 852void OnlyHitMip()
853{
854 AllNo();
855 fStHitMip = "ON";
856 GetEvent();
857}
858//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
859void OnlyHitCko()
860{
861 AllNo();
862 fStHitCko = "ON";
863 GetEvent();
864}
865//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
866void OnlyHitFee()
867{
868 AllNo();
869 fStHitFee = "ON";
870 GetEvent();
871}
872//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
873void OnlyDigs()
874{
875 AllNo();
876 fStDig = "ON";
877 GetEvent();
878}
879//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
880void OnlyClus()
881{
882 AllNo();
883 fStClu = "ON";
884 GetEvent();
885}
886//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
887void OnlyEsd()
888{
889 AllNo();
890 fStEsd = "ON";
891 GetEvent();
892}
b8329f55 893//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
d5fc04a5 894void LoadRunLoader(){
895 if(!gSystem->IsFileInIncludePath("galice.root")) {
896 Printf("\n\n galice.root not in path: please check! \n\n");
897 return;
898 }
899 if(gAlice) gAlice=0x0;
900 gAL=AliRunLoader::Open();
901 gAL->LoadHeader();
902 gAL->LoadHits("HMPID");
903 gAL->LoadDigits("HMPID");
904 gAL->LoadRecPoints("HMPID");
905 gDL = gAL->GetDetectorLoader("HMPID");
906 if(!gDL){
907 Printf("\n\n no AliLoader present: please check! \n\n");
908 return;
909 }
910 fNevt= gAL->GetNumberOfEvents();
911}
912//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
913void ReadEvent(){
914//used by NextEvent() to read curent event and construct all render elements
915 if(fNevt && fEvt>=fNevt) fEvt=0; //loop over max event
916 if(fNevt && fEvt<0) fEvt=fNevt-1; //loop over max event
917
82692b45 918// Printf("getting event %i out of %i",fEvt,fNevt);
d5fc04a5 919
920 if(gDL) {
921
922 gAL->GetEvent(fEvt);
923
924//-------- HITS
925
926 fHitTree=gDL->TreeH();
927
928 if(fHitTree) {
929
930 fHitTree->SetBranchAddress("HMPID",&fHitLst);
931
932 for(Int_t iEnt=0;iEnt<fHitTree->GetEntries();iEnt++){
933 fHitTree->GetEntry(iEnt);
934 RenderHit(fHitLst);
935 }//prim loop
936 }//if hits tree
937
938//-------- DIGITS
939
940 fDigTree=gDL->TreeD();
941
942 if(fDigTree){
943 for(Int_t iCh=AliHMPIDParam::kMinCh;iCh<=AliHMPIDParam::kMaxCh;iCh++) fDigTree->SetBranchAddress(Form("HMPID%i",iCh),&(*fDigLst)[iCh]);
944// fDigTree->GetEvent(fEvt);
945 fDigTree->GetEntry(0);
946 RenderDig(fDigLst);
947 //cout << "pointer to the dig list " << fDigLst << endl;
948 }
949
950//-------- CLUSTERS
951
952 fCluTree= gDL->TreeR();
953
954 if(fCluTree) {
955 for(Int_t iCh=AliHMPIDParam::kMinCh;iCh<=AliHMPIDParam::kMaxCh;iCh++) fCluTree->SetBranchAddress(Form("HMPID%i",iCh),&(*fCluLst)[iCh]);
956 fCluTree->GetEntry(0);
957 RenderClu(fCluLst);
958 }
959 }
960
961//-------- ESD
962
963 if(fEsdFile){//if ESD file open
964 fEsdTree->GetEntry(fEvt);
965 RenderEsd(fEsd);
966 }//if ESD file
967
968}
969//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
970void SetEvent(Int_t ev)
971{
972 fEvt=ev;
973 GetEvent();
974}
975//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
976void SetSigmaCut(Int_t sig=0)
977{
978 qSigmaCut = sig;
979}
980//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
981void SetField()
982{
983 gROOT->LoadMacro("Field.C");
984
985 AliMagF * b = Field();
986
987AliHMPIDTracker::SetFieldMap(b,kTRUE);
988}
989//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
990void SetTrigger(Int_t type=0)
991{
992 trigType = type;
993 if(type==1) Printf(" Trigger 1 selected: at least ONE track in HMPID.");
994}
995//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
996Bool_t Trigger()
997{
998 if(trigType==0) return kTRUE;
999 if(trigType==1) {
1000 if(fEsd->GetNumberOfTracks()>0) {
1001 PrintEsd();
1002 return kTRUE;
1003 } else return kFALSE;
1004 }
1005 return kTRUE;
1006}