]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TOF/AliTOFDigitizer.cxx
class for TOF alignment
[u/mrichter/AliRoot.git] / TOF / AliTOFDigitizer.cxx
1 /**************************************************************************
2  * Copyright(c) 1998-2000, 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 // This is a TTask that makes TOF-Digits out of TOF-SDigits. 
18 // The simulation of the detector is performed at sdigits level:
19 // during digitization the unique task is the sum of all sdigits in the
20 // same pad.
21 // Digits are written to TreeD in branch "TOF".
22 //
23 // -- Author :  F. Pierella (Bologna University) pierella@bo.infn.it
24 //////////////////////////////////////////////////////////////////////////////
25
26 #include <stdlib.h>
27 #include <Riostream.h>
28
29 #include <TTree.h> 
30 #include <TVector.h>
31 #include <TObjArray.h>
32 #include <TFile.h>
33 #include <TDirectory.h>
34 #include <TRandom.h>
35
36 #include "AliLog.h"
37 #include "AliRun.h"
38 #include "AliRunLoader.h"
39 #include "AliLoader.h"
40 #include "AliDigitizer.h"
41 #include "AliRunDigitizer.h"
42 #include "AliPDG.h"
43
44 #include "AliTOFDigitizer.h"
45 #include "AliTOF.h"
46 #include "AliTOFSDigitizer.h"
47 #include "AliTOFhit.h"
48 #include "AliTOFdigit.h"
49 #include "AliTOFSDigit.h"
50 #include "AliTOFHitMap.h"
51 #include "AliTOFcalib.h"
52
53 ClassImp(AliTOFDigitizer)
54
55 //___________________________________________
56   AliTOFDigitizer::AliTOFDigitizer()  :AliDigitizer()
57 {
58   // Default ctor - don't use it
59   fDigits=0;
60   fSDigitsArray=0;
61   fhitMap=0;
62 }
63
64 //___________________________________________
65 AliTOFDigitizer::AliTOFDigitizer(AliRunDigitizer* manager) 
66     :AliDigitizer(manager) 
67 {
68   fDigits=0;
69   fSDigitsArray=0;
70   fhitMap=0;
71 }
72
73 //------------------------------------------------------------------------
74 AliTOFDigitizer::~AliTOFDigitizer()
75 {
76   // Destructor
77 }
78
79 //---------------------------------------------------------------------
80
81 void AliTOFDigitizer::Exec(Option_t* /*option*/)
82 {
83   //
84   // Perform digitization and merging.
85   // The algorithm is the following:
86   // - a hitmap is created to check if a pad is already activated;
87   // - an sdigits container is created to collect all sdigits from
88   //   different files;
89   // - sdigits are summed using the hitmap;
90   // - the sdigits container is used to create the array of AliTOFdigit.
91   //
92
93   AliDebug(1, "");
94
95
96   // get the ptr to TOF detector
97   AliTOF * tof = (AliTOF *) gAlice->GetDetector("TOF") ;
98
99   //Make branches
100   char branchname[20];
101   sprintf (branchname, "%s", tof->GetName ());
102
103   fDigits=new TClonesArray("AliTOFdigit",4000);
104  
105   AliRunLoader* outrl = AliRunLoader::GetRunLoader(fManager->GetOutputFolderName());
106   if (outrl == 0x0)
107    {
108      AliError("Can not find Run Loader in output folder.");
109      return;
110    }
111    
112   outrl->CdGAFile();
113   TFile *in=(TFile*)gFile;
114   TDirectory *savedir=gDirectory;
115
116   AliTOFGeometry *tofGeometry;
117   if (!in->IsOpen()) {
118     AliWarning("Geometry file is not open default  TOF geometry will be used");
119     tofGeometry = new AliTOFGeometry();
120   }
121   else {
122     in->cd();
123     tofGeometry = (AliTOFGeometry*)in->Get("TOFgeometry");
124   }
125
126   savedir->cd();
127
128   AliLoader* outgime = outrl->GetLoader("TOFLoader");
129   if (outgime == 0x0)
130    {
131      AliError("Can not get TOF Loader from Output Run Loader.");
132      return;
133    }
134   
135   TTree* treeD = outgime->TreeD();
136   if (treeD == 0x0)
137    {
138      outgime->MakeTree("D");
139      treeD = outgime->TreeD();
140    }
141   //Make branch for digits (to be created in Init())
142   tof->MakeBranchInTree(treeD,branchname,&fDigits,4000);
143
144   // container for all summed sdigits (to be created in Init())
145   fSDigitsArray=new TClonesArray("AliTOFSDigit",1000);
146   
147   // create hit map (to be created in Init())
148   fhitMap = new AliTOFHitMap(fSDigitsArray, tofGeometry);
149   
150   // Loop over files to digitize
151
152   for (Int_t inputFile=0; inputFile<fManager->GetNinputs();
153        inputFile++) {
154     ReadSDigit(inputFile);
155    }
156
157   // create digits
158   CreateDigits();
159
160   // free used memory for Hit Map in current event
161   delete fhitMap;
162   fSDigitsArray->Delete();
163   delete fSDigitsArray;
164
165   treeD->Fill();
166  
167   outgime->WriteDigits("OVERWRITE");
168   outgime->UnloadDigits();
169   fDigits->Delete();
170   delete fDigits;
171
172 }
173
174 //---------------------------------------------------------------------
175
176 void AliTOFDigitizer::CreateDigits(Option_t *option)
177 {
178   // loop on sdigits container to fill the AliTOFdigit TClonesArray
179   // start digitizing all the collected sdigits 
180
181   Int_t ndump=0; // dump the first ndump created digits for each event
182
183   // get the total number of collected sdigits
184   Int_t ndig = fSDigitsArray->GetEntriesFast();
185
186   for (Int_t k = 0; k < ndig; k++) {
187     
188     Int_t  vol[5];  // location for a digit
189     for (Int_t i=0; i<5; i++) vol[i] = -1;
190     
191     // Get the information for this digit
192     AliTOFSDigit *tofsdigit = (AliTOFSDigit *) fSDigitsArray->UncheckedAt(k);
193     
194     Int_t nslot=tofsdigit->GetNDigits(); // get the number of slots
195     // for current sdigit
196     
197     // TOF sdigit volumes (always the same for all slots)
198     Int_t sector    = tofsdigit->GetSector(); // range [0-17]
199     Int_t plate     = tofsdigit->GetPlate();  // range [0- 4]
200     Int_t strip     = tofsdigit->GetStrip();  // range [0-14/18/19]
201     Int_t padz      = tofsdigit->GetPadz();   // range [0- 1]
202     Int_t padx      = tofsdigit->GetPadx();   // range [0-47]
203     
204     vol[0] = sector;
205     vol[1] = plate;
206     vol[2] = strip;
207     vol[3] = padx;
208     vol[4] = padz;
209     
210     //--------------------- QA section ----------------------
211     // in the while, I perform QA
212     Bool_t isSDigitBad = (sector<0 || sector>17 || plate<0 || plate >4 || padz<0 || padz>1 || padx<0 || padx>47);
213     
214     if (isSDigitBad) {
215       //AliFatal("strange sdigit found");
216       AliFatal(Form("strange sdigit found   %3i  %2i  %2i  %3i    %3i", sector, plate, padz, padx, strip));
217     }
218     //-------------------------------------------------------
219     
220     //------------------- Dump section ----------------------
221     if(k<ndump){
222       cout << k << "-th | " << "Sector " << sector << " | Plate " << plate << " | Strip " << strip << " | PadZ " << padz << " | PadX " << padx << endl;
223       cout << k << "-th sdigit" << endl;
224       cout << "----------------------------------------------------"<< endl;
225     }
226     // ------------------------------------------------------
227     
228     // start loop on number of slots for current sdigit
229     for (Int_t islot = 0; islot < nslot; islot++) {
230       Float_t  digit[2];     // TOF digit variables
231       Int_t tracknum[kMAXDIGITS];     // contributing tracks for the current slot
232       
233       Float_t tdc=tofsdigit->GetTdc(islot); digit[0]=tdc;
234       Float_t adc=tofsdigit->GetAdc(islot); digit[1]=adc;
235       
236       tracknum[0]=tofsdigit->GetTrack(islot,0);
237       tracknum[1]=tofsdigit->GetTrack(islot,1);
238       tracknum[2]=tofsdigit->GetTrack(islot,2);
239       
240       // new with placement must be used
241       // adding a TOF digit for each slot
242       TClonesArray &aDigits = *fDigits;
243       Int_t last=fDigits->GetEntriesFast();
244       new (aDigits[last]) AliTOFdigit(tracknum, vol, digit);
245
246     }
247     
248   } // end loop on sdigits - end digitizing all collected sdigits
249   if(strstr(option,"DECALIB")){
250     AliTOFcalib * cal = new AliTOFcalib();
251     cal->Init();
252     cal->DecalibrateDigits(fDigits);
253   }    
254 }
255
256 //---------------------------------------------------------------------
257
258 void AliTOFDigitizer::ReadSDigit(Int_t inputFile )
259 {
260   // Read sdigits for current event and inputFile; 
261   // store them into the sdigits container
262   // and update the hit map
263   // SDigits from different files are assumed to
264   // be created with the same simulation parameters.
265   
266   // get the treeS from manager
267   AliRunLoader* rl = AliRunLoader::GetRunLoader(fManager->GetInputFolderName(inputFile));
268   if (rl == 0x0)
269    {
270      AliError(Form("Can not find Run Loader in input %d folder.",inputFile));
271      return;
272    }
273
274   AliLoader* gime = rl->GetLoader("TOFLoader");
275   if (gime == 0x0)
276    {
277      AliError(Form("Can not get TOF Loader from Input %d Run Loader.",inputFile));
278      return;
279    }
280
281   TTree* currentTreeS=gime->TreeS();
282   if (currentTreeS == 0x0)
283    {
284      Int_t retval = gime->LoadSDigits();
285      if (retval) 
286       {
287          AliError(Form("Error occured while loading S. Digits for Input %d",inputFile));
288          return;
289       }
290      currentTreeS=gime->TreeS();
291      if (currentTreeS == 0x0)
292       {
293          AliError(Form("Can not get S. Digits Tree for Input %d",inputFile));
294          return;
295       }
296    } 
297   // get the branch TOF inside the treeS
298   TClonesArray * sdigitsDummyContainer= new TClonesArray("AliTOFSDigit",  1000); 
299
300   // check if the branch exist
301   TBranch* tofBranch=currentTreeS->GetBranch("TOF");
302
303   if(!tofBranch){
304     AliFatal(Form("TOF branch not found for input %d",inputFile));
305   }
306   
307   tofBranch->SetAddress(&sdigitsDummyContainer);           
308   
309   Int_t nEntries = (Int_t)tofBranch->GetEntries();                                
310
311   // Loop through all entries in the tree
312   Int_t nbytes = 0;
313   
314   for (Int_t iEntry = 0; iEntry < nEntries; iEntry++) {
315     
316     // Import the tree
317     nbytes += tofBranch->GetEvent(iEntry);
318     
319     // Get the number of sdigits
320     Int_t ndig = sdigitsDummyContainer->GetEntriesFast();
321     
322     for (Int_t k=0; k<ndig; k++) {
323       AliTOFSDigit *tofSdigit= (AliTOFSDigit*) sdigitsDummyContainer->UncheckedAt(k);
324       
325       Int_t  vol[5]; // location for a sdigit
326       for (Int_t i=0; i<5; i++) vol[i] = -1;
327
328       // check the sdigit volume
329       vol[0] = tofSdigit->GetSector();
330       vol[1] = tofSdigit->GetPlate();
331       vol[2] = tofSdigit->GetStrip();
332       vol[3] = tofSdigit->GetPadx();
333       vol[4] = tofSdigit->GetPadz();
334       
335       if (fhitMap->TestHit(vol) != kEmpty) {
336         AliTOFSDigit *sdig = static_cast<AliTOFSDigit*>(fhitMap->GetHit(vol));
337         sdig->Update(tofSdigit);
338
339       } else {
340
341         CollectSDigit(tofSdigit); // collect the current sdigit
342         fhitMap->SetHit(vol);     // update the hitmap for location vol
343
344       } // if (hitMap->TestHit(vol) != kEmpty)
345       
346     } // for (Int_t k=0; k<ndig; k++)
347     sdigitsDummyContainer->Delete();
348
349   } // end loop on entries
350
351   delete sdigitsDummyContainer;
352
353 }
354
355
356 //_____________________________________________________________________________
357 void AliTOFDigitizer::CollectSDigit(AliTOFSDigit * sdigit)
358 {
359   //
360   // Add a TOF sdigit in container
361   // new with placement must be used
362   TClonesArray &aSDigitsArray = *fSDigitsArray;
363   Int_t last=fSDigitsArray->GetEntriesFast();
364   // make a copy of the current sdigit and
365   // put it into tmp array
366   new (aSDigitsArray[last]) AliTOFSDigit(*sdigit);
367 }