]> git.uio.no Git - u/mrichter/AliRoot.git/blob - ITS/AliITSsimulationSSD.cxx
Replaced private segmentation calculation with that of segmentation class.
[u/mrichter/AliRoot.git] / ITS / AliITSsimulationSSD.cxx
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 /* $Id$ */
16
17 #include <stdio.h>
18 #include <stdlib.h>
19 #include <iostream.h>
20 #include <iomanip.h>
21 #include <TObjArray.h>
22 #include <TParticle.h>
23 #include <TRandom.h>
24 #include <TMath.h>
25 #include <TH1.h>
26
27 #include "AliITSmodule.h"
28 #include "AliITSMapA2.h"
29 #include "AliITSpList.h"
30 #include "AliITSresponseSSD.h"
31 #include "AliITSsegmentationSSD.h"
32 #include "AliITSdcsSSD.h"
33 #include "AliITS.h"
34 #include "AliITShit.h"
35 #include "AliRun.h"
36 #include "AliITSgeom.h"
37 #include "AliITSsimulationSSD.h"
38 #include "AliITSTableSSD.h"
39
40 ClassImp(AliITSsimulationSSD);
41 ////////////////////////////////////////////////////////////////////////
42 // Version: 0
43 // Written by Enrico Fragiacomo
44 // July 2000
45 //
46 // AliITSsimulationSSD is the simulation of SSDs.
47
48 //----------------------------------------------------------------------
49 AliITSsimulationSSD::AliITSsimulationSSD(){
50   //default Constructor
51
52   fDCS     = 0;
53   fDifConst[0] = fDifConst[1] = 0.0;
54   fDriftVel[0] = fDriftVel[1] = 0.0;
55   fMapA2   = 0;
56 //  fpList    = 0;
57 }
58 //----------------------------------------------------------------------
59 AliITSsimulationSSD::AliITSsimulationSSD(AliITSsegmentation *seg,
60                                          AliITSresponse *resp){
61     // Constructor 
62     // Input:
63     //   AliITSsegmentationSSD *seg  Pointer to the SSD segmentation to be used
64     //   AliITSresponseSSD   *resp Pointer to the SSD responce class to be used
65     // Outputs:
66     //   none.
67     // Return
68     //   none.
69
70     fDCS     = 0;
71     fDifConst[0] = fDifConst[1] = 0.0;
72     fDriftVel[0] = fDriftVel[1] = 0.0;
73     fMapA2   = 0;
74 //    fpList    = 0;
75     Init((AliITSsegmentationSSD*)seg,(AliITSresponseSSD*)resp);
76 }
77 //----------------------------------------------------------------------
78 void AliITSsimulationSSD::Init(AliITSsegmentationSSD *seg,
79                                AliITSresponseSSD *resp){
80     // Inilizer, Inilizes all of the variable as needed in a standard place.
81     // Input:
82     //   AliITSsegmentationSSD *seg  Pointer to the SSD segmentation to be used
83     //   AliITSresponseSSD   *resp Pointer to the SSD responce class to be used
84     // Outputs:
85     //   none.
86     // Return
87     //   none.
88
89     fSegmentation    = seg;
90     fResponse        = resp;
91     Float_t noise[2] = {0.,0.};
92     fResponse->GetNoiseParam(noise[0],noise[1]); // retrieves noise parameters
93     fDCS             = new AliITSdcsSSD(seg,resp); 
94
95     SetDriftVelocity(); // use default values in .h file
96     SetIonizeE();       // use default values in .h file
97     SetDiffConst();     // use default values in .h file
98     fpList           = new AliITSpList(2,GetNStrips());
99     fMapA2           = new AliITSMapA2(fSegmentation);
100 }
101 //______________________________________________________________________
102 AliITSsimulationSSD& AliITSsimulationSSD::operator=(
103                                          const AliITSsimulationSSD &s){
104   // Operator =
105
106   if(this==&s) return *this;
107
108   this->fDCS         = new AliITSdcsSSD(*(s.fDCS));
109   this->fMapA2       = s.fMapA2;
110   this->fIonE        = s.fIonE;
111   this->fDifConst[0] = s.fDifConst[0];
112   this->fDifConst[1] = s.fDifConst[1];
113   this->fDriftVel[0] = s.fDriftVel[0];
114   this->fDriftVel[1] = s.fDriftVel[1];
115   return *this;
116 }
117 //______________________________________________________________________
118 AliITSsimulationSSD::AliITSsimulationSSD(const AliITSsimulationSSD &source){
119   // copy constructor
120
121   *this = source;
122 }
123 //______________________________________________________________________
124 AliITSsimulationSSD::~AliITSsimulationSSD() {
125   // destructor
126   delete fMapA2;
127   delete fDCS;
128 }
129 //______________________________________________________________________
130 void AliITSsimulationSSD::InitSimulationModule(Int_t module,Int_t event){
131     // Creates maps to build the list of tracks for each sumable digit
132     // Inputs:
133     //   Int_t module    // Module number to be simulated
134     //   Int_t event     // Event number to be simulated
135     // Outputs:
136     //   none.
137     // Return
138     //    none.
139
140     fModule = module;
141     fEvent  = event;
142     fMapA2->ClearMap();
143     fpList->ClearMap();
144 }
145 //______________________________________________________________________
146 void AliITSsimulationSSD::FinishSDigitiseModule(){
147     // Does the Sdigits to Digits work
148     // Inputs:
149     //   none.
150     // Outputs:
151     //   none.
152     // Return:
153     //   none.
154
155     FillMapFrompList(fpList);  // need to check if needed here or not????
156     SDigitToDigit(fModule,fpList);
157     fpList->ClearMap();
158     fMapA2->ClearMap();
159 }
160 //______________________________________________________________________
161 void AliITSsimulationSSD::DigitiseModule(AliITSmodule *mod,
162                                          Int_t dummy0,Int_t dummy1) {
163   // Digitizes hits for one SSD module
164   Int_t module     = mod->GetIndex();
165
166   HitsToAnalogDigits(mod,fpList);
167   SDigitToDigit(module,fpList);
168
169   fpList->ClearMap();
170   fMapA2->ClearMap();
171 }
172 //______________________________________________________________________
173 void AliITSsimulationSSD::SDigitiseModule(AliITSmodule *mod,Int_t dummy0,
174                                           Int_t dummy1) {
175   // Produces Summable/Analog digits and writes them to the SDigit tree. 
176
177   HitsToAnalogDigits(mod,fpList);
178
179   WriteSDigits(fpList);
180
181   fpList->ClearMap();
182   fMapA2->ClearMap();
183 }
184 //______________________________________________________________________
185 void AliITSsimulationSSD::SDigitToDigit(Int_t module,AliITSpList *pList){
186   // Takes the pList and finishes the digitization.
187                                
188   //    FillMapFrompList(pList);  //commented out to avoid double counting of the
189                                 //charge
190
191   ApplyNoise(pList,module);
192   ApplyCoupling(pList,module);
193
194   ChargeToSignal(pList);
195 }
196 //______________________________________________________________________
197 void AliITSsimulationSSD::HitsToAnalogDigits(AliITSmodule *mod,
198                                              AliITSpList *pList){
199     // Loops over all hits to produce Analog/floating point digits. This
200     // is also the first task in producing standard digits.
201     Int_t lasttrack     = -2;
202     Int_t idtrack       = -2;
203     Double_t x0=0.0, y0=0.0, z0=0.0;
204     Double_t x1=0.0, y1=0.0, z1=0.0;
205     Double_t de=0.0;
206     Int_t module = mod->GetIndex();
207
208     TObjArray *hits = mod->GetHits();
209     Int_t nhits     = hits->GetEntriesFast();
210     if (nhits<=0) return;
211     AliITSTableSSD * tav = new AliITSTableSSD(GetNStrips());
212     module = mod->GetIndex();
213     if ( mod->GetLayer() == 6 ) GetSegmentation()->SetLayer(6);
214     if ( mod->GetLayer() == 5 ) GetSegmentation()->SetLayer(5);
215     for(Int_t i=0; i<nhits; i++) {    
216         // LineSegmentL returns 0 if the hit is entering
217         // If hits is exiting returns positions of entering and exiting hits
218         // Returns also energy loss
219 //      cout << i << " ";
220 //      cout << mod->GetHit(i)->GetXL() << " "<<mod->GetHit(i)->GetYL();
221 //      cout << " " << mod->GetHit(i)->GetZL();
222 //      cout << endl;
223         if (mod->LineSegmentL(i, x0, x1, y0, y1, z0, z1, de, idtrack)) {
224             HitToDigit(module, x0, y0, z0, x1, y1, z1, de,tav);
225             if (lasttrack != idtrack || i==(nhits-1)) {
226                 GetList(idtrack,i,module,pList,tav);
227             } // end if
228             lasttrack=idtrack;
229         } // end if
230     }  // end loop over hits
231     delete tav; tav=0;
232     return;
233 }
234 //----------------------------------------------------------------------
235 void AliITSsimulationSSD::HitToDigit(Int_t module, Double_t x0, Double_t y0, 
236                                      Double_t z0, Double_t x1, Double_t y1, 
237                                      Double_t z1, Double_t de,
238                                      AliITSTableSSD *tav) {
239     // Turns hits in SSD module into one or more digits.
240     Float_t tang[2] = {0.0,0.0};
241     GetSegmentation()->Angles(tang[0], tang[1]);//stereo<<->tan(stereo)~=stereo
242     Double_t x, y, z;
243     Double_t dex=0.0, dey=0.0, dez=0.0; 
244     Double_t pairs; // pair generation energy per step.
245     Double_t sigma[2] = {0.,0.};// standard deviation of the diffusion gaussian
246     Double_t tdrift[2] = {0.,0.}; // time of drift
247     Double_t w;
248     Double_t inf[2], sup[2], par0[2];                 
249
250     // Steps in the module are determined "manually" (i.e. No Geant)
251     // NumOfSteps divide path between entering and exiting hits in steps 
252     Int_t numOfSteps = NumOfSteps(x1, y1, z1, dex, dey, dez);
253     // Enery loss is equally distributed among steps
254     de    = de/numOfSteps;
255     pairs = de/GetIonizeE(); // e-h pairs generated
256     for(Int_t j=0; j<numOfSteps; j++) {     // stepping
257         x = x0 + (j+0.5)*dex;
258         y = y0 + (j+0.5)*dey;
259         if ( y > (GetSegmentation()->Dy()/2+10)*1.0E-4 ) {
260             // check if particle is within the detector
261             Warning("HitToDigit","hit out of detector y0=%e,y=%e,dey=%e,j =%e",
262                     y0,y,dey,j);
263             return;
264         } // end if
265         z = z0 + (j+0.5)*dez;
266 //      cout <<"HitToDigit "<<x<<" "<<y<<" "<<z<< " "<<dex<<" "<<dey<<" "<<dez<<endl;
267         // calculate drift time
268         // y is the minimum path
269         tdrift[0] = (y+(GetSegmentation()->Dy()*1.0E-4)/2)/GetDriftVelocity(0);
270         tdrift[1] = ((GetSegmentation()->Dy()*1.0E-4)/2-y)/GetDriftVelocity(1);
271
272         for(Int_t k=0; k<2; k++) {   // both sides    remember: 0=Pside 1=Nside
273
274             tang[k]=TMath::Tan(tang[k]);
275
276             // w is the coord. perpendicular to the strips
277             /*
278             if(k==0) {
279                 w = (x+(GetSegmentation()->Dx()*1.0E-4)/2) -
280                     (z+(GetSegmentation()->Dz()*1.0E-4)/2)*tang[k]; 
281             }else{
282                 w = (x+(GetSegmentation()->Dx()*1.0E-4)/2) + 
283                     (z-(GetSegmentation()->Dz()*1.0E-4)/2)*tang[k];
284             } // end if
285             w /= (GetStripPitch()*1.0E-4); // w is converted in units of pitch
286             */
287             { // replacement block for the above.
288                 Float_t xp=x*1.E-4,zp=z*1.e-4; // microns
289                 GetSegmentation()->GetPadTxz(xp,zp);
290                 if(k==0) w = xp; // P side strip number
291                 else w = zp; // N side strip number
292             } // end test block
293
294             if((w<(-0.5)) || (w>(GetNStrips()-0.5))) {
295                 // this check rejects hits in regions not covered by strips
296                 // 0.5 takes into account boundaries 
297                 return; // There are dead region on the SSD sensitive volume.
298             } // end if
299
300             // sigma is the standard deviation of the diffusion gaussian
301             if(tdrift[k]<0) return;
302             sigma[k] = TMath::Sqrt(2*GetDiffConst(k)*tdrift[k]);
303             sigma[k] /= (GetStripPitch()*1.0E-4);  //units of Pitch
304             if(sigma[k]==0.0) {         
305                 Error("HitToDigit"," sigma[%d]=0",k);
306                 exit(0);
307             } // end if
308
309             par0[k] = pairs;
310             // we integrate the diffusion gaussian from -3sigma to 3sigma 
311             inf[k] = w - 3*sigma[k]; // 3 sigma from the gaussian average  
312             sup[k] = w + 3*sigma[k]; // 3 sigma from the gaussian average
313             // IntegrateGaussian does the actual
314             // integration of diffusion gaussian
315             IntegrateGaussian(k, par0[k], w, sigma[k], inf[k], sup[k],tav);
316         }  // end for loop over side (0=Pside, 1=Nside)      
317     } // end stepping
318 }
319 //______________________________________________________________________
320 void AliITSsimulationSSD::ApplyNoise(AliITSpList *pList,Int_t module){
321   // Apply Noise.
322   Int_t    k,ix;
323   Double_t signal,noise;
324   Double_t noiseP[2] = {0.,0.};
325   Float_t a,b;
326
327   fResponse->GetNoiseParam(a,b); // retrieves noise parameters
328   noiseP[0] = (Double_t) a; noiseP[1] = (Double_t) b;
329   for(k=0;k<2;k++){                    // both sides (0=Pside, 1=Nside)
330         for(ix=0;ix<GetNStrips();ix++){      // loop over strips
331             noise  = gRandom->Gaus(0,noiseP[k]);// get noise to signal
332             signal = noise + fMapA2->GetSignal(k,ix);//get signal from map
333             if(signal<0.) signal=0.0;           // in case noise is negative...
334             fMapA2->SetHit(k,ix,signal); // give back signal to map
335             if(signal>0.0) pList->AddNoise(k,ix,module,noise);
336         } // loop over strip 
337   } // loop over k (P or N side)
338 }
339 //______________________________________________________________________
340 void AliITSsimulationSSD::ApplyCoupling(AliITSpList *pList,Int_t module) {
341   // Apply the effect of electronic coupling between channels
342   Int_t ix;
343   Double_t signalLeft=0, signalRight=0,signal=0;
344
345   for(ix=0;ix<GetNStrips();ix++){
346         // P side coupling
347         if(ix>0.)signalLeft = fMapA2->GetSignal(0,ix-1)*fDCS->GetCouplingPL();
348         else signalLeft = 0.0;
349         if(ix<(GetNStrips()-1)) signalRight = fMapA2->GetSignal(0,ix+1)*
350                               fDCS->GetCouplingPR();
351         else signalRight = 0.0;
352         signal = signalLeft + signalRight;
353         fMapA2->AddSignal(0,ix,signal);
354         if(signal>0.0) pList->AddNoise(0,ix,module,signal);
355
356         signalLeft = signalRight = signal = 0.0;
357         // N side coupling
358         if(ix>0.) signalLeft = fMapA2->GetSignal(1,ix-1)*fDCS->GetCouplingNL();
359         else signalLeft = 0.0;
360         if(ix<(GetNStrips()-1)) signalRight = fMapA2->GetSignal(1,ix+1)*
361                               fDCS->GetCouplingNR();
362         else signalRight = 0.0;
363         signal = signalLeft + signalRight;
364         fMapA2->AddSignal(1,ix,signal);
365         if(signal>0.0) pList->AddNoise(1,ix,module,signal);
366   } // loop over strips 
367 }
368 //______________________________________________________________________
369 Float_t AliITSsimulationSSD::F(Float_t av, Float_t x, Float_t s) {
370   // Computes the integral of a gaussian using Error Function
371   Float_t sqrt2 = TMath::Sqrt(2.0);
372   Float_t sigm2 = sqrt2*s;
373   Float_t integral;
374
375   integral = 0.5 * TMath::Erf( (x - av) / sigm2);
376   return integral;
377 }
378 //______________________________________________________________________
379 void AliITSsimulationSSD::IntegrateGaussian(Int_t k,Double_t par, Double_t w,
380                                             Double_t sigma, 
381                                             Double_t inf, Double_t sup,
382                                             AliITSTableSSD *tav) {
383   // integrate the diffusion gaussian
384   // remind: inf and sup are w-3sigma and w+3sigma
385   //         we could define them here instead of passing them
386   //         this way we are free to introduce asimmetry
387
388   Double_t a=0.0, b=0.0;
389   Double_t dXCharge1 = 0.0, dXCharge2 = 0.0;
390   // dXCharge1 and 2 are the charge to two neighbouring strips
391   // Watch that we only involve at least two strips
392   // Numbers greater than 2 of strips in a cluster depend on
393   //  geometry of the track and delta rays, not charge diffusion!   
394   
395   Double_t strip = TMath::Floor(w);         // closest strip on the left
396
397   if ( TMath::Abs((strip - w)) < 0.5) { 
398       // gaussian mean is closer to strip on the left
399       a = inf;                         // integration starting point
400       if((strip+0.5)<=sup) {
401           // this means that the tail of the gaussian goes beyond
402           // the middle point between strips ---> part of the signal
403           // is given to the strip on the right
404           b = strip + 0.5;               // integration stopping point
405           dXCharge1 = F( w, b, sigma) - F(w, a, sigma);
406           dXCharge2 = F( w, sup, sigma) - F(w ,b, sigma); 
407       }else { 
408           // this means that all the charge is given to the strip on the left
409           b = sup;
410           dXCharge1 = 0.9973;   // gaussian integral at 3 sigmas
411           dXCharge2 = 0.0;
412       } // end if
413       dXCharge1 = par * dXCharge1;// normalize by mean of number of carriers
414       dXCharge2 = par * dXCharge2;
415
416       // for the time being, signal is the charge
417       // in ChargeToSignal signal is converted in ADC channel
418       fMapA2->AddSignal(k,(Int_t)strip,dXCharge1);
419       tav->Add(k,(Int_t)strip);
420       if(((Int_t) strip) < (GetNStrips()-1)) {
421           // strip doesn't have to be the last (remind: last=GetNStrips()-1)
422           // otherwise part of the charge is lost
423           fMapA2->AddSignal(k,((Int_t)strip+1),dXCharge2);
424           tav->Add(k,((Int_t)(strip+1)));
425       } // end if
426   }else{
427       // gaussian mean is closer to strip on the right
428       strip++;     // move to strip on the rigth
429       b = sup;     // now you know where to stop integrating
430       if((strip-0.5)>=inf) { 
431           // tail of diffusion gaussian on the left goes left of
432           // middle point between strips
433           a = strip - 0.5;        // integration starting point
434           dXCharge1 = F(w, b, sigma) - F(w, a, sigma);
435           dXCharge2 = F(w, a, sigma) - F(w, inf, sigma);
436       }else {
437           a = inf;
438           dXCharge1 = 0.9973;   // gaussian integral at 3 sigmas
439           dXCharge2 = 0.0;
440       } // end if
441       dXCharge1 = par * dXCharge1;    // normalize by means of carriers
442       dXCharge2 = par * dXCharge2;
443       // for the time being, signal is the charge
444       // in ChargeToSignal signal is converted in ADC channel
445       fMapA2->AddSignal(k,(Int_t)strip,dXCharge1);
446       tav->Add(k,(Int_t)strip);
447       if(((Int_t) strip) > 0) {
448           // strip doesn't have to be the first
449           // otherwise part of the charge is lost
450           fMapA2->AddSignal(k,((Int_t)strip-1),dXCharge2);
451           tav->Add(k,((Int_t)(strip-1)));
452       } // end if
453   } // end if
454 }
455 //______________________________________________________________________
456 Int_t AliITSsimulationSSD::NumOfSteps(Double_t x, Double_t y, Double_t z,
457                                       Double_t & dex,Double_t & dey,Double_t & dez){
458   // number of steps
459   // it also returns steps for each coord
460   //AliITSsegmentationSSD *seg = new AliITSsegmentationSSD();
461
462   Double_t step = 25E-4;
463   //step = (Double_t) seg->GetStepSize();  // step size (cm)
464   Int_t numOfSteps = (Int_t) (TMath::Sqrt(x*x+y*y+z*z)/step); 
465
466   if (numOfSteps < 1) numOfSteps = 1;       // one step, at least
467
468   // we could condition the stepping depending on the incident angle
469   // of the track
470   dex = x/numOfSteps;
471   dey = y/numOfSteps;
472   dez = z/numOfSteps;
473
474   return numOfSteps;
475 }
476 //----------------------------------------------------------------------
477 void AliITSsimulationSSD::GetList(Int_t label,Int_t hit,Int_t mod,
478                                   AliITSpList *pList,AliITSTableSSD *tav) {
479   // loop over nonzero digits
480   Int_t ix,i;
481   Double_t signal=0.;
482
483   for(Int_t k=0; k<2; k++) {
484     ix=tav->Use(k);
485     while(ix>-1){
486       signal = fMapA2->GetSignal(k,ix);
487       if(signal==0.0) {
488         ix=tav->Use(k);
489         continue;
490       } // end if signal==0.0
491       // check the signal magnitude
492       for(i=0;i<pList->GetNSignals(k,ix);i++){
493         signal -= pList->GetTSignal(k,ix,i);
494       } // end for i
495       //  compare the new signal with already existing list
496       if(signal>0)pList->AddSignal(k,ix,label,hit,mod,signal);
497       ix=tav->Use(k);
498     } // end of loop on strips
499   } // end of loop on P/N side
500   tav->Clear();
501 }
502 //----------------------------------------------------------------------
503 void AliITSsimulationSSD::ChargeToSignal(AliITSpList *pList) {
504   // charge to signal
505   static AliITS *aliITS = (AliITS*)gAlice->GetModule("ITS");
506   Float_t threshold = 0.;
507   Int_t   digits[3], tracks[3],hits[3],j1;
508   Float_t charges[3] = {0.0,0.0,0.0};
509   Float_t signal;
510   Float_t noise[2] = {0.,0.};
511
512   ((AliITSresponseSSD*)fResponse)->GetNoiseParam(noise[0],noise[1]);
513
514   for(Int_t k=0;k<2;k++){         // both sides (0=Pside, 1=Nside)
515         // Threshold for zero-suppression
516         // It can be defined in AliITSresponseSSD
517         //             threshold = (Float_t)fResponse->MinVal(k);
518         // I prefer to think adjusting the threshold "manually", looking
519         // at the scope, and considering noise standard deviation
520         threshold = 4.0*noise[k]; // 4 times noise is a choice
521         for(Int_t ix=0;ix<GetNStrips();ix++){     // loop over strips
522             if(fMapA2->GetSignal(k,ix) <= threshold)continue;
523             // convert to ADC signal
524             signal = ((AliITSresponseSSD*)fResponse)->DEvToADC(
525                                                       fMapA2->GetSignal(k,ix));
526             if(signal>1024.) signal = 1024.;//if exceeding, accumulate last one
527             digits[0] = k;
528             digits[1] = ix;
529             digits[2] = (Int_t) signal;
530             for(j1=0;j1<3;j1++){ // only three in digit.
531                 tracks[j1]  = pList->GetTrack(k,ix,j1);
532                 hits[j1]    = pList->GetHit(k,ix,j1);
533             } // end for j1
534             // finally add digit
535             aliITS->AddSimDigit(2,0,digits,tracks,hits,charges);
536         } // end for ix
537   } // end for k
538 }
539 //______________________________________________________________________
540 void AliITSsimulationSSD::WriteSDigits(AliITSpList *pList){
541   // Fills the Summable digits Tree
542   Int_t i,ni,j,nj;
543   static AliITS *aliITS = (AliITS*)gAlice->GetModule("ITS");
544
545   pList->GetMaxMapIndex(ni,nj);
546   for(i=0;i<ni;i++)for(j=0;j<nj;j++){
547       if(pList->GetSignalOnly(i,j)>0.0){
548           aliITS->AddSumDigit(*(pList->GetpListItem(i,j)));
549 //          cout << "pListSSD: " << *(pList->GetpListItem(i,j)) << endl;
550       } // end if
551   } // end for i,j
552   return;
553 }
554 //______________________________________________________________________
555 void AliITSsimulationSSD::FillMapFrompList(AliITSpList *pList){
556   // Fills fMap2A from the pList of Summable digits
557   Int_t k,ix;
558
559   for(k=0;k<2;k++)for(ix=0;ix<GetNStrips();ix++) 
560         fMapA2->AddSignal(k,ix,pList->GetSignal(k,ix));
561   return;
562 }
563 //______________________________________________________________________
564 void AliITSsimulationSSD::Print(ostream *os){
565   //Standard output format for this class
566
567   //AliITSsimulation::Print(os);
568   *os << fIonE <<",";
569   *os << fDifConst[0] <<","<< fDifConst[1] <<",";
570   *os << fDriftVel[0] <<","<< fDriftVel[1];
571   //*os <<","; fDCS->Print(os);
572   //*os <<","; fMapA2->Print(os);
573 }
574 //______________________________________________________________________
575 void AliITSsimulationSSD::Read(istream *is){
576   // Standard output streaming function.
577
578   //AliITSsimulation::Read(is);
579   *is >> fIonE;
580   *is >> fDifConst[0] >> fDifConst[1];
581   *is >> fDriftVel[0] >> fDriftVel[1];
582   //fDCS->Read(is);
583   //fMapA2->Read(is);
584 }
585 //______________________________________________________________________
586 ostream &operator<<(ostream &os,AliITSsimulationSSD &source){
587   // Standard output streaming function.
588
589   source.Print(&os);
590   return os;
591 }
592 //______________________________________________________________________
593 istream &operator>>(istream &os,AliITSsimulationSSD &source){
594   // Standard output streaming function.
595
596   source.Read(&os);
597   return os;
598 }
599 //______________________________________________________________________
600
601
602
603
604