]> git.uio.no Git - u/mrichter/AliRoot.git/blame - ITS/AliITSsimulationSSD.cxx
In Open() and GotoEvent() try the ESD operations first, fallback to run-loader.
[u/mrichter/AliRoot.git] / ITS / AliITSsimulationSSD.cxx
CommitLineData
57817f7c 1/**************************************************************************
2 * Copyright(c) 1998-1999, 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 **************************************************************************/
88cb7938 15
57817f7c 16/* $Id$ */
17
b0f5e3fc 18#include <stdio.h>
8a00af9a 19#include <stdlib.h>
4ae5bbc4 20#include <Riostream.h>
b0f5e3fc 21#include <TObjArray.h>
e939a978 22#include <TRandom.h>
23
fd61217e 24#include "AliITSmodule.h"
57817f7c 25#include "AliITSMapA2.h"
c7a4dac0 26#include "AliITSpList.h"
fcf95fc7 27#include "AliITSCalibrationSSD.h"
c7a4dac0 28#include "AliITSsegmentationSSD.h"
14a74335 29//#include "AliITSdcsSSD.h"
b0f5e3fc 30#include "AliITS.h"
3a97c582 31#include "AliITShit.h"
e869281d 32#include "AliITSdigitSSD.h"
b0f5e3fc 33#include "AliRun.h"
569a17d8 34#include "AliITSgeom.h"
57817f7c 35#include "AliITSsimulationSSD.h"
84541af4 36#include "AliITSTableSSD.h"
14a74335 37//#include "AliITSresponseSSD.h"
b0f5e3fc 38
925e6570 39ClassImp(AliITSsimulationSSD)
fd61217e 40////////////////////////////////////////////////////////////////////////
8ba39da9 41// //
14a74335 42// Author: Enrico Fragiacomo //
43// enrico.fragiacomo@ts.infn.it //
82adfb7d 44// Last revised: june 2008 //
14a74335 45// //
46// AliITSsimulationSSD is the simulation of SSD. //
8ba39da9 47////////////////////////////////////////////////////////////////////////
fd61217e 48
57817f7c 49//----------------------------------------------------------------------
aacedc3e 50AliITSsimulationSSD::AliITSsimulationSSD():AliITSsimulation(),
14a74335 51 //fDCS(0),
aacedc3e 52fMapA2(0),
53fIonE(0.0),
54fDifConst(),
55fDriftVel(){
56 //default Constructor
57 //Inputs:
58 // none.
59 // Outputs:
60 // none.
61 // Return:
62 // A default construction AliITSsimulationSSD class
57817f7c 63}
0315d466 64//----------------------------------------------------------------------
8ba39da9 65AliITSsimulationSSD::AliITSsimulationSSD(AliITSDetTypeSim* dettyp):
66AliITSsimulation(dettyp),
14a74335 67//fDCS(0),
aacedc3e 68fMapA2(0),
69fIonE(0.0),
70fDifConst(),
71fDriftVel(){
3a97c582 72 // Constructor
73 // Input:
14a74335 74 // AliITSDetTypeSim Pointer to the SSD dettype to be used
3a97c582 75 // Outputs:
76 // none.
77 // Return
aacedc3e 78 // A standard constructed AliITSsimulationSSD class
3a97c582 79
aacedc3e 80 Init();
c7a4dac0 81}
82//----------------------------------------------------------------------
aacedc3e 83void AliITSsimulationSSD::Init(){
14a74335 84 // Inilizer, Inilizes all of the variable as needed in a standard place.
85 // Input:
86 // AliITSsegmentationSSD *seg Pointer to the SSD segmentation to be used
87 // AliITSCalibrationSSD *resp Pointer to the SSD responce class to be used
88 // Outputs:
89 // none.
90 // Return
91 // none.
8ba39da9 92 AliITSsegmentationSSD* seg = (AliITSsegmentationSSD*)GetSegmentationModel(2);
14a74335 93
94 SetDriftVelocity(); // use default values in .h file
95 SetIonizeE(); // use default values in .h file
96 SetDiffConst(); // use default values in .h file
97 fpList = new AliITSpList(2,GetNStrips());
98 fMapA2 = new AliITSMapA2(seg);
b0f5e3fc 99}
0315d466 100//______________________________________________________________________
57817f7c 101AliITSsimulationSSD& AliITSsimulationSSD::operator=(
3a97c582 102 const AliITSsimulationSSD &s){
84541af4 103 // Operator =
104
105 if(this==&s) return *this;
106
14a74335 107 // this->fDCS = new AliITSdcsSSD(*(s.fDCS));
84541af4 108 this->fMapA2 = s.fMapA2;
109 this->fIonE = s.fIonE;
110 this->fDifConst[0] = s.fDifConst[0];
111 this->fDifConst[1] = s.fDifConst[1];
112 this->fDriftVel[0] = s.fDriftVel[0];
113 this->fDriftVel[1] = s.fDriftVel[1];
114 return *this;
b0f5e3fc 115}
85f5e9c2 116/*
57817f7c 117//______________________________________________________________________
5402d9ca 118AliITSsimulation& AliITSsimulationSSD::operator=(
d2f55a22 119 const AliITSsimulation &s){
120 // Operator =
121
122 if(this==&s) return *this;
123 Error("AliITSsimulationSSD","Not allowed to make a = with "
124 "AliITSsimulationSSD Using default creater instead");
125
126 return *this;
127}
85f5e9c2 128*/
d2f55a22 129//______________________________________________________________________
ac74f489 130AliITSsimulationSSD::AliITSsimulationSSD(const AliITSsimulationSSD &source):
7537d03c 131 AliITSsimulation(source),
132fMapA2(source.fMapA2),
133fIonE(source.fIonE),
134fDifConst(),
135fDriftVel(){
84541af4 136 // copy constructor
7537d03c 137 fDifConst[0] = source.fDifConst[0];
138 fDifConst[1] = source.fDifConst[1];
139 fDriftVel[0] = source.fDriftVel[0];
140 fDriftVel[1] = source.fDriftVel[1];
b0f5e3fc 141}
0315d466 142//______________________________________________________________________
b0f5e3fc 143AliITSsimulationSSD::~AliITSsimulationSSD() {
84541af4 144 // destructor
145 delete fMapA2;
14a74335 146 //delete fDCS;
0315d466 147}
57817f7c 148//______________________________________________________________________
3a97c582 149void AliITSsimulationSSD::InitSimulationModule(Int_t module,Int_t event){
150 // Creates maps to build the list of tracks for each sumable digit
151 // Inputs:
152 // Int_t module // Module number to be simulated
153 // Int_t event // Event number to be simulated
154 // Outputs:
155 // none.
156 // Return
157 // none.
158
aacedc3e 159 SetModuleNumber(module);
160 SetEventNumber(event);
3a97c582 161 fMapA2->ClearMap();
162 fpList->ClearMap();
163}
164//______________________________________________________________________
165void AliITSsimulationSSD::FinishSDigitiseModule(){
166 // Does the Sdigits to Digits work
167 // Inputs:
168 // none.
169 // Outputs:
170 // none.
171 // Return:
172 // none.
173
14a74335 174 FillMapFrompList(fpList); // need to check if needed here or not????
175 SDigitToDigit(fModule,fpList);
176 fpList->ClearMap();
177 fMapA2->ClearMap();
3a97c582 178}
179//______________________________________________________________________
aacedc3e 180void AliITSsimulationSSD::DigitiseModule(AliITSmodule *mod,Int_t,Int_t) {
84541af4 181 // Digitizes hits for one SSD module
aacedc3e 182 SetModuleNumber(mod->GetIndex());
14a74335 183
3a97c582 184 HitsToAnalogDigits(mod,fpList);
aacedc3e 185 SDigitToDigit(GetModuleNumber(),fpList);
14a74335 186
3a97c582 187 fpList->ClearMap();
84541af4 188 fMapA2->ClearMap();
c7a4dac0 189}
190//______________________________________________________________________
aacedc3e 191void AliITSsimulationSSD::SDigitiseModule(AliITSmodule *mod,Int_t,Int_t) {
3a97c582 192 // Produces Summable/Analog digits and writes them to the SDigit tree.
c7a4dac0 193
ac74f489 194 HitsToAnalogDigits(mod,fpList);
c7a4dac0 195
ac74f489 196 WriteSDigits(fpList);
14a74335 197
ac74f489 198 fpList->ClearMap();
199 fMapA2->ClearMap();
c7a4dac0 200}
201//______________________________________________________________________
202void AliITSsimulationSSD::SDigitToDigit(Int_t module,AliITSpList *pList){
84541af4 203 // Takes the pList and finishes the digitization.
14a74335 204
84541af4 205 ApplyNoise(pList,module);
206 ApplyCoupling(pList,module);
14a74335 207 ApplyDeadChannels(module);
208
8ba39da9 209 ChargeToSignal(module,pList);
c7a4dac0 210}
211//______________________________________________________________________
212void AliITSsimulationSSD::HitsToAnalogDigits(AliITSmodule *mod,
84541af4 213 AliITSpList *pList){
3a97c582 214 // Loops over all hits to produce Analog/floating point digits. This
215 // is also the first task in producing standard digits.
14a74335 216 Int_t lasttrack = -2;
217 Int_t idtrack = -2;
218 Double_t x0=0.0, y0=0.0, z0=0.0;
219 Double_t x1=0.0, y1=0.0, z1=0.0;
220 Double_t de=0.0;
221 Int_t module = mod->GetIndex();
222
223 AliITSsegmentationSSD* seg = (AliITSsegmentationSSD*)GetSegmentationModel(2);
224
82adfb7d 225 TObjArray *hits = mod->GetHits();
226 Int_t nhits = hits->GetEntriesFast();
227 if (nhits<=0) return;
228 AliITSTableSSD * tav = new AliITSTableSSD(GetNStrips());
229 module = mod->GetIndex();
230 if ( mod->GetLayer() == 6 ) seg->SetLayer(6);
231 if ( mod->GetLayer() == 5 ) seg->SetLayer(5);
232 for(Int_t i=0; i<nhits; i++) {
233 // LineSegmentL returns 0 if the hit is entering
234 // If hits is exiting returns positions of entering and exiting hits
235 // Returns also energy loss
236 if(GetDebug(4)){
237 cout << i << " ";
238 cout << mod->GetHit(i)->GetXL() << " "<<mod->GetHit(i)->GetYL();
239 cout << " " << mod->GetHit(i)->GetZL();
240 cout << endl;
241 } // end if
242 if (mod->LineSegmentL(i, x0, x1, y0, y1, z0, z1, de, idtrack)) {
243 HitToDigit(module, x0, y0, z0, x1, y1, z1, de,tav);
244 if (lasttrack != idtrack || i==(nhits-1)) {
245 GetList(idtrack,i,module,pList,tav);
14a74335 246 } // end if
82adfb7d 247 lasttrack=idtrack;
248 } // end if
249 } // end loop over hits
250 delete tav; tav=0;
251 return;
b0f5e3fc 252}
0315d466 253//----------------------------------------------------------------------
fd61217e 254void AliITSsimulationSSD::HitToDigit(Int_t module, Double_t x0, Double_t y0,
84541af4 255 Double_t z0, Double_t x1, Double_t y1,
256 Double_t z1, Double_t de,
257 AliITSTableSSD *tav) {
14a74335 258
8ba39da9 259 // hit to digit conversion
14a74335 260
8ba39da9 261 AliITSsegmentationSSD* seg = (AliITSsegmentationSSD*)GetSegmentationModel(2);
14a74335 262 // Turns hits in SSD module into one or more digits.
82adfb7d 263 //Float_t tang[2] = {0.0,0.0};
264 //seg->Angles(tang[0], tang[1]);//stereo<<->tan(stereo)~=stereo
14a74335 265 Double_t x, y, z;
266 Double_t dex=0.0, dey=0.0, dez=0.0;
267 Double_t pairs; // pair generation energy per step.
268 Double_t sigma[2] = {0.,0.};// standard deviation of the diffusion gaussian
269 Double_t tdrift[2] = {0.,0.}; // time of drift
270 Double_t w;
271 Double_t inf[2], sup[2], par0[2];
272
273 // Steps in the module are determined "manually" (i.e. No Geant)
274 // NumOfSteps divide path between entering and exiting hits in steps
275 Int_t numOfSteps = NumOfSteps(x1, y1, z1, dex, dey, dez);
276 // Enery loss is equally distributed among steps
277 de = de/numOfSteps;
278 pairs = de/GetIonizeE(); // e-h pairs generated
82adfb7d 279
280 //-----------------------------------------------------
281 // stepping
282 //-----------------------------------------------------
14a74335 283 for(Int_t j=0; j<numOfSteps; j++) { // stepping
82adfb7d 284
14a74335 285 x = x0 + (j+0.5)*dex;
286 y = y0 + (j+0.5)*dey;
287 if ( y > (seg->Dy()/2+10)*1.0E-4 ) {
288 // check if particle is within the detector
289 Warning("HitToDigit",
d35ad08f 290 "hit out of detector y0=%e,y=%e,dey=%e,j =%d module=%d, exceed=%e",
291 y0,y,dey,j,module, y-(seg->Dy()/2+10)*1.0E-4);
14a74335 292 return;
293 } // end if
294 z = z0 + (j+0.5)*dez;
82adfb7d 295
14a74335 296 if(GetDebug(4)) cout <<"HitToDigit "<<x<<" "<<y<<" "<<z<< " "
297 <<dex<<" "<<dey<<" "<<dez<<endl;
82adfb7d 298
299 if(seg->GetLayer()==6) {
300 y=-y; // Lay6 module has sensor up-side-down!!!
301 }
302
303 // w is the coord. perpendicular to the strips
304 // Float_t xp=x*1.e+4,zp=z*1.e+4; // microns
305 Float_t xp=x,zp=z;
306 seg->GetPadTxz(xp,zp);
307
308 Int_t k;
309 //---------------------------------------------------------
310 // Pside
311 //------------------------------------------------------------
312 k=0;
313
14a74335 314 // calculate drift time
315 // y is the minimum path
316 tdrift[0] = (y+(seg->Dy()*1.0E-4)/2)/GetDriftVelocity(0);
82adfb7d 317
318 w = xp; // P side strip number
319
320 if((w<(-0.5)) || (w>(GetNStrips()-0.5))) {
321 // this check rejects hits in regions not covered by strips
322 // 0.5 takes into account boundaries
323 if(GetDebug(4)) cout << "Dead SSD region, x,z="<<x<<","<<z<<endl;
324 return; // There are dead region on the SSD sensitive volume!!!
325 } // end if
326
327 // sigma is the standard deviation of the diffusion gaussian
328 if(tdrift[k]<0) return;
329
330 sigma[k] = TMath::Sqrt(2*GetDiffConst(k)*tdrift[k]);
331 sigma[k] /= (GetStripPitch()*1.0E-4); //units of Pitch
332
333 if(sigma[k]==0.0) {
334 Error("HitToDigit"," sigma[%d]=0",k);
335 exit(0);
336 } // end if
337
338 par0[k] = pairs;
339 // we integrate the diffusion gaussian from -3sigma to 3sigma
340 inf[k] = w - 3*sigma[k]; // 3 sigma from the gaussian average
341 sup[k] = w + 3*sigma[k]; // 3 sigma from the gaussian average
342 // IntegrateGaussian does the actual
343 // integration of diffusion gaussian
344 IntegrateGaussian(k, par0[k], w, sigma[k], inf[k], sup[k],tav);
345
346 //------------------------------------------------------
347 // end Pside
348 //-------------------------------------------------------
349
350 //------------------------------------------------------
351 // Nside
352 //-------------------------------------------------------
353 k=1;
14a74335 354 tdrift[1] = ((seg->Dy()*1.0E-4)/2-y)/GetDriftVelocity(1);
355
82adfb7d 356 //tang[k]=TMath::Tan(tang[k]);
357
358 w = zp; // N side strip number
359
360 if((w<(-0.5)) || (w>(GetNStrips()-0.5))) {
361 // this check rejects hits in regions not covered by strips
362 // 0.5 takes into account boundaries
363 if(GetDebug(4)) cout << "Dead SSD region, x,z="<<x<<","<<z<<endl;
364 return; // There are dead region on the SSD sensitive volume.
365 } // end if
366
14a74335 367 // sigma is the standard deviation of the diffusion gaussian
82adfb7d 368 if(tdrift[k]<0) return;
369
370 sigma[k] = TMath::Sqrt(2*GetDiffConst(k)*tdrift[k]);
371 sigma[k] /= (GetStripPitch()*1.0E-4); //units of Pitch
372
373 if(sigma[k]==0.0) {
374 Error("HitToDigit"," sigma[%d]=0",k);
375 exit(0);
376 } // end if
377
378 par0[k] = pairs;
379 // we integrate the diffusion gaussian from -3sigma to 3sigma
380 inf[k] = w - 3*sigma[k]; // 3 sigma from the gaussian average
381 sup[k] = w + 3*sigma[k]; // 3 sigma from the gaussian average
382 // IntegrateGaussian does the actual
383 // integration of diffusion gaussian
384 IntegrateGaussian(k, par0[k], w, sigma[k], inf[k], sup[k],tav);
385
386 //-------------------------------------------------
387 // end Nside
388 //-------------------------------------------------
389
390
14a74335 391 } // end stepping
b0f5e3fc 392}
14a74335 393
57817f7c 394//______________________________________________________________________
c7a4dac0 395void AliITSsimulationSSD::ApplyNoise(AliITSpList *pList,Int_t module){
14a74335 396 // Apply Noise.
397 Int_t ix;
398 Double_t signal,noise;
399 AliITSCalibrationSSD* res =(AliITSCalibrationSSD*)GetCalibrationModel(module);
400
401 // Pside
402 for(ix=0;ix<GetNStrips();ix++){ // loop over strips
403
404 // noise is gaussian
ced4d9bc 405 noise = (Double_t) gRandom->Gaus(0,res->GetNoiseP(ix));
14a74335 406
407 // need to calibrate noise
408 // NOTE. noise from the calibration database comes uncalibrated,
409 // it needs to be calibrated in order to be added
410 // to the signal. It will be decalibrated later on together with the noise
569a17d8 411 noise *= (Double_t) res->GetGainP(ix);
14a74335 412
413 // noise comes in ADC channels from the calibration database
414 // It needs to be converted back to electronVolts
415 noise /= res->GetDEvToADC(1.);
416
417 // Finally, noise is added to the signal
418 signal = noise + fMapA2->GetSignal(0,ix);//get signal from map
419 fMapA2->SetHit(0,ix,signal); // give back signal to map
420 if(signal>0.0) pList->AddNoise(0,ix,module,noise);
421 } // loop over strip
422
423 // Nside
424 for(ix=0;ix<GetNStrips();ix++){ // loop over strips
ced4d9bc 425 noise = (Double_t) gRandom->Gaus(0,res->GetNoiseN(ix));// give noise to signal
569a17d8 426 noise *= (Double_t) res->GetGainN(ix);
14a74335 427 noise /= res->GetDEvToADC(1.);
428 signal = noise + fMapA2->GetSignal(1,ix);//get signal from map
429 fMapA2->SetHit(1,ix,signal); // give back signal to map
430 if(signal>0.0) pList->AddNoise(1,ix,module,noise);
431 } // loop over strip
432
b0f5e3fc 433}
0315d466 434//______________________________________________________________________
c7a4dac0 435void AliITSsimulationSSD::ApplyCoupling(AliITSpList *pList,Int_t module) {
14a74335 436 // Apply the effect of electronic coupling between channels
437 Int_t ix;
438 Double_t signal=0;
439 AliITSCalibrationSSD* res =(AliITSCalibrationSSD*)GetCalibrationModel(module);
440
441 Double_t *contrLeft = new Double_t[GetNStrips()];
442 Double_t *contrRight = new Double_t[GetNStrips()];
443
444 // P side coupling
445 for(ix=0;ix<GetNStrips();ix++){
446 if(ix>0) contrLeft[ix] = fMapA2->GetSignal(0,ix-1)*res->GetCouplingPL();
447 else contrLeft[ix] = 0.0;
448 if(ix<(GetNStrips()-1)) contrRight[ix] = fMapA2->GetSignal(0,ix+1)*res->GetCouplingPR();
449 else contrRight[ix] = 0.0;
450 } // loop over strips
451
452 for(ix=0;ix<GetNStrips();ix++){
453 signal = contrLeft[ix] + contrRight[ix] - res->GetCouplingPL() * fMapA2->GetSignal(0,ix)
454 - res->GetCouplingPR() * fMapA2->GetSignal(0,ix);
455 fMapA2->AddSignal(0,ix,signal);
456 if(signal>0.0) pList->AddNoise(0,ix,module,signal);
457 } // loop over strips
458
459 // N side coupling
460 for(ix=0;ix<GetNStrips();ix++){
461 if(ix>0) contrLeft[ix] = fMapA2->GetSignal(1,ix-1)*res->GetCouplingNL();
462 else contrLeft[ix] = 0.0;
463 if(ix<(GetNStrips()-1)) contrRight[ix] = fMapA2->GetSignal(1,ix+1)*res->GetCouplingNR();
464 else contrRight[ix] = 0.0;
465 } // loop over strips
466
467 for(ix=0;ix<GetNStrips();ix++){
468 signal = contrLeft[ix] + contrRight[ix] - res->GetCouplingNL() * fMapA2->GetSignal(0,ix)
469 - res->GetCouplingNR() * fMapA2->GetSignal(0,ix);
470 fMapA2->AddSignal(1,ix,signal);
471 if(signal>0.0) pList->AddNoise(1,ix,module,signal);
472 } // loop over strips
473
474
475 delete [] contrLeft;
476 delete [] contrRight;
b0f5e3fc 477}
14a74335 478
479//______________________________________________________________________
480void AliITSsimulationSSD::ApplyDeadChannels(Int_t module) {
481 // Kill dead channels setting gain to zero
482
14a74335 483 AliITSCalibrationSSD* res = (AliITSCalibrationSSD*)GetCalibrationModel(module);
484
a64f9843 485 for(Int_t i=0;i<GetNStrips();i++){
14a74335 486
ced4d9bc 487 if(res->IsPChannelBad(i)) res->SetGainP(i,0.0);
488 if(res->IsNChannelBad(i)) res->SetGainN(i,0.0);
a64f9843 489
490 } // loop over strips
14a74335 491
492}
493
0315d466 494//______________________________________________________________________
fd61217e 495Float_t AliITSsimulationSSD::F(Float_t av, Float_t x, Float_t s) {
aacedc3e 496 // Computes the integral of a gaussian using Error Function
497 Float_t sqrt2 = TMath::Sqrt(2.0);
498 Float_t sigm2 = sqrt2*s;
499 Float_t integral;
fd61217e 500
aacedc3e 501 integral = 0.5 * TMath::Erf( (x - av) / sigm2);
502 return integral;
0315d466 503}
504//______________________________________________________________________
fd61217e 505void AliITSsimulationSSD::IntegrateGaussian(Int_t k,Double_t par, Double_t w,
84541af4 506 Double_t sigma,
507 Double_t inf, Double_t sup,
508 AliITSTableSSD *tav) {
aacedc3e 509 // integrate the diffusion gaussian
510 // remind: inf and sup are w-3sigma and w+3sigma
511 // we could define them here instead of passing them
512 // this way we are free to introduce asimmetry
513
514 Double_t a=0.0, b=0.0;
515 Double_t dXCharge1 = 0.0, dXCharge2 = 0.0;
516 // dXCharge1 and 2 are the charge to two neighbouring strips
517 // Watch that we only involve at least two strips
518 // Numbers greater than 2 of strips in a cluster depend on
519 // geometry of the track and delta rays, not charge diffusion!
520
521 Double_t strip = TMath::Floor(w); // closest strip on the left
522
523 if ( TMath::Abs((strip - w)) < 0.5) {
524 // gaussian mean is closer to strip on the left
525 a = inf; // integration starting point
526 if((strip+0.5)<=sup) {
527 // this means that the tail of the gaussian goes beyond
528 // the middle point between strips ---> part of the signal
529 // is given to the strip on the right
530 b = strip + 0.5; // integration stopping point
531 dXCharge1 = F( w, b, sigma) - F(w, a, sigma);
532 dXCharge2 = F( w, sup, sigma) - F(w ,b, sigma);
533 }else {
534 // this means that all the charge is given to the strip on the left
535 b = sup;
536 dXCharge1 = 0.9973; // gaussian integral at 3 sigmas
537 dXCharge2 = 0.0;
538 } // end if
539 dXCharge1 = par * dXCharge1;// normalize by mean of number of carriers
540 dXCharge2 = par * dXCharge2;
541
542 // for the time being, signal is the charge
543 // in ChargeToSignal signal is converted in ADC channel
544 fMapA2->AddSignal(k,(Int_t)strip,dXCharge1);
545 tav->Add(k,(Int_t)strip);
546 if(((Int_t) strip) < (GetNStrips()-1)) {
547 // strip doesn't have to be the last (remind: last=GetNStrips()-1)
548 // otherwise part of the charge is lost
549 fMapA2->AddSignal(k,((Int_t)strip+1),dXCharge2);
550 tav->Add(k,((Int_t)(strip+1)));
551 } // end if
552 }else{
553 // gaussian mean is closer to strip on the right
554 strip++; // move to strip on the rigth
555 b = sup; // now you know where to stop integrating
556 if((strip-0.5)>=inf) {
557 // tail of diffusion gaussian on the left goes left of
558 // middle point between strips
559 a = strip - 0.5; // integration starting point
560 dXCharge1 = F(w, b, sigma) - F(w, a, sigma);
561 dXCharge2 = F(w, a, sigma) - F(w, inf, sigma);
562 }else {
563 a = inf;
564 dXCharge1 = 0.9973; // gaussian integral at 3 sigmas
565 dXCharge2 = 0.0;
566 } // end if
567 dXCharge1 = par * dXCharge1; // normalize by means of carriers
568 dXCharge2 = par * dXCharge2;
569 // for the time being, signal is the charge
570 // in ChargeToSignal signal is converted in ADC channel
571 fMapA2->AddSignal(k,(Int_t)strip,dXCharge1);
572 tav->Add(k,(Int_t)strip);
573 if(((Int_t) strip) > 0) {
574 // strip doesn't have to be the first
575 // otherwise part of the charge is lost
576 fMapA2->AddSignal(k,((Int_t)strip-1),dXCharge2);
577 tav->Add(k,((Int_t)(strip-1)));
578 } // end if
579 } // end if
b0f5e3fc 580}
0315d466 581//______________________________________________________________________
fd61217e 582Int_t AliITSsimulationSSD::NumOfSteps(Double_t x, Double_t y, Double_t z,
aacedc3e 583 Double_t &dex,Double_t &dey,
584 Double_t &dez){
585 // number of steps
586 // it also returns steps for each coord
587 //AliITSsegmentationSSD *seg = new AliITSsegmentationSSD();
588
589 Double_t step = 25E-4;
590 //step = (Double_t) seg->GetStepSize(); // step size (cm)
591 Int_t numOfSteps = (Int_t) (TMath::Sqrt(x*x+y*y+z*z)/step);
592
593 if (numOfSteps < 1) numOfSteps = 1; // one step, at least
14a74335 594 //numOfSteps=1;
aacedc3e 595
596 // we could condition the stepping depending on the incident angle
597 // of the track
598 dex = x/numOfSteps;
599 dey = y/numOfSteps;
600 dez = z/numOfSteps;
601
602 return numOfSteps;
fd61217e 603}
0315d466 604//----------------------------------------------------------------------
c7a4dac0 605void AliITSsimulationSSD::GetList(Int_t label,Int_t hit,Int_t mod,
84541af4 606 AliITSpList *pList,AliITSTableSSD *tav) {
aacedc3e 607 // loop over nonzero digits
608 Int_t ix,i;
609 Double_t signal=0.;
610
611 for(Int_t k=0; k<2; k++) {
84541af4 612 ix=tav->Use(k);
aacedc3e 613 while(ix>-1){
614 signal = fMapA2->GetSignal(k,ix);
615 if(signal==0.0) {
616 ix=tav->Use(k);
617 continue;
618 } // end if signal==0.0
619 // check the signal magnitude
620 for(i=0;i<pList->GetNSignals(k,ix);i++){
621 signal -= pList->GetTSignal(k,ix,i);
622 } // end for i
623 // compare the new signal with already existing list
624 if(signal>0)pList->AddSignal(k,ix,label,hit,mod,signal);
625 ix=tav->Use(k);
626 } // end of loop on strips
627 } // end of loop on P/N side
628 tav->Clear();
fd61217e 629}
0315d466 630//----------------------------------------------------------------------
8ba39da9 631void AliITSsimulationSSD::ChargeToSignal(Int_t module,AliITSpList *pList) {
aacedc3e 632 // charge to signal
633 static AliITS *aliITS = (AliITS*)gAlice->GetModule("ITS");
634 Float_t threshold = 0.;
635 Int_t size = AliITSdigitSSD::GetNTracks();
636 Int_t * digits = new Int_t[size];
637 Int_t * tracks = new Int_t[size];
638 Int_t * hits = new Int_t[size];
639 Int_t j1;
640 Float_t charges[3] = {0.0,0.0,0.0};
641 Float_t signal;
fcf95fc7 642 AliITSCalibrationSSD* res =(AliITSCalibrationSSD*)GetCalibrationModel(module);
aacedc3e 643
644 for(Int_t k=0;k<2;k++){ // both sides (0=Pside, 1=Nside)
14a74335 645 for(Int_t ix=0;ix<GetNStrips();ix++){ // loop over strips
646
647 // if strip is dead -> gain=0
648 if( ((k==0)&&(res->GetGainP(ix)==0)) || ((k==1)&&(res->GetGainN(ix)==0))) continue;
649
3a4139a2 650 signal = fMapA2->GetSignal(k,ix);
14a74335 651 // signal has to be uncalibrated
652 // In real life, gains are supposed to be calculated from calibration runs,
653 // stored in the calibration DB and used in the reconstruction
654 // (see AliITSClusterFinderSSD.cxx)
655 if(k==0) signal /= res->GetGainP(ix);
656 else signal /= res->GetGainN(ix);
657
658 // signal is converted in unit of ADC
3a4139a2 659 signal = res->GetDEvToADC(signal);
14a74335 660 if(signal>4096.) signal = 4096.;//if exceeding, accumulate last one
661
662 // threshold for zero suppression is set on the basis of the noise
663 // A good value is 3*sigma_noise
ced4d9bc 664 if(k==0) threshold = res->GetNoiseP(ix);
665 else threshold = res->GetNoiseN(ix);
666
14a74335 667 threshold *= res->GetZSThreshold(); // threshold at 3 sigma noise
ced4d9bc 668
14a74335 669 if(signal < threshold) continue;
ced4d9bc 670 //cout<<signal<<" "<<threshold<<endl;
14a74335 671
672 digits[0] = k;
673 digits[1] = ix;
674 digits[2] = TMath::Nint(signal);
675 for(j1=0;j1<size;j1++)if(j1<pList->GetNEntries()){
676 // only three in digit.
677 tracks[j1] = pList->GetTrack(k,ix,j1);
678 hits[j1] = pList->GetHit(k,ix,j1);
679 }else{
680 tracks[j1] = -3;
681 hits[j1] = -1;
682 } // end for j1
683 // finally add digit
684 aliITS->AddSimDigit(2,0,digits,tracks,hits,charges);
685 } // end for ix
aacedc3e 686 } // end for k
687 delete [] digits;
688 delete [] tracks;
689 delete [] hits;
c7a4dac0 690}
691//______________________________________________________________________
692void AliITSsimulationSSD::WriteSDigits(AliITSpList *pList){
aacedc3e 693 // Fills the Summable digits Tree
694 Int_t i,ni,j,nj;
695 static AliITS *aliITS = (AliITS*)gAlice->GetModule("ITS");
696
697 pList->GetMaxMapIndex(ni,nj);
698 for(i=0;i<ni;i++)for(j=0;j<nj;j++){
699 if(pList->GetSignalOnly(i,j)>0.0){
700 aliITS->AddSumDigit(*(pList->GetpListItem(i,j)));
701 if(GetDebug(4)) cout << "pListSSD: "<<*(pList->GetpListItem(i,j))
702 << endl;
703 } // end if
704 } // end for i,j
84541af4 705 return;
c7a4dac0 706}
707//______________________________________________________________________
708void AliITSsimulationSSD::FillMapFrompList(AliITSpList *pList){
aacedc3e 709 // Fills fMap2A from the pList of Summable digits
710 Int_t k,ix;
c7a4dac0 711
aacedc3e 712 for(k=0;k<2;k++)for(ix=0;ix<GetNStrips();ix++)
713 fMapA2->AddSignal(k,ix,pList->GetSignal(k,ix));
714 return;
b0f5e3fc 715}
57817f7c 716//______________________________________________________________________
717void AliITSsimulationSSD::Print(ostream *os){
aacedc3e 718 //Standard output format for this class
719
720 //AliITSsimulation::Print(os);
721 *os << fIonE <<",";
722 *os << fDifConst[0] <<","<< fDifConst[1] <<",";
723 *os << fDriftVel[0] <<","<< fDriftVel[1];
724 //*os <<","; fDCS->Print(os);
725 //*os <<","; fMapA2->Print(os);
57817f7c 726}
727//______________________________________________________________________
728void AliITSsimulationSSD::Read(istream *is){
aacedc3e 729 // Standard output streaming function.
730
731 //AliITSsimulation::Read(is);
732 *is >> fIonE;
733 *is >> fDifConst[0] >> fDifConst[1];
734 *is >> fDriftVel[0] >> fDriftVel[1];
735 //fDCS->Read(is);
736 //fMapA2->Read(is);
57817f7c 737}
738//______________________________________________________________________
739ostream &operator<<(ostream &os,AliITSsimulationSSD &source){
aacedc3e 740 // Standard output streaming function.
57817f7c 741
aacedc3e 742 source.Print(&os);
743 return os;
57817f7c 744}
745//______________________________________________________________________
746istream &operator>>(istream &os,AliITSsimulationSSD &source){
aacedc3e 747 // Standard output streaming function.
57817f7c 748
aacedc3e 749 source.Read(&os);
750 return os;
57817f7c 751}
c7a4dac0 752//______________________________________________________________________
84541af4 753
754
755
756