]> git.uio.no Git - u/mrichter/AliRoot.git/blame - ITS/AliITSsimulationSPDdubna.cxx
Avoid compiler warnings.
[u/mrichter/AliRoot.git] / ITS / AliITSsimulationSPDdubna.cxx
CommitLineData
f74211b0 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 **************************************************************************/
15
12e7c97c 16/*
17$Id$
18*/
4ae5bbc4 19#include <Riostream.h>
409f8c84 20#include <TH1.h>
21#include <TMath.h>
409f8c84 22#include <TParticle.h>
f77f13c8 23#include <TRandom.h>
24#include <TString.h>
409f8c84 25
409f8c84 26#include "AliITS.h"
f77f13c8 27#include "AliITSMapA2.h"
e869281d 28#include "AliITSdigitSPD.h"
f77f13c8 29#include "AliITShit.h"
409f8c84 30#include "AliITSmodule.h"
2cc6b29a 31#include "AliITSpList.h"
aacedc3e 32#include "AliITSresponseSPD.h"
f77f13c8 33#include "AliITSsegmentationSPD.h"
34#include "AliITSsimulationSPDdubna.h"
35#include "AliLog.h"
36#include "AliRun.h"
409f8c84 37
f74211b0 38//#define DEBUG
409f8c84 39
40ClassImp(AliITSsimulationSPDdubna)
41////////////////////////////////////////////////////////////////////////
12e7c97c 42// Version: 1
43// Modified by Bjorn S. Nilsen
409f8c84 44// Version: 0
45// Written by Boris Batyunya
46// December 20 1999
47//
12e7c97c 48// AliITSsimulationSPDdubna is to do the simulation of SPDs.
2cc6b29a 49//______________________________________________________________________
aacedc3e 50AliITSsimulationSPDdubna::AliITSsimulationSPDdubna():
51AliITSsimulation(),
52fHis(0),
53fSPDname(),
54fCoupling(0){
12e7c97c 55 // Default constructor.
56 // Inputs:
57 // none.
58 // Outputs:
59 // none.
60 // Return:
61 // A default constructed AliITSsimulationSPDdubna class.
2cc6b29a 62
f77f13c8 63 AliDebug(1,Form("Calling degault constructor"));
409f8c84 64}
2cc6b29a 65//______________________________________________________________________
66AliITSsimulationSPDdubna::AliITSsimulationSPDdubna(AliITSsegmentation *seg,
aacedc3e 67 AliITSresponse *resp,Int_t cup):
68AliITSsimulation(seg,resp),
69fHis(0),
70fSPDname(),
71fCoupling(cup){
2cc6b29a 72 // standard constructor
12e7c97c 73 // Inputs:
74 // AliITSsegmentation *seg A pointer to the segmentation class
75 // to be used for this simulation
76 // AliITSresponse *resp A pointer to the responce class to
77 // be used for this simulation
aacedc3e 78 // Int_t cup The type of coupling to be used
79 // =1 uses SetCoupling, =2 uses SetCouplingOld
80 // With diffusion tured off
81 // =3 uses SetCoupling, =4 uses SetCouplingOld
82 // with diffusion on other, no coupling.
12e7c97c 83 // Outputs:
84 // none.
85 // Return:
86 // A default constructed AliITSsimulationSPDdubna class.
409f8c84 87
f77f13c8 88 AliDebug(1,
89 Form("Calling degault constructor seg=%p resp=%p cup=%d",seg,resp,cup));
aacedc3e 90 if(cup==1||cup==2){ // For the moment, remove defusion if Coupling is
91 // set.
92 resp->SetTemperature(0.0);
93 resp->SetDistanceOverVoltage(0.0);
94 } // end if
95 Init();
12e7c97c 96}
97//______________________________________________________________________
aacedc3e 98void AliITSsimulationSPDdubna::Init(){
12e7c97c 99 // Initilization
100 // Inputs:
aacedc3e 101 // none.
12e7c97c 102 // Outputs:
103 // none.
104 // Return:
105 // none.
106 const Double_t kmictocm = 1.0e-4; // convert microns to cm.
409f8c84 107
12e7c97c 108 SetModuleNumber(0);
109 SetEventNumber(0);
110 SetMap(new AliITSpList(GetNPixelsZ(),GetNPixelsX()));
aacedc3e 111 GetResp(0,0)->SetDistanceOverVoltage(kmictocm*GetSeg()->Dy(),50.0);
2cc6b29a 112}
113//______________________________________________________________________
114AliITSsimulationSPDdubna::~AliITSsimulationSPDdubna(){
115 // destructor
12e7c97c 116 // Inputs:
117 // none.
118 // Outputs:
119 // none.
120 // Return:
121 // none.
409f8c84 122
2cc6b29a 123 if (fHis) {
aacedc3e 124 fHis->Delete();
125 delete fHis;
2cc6b29a 126 } // end if fHis
409f8c84 127}
2cc6b29a 128//______________________________________________________________________
129AliITSsimulationSPDdubna::AliITSsimulationSPDdubna(const
130 AliITSsimulationSPDdubna
12e7c97c 131 &s) : AliITSsimulation(s){
132 // Copy Constructor
133 // Inputs:
134 // AliITSsimulationSPDdubna &s The original class for which
135 // this class is a copy of
136 // Outputs:
137 // none.
138 // Return:
139
140 *this = s;
2cc6b29a 141 return;
142}
143//______________________________________________________________________
144AliITSsimulationSPDdubna& AliITSsimulationSPDdubna::operator=(const
12e7c97c 145 AliITSsimulationSPDdubna &s){
2cc6b29a 146 // Assignment operator
12e7c97c 147 // Inputs:
148 // AliITSsimulationSPDdubna &s The original class for which
149 // this class is a copy of
150 // Outputs:
151 // none.
152 // Return:
153
154 if(&s == this) return *this;
aacedc3e 155 this->fHis = s.fHis;
156 fCoupling = s.fCoupling;
157 fSPDname = s.fSPDname;
2cc6b29a 158 return *this;
159}
160//______________________________________________________________________
5402d9ca 161AliITSsimulation& AliITSsimulationSPDdubna::operator=(const
d2f55a22 162 AliITSsimulation &s){
163 // Assignment operator
164 // Inputs:
165 // AliITSsimulationSPDdubna &s The original class for which
166 // this class is a copy of
167 // Outputs:
168 // none.
169 // Return:
170
171 if(&s == this) return *this;
172 Error("AliITSsimulationSPDdubna","Not allowed to make a = with "
173 "AliITSsimulationSPDdubna","Using default creater instead");
174
175 return *this;
176}
177//______________________________________________________________________
2cc6b29a 178void AliITSsimulationSPDdubna::InitSimulationModule(Int_t module, Int_t event){
179 // This function creates maps to build the list of tracks for each
12e7c97c 180 // summable digit. Inputs defined by base class.
2cc6b29a 181 // Inputs:
182 // Int_t module // Module number to be simulated
183 // Int_t event // Event number to be simulated
2cc6b29a 184 // Outputs:
185 // none
2cc6b29a 186 // Returns:
187 // none
409f8c84 188
f77f13c8 189 AliDebug(1,Form("(module=%d,event=%d)",module,event));
12e7c97c 190 SetModuleNumber(module);
191 SetEventNumber(event);
192 ClearMap();
2cc6b29a 193}
194//_____________________________________________________________________
aacedc3e 195void AliITSsimulationSPDdubna::SDigitiseModule(AliITSmodule *mod,Int_t,
196 Int_t event){
12e7c97c 197 // This function begins the work of creating S-Digits. Inputs defined
198 // by base class.
2cc6b29a 199 // Inputs:
200 // AliITSmodule *mod // module
aacedc3e 201 // Int_t // not used
202 // Int_t event // Event number
2cc6b29a 203 // Outputs:
204 // none
2cc6b29a 205 // Return:
206 // test // test returns kTRUE if the module contained hits
207 // // test returns kFALSE if it did not contain hits
409f8c84 208
f77f13c8 209 AliDebug(1,Form("(mod=%p, ,event=%d)",mod,event));
aacedc3e 210 if(!(mod->GetNhits())){
f77f13c8 211 AliDebug(1,Form("In event %d module %d there are %d hits returning.",
212 event, mod->GetIndex(),mod->GetNhits()));
aacedc3e 213 return;// if module has no hits don't create Sdigits
214 } // end if
12e7c97c 215 SetModuleNumber(mod->GetIndex());
216 SetEventNumber(event);
217 HitToSDigit(mod);
218 WriteSDigits();
219 ClearMap();
409f8c84 220}
2cc6b29a 221//______________________________________________________________________
12e7c97c 222void AliITSsimulationSPDdubna::WriteSDigits(){
2cc6b29a 223 // This function adds each S-Digit to pList
2cc6b29a 224 // Inputs:
12e7c97c 225 // none.
2cc6b29a 226 // Outputs:
12e7c97c 227 // none.
2cc6b29a 228 // Return:
229 // none
7d50ea21 230 Int_t ix, nix, iz, niz;
2cc6b29a 231 static AliITS *aliITS = (AliITS*)gAlice->GetModule("ITS");
232
f77f13c8 233 AliDebug(1,Form("Writing SDigits for module %d",GetModuleNumber()));
12e7c97c 234 GetMap()->GetMaxMapIndex(niz, nix);
235 for(iz=0; iz<niz; iz++)for(ix=0; ix<nix; ix++){
aacedc3e 236 if(GetMap()->GetSignalOnly(iz,ix)>0.0){
237 aliITS->AddSumDigit(*(GetMap()->GetpListItem(iz,ix)));
f77f13c8 238 if(AliDebugLevel()>0) {
239 AliDebug(1,Form("%d, %d",iz,ix));
240 cout << *(GetMap()->GetpListItem(iz,ix)) << endl;
aacedc3e 241 } // end if GetDebug
242 } // end if GetMap()->GetSignalOnly(iz,ix)>0.0
7d50ea21 243 } // end for iz,ix
2cc6b29a 244 return;
245}
246//______________________________________________________________________
247void AliITSsimulationSPDdubna::FinishSDigitiseModule(){
248 // This function calls SDigitsToDigits which creates Digits from SDigits
2cc6b29a 249 // Inputs:
250 // none
2cc6b29a 251 // Outputs:
252 // none
253 // Return
254 // none
409f8c84 255
f77f13c8 256 AliDebug(1,"()");
aacedc3e 257 pListToDigits(); // Charge To Signal both adds noise and
12e7c97c 258 ClearMap();
aacedc3e 259 return;
409f8c84 260}
2cc6b29a 261//______________________________________________________________________
aacedc3e 262void AliITSsimulationSPDdubna::DigitiseModule(AliITSmodule *mod,Int_t,
263 Int_t){
2cc6b29a 264 // This function creates Digits straight from the hits and then adds
265 // electronic noise to the digits before adding them to pList
12e7c97c 266 // Each of the input variables is passed along to HitToSDigit
2cc6b29a 267 // Inputs:
12e7c97c 268 // AliITSmodule *mod module
aacedc3e 269 // Int_t Dummy.
270 // Int_t Dummy
2cc6b29a 271 // Outputs:
12e7c97c 272 // none.
2cc6b29a 273 // Return:
12e7c97c 274 // none.
409f8c84 275
f77f13c8 276 AliDebug(1,Form("(mod=%p,,)",mod));
12e7c97c 277 HitToSDigit(mod);
aacedc3e 278 pListToDigits();
12e7c97c 279 ClearMap();
2cc6b29a 280}
281//______________________________________________________________________
12e7c97c 282void AliITSsimulationSPDdubna::HitToSDigit(AliITSmodule *mod){
f74211b0 283 // Does the charge distributions using Gaussian diffusion charge charing.
12e7c97c 284 // Inputs:
285 // AliITSmodule *mod Pointer to this module
286 // Output:
287 // none.
288 // Return:
289 // none.
f74211b0 290 const Double_t kmictocm = 1.0e-4; // convert microns to cm.
291 TObjArray *hits = mod->GetHits();
292 Int_t nhits = hits->GetEntriesFast();
aacedc3e 293 Int_t h,ix,iz,i;
f74211b0 294 Int_t idtrack;
295 Double_t x0=0.0,x1=0.0,y0=0.0,y1=0.0,z0=0.0,z1=0.0,de=0.0;
296 Double_t x,y,z,t,tp,st,dt=0.2,el,sig;
297 Double_t thick = kmictocm*GetSeg()->Dy();
298
f77f13c8 299 AliDebug(1,Form("(mod=%p) fCoupling=%d",mod,fCoupling));
f74211b0 300 if(nhits<=0) return;
301 for(h=0;h<nhits;h++){
f77f13c8 302 if(AliDebugLevel()>0) {
303 AliDebug(1,Form("Hits, %d", h));
304 cout << *(mod->GetHit(h)) << endl;
305 } // end if GetDebug
aacedc3e 306 if(!mod->LineSegmentL(h,x0,x1,y0,y1,z0,z1,de,idtrack)) continue;
307 st = TMath::Sqrt(x1*x1+y1*y1+z1*z1);
308 if(st>0.0){
c789ee28 309 st = (Double_t)((Int_t)(st/kmictocm)); // number of microns
310 if(st<=1.0) st = 1.0;
aacedc3e 311 dt = 1.0/st;
312 for(t=0.0;t<1.0;t+=dt){ // Integrate over t
313 tp = t+0.5*dt;
314 x = x0+x1*tp;
315 y = y0+y1*tp;
316 z = z0+z1*tp;
317 if(!(GetSeg()->LocalToDet(x,z,ix,iz))) continue; // outside
318 el = GetResp(ix,iz)->GeVToCharge((Double_t)(dt*de));
319 if(GetDebug(1)){
320 if(el<=0.0) cout<<"el="<<el<<" dt="<<dt
321 <<" de="<<de<<endl;
322 } // end if GetDebug
323 sig = GetResp(ix,iz)->SigmaDiffusion1D(thick + y);
324 SpreadCharge(x,z,ix,iz,el,sig,idtrack,h);
325 } // end for t
326 } else { // st == 0.0 deposit it at this point
327 x = x0;
328 y = y0;
329 z = z0;
330 if(!(GetSeg()->LocalToDet(x,z,ix,iz))) continue; // outside
331 el = GetResp(ix,iz)->GeVToCharge((Double_t)de);
332 sig = GetResp(ix,iz)->SigmaDiffusion1D(thick + y);
333 SpreadCharge(x,z,ix,iz,el,sig,idtrack,h);
334 } // end if st>0.0
335 // Coupling
336 switch (fCoupling) {
337 default:
338 break;
339 case 1: case 3:
340 // x is column and z is row (see AliITSsegmentationSPD::GetPadIxz)
341 for(i=0;i<GetMap()->GetEntries();i++)
342 if(GetMap()->GetpListItem(i)==0) continue;
343 else{
344 GetMap()->GetMapIndex(
345 GetMap()->GetpListItem(i)->GetIndex(),iz,ix);
346 SetCoupling(iz,ix,idtrack,h);
347 } // end for i
348 break;
349 case 2: case 4:
350 // x is column and z is row (see AliITSsegmentationSPD::GetPadIxz)
351 for(i=0;i<GetMap()->GetEntries();i++)
352 if(GetMap()->GetpListItem(i)==0) continue;
353 else{
354 GetMap()->GetMapIndex(
355 GetMap()->GetpListItem(i)->GetIndex(),iz,ix);
356 SetCouplingOld(iz,ix,idtrack,h);
357 } // end for i
358 break;
359 } // end switch
12e7c97c 360 } // Loop over all hits h
aacedc3e 361 if(GetDebug(2))Info("HitToSDigit","Finished fCoupling=%d",fCoupling);
12e7c97c 362}
f74211b0 363//______________________________________________________________________
12e7c97c 364void AliITSsimulationSPDdubna::SpreadCharge(Double_t x0,Double_t z0,
365 Int_t ix0,Int_t iz0,
f74211b0 366 Double_t el,Double_t sig,Int_t t,
12e7c97c 367 Int_t hi){
f74211b0 368 // Spreads the charge over neighboring cells. Assume charge is distributed
369 // as charge(x,z) = (el/2*pi*sig*sig)*exp(-arg)
370 // arg=((x-x0)*(x-x0)/2*sig*sig)+((z-z0*z-z0)/2*sig*sig)
371 // Defined this way, the integral over all x and z is el.
12e7c97c 372 // Inputs:
373 // Double_t x0 x position of point where charge is liberated
374 // Double_t y0 y position of point where charge is liberated
375 // Double_t z0 z position of point where charge is liberated
376 // Int_t ix0 row of cell corresponding to point x0
377 // Int_t iz0 columb of cell corresponding to point z0
378 // Double_t el number of electrons liberated in this step
379 // Double_t sig Sigma difusion for this step (y0 dependent)
380 // Int_t t track number
381 // Int_t ti hit track index number
382 // Int_t hi hit "hit" index number
383 // Outputs:
384 // none.
385 // Return:
386 // none.
f74211b0 387 const Int_t knx = 3,knz = 2;
388 const Double_t kRoot2 = 1.414213562; // Sqrt(2).
389 const Double_t kmictocm = 1.0e-4; // convert microns to cm.
390 Int_t ix,iz,ixs,ixe,izs,ize;
391 Float_t x,z;
392 Double_t x1,x2,z1,z2,s,sp;
393
aacedc3e 394 if(GetDebug(4)) Info("SpreadCharge","(x0=%e,z0=%e,ix0=%d,iz0=%d,el=%e,"
395 "sig=%e,t=%d,i=%d)",x0,z0,ix0,iz0,el,sig,t,hi);
396 if(sig<=0.0) { // if sig<=0 No diffusion to simulate.
397 GetMap()->AddSignal(iz0,ix0,t,hi,GetModuleNumber(),el);
398 if(GetDebug(2)){
399 cout << "sig<=0.0=" << sig << endl;
400 } // end if GetDebug
401 return;
f74211b0 402 } // end if
403 sp = 1.0/(sig*kRoot2);
aacedc3e 404 if(GetDebug(2)){
405 cout << "sig=" << sig << " sp=" << sp << endl;
406 } // end if GetDebug
f74211b0 407 ixs = TMath::Max(-knx+ix0,0);
408 ixe = TMath::Min(knx+ix0,GetSeg()->Npx()-1);
409 izs = TMath::Max(-knz+iz0,0);
410 ize = TMath::Min(knz+iz0,GetSeg()->Npz()-1);
411 for(ix=ixs;ix<=ixe;ix++) for(iz=izs;iz<=ize;iz++){
aacedc3e 412 GetSeg()->DetToLocal(ix,iz,x,z); // pixel center
413 x1 = x;
414 z1 = z;
415 x2 = x1 + 0.5*kmictocm*GetSeg()->Dpx(ix); // Upper
416 x1 -= 0.5*kmictocm*GetSeg()->Dpx(ix); // Lower
417 z2 = z1 + 0.5*kmictocm*GetSeg()->Dpz(iz); // Upper
418 z1 -= 0.5*kmictocm*GetSeg()->Dpz(iz); // Lower
419 x1 -= x0; // Distance from where track traveled
420 x2 -= x0; // Distance from where track traveled
421 z1 -= z0; // Distance from where track traveled
422 z2 -= z0; // Distance from where track traveled
423 s = 0.25; // Correction based on definision of Erfc
424 s *= TMath::Erfc(sp*x1) - TMath::Erfc(sp*x2);
425 if(GetDebug(3)){
426 cout <<"el="<<el<<" ix0="<<ix0<<" ix="<<ix<<" x0="<<x<<
427 " iz0="<<iz0<<" iz="<<iz<<" z0="<<z<<
428 " sp*x1="<<sp*x1<<" sp*x2="<<sp*x2<<" s="<<s;
429 } // end if GetDebug
430 s *= TMath::Erfc(sp*z1) - TMath::Erfc(sp*z2);
431 if(GetDebug(3)){
432 cout<<" sp*z1="<<sp*z1<<" sp*z2="<<sp*z2<<" s="<<s<< endl;
433 } // end if GetDebug
434 GetMap()->AddSignal(iz,ix,t,hi,GetModuleNumber(),s*el);
f74211b0 435 } // end for ix, iz
436}
437//______________________________________________________________________
aacedc3e 438void AliITSsimulationSPDdubna::pListToDigits(){
2cc6b29a 439 // add noise and electronics, perform the zero suppression and add the
440 // digit to the list
12e7c97c 441 // Inputs:
442 // none.
443 // Outputs:
444 // none.
445 // Return:
446 // none.
f74211b0 447 static AliITS *aliITS = (AliITS*)gAlice->GetModule("ITS");
12e7c97c 448 Int_t j,ix,iz;
aacedc3e 449 Double_t electronics;
2cc6b29a 450 Double_t sig;
ee86d557 451 const Int_t nmaxtrk=AliITSdigitSPD::GetNTracks();
f74211b0 452 static AliITSdigitSPD dig;
453
aacedc3e 454 if(GetDebug(1)) Info("pListToDigits","()");
12e7c97c 455 for(iz=0; iz<GetNPixelsZ(); iz++) for(ix=0; ix<GetNPixelsX(); ix++){
aacedc3e 456 // Apply Noise/Dead channals and the like
457 if(GetResp(ix,iz)->IsPixelDead(GetModuleNumber(),ix,iz)) continue;
458 electronics = GetResp(ix,iz)->ApplyBaselineAndNoise();
459 UpdateMapNoise(ix,iz,electronics);
460 //
461 // Apply Threshold and write Digits.
462 sig = GetMap()->GetSignalOnly(iz,ix);
463 FillHistograms(ix,iz,sig+electronics);
464 if(GetDebug(3)){
465 cout<<sig<<"+"<<electronics<<">threshold("<<ix<<","<<iz
466 <<")="<<GetThreshold(ix,iz) <<endl;
467 } // end if GetDebug
468 if (sig+electronics <= GetThreshold(ix,iz)) continue;
469 dig.SetCoord1(iz);
470 dig.SetCoord2(ix);
471 dig.SetSignal(1);
472 dig.SetSignalSPD((Int_t) GetMap()->GetSignal(iz,ix));
473 for(j=0;j<nmaxtrk;j++){
474 if (j<GetMap()->GetNEnteries()) {
475 dig.SetTrack(j,GetMap()->GetTrack(iz,ix,j));
476 dig.SetHit(j,GetMap()->GetHit(iz,ix,j));
477 }else { // Default values
478 dig.SetTrack(j,-3);
479 dig.SetHit(j,-1);
480 } // end if GetMap()
481 } // end for j
482 if(GetDebug(3)){
483 cout<<iz<<","<<ix<<","<<*(GetMap()->GetpListItem(iz,ix))<<endl;
484 } // end if GetDebug
485 aliITS->AddSimDigit(0,&dig);
12e7c97c 486 } // for ix/iz
409f8c84 487}
2cc6b29a 488//______________________________________________________________________
489void AliITSsimulationSPDdubna::CreateHistograms(){
490 // create 1D histograms for tests
12e7c97c 491 // Inputs:
492 // none.
493 // Outputs:
494 // none.
495 // Return:
496 // none.
2cc6b29a 497
aacedc3e 498 if(GetDebug(1)) Info("CreateHistograms","create histograms");
2cc6b29a 499
aacedc3e 500 fHis = new TObjArray(GetNPixelsZ());
501 TString fSPDname("spd_");
502 for(Int_t i=0;i<GetNPixelsZ();i++) {
503 Char_t pixelz[4];
504 sprintf(pixelz,"%d",i);
505 fSPDname.Append(pixelz);
506 fHis->AddAt(new TH1F(fSPDname.Data(),"SPD maps",
507 GetNPixelsX(),0.,(Double_t)GetNPixelsX()),i);
2cc6b29a 508 } // end for i
409f8c84 509}
2cc6b29a 510//______________________________________________________________________
aacedc3e 511void AliITSsimulationSPDdubna::FillHistograms(Int_t ix,Int_t iz,Double_t v){
512 // Fill the histogram
513 // Inputs:
514 // none.
515 // Outputs:
516 // none.
517 // Return:
518 // none.
519
520 if(!GetHistArray()) return; // Only fill if setup.
521 if(GetDebug(2)) Info("FillHistograms","fill histograms");
522 GetHistogram(iz)->Fill(ix,v);
523}
524//______________________________________________________________________
2cc6b29a 525void AliITSsimulationSPDdubna::ResetHistograms(){
409f8c84 526 // Reset histograms for this detector
12e7c97c 527 // Inputs:
528 // none.
529 // Outputs:
530 // none.
531 // Return:
532 // none.
409f8c84 533
aacedc3e 534 if(!GetHistArray()) return; // Only fill if setup.
535 if(GetDebug(2)) Info("FillHistograms","fill histograms");
12e7c97c 536 for ( int i=0;i<GetNPixelsZ();i++ ) {
aacedc3e 537 if (fHis->At(i)) ((TH1F*)fHis->At(i))->Reset();
2cc6b29a 538 } // end for i
409f8c84 539}
12e7c97c 540
541//______________________________________________________________________
542void AliITSsimulationSPDdubna::SetCoupling(Int_t row, Int_t col, Int_t ntrack,
543 Int_t idhit) {
544 // Take into account the coupling between adiacent pixels.
545 // The parameters probcol and probrow are the probability of the
546 // signal in one pixel shared in the two adjacent pixels along
547 // the column and row direction, respectively.
aacedc3e 548 // Note pList is goten via GetMap() and module is not need any more.
549 // Otherwise it is identical to that coded by Tiziano Virgili (BSN).
12e7c97c 550 //Begin_Html
551 /*
552 <img src="picts/ITS/barimodel_3.gif">
553 </pre>
554 <br clear=left>
555 <font size=+2 color=red>
556 <a href="mailto:tiziano.virgili@cern.ch"></a>.
557 </font>
558 <pre>
559 */
560 //End_Html
561 // Inputs:
562 // Int_t row z cell index
563 // Int_t col x cell index
564 // Int_t ntrack track incex number
565 // Int_t idhit hit index number
12e7c97c 566 // Outputs:
567 // none.
568 // Return:
569 // none.
570 Int_t j1,j2,flag=0;
571 Double_t pulse1,pulse2;
aacedc3e 572 Double_t couplR=0.0,couplC=0.0;
12e7c97c 573 Double_t xr=0.;
12e7c97c 574
575 GetCouplings(couplR,couplC);
aacedc3e 576 if(GetDebug(3)) Info("SetCoupling","(row=%d,col=%d,ntrack=%d,idhit=%d) "
577 "Calling SetCoupling couplR=%e couplC=%e",
578 row,col,ntrack,idhit,couplR,couplC);
12e7c97c 579 j1 = row;
580 j2 = col;
aacedc3e 581 pulse1 = GetMap()->GetSignalOnly(row,col);
12e7c97c 582 pulse2 = pulse1;
583 for (Int_t isign=-1;isign<=1;isign+=2){// loop in row direction
aacedc3e 584 do{
585 j1 += isign;
586 // pulse1 *= couplR;
587 xr = gRandom->Rndm();
588 //if ((j1<0)||(j1>GetNPixelsZ()-1)||(pulse1<GetThreshold(j1,col))){
589 if ((j1<0) || (j1>GetNPixelsZ()-1) || (xr>couplR)){
590 j1 = row;
591 flag = 1;
592 }else{
593 UpdateMapSignal(col,j1,ntrack,idhit,pulse1);
594 // flag = 0;
595 flag = 1; // only first next!!
596 } // end if
597 } while(flag == 0);
598 // loop in column direction
599 do{
600 j2 += isign;
601 // pulse2 *= couplC;
602 xr = gRandom->Rndm();
603 //if((j2<0)||j2>(GetNPixelsX()-1)||pulse2<GetThreshold(row,j2)){
604 if ((j2<0) || (j2>GetNPixelsX()-1) || (xr>couplC)){
605 j2 = col;
606 flag = 1;
607 }else{
608 UpdateMapSignal(j2,row,ntrack,idhit,pulse2);
609 // flag = 0;
610 flag = 1; // only first next!!
611 } // end if
612 } while(flag == 0);
12e7c97c 613 } // for isign
614}
615//______________________________________________________________________
616void AliITSsimulationSPDdubna::SetCouplingOld(Int_t row, Int_t col,
617 Int_t ntrack,Int_t idhit) {
618 // Take into account the coupling between adiacent pixels.
619 // The parameters probcol and probrow are the fractions of the
620 // signal in one pixel shared in the two adjacent pixels along
621 // the column and row direction, respectively.
622 //Begin_Html
623 /*
624 <img src="picts/ITS/barimodel_3.gif">
625 </pre>
626 <br clear=left>
627 <font size=+2 color=red>
628 <a href="mailto:Rocco.Caliandro@ba.infn.it"></a>.
629 </font>
630 <pre>
631 */
632 //End_Html
633 // Inputs:
634 // Int_t row z cell index
635 // Int_t col x cell index
636 // Int_t ntrack track incex number
637 // Int_t idhit hit index number
638 // Int_t module module number
639 // Outputs:
640 // none.
641 // Return:
642 // none.
643 Int_t j1,j2,flag=0;
644 Double_t pulse1,pulse2;
aacedc3e 645 Double_t couplR=0.0,couplC=0.0;
12e7c97c 646
647 GetCouplings(couplR,couplC);
aacedc3e 648 if(GetDebug(3)) Info("SetCouplingOld","(row=%d,col=%d,ntrack=%d,idhit=%d) "
649 "Calling SetCoupling couplR=%e couplC=%e",
650 row,col,ntrack,idhit,couplR,couplC);
12e7c97c 651 j1 = row;
652 j2 = col;
aacedc3e 653 pulse1 = GetMap()->GetSignalOnly(row,col);
12e7c97c 654 pulse2 = pulse1;
655 for (Int_t isign=-1;isign<=1;isign+=2){// loop in row direction
aacedc3e 656 do{
657 j1 += isign;
658 pulse1 *= couplR;
659 if ((j1<0)||(j1>GetNPixelsZ()-1)||(pulse1<GetThreshold(j1,col))){
660 pulse1 = GetMap()->GetSignalOnly(row,col);
661 j1 = row;
662 flag = 1;
663 }else{
664 UpdateMapSignal(col,j1,ntrack,idhit,pulse1);
665 flag = 0;
666 } // end if
667 } while(flag == 0);
668 // loop in column direction
669 do{
670 j2 += isign;
671 pulse2 *= couplC;
672 if((j2<0)||(j2>(GetNPixelsX()-1))||(pulse2<GetThreshold(row,j2))){
673 pulse2 = GetMap()->GetSignalOnly(row,col);
674 j2 = col;
675 flag = 1;
676 }else{
677 UpdateMapSignal(j2,row,ntrack,idhit,pulse2);
678 flag = 0;
679 } // end if
680 } while(flag == 0);
12e7c97c 681 } // for isign
682}