]> git.uio.no Git - u/mrichter/AliRoot.git/blame - FMD/AliFMDv1.cxx
New geometry: SDD, cables and update on V11 (L. Gaudichet)
[u/mrichter/AliRoot.git] / FMD / AliFMDv1.cxx
CommitLineData
37c4363a 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 wafers. This class
21// contains the base procedures for the Forward Multiplicity detector
22// Detector consists of 5 Si volumes covered pseudorapidity interval
23// from 1.7 to 5.1.
24//
25// This class contains the detailed version of the FMD - that is, hits
26// are produced during simulation.
27//
28// The actual code is done by various separate classes. Below is
29// diagram showing the relationship between the various FMD classes
30// that handles the geometry
31//
32//
33// +----------+ +----------+
34// | AliFMDv1 | | AliFMDv1 |
35// +----------+ +----------+
36// | |
37// +----+--------------+
38// |
39// | +------------+ 1 +---------------+
40// | +- | AliFMDRing |<>--| AliFMDPolygon |
41// V 2 | +------------+ +---------------+
42// +--------+<>--+ |
43// | AliFMD | ^
44// +--------+<>--+ V 1..2
45// 3 | +-------------------+
46// +-| AliFMDSubDetector |
47// +-------------------+
48// ^
49// |
50// +-------------+-------------+
51// | | |
52// +---------+ +---------+ +---------+
53// | AliFMD1 | | AliFMD2 | | AliFMD3 |
54// +---------+ +---------+ +---------+
55//
56//
57// See also the class AliFMD for a more detailed explanation of the
58// various componets.
e802be3e 59#include "TVirtualMC.h" // ROOT_TVirtualMC
60#include "AliFMDv1.h" // ALIFMDV1_H
61#include "AliRun.h" // ALIRUN_H
62#include "AliMC.h" // ALIMC_H
63#include "AliLog.h" // ALILOG_H
37c4363a 64
65//____________________________________________________________________
66ClassImp(AliFMDv1);
67
68
69//____________________________________________________________________
70void
71AliFMDv1::StepManager()
72{
73 //
74 // Called for every step in the Forward Multiplicity Detector
75 //
76 // The procedure is as follows:
77 //
78 // - IF NOT track is alive THEN RETURN ENDIF
79 // - IF NOT particle is charged THEN RETURN ENDIF
80 // - IF NOT volume name is "STRI" or "STRO" THEN RETURN ENDIF
81 // - Get strip number (volume copy # minus 1)
82 // - Get phi division number (mother volume copy #)
83 // - Get module number (grand-mother volume copy #)
84 // - section # = 2 * module # + phi division # - 1
85 // - Get ring Id from volume name
86 // - Get detector # from grand-grand-grand-mother volume name
87 // - Get pointer to sub-detector object.
88 // - Get track position
89 // - IF track is entering volume AND track is inside real shape THEN
90 // - Reset energy deposited
91 // - Get track momentum
92 // - Get particle ID #
93 /// - ENDIF
94 // - IF track is inside volume AND inside real shape THEN
95 /// - Update energy deposited
96 // - ENDIF
97 // - IF track is inside real shape AND (track is leaving volume,
98 // or it died, or it is stopped THEN
99 // - Create a hit
100 // - ENDIF
101 //
102 //
103 // DebugGuard guard("AliFMDv1::StepManager");
104 AliDebug(10, "AliFMDv1::StepManager");
105 // return;
106
107 // If the track is gone, return
108 if (!gMC->IsTrackAlive()) return;
109
110 // Only process charged particles
111 if(TMath::Abs(gMC->TrackCharge()) <= 0) return;
112
afddaa11 113 // TString vol(gMC->CurrentVolName());
114 // std::cout << "Is inside " << vol << " ... " << std::endl;
42403906 115 // Only do stuff is the track is in one of the strips.
116 // TString vol(gMC->CurrentVolName());
117 // if (!vol.Contains("STR")) return;
118 Int_t copy;
119 Int_t volumeId = gMC->CurrentVolID(copy);
afddaa11 120 // The ring ID is encoded in the volume name
121 Char_t ring = '\0';
122 if (volumeId == fInner->GetStripId()) ring = 'I';
123 else if (volumeId == fOuter->GetStripId()) ring = 'O';
124 else return;
125
37c4363a 126 // Get the strip number. Note, that GEANT numbers divisions from 1,
127 // so we subtract one
42403906 128 Int_t strip = copy - 1;
37c4363a 129
130 // Get the phi division of the module
131 Int_t phiDiv; // * The phi division number (1 or 2)
132 gMC->CurrentVolOffID(1, phiDiv); // in the module
133
134 // Active volume number - not used.
135 // Int_t active;
136 // gMC->CurrentVolOffID(2, active);
137
138 // Get the module number in the ring.
139 Int_t module;
140 gMC->CurrentVolOffID(3, module);
141
142 // Ring copy number - the same as the detector number - not used
143 // Int_t ringCopy; // * Ring copy number
144 // gMC->CurrentVolOffID(4, ringCopy); // Same as detector number
145
146 // Get the detector number from the path name
147 Int_t detector = Int_t((gMC->CurrentVolOffName(5)[3]) - 48);
148
149 // The sector number, calculated from module and phi division #
150 Int_t sector = 2 * module + phiDiv - 1;
151
afddaa11 152
37c4363a 153 // Get a pointer to the sub detector structure
154 AliFMDSubDetector* det = 0;
155 switch (detector) {
156 case 1: det = fFMD1; break;
157 case 2: det = fFMD2; break;
158 case 3: det = fFMD3; break;
159 }
160 if (!det) return;
161
162 // Get the current track position
163 TLorentzVector v;
164 gMC->TrackPosition(v);
165 // Check that the track is actually within the active area
166 Bool_t isWithin = det->CheckHit(ring, module, v.X(), v.Y());
167 Bool_t entering = gMC->IsTrackEntering() && isWithin;
168 Bool_t inside = gMC->IsTrackInside() && isWithin;
169 Bool_t out = (gMC->IsTrackExiting()
170 || gMC->IsTrackDisappeared()
171 || gMC->IsTrackStop()
172 || !isWithin);
173// Reset the energy deposition for this track, and update some of
174 // our parameters.
175 if (entering) {
176 fCurrentDeltaE = 0;
177
178 // Get production vertex and momentum of the track
179 fCurrentV = v;
180 gMC->TrackMomentum(fCurrentP);
181 fCurrentPdg = gMC->IdFromPDG(gMC->TrackPid());
182
183 // if (fAnalyser)
184 // fAnalyser->Update(detector, ring, isWithin, v.X(), v.Y());
185 }
186
187 // If the track is inside, then update the energy deposition
188 if (inside && fCurrentDeltaE >= 0)
189 fCurrentDeltaE += 1000 * gMC->Edep();
190
191 // The track exits the volume, or it disappeared in the volume, or
192 // the track is stopped because it no longer fulfills the cuts
193 // defined, then we create a hit.
194 if (out && fCurrentDeltaE >= 0) {
195 fCurrentDeltaE += 1000 * gMC->Edep();
196
197 AddHit(gAlice->GetMCApp()->GetCurrentTrackNumber(),
198 detector, ring, sector, strip,
199 fCurrentV.X(), fCurrentV.Y(), fCurrentV.Z(),
200 fCurrentP.X(), fCurrentP.Y(), fCurrentP.Z(),
201 fCurrentDeltaE, fCurrentPdg, fCurrentV.T());
202 fCurrentDeltaE = -1;
203 }
204}
205//___________________________________________________________________
206//
207// EOF
208//