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