]> git.uio.no Git - u/mrichter/AliRoot.git/blob - FMD/AliFMD.cxx
Code for simulation, sdigitization and digitization moved from macros to compiled...
[u/mrichter/AliRoot.git] / FMD / AliFMD.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  //////////////////////////////////////////////////////////////////////////////
19 //                                                                            //
20 //  Forward Multiplicity Detector based on Silicon plates                    //
21 //  This class contains the base procedures for the Forward Multiplicity     //
22 //  detector                                                                 //
23 //  Detector consists of 5 Si volumes covered pseudorapidity interval         //
24 //  from 1.7 to 5.1.                                                         //
25 //                                                                           //
26 //Begin_Html
27 /*
28 <img src="gif/AliFMDClass.gif">
29 </pre>
30 <br clear=left>
31 <font size=+2 color=red>
32 <p>The responsible person for this module is
33 <a href="mailto:Alla.Maevskaia@cern.ch">Alla Maevskaia</a>.
34 </font>
35 <pre>
36 */
37 //End_Html
38 //                                                                           //
39 //                                                                           //
40 ///////////////////////////////////////////////////////////////////////////////
41
42 #define DEBUG
43
44 #include <Riostream.h>
45 #include <stdlib.h>
46
47 #include <TClonesArray.h>
48 #include <TFile.h>
49 #include <TGeometry.h>
50 #include <TLorentzVector.h>
51 #include <TMath.h>
52 #include <TNode.h>
53 #include <TTUBE.h>
54 #include <TTree.h>
55 #include <TVirtualMC.h>
56
57 #include "AliDetector.h"
58 #include "AliFMDReconstParticles.h"
59 #include "AliFMDReconstruction.h"
60 #include "AliFMDdigit.h"
61 #include "AliFMDhit.h"
62 #include "AliFMDv1.h"
63 #include "AliLoader.h"
64 #include "AliMagF.h"
65 #include "AliRun.h"
66 #include "AliMC.h"
67 #include "AliFMDDigitizer.h"
68
69 ClassImp (AliFMD)
70   //_____________________________________________________________________________
71 AliFMD::AliFMD ():AliDetector ()
72 {
73   //
74   // Default constructor for class AliFMD
75   //
76   fIshunt = 0;
77   fHits     = 0;
78   fDigits   = 0;
79   fReconParticles=0; 
80 }
81
82 //_____________________________________________________________________________
83 AliFMD::AliFMD (const char *name, const char *title):
84 AliDetector (name, title)
85 {
86   //
87   // Standard constructor for Forward Multiplicity Detector
88   //
89
90   //
91   // Initialise Hit array
92   fHits = new TClonesArray ("AliFMDhit", 1000);
93   // Digits for each Si disk
94   fDigits = new TClonesArray ("AliFMDdigit", 1000);
95   fReconParticles=new TClonesArray("AliFMDReconstParticles",1000); 
96   gAlice->GetMCApp()->AddHitList (fHits);
97
98   fIshunt = 0;
99   //  fMerger = 0;
100   SetMarkerColor (kRed);
101 }
102
103 //-----------------------------------------------------------------------------
104 AliFMD::~AliFMD ()
105 {
106   if (fHits)
107     {
108       fHits->Delete ();
109       delete fHits;
110       fHits = 0;
111     }
112   if (fDigits)
113     {
114       fDigits->Delete ();
115       delete fDigits;
116       fDigits = 0;
117     }
118    if (fReconParticles)
119     {
120       fReconParticles->Delete ();
121       delete fReconParticles;
122       fReconParticles = 0;
123     }
124
125 }
126
127 //_____________________________________________________________________________
128 void AliFMD::AddHit (Int_t track, Int_t * vol, Float_t * hits)
129 {
130   //
131   // Add a hit to the list
132   //
133   TClonesArray & lhits = *fHits;
134   new (lhits[fNhits++]) AliFMDhit (fIshunt, track, vol, hits);
135 }
136
137 //_____________________________________________________________________________
138 void AliFMD::AddDigit (Int_t * digits)
139 {
140   // add a real digit - as coming from data
141
142   if (fDigits == 0x0) fDigits = new TClonesArray ("AliFMDdigit", 1000);  
143   TClonesArray & ldigits = *fDigits;
144   new (ldigits[fNdigits++]) AliFMDdigit (digits);
145 }
146
147 //_____________________________________________________________________________
148 void AliFMD::BuildGeometry ()
149 {
150   //
151   // Build simple ROOT TNode geometry for event display
152   //
153   TNode *node, *top;
154   const int kColorFMD = 5;
155   //
156   top = gAlice->GetGeometry ()->GetNode ("alice");
157
158   // FMD define the different volumes
159   new TRotMatrix ("rot901", "rot901", 90, 0, 90, 90, 180, 0);
160
161   new TTUBE ("S_FMD0", "FMD  volume 0", "void", 4.2, 17.2, 1.5);
162   top->cd ();
163   node = new TNode ("FMD0", "FMD0", "S_FMD0", 0, 0, -62.8, "");
164   node->SetLineColor (kColorFMD);
165   fNodes->Add (node);
166
167   new TTUBE ("S_FMD1", "FMD  volume 1", "void", 15.4, 28.4, 1.5);
168   top->cd ();
169   node = new TNode ("FMD1", "FMD1", "S_FMD1", 0, 0, -75.2, "");
170   node->SetLineColor (kColorFMD);
171   fNodes->Add (node);
172
173   new TTUBE ("S_FMD2", "FMD  volume 2", "void", 4.2, 17.2, 1.5);
174   top->cd ();
175   node = new TNode ("FMD2", "FMD2", "S_FMD2", 0, 0, 83.2, "");
176   node->SetLineColor (kColorFMD);
177   fNodes->Add (node);
178
179   new TTUBE ("S_FMD3", "FMD  volume 3", "void", 15.4, 28.4, 1.5);
180   top->cd ();
181   node = new TNode ("FMD3", "FMD3", "S_FMD3", 0, 0, 75.2, "");
182   node->SetLineColor (kColorFMD);
183   fNodes->Add (node);
184
185   new TTUBE ("S_FMD4", "FMD  volume 4", "void", 4.2, 17.2, 1.5);
186   top->cd ();
187   node = new TNode ("FMD4", "FMD4", "S_FMD4", 0, 0, 340, "");
188   node->SetLineColor (kColorFMD);
189   fNodes->Add (node);
190 }
191
192 //_____________________________________________________________________________
193 Int_t AliFMD::DistanceToPrimitive (Int_t /*px*/, Int_t /*py*/)
194 {
195   //
196   // Calculate the distance from the mouse to the FMD on the screen
197   // Dummy routine
198   //
199   return 9999;
200 }
201
202 //___________________________________________
203 void AliFMD::ResetHits ()
204 {
205   // Reset number of clusters and the cluster array for this detector
206   AliDetector::ResetHits ();
207 }
208
209 //____________________________________________
210 void AliFMD::ResetDigits ()
211 {
212   //
213   // Reset number of digits and the digits array for this detector
214   AliDetector::ResetDigits ();
215   //
216 }
217
218 //-------------------------------------------------------------------------
219 void  AliFMD::Init ()
220 {
221   //
222   // Initialis the FMD after it has been built
223   Int_t i;
224   //
225   if (fDebug)
226     {
227       printf ("\n%s: ", ClassName ());
228       for (i = 0; i < 35; i++)
229         printf ("*");
230       printf (" FMD_INIT ");
231       for (i = 0; i < 35; i++)
232         printf ("*");
233       printf ("\n%s: ", ClassName ());
234       //
235       // Here the FMD initialisation code (if any!)
236       for (i = 0; i < 80; i++)
237         printf ("*");
238       printf ("\n");
239     }
240   //
241   //
242  
243 }
244 //---------------------------------------------------------------------
245 void AliFMD::MakeBranch (Option_t * option)
246 {
247   // Create Tree branches for the FMD.
248   char branchname[10];
249   const Int_t kBufferSize = 16000;
250   sprintf (branchname, "%s", GetName ());
251   
252   const char *cH = strstr(option,"H");
253   const char *cD = strstr(option,"D");
254   const char *cR = strstr(option,"R");
255   
256   if (cH && (fHits == 0x0)) fHits = new TClonesArray ("AliFMDhit", 1000);
257
258   AliDetector::MakeBranch (option);
259   
260   if (cD){
261     if (fDigits == 0x0) fDigits = new TClonesArray ("AliFMDdigit", 1000);  
262     MakeBranchInTree(fLoader->TreeD(), branchname,&fDigits, kBufferSize, 0);
263   }
264
265   if (cR){
266     if (fReconParticles == 0x0) 
267       fReconParticles=new TClonesArray("AliFMDReconstParticles",1000); 
268     MakeBranchInTree(fLoader->TreeR(), branchname,&fReconParticles, kBufferSize, 0);
269   }
270   
271 }
272
273 //_____________________________________________________________________________
274 void AliFMD::SetTreeAddress ()
275 {
276   // Set branch address for the Hits and Digits Tree.
277   char branchname[30];
278
279   if (fLoader->TreeH() && (fHits == 0x0)) 
280     fHits = new TClonesArray ("AliFMDhit", 1000);  
281
282   AliDetector::SetTreeAddress ();
283
284   TBranch *branch;
285   TTree *treeD = fLoader->TreeD();
286
287   if (treeD)
288     {
289       if (fDigits == 0x0) fDigits = new TClonesArray ("AliFMDdigit", 1000);
290       branch = treeD->GetBranch (branchname);
291       if (branch)
292        branch->SetAddress (&fDigits);
293     }
294   
295   if (fLoader->TreeR() && fReconParticles) 
296     {
297       if (fReconParticles == 0x0) 
298         fReconParticles=new TClonesArray("AliFMDReconstParticles",1000); 
299       branch = fLoader->TreeR()->GetBranch("FMD"); 
300       if (branch) branch->SetAddress(&fReconParticles) ;
301     }   
302 }
303
304
305
306 void
307 AliFMD::Eta2Radius (Float_t eta, Float_t zDisk, Float_t * radius)
308 {
309   Float_t expEta = TMath::Exp (-eta);
310   Float_t theta = TMath::ATan (expEta);
311   theta = 2. * theta;
312   Float_t rad = zDisk * (TMath::Tan (theta));
313   *radius = rad;
314
315   if (fDebug)
316     printf ("%s: eta %f radius %f\n", ClassName (), eta, rad);
317 }
318
319 //---------------------------------------------------------------------
320
321
322 void AliFMD::Digits2Reco()
323 {
324   AliFMDReconstruction * reconstruction =  new AliFMDReconstruction(fLoader->GetRunLoader());
325   cout<<" AliFMD::Digits2Reco >> "<<reconstruction<<endl;
326   reconstruction->Exec();
327   delete  reconstruction;
328 }
329 //-----------------------------------------------------------------------
330
331 void AliFMD::MakeBranchInTreeD(TTree *treeD, const char *file)
332 {
333     //
334     // Create TreeD branches for the FMD
335     //
336     const Int_t kBufferSize = 4000;
337     char branchname[20];
338     sprintf(branchname,"%s",GetName()); 
339     if(treeD)
340      {
341        MakeBranchInTree(treeD,  branchname,&fDigits, kBufferSize, file);
342      }
343 }
344
345 //____________________________________________________________________________
346 AliDigitizer* AliFMD::CreateDigitizer(AliRunDigitizer* manager)
347 {
348   return new AliFMDDigitizer(manager);
349 }