#if !defined(__CINT__) || defined(__MAKECINT__) #include #include #include #include #include #include #include #include "AliCDBManager.h" #include "AliGeomManager.h" #include "AliHeader.h" #include "AliITS.h" #include "AliITSDetTypeRec.h" #include "AliITSgeom.h" #include "AliITSRecPoint.h" #include "AliRun.h" #endif Int_t ShowITSRecPoints(){ /////////////////////////////////////////////////////////////////////// // Macro to check clusters in the 6 ITS layers // // Provides: // // 6 canvases with 9 plots each (1 canvas for each layer) // // 3 canvases with cluster XY coordinates for the first 3 events // /////////////////////////////////////////////////////////////////////// if (gClassTable->GetID("AliRun") < 0) { gInterpreter->ExecuteMacro("loadlibs.C"); } // Set OCDB if needed AliCDBManager* man = AliCDBManager::Instance(); if (!man->IsDefaultStorageSet()) { printf("Setting a local default storage and run number 0\n"); man->SetDefaultStorage("local://$ALICE_ROOT"); man->SetRun(0); } else { printf("Using deafult storage \n"); } // retrives geometry if(!gGeoManager){ AliGeomManager::LoadGeometry("geometry.root"); } AliRunLoader* rl = AliRunLoader::Open("galice.root"); if (rl == 0x0){ cerr<<"Can not open session RL=NULL"<< endl; return -1; } Int_t retval = rl->LoadHeader(); if (retval){ cerr<<"LoadHeader returned error"<GetLoader("ITSLoader"); if(!ITSloader){ cerr<<"ITS loader not found"<LoadRecPoints("read"); AliITSgeom *geom = ITSloader->GetITSgeom(); Float_t cluglo[3]={0.,0.,0.}; AliITSDetTypeRec* detTypeRec = new AliITSDetTypeRec(); detTypeRec->SetITSgeom(geom); detTypeRec->SetDefaults(); Int_t modmin=geom->GetStartDet(0); Int_t modmax=geom->GetLastDet(2); Int_t totmod=modmax-modmin; Float_t xlim[6]={4.5,7.5,16.,26.,40.,45.}; Float_t zlim[6]={15.,15.,22.,30.,45.,55.}; TH1F* hlayer=new TH1F("hlayer","",6,-0.5,5.5); TH1F** hmod=new TH1F*[6]; TH1F** hxl=new TH1F*[6]; TH1F** hzl=new TH1F*[6]; TH1F** hxg=new TH1F*[6]; TH1F** hyg=new TH1F*[6]; TH1F** hzg=new TH1F*[6]; TH1F** hr=new TH1F*[6]; TH1F** hphi=new TH1F*[6]; TH1F** hq=new TH1F*[6]; Char_t name[10]; for(Int_t iLay=0;iLay<6;iLay++){ sprintf(name,"hmod%d",iLay+1); hmod[iLay]=new TH1F(name,"",totmod,modmin-0.5,modmax+0.5); hmod[iLay]->GetXaxis()->SetTitle("Module"); hmod[iLay]->GetXaxis()->CenterTitle(); sprintf(name,"hxloc%d",iLay+1); hxl[iLay]=new TH1F(name,"",100,-4.,4.); hxl[iLay]->GetXaxis()->SetTitle("Xloc (cm)"); hxl[iLay]->GetXaxis()->CenterTitle(); sprintf(name,"hzloc%d",iLay+1); hzl[iLay]=new TH1F(name,"",100,-4.,4.); hzl[iLay]->GetXaxis()->SetTitle("Zloc (cm)"); hzl[iLay]->GetXaxis()->CenterTitle(); sprintf(name,"hxgl%d",iLay+1); hxg[iLay]=new TH1F(name,"",100,-xlim[iLay],xlim[iLay]); hxg[iLay]->GetXaxis()->SetTitle("Xglob (cm)"); hxg[iLay]->GetXaxis()->CenterTitle(); sprintf(name,"hygl%d",iLay+1); hyg[iLay]=new TH1F(name,"",100,-xlim[iLay],xlim[iLay]); hyg[iLay]->GetXaxis()->SetTitle("Yglob (cm)"); hyg[iLay]->GetXaxis()->CenterTitle(); sprintf(name,"hzgl%d",iLay+1); hzg[iLay]=new TH1F(name,"",100,-zlim[iLay],zlim[iLay]); hzg[iLay]->GetXaxis()->SetTitle("Zglob (cm)"); hzg[iLay]->GetXaxis()->CenterTitle(); sprintf(name,"hr%d",iLay+1); hr[iLay]=new TH1F(name,"",100,0.,50.); hr[iLay]->GetXaxis()->SetTitle("r (cm)"); hr[iLay]->GetXaxis()->CenterTitle(); sprintf(name,"hphi%d",iLay+1); hphi[iLay]=new TH1F(name,"",100,-TMath::Pi(),TMath::Pi()); hphi[iLay]->GetXaxis()->SetTitle("#varphi (rad)"); hphi[iLay]->GetXaxis()->CenterTitle(); sprintf(name,"hq%d",iLay+1); hq[iLay]=new TH1F(name,"",100,0.,300.); hq[iLay]->GetXaxis()->SetTitle("Charge (keV)"); hq[iLay]->GetXaxis()->CenterTitle(); } TGraph **gpts=new TGraph*[3]; TGraph2D **gpts3d=new TGraph2D*[3]; for(Int_t i=0;i<3;i++){ gpts[i]=new TGraph(0); gpts3d[i]=new TGraph2D(0); } Int_t totev=rl->GetNumberOfEvents(); printf("Total Number of events = %d\n",totev); for(Int_t iev=0;ievGetEvent(iev); TTree *TR = ITSloader->TreeR(); TClonesArray *ITSrec = detTypeRec->RecPoints(); TBranch *branch = 0; if(TR && ITSrec){ branch = ITSloader->TreeR()->GetBranch("ITSRecPoints"); if(branch)branch->SetAddress(&ITSrec); } Int_t nparticles = rl->GetHeader()->GetNtrack(); cout<<"Event #"<Divide(3,3,0.001,0.001); c[iLay]->cd(1); hmod[iLay]->Draw(); c[iLay]->cd(2); hxl[iLay]->Draw(); c[iLay]->cd(3); hzl[iLay]->Draw(); c[iLay]->cd(4); hxg[iLay]->Draw(); c[iLay]->cd(5); hyg[iLay]->Draw(); c[iLay]->cd(6); hzg[iLay]->Draw(); c[iLay]->cd(7); hr[iLay]->Draw(); c[iLay]->cd(8); hphi[iLay]->Draw(); c[iLay]->cd(9); hq[iLay]->Draw(); } TCanvas *cev0; cev0=new TCanvas("cev0","Event 0",600,600); gpts[0]->SetMarkerStyle(7); gpts[0]->SetTitle(0); gpts[0]->Draw("AP"); TCanvas *cev1; cev1=new TCanvas("cev1","Event 1",600,600); gpts[1]->SetMarkerStyle(7); gpts[1]->SetTitle(0); gpts[1]->Draw("AP"); TCanvas *cev2; cev2=new TCanvas("cev2","Event 2",600,600); gpts[2]->SetMarkerStyle(7); gpts[2]->SetTitle(0); gpts[2]->Draw("AP"); return 0; }