]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PHOS/AliPHOSv1.cxx
0e2464fab7375e8c5d85f047c783a0b42d575abf
[u/mrichter/AliRoot.git] / PHOS / AliPHOSv1.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
16 /* $Id$ */
17 //_________________________________________________________________________
18 // Version of AliPHOSv0 which allows for keeping all hits in TreeH
19 //                  
20 //*-- Author: Gines MARTINEZ (SUBATECH)
21
22
23 // --- ROOT system ---
24
25 #include "TBRIK.h"
26 #include "TNode.h"
27 #include "TRandom.h"
28
29 // --- Standard library ---
30
31 #include <stdio.h>
32 #include <string.h>
33 #include <stdlib.h>
34 #include <strstream.h>
35
36 // --- AliRoot header files ---
37
38 #include "AliPHOSv1.h"
39 #include "AliPHOSHit.h"
40 #include "AliPHOSDigit.h"
41 #include "AliPHOSReconstructioner.h"
42 #include "AliRun.h"
43 #include "AliConst.h"
44
45 ClassImp(AliPHOSv1)
46
47 //____________________________________________________________________________
48 AliPHOSv1::AliPHOSv1()
49 {
50   // default ctor
51   fNTmpHits = 0 ; 
52   fTmpHits  = 0 ; 
53 }
54
55 //____________________________________________________________________________
56 AliPHOSv1::AliPHOSv1(const char *name, const char *title):
57   AliPHOSv0(name,title)
58 {
59   // ctor
60    fHits= new TClonesArray("AliPHOSHit",1000) ;
61 }
62
63 //____________________________________________________________________________
64 AliPHOSv1::~AliPHOSv1()
65 {
66   // dtor
67   if ( fTmpHits) {
68     fTmpHits->Delete() ; 
69     delete fTmpHits ;
70     fTmpHits = 0 ; 
71   }
72   
73   if ( fEmcRecPoints ) { 
74     fEmcRecPoints->Delete() ; 
75     delete fEmcRecPoints ; 
76     fEmcRecPoints = 0 ; 
77   }
78   
79   if ( fPpsdRecPoints ) { 
80     fPpsdRecPoints->Delete() ;
81     delete fPpsdRecPoints ;
82     fPpsdRecPoints = 0 ; 
83   }
84  
85   if ( fTrackSegments ) {
86     fTrackSegments->Delete() ; 
87     delete fTrackSegments ;
88     fTrackSegments = 0 ; 
89   }
90 }
91
92 //____________________________________________________________________________
93 void AliPHOSv1::AddHit(Int_t shunt, Int_t primary, Int_t tracknumber, Int_t Id, Float_t * hits)
94 {
95   // Add a hit to the hit list.
96   // In this version of AliPHOSv0, a PHOS hit is real geant 
97   // hits in a single crystal or in a single PPSD gas cell
98
99   // cout << "Primary is " << primary << endl;
100   //cout << "Tracknumber is " << tracknumber << endl;
101   //cout << "Vol Id is " << Id << endl;
102   //cout << "hits is " << hits[0] << "  " << hits[1] << "  " << hits[2] << "   " << hits[3] <<endl;
103
104   //  cout << " Adding a hit number " << fNhits << endl ;
105
106   TClonesArray &ltmphits = *fHits ;
107   AliPHOSHit *newHit ;
108
109   //  fHits->Print("");
110
111   newHit = new AliPHOSHit(shunt, primary, tracknumber, Id, hits) ;
112
113   // We DO want to save in TreeH the raw hits 
114   //  TClonesArray &lhits = *fHits;
115   //  cout << " Adding a hit to fHits TCloneArray number " << fNhits << endl ;     
116   new(ltmphits[fNhits]) AliPHOSHit(*newHit) ;
117   fNhits++ ;
118
119   // cout << " Added a hit to fHits TCloneArray number " << fNhits << endl ; 
120   // We do not want to save in TreeH the raw hits 
121   //   new(lhits[fNhits]) AliPHOSHit(*newHit) ;    
122   //   fNhits++ ;
123
124   // Please note that the fTmpHits array must survive up to the
125   // end of the events, so it does not appear e.g. in ResetHits() (
126   // which is called at the end of each primary).  
127
128   delete newHit;
129
130 }
131
132
133
134
135 //___________________________________________________________________________
136 void AliPHOSv1::FinishEvent()
137 {
138   // Makes the digits from the sum of summed hit in a single crystal or PPSD gas cell
139   // Adds to the energy the electronic noise
140   // Keeps digits with energy above fDigitThreshold
141
142   // Save the cumulated hits instead of raw hits (need to create the branch myself)
143   // It is put in the Digit Tree because the TreeH is filled after each primary
144   // and the TreeD at the end of the event.
145   
146   Int_t i ;
147   Int_t relid[4];
148   Int_t j ; 
149   TClonesArray &lDigits = *fDigits ;
150   AliPHOSHit  * hit ;
151   AliPHOSDigit * newdigit ;
152   AliPHOSDigit * curdigit ;
153   Bool_t deja = kFALSE ; 
154   
155   for ( i = 0 ; i < fNhits ; i++ ) {
156     hit = (AliPHOSHit*)fHits->At(i) ;
157     newdigit = new AliPHOSDigit( hit->GetPrimary(), hit->GetId(), Digitize( hit->GetEnergy() ) ) ;
158     deja =kFALSE ;
159     for ( j = 0 ; j < fNdigits ;  j++) { 
160       curdigit = (AliPHOSDigit*) lDigits[j] ;
161       if ( *curdigit == *newdigit) {
162         *curdigit = *curdigit + *newdigit ; 
163         deja = kTRUE ; 
164       }
165     }
166     if ( !deja ) {
167       new(lDigits[fNdigits]) AliPHOSDigit(* newdigit) ;
168       fNdigits++ ;  
169     }
170  
171     delete newdigit ;    
172   } 
173   
174   // Noise induced by the PIN diode of the PbWO crystals
175
176   Float_t energyandnoise ;
177   for ( i = 0 ; i < fNdigits ; i++ ) {
178     newdigit =  (AliPHOSDigit * ) fDigits->At(i) ;
179     fGeom->AbsToRelNumbering(newdigit->GetId(), relid) ;
180
181     if (relid[1]==0){   // Digits belong to EMC (PbW0_4 crystals)
182       energyandnoise = newdigit->GetAmp() + Digitize(gRandom->Gaus(0., fPinElectronicNoise)) ;
183
184       if (energyandnoise < 0 ) 
185         energyandnoise = 0 ;
186
187       if ( newdigit->GetAmp() < fDigitThreshold ) // if threshold not surpassed, remove digit from list
188         fDigits->RemoveAt(i) ; 
189     }
190   }
191   
192   fDigits->Compress() ;  
193
194   fNdigits =  fDigits->GetEntries() ; 
195   for (i = 0 ; i < fNdigits ; i++) { 
196     newdigit = (AliPHOSDigit *) fDigits->At(i) ; 
197     newdigit->SetIndexInList(i) ; 
198   }
199
200 }
201
202 void AliPHOSv1::StepManager(void)
203 {
204   // Accumulates hits as long as the track stays in a single crystal or PPSD gas Cell
205
206   Int_t          relid[4] ;      // (box, layer, row, column) indices
207   Float_t        xyze[4] ;       // position wrt MRS and energy deposited
208   TLorentzVector pos ;
209   Int_t copy ;
210
211   Int_t tracknumber =  gAlice->CurrentTrack() ; 
212   Int_t primary     =  gAlice->GetPrimary( gAlice->CurrentTrack() );
213
214   TString name = fGeom->GetName() ; 
215   if ( name == "GPS2" ) { // the CPV is a PPSD
216     if( gMC->CurrentVolID(copy) == gMC->VolId("GCEL") ) // We are inside a gas cell 
217     {
218       gMC->TrackPosition(pos) ;
219       xyze[0] = pos[0] ;
220       xyze[1] = pos[1] ;
221       xyze[2] = pos[2] ;
222       xyze[3] = gMC->Edep() ; 
223
224       if ( xyze[3] != 0 ) { // there is deposited energy 
225         gMC->CurrentVolOffID(5, relid[0]) ;  // get the PHOS Module number
226         gMC->CurrentVolOffID(3, relid[1]) ;  // get the Micromegas Module number 
227       // 1-> Geom->GetNumberOfModulesPhi() *  fGeom->GetNumberOfModulesZ() upper                         
228       //  >  fGeom->GetNumberOfModulesPhi()  *  fGeom->GetNumberOfModulesZ() lower
229         gMC->CurrentVolOffID(1, relid[2]) ;  // get the row number of the cell
230         gMC->CurrentVolID(relid[3]) ;        // get the column number 
231
232         // get the absolute Id number
233
234         Int_t absid ; 
235         fGeom->RelToAbsNumbering(relid, absid) ; 
236
237         // add current hit to the hit list      
238         AddHit(fIshunt, primary, tracknumber, absid, xyze);
239
240       } // there is deposited energy 
241      } // We are inside the gas of the CPV  
242    } // GPS2 configuration
243   
244    if(gMC->CurrentVolID(copy) == gMC->VolId("PXTL") )  //  We are inside a PBWO crystal
245      {
246        gMC->TrackPosition(pos) ;
247        xyze[0] = pos[0] ;
248        xyze[1] = pos[1] ;
249        xyze[2] = pos[2] ;
250        xyze[3] = gMC->Edep() ;
251
252        if ( xyze[3] != 0 ) {
253           gMC->CurrentVolOffID(10, relid[0]) ; // get the PHOS module number ;
254           relid[1] = 0   ;                    // means PBW04
255           gMC->CurrentVolOffID(4, relid[2]) ; // get the row number inside the module
256           gMC->CurrentVolOffID(3, relid[3]) ; // get the cell number inside the module
257
258       // get the absolute Id number
259
260           Int_t absid ; 
261           fGeom->RelToAbsNumbering(relid, absid) ; 
262  
263       // add current hit to the hit list
264
265           AddHit(fIshunt, primary,tracknumber, absid, xyze);
266     
267        } // there is deposited energy
268     } // we are inside a PHOS Xtal
269 }
270