]> git.uio.no Git - u/mrichter/AliRoot.git/blob - ITS/ITSDigitsToClusters.C
Bug fix in the creation of the AliITSgeom::fShape entry for SPD. Now there is both...
[u/mrichter/AliRoot.git] / ITS / ITSDigitsToClusters.C
1 #include "iostream.h"
2
3 void ITSDigitsToClusters (Int_t evNumber1=0,Int_t evNumber2=0) 
4 {
5 /////////////////////////////////////////////////////////////////////////
6 //   This macro is a small example of a ROOT macro
7 //   illustrating how to read the output of GALICE
8 //   and do some analysis.
9 //   
10 /////////////////////////////////////////////////////////////////////////
11
12 // Dynamically link some shared libs
13
14    if (gClassTable->GetID("AliRun") < 0) {
15       gROOT->LoadMacro("loadlibs.C");
16       loadlibs();
17    } else {
18       delete gAlice;
19       gAlice=0;
20    }
21
22
23 // Connect the Root Galice file containing Geometry, Kine and Hits
24
25    TFile *file = (TFile*)gROOT->GetListOfFiles()->FindObject("galice.root");
26    printf("file %p\n",file);
27    if (file) file->Close(); 
28    file = new TFile("galice.root","UPDATE");
29    file->ls();
30
31    printf ("I'm after Map \n");
32
33 // Get AliRun object from file or create it if not on file
34
35    if (!gAlice) {
36        gAlice = (AliRun*)file->Get("gAlice");
37        if (gAlice) printf("AliRun object found on file\n");
38        if (!gAlice) gAlice = new AliRun("gAlice","Alice test program");
39    }
40    printf ("I'm after gAlice \n");
41    
42    AliITS *ITS  = (AliITS*) gAlice->GetModule("ITS");
43    if (!ITS) return;
44
45    AliITSgeom *geom = ITS->GetITSgeom();
46
47
48    // NOTE: if you foresee to have (in segmentation or response) parameter
49    // values other than the default ones, and these values are used not only in
50    // simulation but in cluster finder as well, please set them via your
51    // local Config.C - the streamer will take care of writing the correct
52    // info and you'll no longer be obliged to set them again for your cluster
53    // finder as it's done in this macro 
54
55
56
57    // Set the models for cluster finding
58
59    // SPD
60
61
62
63    ITS->MakeTreeC();
64    Int_t nparticles=gAlice->GetEvent(0);
65
66    AliITSDetType *iDetType=ITS->DetType(0);
67    AliITSsegmentationSPD *seg0=(AliITSsegmentationSPD*)iDetType->GetSegmentationModel();
68    TClonesArray *dig0  = ITS->DigitsAddress(0);
69    TClonesArray *recp0  = ITS->ClustersAddress(0);
70    AliITSClusterFinderSPD *rec0=new AliITSClusterFinderSPD(seg0,dig0,recp0);
71    ITS->SetReconstructionModel(0,rec0);
72
73    // SDD
74
75    AliITSDetType *iDetType=ITS->DetType(1);
76    AliITSgeom *geom = ITS->GetITSgeom();
77
78    AliITSsegmentationSDD *seg1=(AliITSsegmentationSDD*)iDetType->GetSegmentationModel();
79    if (!seg1) seg1 = new AliITSsegmentationSDD(geom);
80    AliITSresponseSDD *res1 = (AliITSresponseSDD*)iDetType->GetResponseModel();
81    if (!res1) res1=new AliITSresponseSDD();
82
83    Float_t baseline,noise;
84    res1->GetNoiseParam(noise,baseline);
85    Float_t noise_after_el = res1->GetNoiseAfterElectronics();
86    Float_t thres = baseline;
87    thres += (4.*noise_after_el);  // TB // (4.*noise_after_el);
88    printf("thres %f\n",thres);
89    res1->Print();
90
91    TClonesArray *dig1  = ITS->DigitsAddress(1);
92    TClonesArray *recp1  = ITS->ClustersAddress(1);
93    AliITSClusterFinderSDD *rec1=new AliITSClusterFinderSDD(seg1,res1,dig1,recp1);
94    rec1->SetCutAmplitude((int)thres);
95    ITS->SetReconstructionModel(1,rec1);
96    rec1->Print();
97
98    // SSD
99
100    AliITSDetType *iDetType=ITS->DetType(2);
101    AliITSsegmentationSSD *seg2=(AliITSsegmentationSSD*)iDetType->GetSegmentationModel();
102    seg2->SetDetSize(72960.,40000.,303.);
103    TClonesArray *dig2  = ITS->DigitsAddress(2);
104    AliITSClusterFinderSSD *rec2=new AliITSClusterFinderSSD(seg2,dig2);
105    ITS->SetReconstructionModel(2,rec2);
106    // test
107    //printf("SSD dimensions %f %f \n",seg2->Dx(),seg2->Dz());
108    //printf("SSD nstrips %d %d \n",seg2->Npz(),seg2->Npx());
109
110
111
112 //
113 // Event Loop
114 //
115
116    cout << "Looking for clusters...\n";
117    
118    TStopwatch timer;
119
120    if(!gAlice->TreeR()) gAlice->MakeTree("R");
121    //make branch
122    ITS->MakeBranch("R");
123
124    for (int nev=evNumber1; nev<= evNumber2; nev++) {
125        if(nev>0) {
126          nparticles = gAlice->GetEvent(nev);
127          gAlice->SetEvent(nev);
128          if(!gAlice->TreeR()) gAlice-> MakeTree("R");
129          ITS->MakeBranch("R");
130        }     
131        cout << "nev         " <<nev<<endl;
132        cout << "nparticles  " <<nparticles<<endl;
133        if (nev < evNumber1) continue;
134        if (nparticles <= 0) return;
135
136        Int_t last_entry=0;
137        timer.Start();
138        ITS->DigitsToRecPoints(nev,last_entry,"All");
139        timer.Stop(); timer.Print(); 
140    } // event loop 
141
142    delete rec0;
143    delete rec1;
144    delete rec2;
145
146    file->Close();
147 }
148
149
150
151
152
153
154
155
156
157
158
159
160
161