]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MUON/AliMUONv0.cxx
Introducing Riostream.h
[u/mrichter/AliRoot.git] / MUON / AliMUONv0.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
16/*
17$Log$
70479d0e 18Revision 1.22 2002/10/14 14:57:29 hristov
19Merging the VirtualMC branch to the main development branch (HEAD)
20
b9d0a01d 21Revision 1.20.6.2 2002/07/24 10:07:21 alibrary
22Updating VirtualMC
23
24Revision 1.21 2002/07/23 10:02:46 morsch
25All volume names start with "S".
26
b74f1c6a 27Revision 1.20 2001/10/30 12:18:45 morsch
28Place station 3 into DDIP only if DDIP is present.
29
82e22b99 30Revision 1.19 2001/07/17 09:51:38 morsch
31Place station 3 inside Dipole.
32
afa281f0 33Revision 1.18 2001/04/06 11:24:43 morsch
34Dependency on implementations of AliSegmentation and AliMUONResponse moved to AliMUONFactory class.
35Static method Build() builds the MUON system out of chambers, segmentation and response.
36
be3bb6c1 37Revision 1.17 2001/03/17 10:07:20 morsch
38Correct inconsistent variable name / method name / comments.
39
2eb55fab 40Revision 1.16 2001/01/27 08:50:50 morsch
41Call non default constructors of segmentation classes.
42
c687f06a 43Revision 1.15 2001/01/17 20:57:45 hristov
44Unused variable removed
45
a7e8b51a 46Revision 1.14 2000/12/21 22:42:55 morsch
47Constructor contains default set-up for segmentation.
48Record charged particles only.
49
9fde056a 50Revision 1.13 2000/10/06 10:03:38 morsch
51Call to gMC->VolId() moved to Init()
52
b9046b8f 53Revision 1.12 2000/10/02 21:28:09 fca
54Removal of useless dependecies via forward declarations
55
94de3818 56Revision 1.11 2000/06/27 07:31:07 morsch
57fChambers = 0; deleted from constructor.
58
c20a5a2a 59Revision 1.10 2000/06/26 14:02:38 morsch
60Add class AliMUONConstants with MUON specific constants using static memeber data and access methods.
61
f665c1ea 62Revision 1.9 2000/06/15 07:58:49 morsch
63Code from MUON-dev joined
64
a9e2aefa 65Revision 1.8.4.9 2000/06/12 19:20:49 morsch
66Constructor sets default geometry, segmentation and response parameters.
67
68Revision 1.8.4.8 2000/06/09 21:55:28 morsch
69Most coding rule violations corrected.
70
71Revision 1.8.4.7 2000/05/02 13:15:18 morsch
72Coding rule violations RS3, RN13 corected
73
74Revision 1.8.4.6 2000/05/02 10:24:26 morsch
75Public access to fdGas and fdAlu of AliMUONChamber replaced by getters.
76
77Revision 1.8.4.5 2000/04/26 19:58:47 morsch
78Obsolete reference to trig_ removed.
79
80Revision 1.8.4.4 2000/04/19 19:42:47 morsch
81change NCH to kNCH
82
83Revision 1.8.4.3 2000/02/17 08:17:43 morsch
84Gammas and neutrons are also scored in the stepmanager
4c039060 85*/
86
fe4da5cc 87/////////////////////////////////////////////////////////
88// Manager and hits classes for set:MUON version 0 //
89/////////////////////////////////////////////////////////
90
91#include <TTUBE.h>
92#include <TNode.h>
93#include <TRandom.h>
a897a37a 94#include <TLorentzVector.h>
70479d0e 95#include <Riostream.h>
fe4da5cc 96
97#include "AliMUONv0.h"
a9e2aefa 98#include "AliMUONChamber.h"
fe4da5cc 99#include "AliRun.h"
100#include "AliMC.h"
94de3818 101#include "AliMagF.h"
a9e2aefa 102#include "AliMUONHit.h"
103#include "AliMUONPadHit.h"
fe4da5cc 104#include "AliCallf77.h"
105#include "AliConst.h"
f665c1ea 106#include "AliMUONConstants.h"
be3bb6c1 107#include "AliMUONFactory.h"
fe4da5cc 108ClassImp(AliMUONv0)
109
110//___________________________________________
111AliMUONv0::AliMUONv0() : AliMUON()
112{
a9e2aefa 113// Constructor
fe4da5cc 114 fChambers = 0;
115}
116
117//___________________________________________
118AliMUONv0::AliMUONv0(const char *name, const char *title)
119 : AliMUON(name,title)
120{
a9e2aefa 121// Constructor
be3bb6c1 122 AliMUONFactory::Build(this, "default");
a897a37a 123}
124
a9e2aefa 125void AliMUONv0::CreateGeometry()
126{
127// Creates coarse geometry for hit density simulations
128 Int_t *idtmed = fIdtmed->GetArray()-1099;
fe4da5cc 129//
a9e2aefa 130 Float_t zpos, dAlu, tpar[3];
131 Int_t idAir=idtmed[1100];
132 Int_t idAlu=idtmed[1103];
133
134 AliMUONChamber *iChamber;
135 // Loop over all chambers (tracking and trigger)
f665c1ea 136 for (Int_t ch = 0; ch < AliMUONConstants::NCh(); ch++) {
a9e2aefa 137 char alu[8];
138 char gas[8];
139
140 iChamber=(AliMUONChamber*) (*fChambers)[ch];
141 // Z of the chamber
142 zpos=iChamber->Z();
143 dAlu=iChamber->DAlu();
f665c1ea 144 if (ch < AliMUONConstants::NTrackingCh()) {
a9e2aefa 145 // tracking chambers
b74f1c6a 146 sprintf(alu,"SA0%1d",ch);
147 sprintf(gas,"SG0%1d",ch);
a9e2aefa 148 } else {
149 // trigger chambers
b74f1c6a 150 sprintf(alu,"SA%2d",ch);
151 sprintf(gas,"SG%2d",ch);
a9e2aefa 152 }
153//
a9e2aefa 154 tpar[0] = iChamber->RInner();
155 tpar[1] = iChamber->ROuter();
156 tpar[2] = (dAlu+0.2)/2.;
157 if (ch !=4 && ch !=5) {
158 gMC->Gsvolu(alu, "TUBE", idAlu, tpar, 3);
159 tpar[2] = 0.1;
160 gMC->Gsvolu(gas, "TUBE", idAir, tpar, 3);
161 } else {
162 gMC->Gsvolu(alu, "TUBE", idAlu, tpar, 3);
163 tpar[2] = 0.1;
164 gMC->Gsvolu(gas, "TUBE", idAir, tpar, 3);
165 }
166 gMC->Gspos(gas, 1, alu, 0., 0., 0., 0, "ONLY");
afa281f0 167 if (ch == 4 || ch ==5) {
82e22b99 168 if (gMC->VolId("DDIP")) {
169 gMC->Gspos(alu, 1, "DDIP", 0., 0., zpos, 0, "ONLY");
170 } else {
171 gMC->Gspos(alu, 1, "ALIC", 0., 0., zpos, 0, "ONLY");
172 }
afa281f0 173 } else {
174 gMC->Gspos(alu, 1, "ALIC", 0., 0., zpos, 0, "ONLY");
175 }
a897a37a 176 }
fe4da5cc 177}
178
fe4da5cc 179//___________________________________________
180void AliMUONv0::CreateMaterials()
181{
a9e2aefa 182// Creates materials for coarse geometry
82e22b99 183 AliMaterial(15, "AIR$ ", 14.61, 7.3, .001205, 30423.24, 67500);
184 AliMaterial( 9, "ALUMINIUM$", 26.98, 13. , 2.7, 8.9, 37.2);
fe4da5cc 185
a9e2aefa 186 Float_t epsil = .001; // Tracking precision,
187 Float_t stemax = -1.; // Maximum displacement for multiple scat
188 Float_t tmaxfd = -20.; // Maximum angle due to field deflection
189 Float_t deemax = -.3; // Maximum fractional energy loss, DLS
190 Float_t stmin = -.8;
191 Int_t isxfld = gAlice->Field()->Integ();
192 Float_t sxmgmx = gAlice->Field()->Max();
fe4da5cc 193
fe4da5cc 194 //
a9e2aefa 195 // Air
196 AliMedium(1, "AIR_CH_US ", 15, 1, isxfld, sxmgmx, tmaxfd, stemax, deemax, epsil, stmin);
82e22b99 197 AliMedium(4, "ALU_CH_US ", 9, 0, isxfld, sxmgmx, tmaxfd, fMaxStepAlu,
a897a37a 198 fMaxDestepAlu, epsil, stmin);
199
fe4da5cc 200}
201
fe4da5cc 202void AliMUONv0::Init()
203{
fe4da5cc 204 //
205 // Initialize Tracking Chambers
206 //
b9046b8f 207 char vName[8];
208 printf("\n\n\n Start Init for version 0 - CPC chamber type\n\n\n");
209 for (Int_t i=0; i<AliMUONConstants::NCh(); i++) {
210// Initialise chamber
211 ((AliMUONChamber*) (*fChambers)[i])->Init();
212// Set sensitive volume Id
213 if (i < AliMUONConstants::NTrackingCh()) {
214 // tracking chambers
b74f1c6a 215 sprintf(vName,"SG0%1d",i);
b9046b8f 216 } else {
217 // trigger chambers
b74f1c6a 218 sprintf(vName,"SG%2d",i);
b9046b8f 219 }
220 ((AliMUONChamber*) (*fChambers)[i])->SetGid(gMC->VolId(vName));
221 }
fe4da5cc 222}
223
fe4da5cc 224void AliMUONv0::StepManager()
225{
a9e2aefa 226//
227// Step manager for hit density simulations
fe4da5cc 228 Int_t copy, id;
229 static Int_t idvol;
230 static Int_t vol[2];
231 Int_t ipart;
a897a37a 232 TLorentzVector pos;
233 TLorentzVector mom;
234 Float_t theta,phi;
fe4da5cc 235
a897a37a 236 // modifs perso
a9e2aefa 237 static Float_t hits[15];
a897a37a 238
fe4da5cc 239 TClonesArray &lhits = *fHits;
fe4da5cc 240 //
241 // Only gas gap inside chamber
242 // Tag chambers and record hits when track enters
243 idvol=-1;
0a6d8768 244 id=gMC->CurrentVolID(copy);
fe4da5cc 245
f665c1ea 246 for (Int_t i=1; i<=AliMUONConstants::NCh(); i++) {
a9e2aefa 247 if(id==((AliMUONChamber*)(*fChambers)[i-1])->GetGid()){
fe4da5cc 248 vol[0]=i;
249 idvol=i-1;
250 }
251 }
252 if (idvol == -1) return;
253 //
254 // Get current particle id (ipart), track position (pos) and momentum (mom)
cfce8870 255 gMC->TrackPosition(pos);
256 gMC->TrackMomentum(mom);
fe4da5cc 257
cfce8870 258 ipart = gMC->TrackPid();
fe4da5cc 259 //
260 // record hits when track enters ...
9fde056a 261 if( !(gMC->TrackCharge()) ) return;
0a6d8768 262 if( gMC->IsTrackEntering()) {
82e22b99 263// printf("\n Particle entering %f %f %f", pos[0], pos[1], pos[2] );
264
a897a37a 265 Double_t tc = mom[0]*mom[0]+mom[1]*mom[1];
266 Double_t rt = TMath::Sqrt(tc);
a897a37a 267 theta = Float_t(TMath::ATan2(rt,Double_t(mom[2])))*kRaddeg;
268 phi = Float_t(TMath::ATan2(Double_t(mom[1]),Double_t(mom[0])))*kRaddeg;
a9e2aefa 269 hits[0] = Float_t(ipart); // Geant3 particle type
270 hits[1] = pos[0]; // X-position for hit
271 hits[2] = pos[1]; // Y-position for hit
272 hits[3] = pos[2]; // Z-position for hit
273 hits[4] = theta; // theta angle of incidence
274 hits[5] = phi; // phi angle of incidence
275 hits[8] = -1; // first padhit
276 hits[9] = -1; // last pad hit
2eb55fab 277 hits[10] = mom[3]; // hit Energy
278 hits[11] = mom[0]; // Px
279 hits[12] = mom[1]; // Py
280 hits[13] = mom[2]; // Pz
281 hits[14] = gMC->TrackTime(); // time of flight
fe4da5cc 282 new(lhits[fNhits++])
a9e2aefa 283 AliMUONHit(fIshunt,gAlice->CurrentTrack(),vol,hits);
284
fe4da5cc 285 }
82e22b99 286// if( gMC->IsTrackExiting()) gMC->StopTrack();
fe4da5cc 287}
a9e2aefa 288
289
290
291
292
293
294
295
296