]> git.uio.no Git - u/mrichter/AliRoot.git/blob - ZDC/AliZDC.cxx
Adding functions ZMin and ZMax
[u/mrichter/AliRoot.git] / ZDC / AliZDC.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 /*
17 $Log$
18 Revision 1.21  2001/04/20 10:05:02  coppedis
19 Minor changes
20
21 Revision 1.20  2001/03/26 13:39:20  coppedis
22 Comment prints
23
24 Revision 1.19  2001/03/26 09:10:23  coppedis
25 Corrected bug in constructor (fIshunt has to be =1)
26
27 Revision 1.18  2001/03/20 08:21:55  coppedis
28 ZDC needs PIPE, ABSO, DIPO and SHIL
29
30 Revision 1.17  2001/03/16 16:18:03  coppedis
31 Correction for superposition of ZDC volumes with MUON arm one
32
33 Revision 1.16  2001/03/15 16:01:11  coppedis
34 Code review
35
36 Revision 1.15  2001/01/26 19:56:27  hristov
37 Major upgrade of AliRoot code
38
39 Revision 1.14  2000/12/12 13:17:01  coppedis
40 Minor corrections suggested by P. Hristov
41
42 Revision 1.12  2000/12/01 08:19:01  coppedis
43 Adding a message error if ZDC is constructed without DIPO
44
45 Revision 1.11  2000/11/30 17:21:03  coppedis
46 Introduce hit array fStHits reset only at the end of the event (for digitization)
47
48 Revision 1.10  2000/11/22 11:32:58  coppedis
49 Major code revision
50
51 Revision 1.9  2000/10/02 21:28:20  fca
52 Removal of useless dependecies via forward declarations
53
54 Revision 1.8  2000/07/10 13:58:01  fca
55 New version of ZDC from E.Scomparin & C.Oppedisano
56
57 Revision 1.7  2000/01/19 17:17:40  fca
58
59 Revision 1.6  1999/09/29 09:24:35  fca
60 Introduction of the Copyright and cvs Log
61
62 */
63
64 ///////////////////////////////////////////////////////////////////////////////
65 //                                                                           //
66 //  Zero Degree Calorimeter                                                  //
67 //  This class contains the basic functions for the ZDCs                     //
68 //  Functions specific to one particular geometry are                        //
69 //  contained in the derived classes                                         //
70 //                                                                           //
71 ///////////////////////////////////////////////////////////////////////////////
72
73 #include <stdlib.h>
74
75 // --- ROOT system
76 #include <TBRIK.h>
77 #include <TNode.h>
78 #include <TGeometry.h>
79 #include <TFile.h>
80 #include <TTree.h>
81
82 // --- AliRoot header files
83 #include "AliZDC.h"
84 #include "AliZDCHit.h"
85 #include "AliRun.h"
86 #include "AliDetector.h"
87 #include "AliCallf77.h"
88 #include "AliConst.h"
89 #include "AliMC.h"
90
91  
92 ClassImp(AliZDC)
93  
94 //_____________________________________________________________________________
95 AliZDC::AliZDC()
96 {
97   //
98   // Default constructor for the Zero Degree Calorimeter base class
99   //
100   
101   fIshunt = 1;
102
103   fNhits = 0;
104
105   fNStHits = 0;
106
107 //  fNPrimaryHits = 0;
108   fNoShower   = 0;
109 }
110  
111 //_____________________________________________________________________________
112 AliZDC::AliZDC(const char *name, const char *title)
113   : AliDetector(name,title)
114 {
115   //
116   // Standard constructor for the Zero Degree Calorimeter base class
117   //
118
119   //
120   // Allocate the array of hits
121   
122   fIshunt =  1;
123
124   fHits   = new TClonesArray("AliZDCHit",1000);
125   gAlice->AddHitList(fHits);
126   
127   fStHits = new TClonesArray("AliZDCHit",1000);
128   fNStHits = 0;
129
130 //  fNPrimaryHits = 0;
131   fNoShower   = 0;
132
133 }
134 //____________________________________________________________________________ 
135 AliZDC::~AliZDC()
136 {
137   //
138   // ZDC destructor
139   //
140
141   fIshunt   = 0;
142
143 //  delete fHits;
144 //  if(fStHits){
145 //    fStHits->Delete();
146 //    delete fStHits;
147 //    fNStHits = 0;
148 //  }
149 //  delete fDigits;
150 }
151 //_____________________________________________________________________________
152 void AliZDC::AddHit(Int_t track, Int_t *vol, Float_t *hits)
153 {
154   //
155   //            Add a ZDC hit to the hit list.
156   // -> We make use of 2 array of hits:
157   // [1]  fHits (the usual one) that contains hits for each PRIMARY
158   // [2]  fStHits that contains hits for each EVENT and is used to
159   //      obtain digits at the end of each event
160   //
161   
162   static Float_t primKinEn, xImpact, yImpact, sFlag;
163
164   AliZDCHit *newquad, *curprimquad, *curevquad;  
165   newquad = new AliZDCHit(fIshunt, track, vol, hits);
166
167   TClonesArray &lsthits = *fStHits;
168   TClonesArray &lhits = *fHits;
169   
170   if(fNhits==0){
171       // First hit -> setting flag for primary or secondary particle
172       Int_t primary = gAlice->GetPrimary(track);     
173       if(track != primary){
174         newquad->fSFlag = 1;  // SECONDARY particle entering the ZDC
175       }
176       else if(track == primary){
177         newquad->fSFlag = 0;  // PRIMARY particle entering the ZDC
178       }  
179 //      fNPrimaryHits += 1;
180       sFlag     = newquad->fSFlag;
181       primKinEn = newquad->fPrimKinEn;
182       xImpact   = newquad->fXImpact;
183       yImpact   = newquad->fYImpact;
184    }
185    else{       
186       newquad->fPrimKinEn = primKinEn;
187       newquad->fXImpact = xImpact;
188       newquad->fYImpact = yImpact;
189       newquad->fSFlag   = sFlag;
190    }
191  
192   Int_t i,j,kStHit = 1;
193   for(i=0; i<fNStHits; i++){
194     // If hits are equal (same track, same volume), sum them.
195      curevquad = (AliZDCHit*) lsthits[i];
196      kStHit = 1;
197      if(*curevquad == *newquad){
198         *curevquad = *curevquad+*newquad;
199         kStHit = 0;
200      } 
201      if(kStHit == 0) break;
202   }
203
204   for(j=0; j<fNhits; j++){
205     // If hits are equal (same track, same volume), sum them.
206      curprimquad = (AliZDCHit*) lhits[j];
207      if(*curprimquad == *newquad){
208         *curprimquad = *curprimquad+*newquad;
209         delete newquad;
210         return;
211      } 
212   }
213
214     //Otherwise create a new hit
215     new(lhits[fNhits]) AliZDCHit(newquad);
216     fNhits++;
217     
218     if(kStHit){
219       new(lsthits[fNStHits]) AliZDCHit(newquad);
220       fNStHits++;
221     }
222
223     if(fDebug == 1){ 
224       printf("\n  Primary Hits --------------------------------------------------------\n");
225       fHits->Print("");
226       printf("\n  Event Hits --------------------------------------------------------\n");
227       fStHits->Print("");
228     }
229
230     delete newquad;
231   }
232 //____________________________________________________________________________
233 Float_t AliZDC::ZMin(void) const
234 {
235   // Minimum dimension of the ZDC module in z
236   return 11600.;
237 }
238
239 //____________________________________________________________________________
240 Float_t AliZDC::ZMax(void) const
241 {
242   // Maximum dimension of the ZDC module in z
243   return  11750.;
244 }
245   
246 //_____________________________________________________________________________
247 void AliZDC::ResetDigits()
248 {
249   //
250   // Reset number of digits and the digits array
251   //
252     
253     AliDetector::ResetDigits();
254 //    fNStHits = 0;
255 //    if(fStHits) fStHits->Clear();
256 }
257
258 //_____________________________________________________________________________
259 void AliZDC::BuildGeometry()
260 {
261   //
262   // Build the ROOT TNode geometry for event display 
263   // in the Zero Degree Calorimeter
264   // This routine is dummy for the moment
265   //
266
267   TNode *node, *top;
268   TBRIK *brik;
269   const int kColorZDC  = kRed;
270   
271   //
272   top=gAlice->GetGeometry()->GetNode("alice");
273   
274   // ZDC
275     brik = new TBRIK("S_ZDC","ZDC box","void",300,300,5);
276     top->cd();
277     node = new TNode("ZDC","ZDC","S_ZDC",0,0,600,"");
278     node->SetLineColor(kColorZDC);
279     fNodes->Add(node);
280 }
281
282 //_____________________________________________________________________________
283 Int_t AliZDC::DistancetoPrimitive(Int_t , Int_t )
284 {
285   //
286   // Distance from the mouse to the Zero Degree Calorimeter
287   // Dummy routine
288   //
289   return 9999;
290 }
291  
292 //_____________________________________________________________________________
293 void AliZDC::StepManager()
294 {
295   //
296   // Routine called at every step in the Zero Degree Calorimeter
297   //
298 }