]> git.uio.no Git - u/mrichter/AliRoot.git/blame - FMD/AliFMDv1.cxx
Last minute changes and new code for event mixing and reconstruction (A.Maevskaia)
[u/mrichter/AliRoot.git] / FMD / AliFMDv1.cxx
CommitLineData
4c039060 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 **************************************************************************/
b9a2d5e4 15 /////////////////////////////////////////////////////////////////////
16// //
17// Forward Multiplicity detector based on Silicon version 0 //
18//
19//Begin Html
fe4da5cc 20/*
b9a2d5e4 21<img src="gif/AliFMDv0Class.gif">
fe4da5cc 22*/
b9a2d5e4 23//End Html
24// //
25// //
26//////////////////////////////////////////////////////////////////////
27
28#include <TMath.h>
29#include <TGeometry.h>
30#include <TTUBE.h>
31#include <TFile.h>
32#include <TTree.h>
33#include <TNode.h>
34#include <TClonesArray.h>
35#include <TLorentzVector.h>
36#include <TDirectory.h>
fe4da5cc 37#include "AliFMDv1.h"
b9a2d5e4 38#include "AliRun.h"
fe4da5cc 39#include "AliMC.h"
b9a2d5e4 40#include <iostream.h>
41#include <fstream.h>
94de3818 42#include "AliMagF.h"
b9a2d5e4 43#include "AliFMDhit.h"
44#include "AliFMDdigit.h"
f707b5c1 45#include <stdlib.h>
b9a2d5e4 46//#include "TGeant3.h"
47//class TGeant3;
fe4da5cc 48ClassImp(AliFMDv1)
b9a2d5e4 49
50//--------------------------------------------------------------------
51AliFMDv1::AliFMDv1(const char *name, const char *title):
52 AliFMD(name,title)
fe4da5cc 53{
54 //
b9a2d5e4 55 // Standart constructor for Forward Multiplicity Detector version 0
fe4da5cc 56 //
b9a2d5e4 57 fIdSens1=0;
58// setBufferSize(128000);
fe4da5cc 59}
b9a2d5e4 60//-------------------------------------------------------------------------
fe4da5cc 61void AliFMDv1::CreateGeometry()
62{
b9a2d5e4 63 //
64 // Create the geometry of Forward Multiplicity Detector version 0
fe4da5cc 65 //
b9a2d5e4 66 //Detector consists of 6 volumes:
67 // 1st covered pseudorapidity interval from 3.3 to 2.0
68 // and placed on 65cm in Z-direction;
69 // 2nd - from 2.0 to 1.6 and Z=85 cm;
70 // 3d - the same pseudorapidity interval as the 1st
71 // but on the other side from the interaction point z=-65cm;
72 // 4th - simmetricaly with the 2nd :
73 // pseudorapidity from 2.0 to 1.6, Z=-85cm
74 // 5th - from 3.6 to 4.7, Z=-270cm
75 // 6th - from 4.5 to 5.5 , Z=-630cm.
76 // Each part has 400mkm Si (sensetive area, detector itself),
77 // 0.75cm of plastic simulated electronics material,
78 // Al support ring 2cm thickness and 1cm width placed on
79 // the outer radius of each Si disk;
80 //
81 // begin Html
fe4da5cc 82 /*
b9a2d5e4 83 <img src="gif/AliFMDv0.gif">
84 */
85 //
0d630091 86
b9a2d5e4 87 Int_t *idtmed = fIdtmed->GetArray();
88
89 Int_t ifmd;
90 Int_t idrotm[999];
91 Float_t zfmd,par[3];
92 char name[5];
93
94 Float_t rin[6], rout[6],zpos;
dc8af42e 95 Float_t etain[6]= {3.3, 2.0, 3.3, 2.0, 4.5, 5.5};
96 Float_t etaout[6]={2.0, 1.6, 2.0, 1.6, 3.3, 4.5};
97 // Float_t z[6]={64., 85., -64., -85., -270., -630};
98 Float_t z[6]={64., 85., -64., -85., -240., -630};
b9a2d5e4 99 Float_t zDet=0.04;
100 Float_t zElectronic=0.75;
101 Float_t zSupport=1.;
102 Float_t zFMD=3.;
103//-------------------------------------------------------------------
104 // FMD
105 //------------------------------------------------------------------
106
107 AliMatrix(idrotm[901], 90, 0, 90, 90, 180, 0);
108
109 gMC->Gsvolu("GFSI","TUBE", idtmed[1], par, 0);
110 gMC->Gsvolu("GEL ","TUBE", idtmed[4], par, 0);
111 gMC->Gsvolu("GSUP","TUBE", idtmed[2], par, 0);
112
dc8af42e 113 for (ifmd =0; ifmd < 5; ifmd++){
b9a2d5e4 114
115 sprintf(name,"FMD%d",ifmd);
dc8af42e 116 printf(name);
b9a2d5e4 117
118 zfmd=TMath::Abs(z[ifmd]);
dc8af42e 119 printf("zfmd %f z[ifmd] %f",zfmd,z[ifmd]);
b9a2d5e4 120 AliFMD::Eta2Radius(etain[ifmd],zfmd,&rin[ifmd]);
121 AliFMD::Eta2Radius(etaout[ifmd],zfmd,&rout[ifmd]);
122
123 par[0]=rin[ifmd]; // pipe size
124 par[1]=rout[ifmd];
125 par[2]=zFMD/2;
126 gMC->Gsvolu(name,"TUBE", idtmed[3], par, 3);
127
dc8af42e 128 printf ("rin %f rout %f ZFMD %f\n",par[0],par[1],z[ifmd]);
b9a2d5e4 129 if (z[ifmd] < 0){
130 gMC->Gspos(name,1,"ALIC",0,0,z[ifmd],0, "ONLY");}
131 else {
132 gMC->Gspos(name,1,"ALIC",0,0,z[ifmd],idrotm[901], "ONLY");}
133 //Silicon detector
134 par[2]=zDet/2;
135 zpos=zFMD/2 -par[2];
136 gMC->Gsposp("GFSI",ifmd+1,name,0,0,zpos,0, "ONLY",par,3);
137
138 //Plastic slice for electronics
139 par[2]=zElectronic/2;
140 zpos=zpos-zDet/2-par[2];
141 gMC->Gsposp("GEL ",ifmd+1,name,0,0,zpos,0, "ONLY",par,3);
142
143 //Simple Al support
144 par[1]=rout[ifmd];
145 par[0]=rout[ifmd]-2;
146 par[2]=zSupport/2;
147 zpos=zpos-zElectronic/2-par[2];
148 gMC->Gsposp("GSUP",ifmd+1,name,0,0,zpos,0, "ONLY",par,3);
149
150
151 }
152
153 //Silicon
154
155
156 gMC->Gsdvn("GSEC", "GFSI", 16, 2);
157 gMC->Gsdvn("GRIN", "GSEC", 128, 1);
158 /*
159 for (Int_t i=0; i<16; i++){
160 sprintf(ring,"GR%d",i);
161 printf(ring);
162 gMC->Gsdvn(ring, "GSEC", 128, 1);
163 }
164 */
165
166}
167//------------------------------------------------------------------------
168void AliFMDv1::CreateMaterials()
169{
170 Int_t isxfld = gAlice->Field()->Integ();
171 Float_t sxmgmx = gAlice->Field()->Max();
172
173 // Plastic CH
174 Float_t aPlastic[2]={1.01,12.01};
175 Float_t zPlastic[2]={1,6};
176 Float_t wPlastic[2]={1,1};
177 Float_t denPlastic=1.03;
178 //
179
180 //*** Definition Of avaible FMD materials ***
181 AliMaterial(0, "Si chip$", 28.0855,14.,2.33,9.36,999);
182 AliMaterial(1, "Al supprt$", 26.980,13.,2.70,8.9,999);
183 AliMaterial(2, "FMD Air$", 14.61, 7.3, .001205, 30423.,999);
184 AliMixture( 5, "Plastic$",aPlastic,zPlastic,denPlastic,-2,wPlastic);
185
0d630091 186
b9a2d5e4 187//**
188 AliMedium(1, "Si chip$", 0, 1, isxfld, sxmgmx, 1., .001, 1., .001, .001);
189 AliMedium(2, "Al support$", 1, 0, isxfld, sxmgmx, 1., .001, 1., .001, .001);
190 AliMedium(3, "FMD air$", 2, 0, isxfld, sxmgmx, 1., .001, 1., .001, .001);
191 AliMedium(4, "Plastic$", 5, 0,isxfld, sxmgmx, 10., .01, 1., .003, .003);
192
0d630091 193
0d630091 194
fe4da5cc 195}
b9a2d5e4 196//---------------------------------------------------------------------
197void AliFMDv1::DrawDetector()
fe4da5cc 198{
b9a2d5e4 199//
200// Draw a shaded view of the Forward multiplicity detector version 0
201//
202
203AliMC* pMC = AliMC::GetMC();
204
205//Set ALIC mother transparent
206pMC->Gsatt("ALIC","SEEN",0);
207//
208//Set volumes visible
209gMC->Gsatt("FMD0","SEEN",1);
210gMC->Gsatt("FMD1","SEEN",1);
211gMC->Gsatt("FMD2","SEEN",1);
212gMC->Gsatt("FMD3","SEEN",1);
213gMC->Gsatt("FMD4","SEEN",1);
214gMC->Gsatt("FMD5","SEEN",1);
215
216//
217gMC->Gdopt("hide","on");
218gMC->Gdopt("shad","on");
219gMC->SetClipBox(".");
220gMC->SetClipBox("*",0,1000,-1000,1000,-1000,1000);
221gMC->DefaultRange();
222gMC->Gdraw("alic",40,30,0,12,9.5,.2,0.2);
223gMC->Gdhead(1111,"Forward multiplicity detector");
224gMC->Gdopt("hide","off");
225}
226//-------------------------------------------------------------------
227void AliFMDv1::Init()
228{
229// Initialises version 0 of the Forward Multiplicity Detector
230//
dc8af42e 231AliMC* gMC=AliMC::GetMC();
232AliFMD::Init();
233fIdSens1=gMC->VolId("GRIN");
234printf("*** FMD version 1 initialized ***\n");
fe4da5cc 235}
236
b9a2d5e4 237//-------------------------------------------------------------------
238
239void AliFMDv1::StepManager()
fe4da5cc 240{
241 //
b9a2d5e4 242 // Called for every step in the Forward Multiplicity Detector
fe4da5cc 243 //
b9a2d5e4 244 Int_t id,copy,copy1,copy2;
245 static Float_t hits[9];
246 static Int_t vol[3];
247 static Float_t de;
248 TLorentzVector pos;
249 TLorentzVector mom;
fe4da5cc 250
0d630091 251
b9a2d5e4 252 TClonesArray &lhits = *fHits;
253 AliMC* gMC=AliMC::GetMC();
254 if(!gMC->IsTrackAlive()) return; // particle has disappeared
0d630091 255
b9a2d5e4 256 Float_t charge = gMC->TrackCharge();
257 if(TMath::Abs(charge)<=0.) return; //take only charged particles
258
259 // printf(" in StepManeger \n");
260 id=gMC->CurrentVolID(copy);
fe4da5cc 261
b9a2d5e4 262// Check the sensetive volume
263 if(id==fIdSens1)
264 {
265 if(gMC->IsTrackEntering())
266 {
267 // ((TGeant3*)gMC)->Gpcxyz();
268 vol[2]=copy;
269 gMC->CurrentVolOffID(1,copy1);
270 vol[1]=copy1;
271 gMC->CurrentVolOffID(2,copy2);
272 vol[0]=copy2;
dc8af42e 273 // printf("vol0 %d vol1 %d vol2 %d\n",vol[0],vol[1],vol[2]);
b9a2d5e4 274 gMC->TrackPosition(pos);
275 hits[0]=pos[0];
276 hits[1]=pos[1];
277 hits[2]=pos[2];
dc8af42e 278 // printf(" Zpos %f \n",hits[2]);
b9a2d5e4 279 gMC->TrackMomentum(mom);
280 hits[3]=mom[0];
281 hits[4]=mom[1];
282 hits[5]=mom[2];
283
284 Int_t iPart= gMC->TrackPid();
285 Int_t partId=gMC->IdFromPDG(iPart);
286 hits[7]=partId;
287 hits[8]=1e9*gMC->TrackTime();
288 de=0.;
289 // for(i=0; i<9; i++) printf(" hits %f \n",hits[i]);
290 }
291 if(gMC->IsTrackInside()){
292 de=de+1000.*gMC->Edep();
293 }
294
295 if(gMC->IsTrackExiting()
296 ||gMC->IsTrackDisappeared()||
297 gMC->IsTrackStop())
298 {
299 hits[6]=de+1000.*gMC->Edep();
300 new(lhits[fNhits++]) AliFMDhit(fIshunt,gAlice->CurrentTrack(),vol,hits);
301 } // IsTrackExiting()
302 }
303 }
dc8af42e 304//--------------------------------------------------------------------------
305
306void AliFMDv1::Response( Float_t Edep)
307{
308 Float_t I=1.664*0.04*2.33/22400; // = 0.69e-6;
309 Float_t chargeOnly=Edep/I;
310 //Add noise ~500electrons
311 Int_t charge=500;
312 if (Edep>0)
313 charge=Int_t(gRandom->Gaus(chargeOnly,500));
314 }
b9a2d5e4 315
316
317
318
fe4da5cc 319
0d630091 320