]> git.uio.no Git - u/mrichter/AliRoot.git/blame - STEER/STEER/AliModule.cxx
In order to use the new TPC dEdx information within the common pid classes the new...
[u/mrichter/AliRoot.git] / STEER / STEER / AliModule.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 **************************************************************************/
15
acd84897 16/* $Id$ */
4c039060 17
8494b010 18///////////////////////////////////////////////////////////////////////////////
19// //
20// Base class for ALICE modules. Both sensitive modules (Modules) and //
21// non-sensitive ones are described by this base class. This class //
22// supports the hit and digit trees produced by the simulation and also //
23// the objects produced by the reconstruction. //
24// //
25// This class is also responsible for building the geometry of the //
26// Modules. //
27// //
28//Begin_Html
29/*
1439f98e 30<img src="picts/AliModuleClass.gif">
8494b010 31*/
32//End_Html
33// //
34///////////////////////////////////////////////////////////////////////////////
88cb7938 35
116cbefd 36#include <TObjArray.h>
2cad796f 37#include <TClonesArray.h>
38#include <TTree.h>
116cbefd 39#include <TSystem.h>
2cad796f 40#include <TDirectory.h>
5d12ce38 41#include <TVirtualMC.h>
4a9de4af 42#include <TGeoManager.h>
43#include <TString.h>
94de3818 44
594d8990 45#include "AliLog.h"
88cb7938 46#include "AliConfig.h"
47#include "AliLoader.h"
48#include "AliMagF.h"
8494b010 49#include "AliModule.h"
50#include "AliRun.h"
2cad796f 51#include "AliTrackReference.h"
5d12ce38 52#include "AliMC.h"
d97f1dbe 53#include "AliSimulation.h"
00b459eb 54#include "AliRawDataHeader.h"
f21fc003 55#include "AliDigitizationInput.h"
00b459eb 56
362c9d61 57#include "AliDAQ.h"
8494b010 58
59ClassImp(AliModule)
60
00ee7999 61Float_t AliModule::fgDensityFactor = 1.0;
62
e2afb3b6 63//_______________________________________________________________________
64AliModule::AliModule():
e2afb3b6 65 fIdtmed(0),
66 fIdmate(0),
67 fLoMedium(0),
68 fHiMedium(0),
69 fActive(0),
2cad796f 70 fEnable(1),
2cad796f 71 fMaxIterTrackRef(0),
6d7874d8 72 fCurrentIterTrackRef(0),
f21fc003 73 fRunLoader(0),
74 fDigInput(0)
8494b010 75{
76 //
77 // Default constructor for the AliModule class
78 //
8494b010 79}
80
e2afb3b6 81//_______________________________________________________________________
82AliModule::AliModule(const char* name,const char *title):
83 TNamed(name,title),
e2afb3b6 84 fIdtmed(new TArrayI(100)),
85 fIdmate(new TArrayI(100)),
86 fLoMedium(65536),
87 fHiMedium(0),
88 fActive(0),
2cad796f 89 fEnable(1),
2cad796f 90 fMaxIterTrackRef(0),
6d7874d8 91 fCurrentIterTrackRef(0),
f21fc003 92 fRunLoader(0),
93 fDigInput(0)
8494b010 94{
95 //
96 // Normal constructor invoked by all Modules.
97 // Create the list for Module specific histograms
98 // Add this Module to the global list of Modules in Run.
99 //
8494b010 100 // Get the Module numeric ID
2e42b4d4 101
8494b010 102 Int_t id = gAlice->GetModuleID(name);
02ca2762 103 if (id>=0) {
104 // Module already added !
594d8990 105 AliWarning(Form("Module: %s already present at %d",name,id));
8494b010 106 return;
107 }
108 //
109 // Add this Module to the list of Modules
88cb7938 110
111 gAlice->AddModule(this);
112
e939a978 113 //PH SetMarkerColor(3);
8494b010 114 //
e2afb3b6 115 // Clear space for tracking media and material indexes
116
8494b010 117 for(Int_t i=0;i<100;i++) (*fIdmate)[i]=(*fIdtmed)[i]=0;
8494b010 118}
119
e2afb3b6 120//_______________________________________________________________________
8494b010 121AliModule::~AliModule()
122{
123 //
124 // Destructor
125 //
e2afb3b6 126
bbcea4df 127 // Remove this Module from the list of Modules
a9cc22a2 128 if (gAlice) {
129 TObjArray * modules = gAlice->Modules();
130 if (modules) modules->Remove(this);
131 }
7dd2cbe4 132
8494b010 133 // Delete TArray objects
134 delete fIdtmed;
135 delete fIdmate;
88cb7938 136
7dd2cbe4 137}
8494b010 138
e2afb3b6 139//_______________________________________________________________________
8494b010 140void AliModule::AliMaterial(Int_t imat, const char* name, Float_t a,
e2afb3b6 141 Float_t z, Float_t dens, Float_t radl,
142 Float_t absl, Float_t *buf, Int_t nwbuf) const
8494b010 143{
144 //
145 // Store the parameters for a material
146 //
147 // imat the material index will be stored in (*fIdmate)[imat]
148 // name material name
149 // a atomic mass
150 // z atomic number
151 // dens density
152 // radl radiation length
153 // absl absorbtion length
154 // buf adress of an array user words
155 // nwbuf number of user words
156 //
157 Int_t kmat;
4a9de4af 158 //Build the string uniquename as "DET_materialname"
159 TString uniquename = GetName();
160 uniquename.Append("_");
161 uniquename.Append(name);
162 //if geometry loaded from file only fill fIdmate, else create material too
d97f1dbe 163 if(AliSimulation::Instance()->IsGeometryFromFile()){
4a9de4af 164 TGeoMaterial *mat = gGeoManager->GetMaterial(uniquename.Data());
165 kmat = mat->GetUniqueID();
166 (*fIdmate)[imat]=kmat;
167 }else{
00ee7999 168 if (fgDensityFactor != 1.0)
169 AliWarning(Form("Material density multiplied by %.2f!", fgDensityFactor));
170 gMC->Material(kmat, uniquename.Data(), a, z, dens * fgDensityFactor, radl, absl, buf, nwbuf);
4a9de4af 171 (*fIdmate)[imat]=kmat;
172 }
8494b010 173}
b60e0f5e 174
e2afb3b6 175//_______________________________________________________________________
0afa509f 176void AliModule::AliGetMaterial(Int_t imat, char* name, Float_t &a,
e2afb3b6 177 Float_t &z, Float_t &dens, Float_t &radl,
116cbefd 178 Float_t &absl) const
0afa509f 179{
180 //
181 // Store the parameters for a material
182 //
183 // imat the material index will be stored in (*fIdmate)[imat]
184 // name material name
185 // a atomic mass
186 // z atomic number
187 // dens density
188 // radl radiation length
189 // absl absorbtion length
190 // buf adress of an array user words
191 // nwbuf number of user words
192 //
193
194 Float_t buf[10];
195 Int_t nwbuf, kmat;
196 kmat=(*fIdmate)[imat];
197 gMC->Gfmate(kmat, name, a, z, dens, radl, absl, buf, nwbuf);
198}
b60e0f5e 199
8494b010 200
e2afb3b6 201//_______________________________________________________________________
8494b010 202void AliModule::AliMixture(Int_t imat, const char *name, Float_t *a,
e2afb3b6 203 Float_t *z, Float_t dens, Int_t nlmat,
204 Float_t *wmat) const
8494b010 205{
206 //
207 // Defines mixture or compound imat as composed by
208 // nlmat materials defined by arrays a, z and wmat
209 //
210 // If nlmat > 0 wmat contains the proportion by
211 // weights of each basic material in the mixture
212 //
213 // If nlmat < 0 wmat contains the number of atoms
214 // of eack kind in the molecule of the compound
215 // In this case, wmat is changed on output to the relative weigths.
216 //
217 // imat the material index will be stored in (*fIdmate)[imat]
218 // name material name
219 // a array of atomic masses
220 // z array of atomic numbers
221 // dens density
222 // nlmat number of components
223 // wmat array of concentrations
224 //
225 Int_t kmat;
4a9de4af 226 //Build the string uniquename as "DET_mixturename"
227 TString uniquename = GetName();
228 uniquename.Append("_");
229 uniquename.Append(name);
230 //if geometry loaded from file only fill fIdmate, else create mixture too
d97f1dbe 231 if(AliSimulation::Instance()->IsGeometryFromFile()){
4a9de4af 232 TGeoMaterial *mat = gGeoManager->GetMaterial(uniquename.Data());
233 kmat = mat->GetUniqueID();
234 (*fIdmate)[imat]=kmat;
235 }else{
00ee7999 236 if (fgDensityFactor != 1.0)
237 AliWarning(Form("Material density multiplied by %.2f!", fgDensityFactor));
238 gMC->Mixture(kmat, uniquename.Data(), a, z, dens * fgDensityFactor, nlmat, wmat);
4a9de4af 239 (*fIdmate)[imat]=kmat;
240 }
8494b010 241}
b60e0f5e 242
e2afb3b6 243//_______________________________________________________________________
8494b010 244void AliModule::AliMedium(Int_t numed, const char *name, Int_t nmat,
e2afb3b6 245 Int_t isvol, Int_t ifield, Float_t fieldm,
246 Float_t tmaxfd, Float_t stemax, Float_t deemax,
247 Float_t epsil, Float_t stmin, Float_t *ubuf,
248 Int_t nbuf) const
8494b010 249{
250 //
251 // Store the parameters of a tracking medium
252 //
b13db077 253 // numed the medium number is stored into (*fIdtmed)[numed]
8494b010 254 // name medium name
255 // nmat the material number is stored into (*fIdmate)[nmat]
256 // isvol sensitive volume if isvol!=0
257 // ifield magnetic field flag (see below)
258 // fieldm maximum magnetic field
259 // tmaxfd maximum deflection angle due to magnetic field
260 // stemax maximum step allowed
261 // deemax maximum fractional energy loss in one step
262 // epsil tracking precision in cm
263 // stmin minimum step due to continuous processes
264 //
265 // ifield = 0 no magnetic field
266 // = -1 user decision in guswim
267 // = 1 tracking performed with Runge Kutta
268 // = 2 tracking performed with helix
269 // = 3 constant magnetic field along z
270 //
271 Int_t kmed;
4a9de4af 272 //Build the string uniquename as "DET_mediumname"
273 TString uniquename = GetName();
274 uniquename.Append("_");
275 uniquename.Append(name);
276 //if geometry loaded from file only fill fIdtmed, else create medium too
d97f1dbe 277 if(AliSimulation::Instance()->IsGeometryFromFile()){
4a9de4af 278 TGeoMedium *med = gGeoManager->GetMedium(uniquename.Data());
279 kmed = med->GetId();
280 (*fIdtmed)[numed]=kmed;
281 }else{
282 gMC->Medium(kmed, uniquename.Data(), (*fIdmate)[nmat], isvol, ifield,
283 fieldm, tmaxfd, stemax, deemax, epsil, stmin, ubuf, nbuf);
284 (*fIdtmed)[numed]=kmed;
285 }
8494b010 286}
b60e0f5e 287
e2afb3b6 288//_______________________________________________________________________
8494b010 289void AliModule::AliMatrix(Int_t &nmat, Float_t theta1, Float_t phi1,
e2afb3b6 290 Float_t theta2, Float_t phi2, Float_t theta3,
291 Float_t phi3) const
8494b010 292{
293 //
294 // Define a rotation matrix. Angles are in degrees.
295 //
296 // nmat on output contains the number assigned to the rotation matrix
297 // theta1 polar angle for axis I
298 // phi1 azimuthal angle for axis I
299 // theta2 polar angle for axis II
300 // phi2 azimuthal angle for axis II
301 // theta3 polar angle for axis III
302 // phi3 azimuthal angle for axis III
303 //
cfce8870 304 gMC->Matrix(nmat, theta1, phi1, theta2, phi2, theta3, phi3);
8494b010 305}
306
e2afb3b6 307//_______________________________________________________________________
65fb704d 308Float_t AliModule::ZMin() const
309{
310 return -500;
311}
312
e2afb3b6 313//_______________________________________________________________________
65fb704d 314Float_t AliModule::ZMax() const
315{
316 return 500;
317}
318
4787b401 319//_______________________________________________________________________
320void AliModule::AddAlignableVolumes() const
321{
322 //
40d37d9d 323 if (IsActive())
324 AliWarning(Form(" %s still has to implement the AddAlignableVolumes method!",GetName()));
4787b401 325}
326
2cad796f 327//_______________________________________________________________________
88cb7938 328
df75403f 329AliLoader* AliModule::MakeLoader(const char* /*topfoldername*/)
330{
331 return 0x0;
332}
8494b010 333
2cad796f 334
88cb7938 335//_____________________________________________________________________________
9ac3aec9 336AliTrackReference* AliModule::AddTrackReference(Int_t label, Int_t id){
2cad796f 337 //
338 // add a trackrefernce to the list
9ac3aec9 339 return (gAlice->GetMCApp()->AddTrackReference(label, id));
2cad796f 340}
341
88cb7938 342//_____________________________________________________________________________
343TTree* AliModule::TreeTR()
344{
1bb2a43c 345 //
346 // Return TR tree pointer
347 //
6d7874d8 348 if ( fRunLoader == 0x0)
88cb7938 349 {
594d8990 350 AliError("Can not get the run loader");
88cb7938 351 return 0x0;
352 }
353
6d7874d8 354 TTree* tree = fRunLoader->TreeTR();
88cb7938 355 return tree;
356}
0421c3d1 357
358
359//_____________________________________________________________________________
360void AliModule::Digits2Raw()
361{
362// This is a dummy version that just copies the digits file contents
363// to a raw data file.
364
594d8990 365 AliWarning(Form("Dummy version called for %s", GetName()));
0421c3d1 366
362c9d61 367 Int_t nDDLs = AliDAQ::NumberOfDdls(GetName());
0421c3d1 368
369 if (!GetLoader()) return;
370 fstream digitsFile(GetLoader()->GetDigitsFileName(), ios::in);
371 if (!digitsFile) return;
372
373 digitsFile.seekg(0, ios::end);
374 UInt_t size = digitsFile.tellg();
3c166bf6 375 UInt_t ddlSize = 4 * (size / (4*nDDLs));
0421c3d1 376 Char_t* buffer = new Char_t[ddlSize+1];
377
378 for (Int_t iDDL = 0; iDDL < nDDLs; iDDL++) {
7275b148 379 char fileName[256]="";
380 strncpy(fileName,AliDAQ::DdlFileName(GetName(),iDDL),255);
0421c3d1 381 fstream rawFile(fileName, ios::out);
7275b148 382 if (!rawFile) break;
0421c3d1 383
384 AliRawDataHeader header;
385 header.fSize = ddlSize + sizeof(header);
386 rawFile.write((char*) &header, sizeof(header));
387
388 digitsFile.read(buffer, ddlSize);
389 rawFile.write(buffer, ddlSize);
390 rawFile.close();
391 }
392
393 digitsFile.close();
394 delete[] buffer;
395}