]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TOF/AliTOFDigitizer.cxx
Merging added and test macro
[u/mrichter/AliRoot.git] / TOF / AliTOFDigitizer.cxx
CommitLineData
68861244 1/**************************************************************************
8e72349e 2 * Copyright(c) 1998-2000, ALICE Experiment at CERN, All rights reserved. *
68861244 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
68861244 16//_________________________________________________________________________
8e72349e 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.
68861244 21// Digits are written to TreeD in branch "TOF".
68861244 22//
23// -- Author : F. Pierella (Bologna University) pierella@bo.infn.it
24//////////////////////////////////////////////////////////////////////////////
25
8e72349e 26#include <TTree.h>
27#include <TVector.h>
28#include <TObjArray.h>
29#include <TFile.h>
30#include <TDirectory.h>
31#include <TRandom.h>
68861244 32
68861244 33
8e72349e 34#include "AliTOFDigitizer.h"
0efc163f 35#include "AliTOF.h"
8e72349e 36#include "AliTOFSDigitizer.h"
68861244 37#include "AliTOFhit.h"
8e72349e 38#include "AliTOFdigit.h"
39#include "AliTOFSDigit.h"
40#include "AliTOFHitMap.h"
41#include "AliDigitizer.h"
42#include "AliRunDigitizer.h"
68861244 43
8e72349e 44#include "AliRun.h"
45#include "AliPDG.h"
46
47#include <stdlib.h>
48#include <iostream.h>
49#include <fstream.h>
68861244 50
51ClassImp(AliTOFDigitizer)
52
8e72349e 53//___________________________________________
54 AliTOFDigitizer::AliTOFDigitizer() :AliDigitizer()
68861244 55{
8e72349e 56 // Default ctor - don't use it
57 fDigits=0;
58 fSDigitsArray=0;
59 fhitMap=0;
68861244 60}
61
8e72349e 62//___________________________________________
63AliTOFDigitizer::AliTOFDigitizer(AliRunDigitizer* manager)
64 :AliDigitizer(manager)
68861244 65{
8e72349e 66 fDigits=0;
67 fSDigitsArray=0;
68 fhitMap=0;
68861244 69}
70
8e72349e 71//------------------------------------------------------------------------
68861244 72AliTOFDigitizer::~AliTOFDigitizer()
73{
8e72349e 74 // Destructor
68861244 75}
8e72349e 76
77//---------------------------------------------------------------------
78
79void AliTOFDigitizer::Exec(Option_t* option)
68861244 80{
8e72349e 81 //
82 // Perform digitization and merging.
83 // The algorithm is the following:
84 // - a hitmap is created to check if a pad is already activated;
85 // - an sdigits container is created to collect all sdigits from
86 // different files;
87 // - sdigits are summed using the hitmap;
88 // - the sdigits container is used to create the array of AliTOFdigit.
89 //
68861244 90
8e72349e 91 if(strstr(option,"deb")) cout<<"AliTOFDigitizer::Exec\n";
68861244 92
68861244 93
8e72349e 94 // get the ptr to TOF detector
95 AliTOF * tof = (AliTOF *) gAlice->GetDetector("TOF") ;
68861244 96
8e72349e 97 //Make branches
98 char branchname[20];
99 sprintf (branchname, "%s", tof->GetName ());
100
101 fDigits=new TClonesArray("AliTOFdigit",4000);
68861244 102
8e72349e 103 TTree* treeD = fManager->GetTreeD();
104 //Make branch for digits (to be created in Init())
105 tof->MakeBranchInTree(treeD,branchname,&fDigits,4000);
106
107 // container for all summed sdigits (to be created in Init())
108 fSDigitsArray=new TClonesArray("AliTOFSDigit",1000);
68861244 109
8e72349e 110 // create hit map (to be created in Init())
111 fhitMap = new AliTOFHitMap(fSDigitsArray);
68861244 112
8e72349e 113 // Loop over files to digitize
114
115 for (Int_t inputFile=0; inputFile<fManager->GetNinputs();
116 inputFile++) {
117 ReadSDigit(inputFile);
118 }
119
120 // create digits
121 CreateDigits();
122
123 // free used memory for Hit Map in current event
124 delete fhitMap;
125 fSDigitsArray->Delete();
126 treeD->Fill();
127
128 fManager->GetTreeD()->AutoSave(); // to fit with the framework
129 fDigits->Delete();
130 delete fDigits;
131
132}
133
134//---------------------------------------------------------------------
135
136void AliTOFDigitizer::CreateDigits()
137{
138 // loop on sdigits container to fill the AliTOFdigit TClonesArray
139 // start digitizing all the collected sdigits
140
141 Int_t ndump=15; // dump the first ndump created digits for each event
142
143 // get the total number of collected sdigits
144 Int_t ndig = fSDigitsArray->GetEntriesFast();
145
146 for (Int_t k = 0; k < ndig; k++) {
68861244 147
8e72349e 148 Int_t vol[5]; // location for a digit
68861244 149
8e72349e 150 // Get the information for this digit
151 AliTOFSDigit *tofsdigit = (AliTOFSDigit *) fSDigitsArray->UncheckedAt(k);
68861244 152
8e72349e 153 Int_t nslot=tofsdigit->GetNDigits(); // get the number of slots
154 // for current sdigit
68861244 155
8e72349e 156 // TOF sdigit volumes (always the same for all slots)
157 Int_t sector = tofsdigit->GetSector(); // range [1-18]
158 Int_t plate = tofsdigit->GetPlate(); // range [1- 5]
159 Int_t strip = tofsdigit->GetStrip(); // range [1-20]
160 Int_t padz = tofsdigit->GetPadz(); // range [1- 2]
161 Int_t padx = tofsdigit->GetPadx(); // range [1-48]
68861244 162
8e72349e 163 vol[0] = sector;
164 vol[1] = plate;
165 vol[2] = strip;
166 vol[3] = padx;
167 vol[4] = padz;
68861244 168
8e72349e 169 //--------------------- QA section ----------------------
170 // in the while, I perform QA
171 Bool_t isSDigitBad = (sector<1 || sector>18 || plate<1 || plate >5 || padz<1 || padz>2 || padx<1 || padx>48);
68861244 172
8e72349e 173 if (isSDigitBad) {
174 cout << "<AliTOFSDigits2Digits> strange sdigit found" << endl;
175 abort();
68861244 176 }
8e72349e 177 //-------------------------------------------------------
68861244 178
8e72349e 179 //------------------- Dump section ----------------------
180 if(k<ndump){
181 cout << k << "-th | " << "Sector " << sector << " | Plate " << plate << " | Strip " << strip << " | PadZ " << padz << " | PadX " << padx << endl;
182 cout << k << "-th sdigit" << endl;
183 cout << "----------------------------------------------------"<< endl;
68861244 184 }
8e72349e 185 // ------------------------------------------------------
68861244 186
8e72349e 187 // start loop on number of slots for current sdigit
188 for (Int_t islot = 0; islot < nslot; islot++) {
189 Float_t digit[2]; // TOF digit variables
190 Int_t tracknum[kMAXDIGITS]; // contributing tracks for the current slot
191
192 Float_t tdc=tofsdigit->GetTdc(islot); digit[0]=tdc;
193 Float_t adc=tofsdigit->GetAdc(islot); digit[1]=adc;
194
195 tracknum[0]=tofsdigit->GetTrack(islot,0);
196 tracknum[1]=tofsdigit->GetTrack(islot,1);
197 tracknum[2]=tofsdigit->GetTrack(islot,2);
68861244 198
8e72349e 199
200 // adding a TOF digit for each slot
201 AliTOFdigit* newDigit=new AliTOFdigit(tracknum, vol, digit);
202 fDigits->Add(newDigit);
68861244 203 }
68861244 204
8e72349e 205 } // end loop on sdigits - end digitizing all collected sdigits
206
68861244 207}
8e72349e 208
209//---------------------------------------------------------------------
210
211void AliTOFDigitizer::ReadSDigit(Int_t inputFile )
68861244 212{
8e72349e 213 // Read sdigits for current event and inputFile;
214 // store them into the sdigits container
215 // and update the hit map
216 // SDigits from different files are assumed to
217 // be created with the same simulation parameters.
68861244 218
8e72349e 219 // get the treeS from manager
220 TTree* currentTreeS=fManager->GetInputTreeS(inputFile);
221
222 // get the branch TOF inside the treeS
223 TClonesArray * sdigitsDummyContainer= new TClonesArray("AliTOFSDigit", 1000);
224
225 // check if the branch exist
226 TBranch* tofBranch=currentTreeS->GetBranch("TOF");
227
228 if(!tofBranch){
229 Fatal("ReadSDigit","TOF branch not found for input %d",inputFile);
230 }
68861244 231
8e72349e 232 tofBranch->SetAddress(&sdigitsDummyContainer);
68861244 233
8e72349e 234 Int_t nEntries = (Int_t)tofBranch->GetEntries();
235
236 // Loop through all entries in the tree
237 Int_t nbytes;
238
239 for (Int_t iEntry = 0; iEntry < nEntries; iEntry++) {
68861244 240
8e72349e 241 // Import the tree
242 nbytes += tofBranch->GetEvent(iEntry);
68861244 243
8e72349e 244 // Get the number of sdigits
245 Int_t ndig = sdigitsDummyContainer->GetEntriesFast();
246
247 for (Int_t k=0; k<ndig; k++) {
248 AliTOFSDigit *tofSdigit= (AliTOFSDigit*) sdigitsDummyContainer->UncheckedAt(k);
249
250 Int_t vol[5]; // location for a sdigit
251
252 // check the sdigit volume
253 vol[0] = tofSdigit->GetSector();
254 vol[1] = tofSdigit->GetPlate();
255 vol[2] = tofSdigit->GetStrip();
256 vol[3] = tofSdigit->GetPadx();
257 vol[4] = tofSdigit->GetPadz();
258
259 if (fhitMap->TestHit(vol) != kEmpty) {
260 AliTOFSDigit *sdig = static_cast<AliTOFSDigit*>(fhitMap->GetHit(vol));
261 sdig->Update(tofSdigit);
262
263 } else {
264
265 CollectSDigit(tofSdigit); // collect the current sdigit
266 fhitMap->SetHit(vol); // update the hitmap for location vol
267
268 } // if (hitMap->TestHit(vol) != kEmpty)
269
270 } // for (Int_t k=0; k<ndig; k++)
271
272 } // end loop on entries
273
274 sdigitsDummyContainer->Delete();
275 sdigitsDummyContainer=0;
276
277}
278
279
280//_____________________________________________________________________________
281void AliTOFDigitizer::CollectSDigit(AliTOFSDigit * sdigit)
282{
283 //
284 // Add a TOF digit
285 // new with placement used
286 AliTOFSDigit sdigitCopy=AliTOFSDigit(*sdigit); // make a copy of the current sdigit
287 fSDigitsArray->Add(&sdigitCopy); // put it into tmp array
68861244 288}