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$ |
9e7a32d1 |
18 | Revision 1.14 1999/11/03 16:31:36 fca |
19 | Dummy ProdProcess should return a value |
20 | |
3476b83b |
21 | Revision 1.13 1999/11/03 13:17:08 fca |
22 | Have ProdProcess return const char* |
23 | |
6a935c13 |
24 | Revision 1.12 1999/11/02 17:05:06 fca |
25 | Update GetSecondary arguments |
26 | |
41982d56 |
27 | Revision 1.11 1999/09/29 09:24:31 fca |
28 | Introduction of the Copyright and cvs Log |
29 | |
4c039060 |
30 | */ |
31 | |
fe4da5cc |
32 | ////////////////////////////////////////////////////// |
33 | // C++ dummy interface to Geant3 basic routines // |
34 | ////////////////////////////////////////////////////// |
35 | |
36 | #include "TGeant3.h" |
37 | |
38 | //--------------------------------------------------------- |
39 | |
40 | ClassImp(TGeant3) |
41 | |
42 | //___________________________________________ |
43 | TGeant3::TGeant3(){} |
44 | |
45 | //___________________________________________ |
46 | TGeant3::TGeant3(const char *title, Int_t) |
47 | :AliMC("TGeant3",title){} |
48 | |
49 | //___________________________________________ |
50 | void TGeant3::DefaultRange() {} |
51 | |
52 | //___________________________________________ |
53 | void TGeant3::LoadAddress() {} |
54 | |
55 | //=======================functions from GBASE |
56 | |
57 | //___________________________________________ |
58 | void TGeant3::Gfile(const char*, const char*) {} |
59 | void TGeant3::GeomIter() {} |
60 | Int_t TGeant3::CurrentMaterial(Float_t &, Float_t &, Float_t &, Float_t &, Float_t &) const {return 0;} |
61 | Int_t TGeant3::NextVolUp(Text_t*, Int_t&) {return 0;} |
0a6d8768 |
62 | Int_t TGeant3::CurrentVolID(Int_t&) const {return 0;} |
63 | const char* TGeant3::CurrentVolName() const {return 0;} |
01a7ece8 |
64 | Float_t TGeant3::Xsec(char*, Float_t, Int_t, Int_t) {return 0;} |
1f97a957 |
65 | Int_t TGeant3::NofVolumes() const {return 0;} |
0a6d8768 |
66 | Int_t TGeant3::CurrentVolOffID(Int_t, Int_t&) const {return 0;} |
67 | const char *TGeant3::CurrentVolOffName(Int_t) const {return 0;} |
68 | void TGeant3::TrackPosition(TLorentzVector&) const {} |
69 | void TGeant3::TrackMomentum(TLorentzVector&) const {} |
577201de |
70 | Int_t TGeant3::IdFromPDG(Int_t) const {return -1;} |
71 | Int_t TGeant3::PDGFromId(Int_t) const {return -1;} |
1578254f |
72 | void TGeant3::DefineParticles() {} |
fe4da5cc |
73 | Int_t TGeant3::VolId(Text_t*) const {return 0;} |
099385a4 |
74 | const char* TGeant3::VolName(Int_t ) const {return 0;} |
fe4da5cc |
75 | Float_t TGeant3::TrackCharge() const {return 0;} |
76 | Float_t TGeant3::TrackMass() const {return 0;} |
0a6d8768 |
77 | Bool_t TGeant3::IsTrackInside() const {return 0;} |
78 | Bool_t TGeant3::IsTrackEntering() const {return 0;} |
79 | Bool_t TGeant3::IsTrackExiting() const {return 0;} |
80 | Bool_t TGeant3::IsTrackOut() const {return 0;} |
81 | Bool_t TGeant3::IsTrackDisappeared() const {return 0;} |
82 | Bool_t TGeant3::IsTrackStop() const {return 0;} |
fe4da5cc |
83 | Int_t TGeant3::NSecondaries() const {return 0;} |
3476b83b |
84 | const char* TGeant3::ProdProcess() const {return 0;} |
41982d56 |
85 | void TGeant3::GetSecondary(Int_t, Int_t&, |
86 | TLorentzVector&, TLorentzVector&){} |
fe4da5cc |
87 | Float_t TGeant3::MaxStep() const {return 0;} |
88 | void TGeant3::SetMaxStep(Float_t ) {} |
fe4da5cc |
89 | Int_t TGeant3::CurrentEvent() const {return 0;} |
90 | Int_t TGeant3::GetMedium() const {return 0;} |
91 | Float_t TGeant3::Edep() const {return 0;} |
92 | Float_t TGeant3::Etot() const {return 0;} |
93 | void TGeant3::Rndm(Float_t*, const Int_t) const {} |
94 | Float_t TGeant3::TrackStep() const {return 0;} |
95 | Float_t TGeant3::TrackLength() const {return 0;} |
96 | Float_t TGeant3::TrackTime() const {return 0;} |
97 | Int_t TGeant3::TrackPid() const {return 0;} |
0a6d8768 |
98 | Bool_t TGeant3::IsTrackAlive() const {return 0;} |
fe4da5cc |
99 | void TGeant3::StopTrack() {} |
100 | void TGeant3::StopEvent() {} |
101 | void TGeant3::SetMaxNStep(Int_t) {} |
102 | void TGeant3::SetColors() {} |
103 | Int_t TGeant3::GetMaxNStep() const {return 0;} |
104 | void TGeant3::Material(Int_t&, const char*, Float_t, Float_t, Float_t, Float_t, |
105 | Float_t, Float_t*, Int_t){} |
106 | void TGeant3::Mixture(Int_t&, const char*, Float_t*, Float_t*, Float_t, Int_t, Float_t*){} |
107 | void TGeant3::Medium(Int_t&, const char*, Int_t, Int_t, Int_t, Float_t, Float_t, |
108 | Float_t, Float_t, Float_t, Float_t, Float_t*, Int_t){} |
109 | void TGeant3::Matrix(Int_t&, Float_t, Float_t, Float_t, Float_t, Float_t, Float_t){} |
110 | void TGeant3::WriteEuclid(const char*, const char*, Int_t, Int_t) {} |
111 | |
112 | |
113 | void TGeant3::Gpcxyz() {} |
114 | void TGeant3::Ggclos() {} |
115 | void TGeant3::Glast() {} |
116 | void TGeant3::Gprint(const char*) {} |
117 | void TGeant3::Grun() {} |
118 | void TGeant3::Gtrig() {} |
119 | void TGeant3::Gtrigc() {} |
120 | void TGeant3::Gtrigi() {} |
121 | void TGeant3::Gwork(Int_t) {} |
122 | void TGeant3::Gzinit() {} |
123 | |
124 | |
125 | //=======================functions from GCONS |
126 | //___________________________________________ |
127 | void TGeant3::Gfmate(Int_t, char*, Float_t&, Float_t&, Float_t&, Float_t&, |
128 | Float_t&, Float_t*, Int_t&){} |
129 | |
130 | //___________________________________________ |
131 | void TGeant3::Gfpart(Int_t, char*, Int_t&, Float_t&, Float_t&, Float_t&){} |
132 | |
133 | //___________________________________________ |
134 | void TGeant3::Gftmed(Int_t, char*, Int_t&, Int_t&, Int_t&, Float_t&, Float_t&, |
135 | Float_t&, Float_t&, Float_t&, Float_t&, Float_t*, Int_t*){} |
136 | |
137 | //___________________________________________ |
138 | void TGeant3::Gmate() {} |
139 | void TGeant3::Gpart() {} |
140 | void TGeant3::Gsdk(Int_t, Float_t*, Int_t*) {} |
141 | void TGeant3::Gsmate(Int_t, const char*, Float_t, Float_t, Float_t, Float_t, Float_t) {} |
142 | void TGeant3::Gsmixt(Int_t, const char*, Float_t*, Float_t*, Float_t, Int_t, Float_t*) {} |
143 | void TGeant3::Gspart(Int_t, const char*, Int_t, Float_t, Float_t, Float_t) {} |
144 | void TGeant3::Gstmed(Int_t, const char*, Int_t, Int_t, |
145 | Int_t, Float_t, Float_t, Float_t, Float_t, Float_t, Float_t) {} |
146 | void TGeant3::Gstpar(Int_t, const char*, Float_t) {} |
147 | void TGeant3::Gsckov(Int_t, Int_t, Float_t *, Float_t *, Float_t *, Float_t *) {} |
148 | |
149 | |
150 | //=======================functions from GKINE |
151 | //___________________________________________ |
152 | void TGeant3::Gfkine(Int_t, Float_t*, Float_t*, Int_t&, Int_t&) {} |
153 | void TGeant3::Gfvert(Int_t, Float_t*, Int_t&, Int_t&, Float_t&) {} |
154 | Int_t TGeant3::Gskine(Float_t*, Int_t, Int_t, Float_t*, Int_t){return 0;} |
155 | |
156 | //___________________________________________ |
157 | Int_t TGeant3::Gsvert(Float_t*, Int_t, Int_t, Float_t*, Int_t){return 0;} |
158 | |
159 | //=======================functions from GPHYS |
160 | //___________________________________________ |
161 | void TGeant3::Gphysi() {} |
162 | |
163 | |
164 | //=======================functions from GTRAK |
165 | //___________________________________________ |
166 | void TGeant3::Gdebug() {} |
167 | void TGeant3::Gekbin() {} |
168 | void TGeant3::Gfinds() {} |
169 | void TGeant3::Gsking(Int_t) {} |
170 | void TGeant3::Gskpho(Int_t) {} |
171 | void TGeant3::Gsstak(Int_t) {} |
172 | void TGeant3::Gsxyz() {} |
173 | void TGeant3::Gtrack() {} |
174 | void TGeant3::Gtreve() {} |
1578254f |
175 | void TGeant3::Gtreve_root() {} |
fe4da5cc |
176 | void TGeant3::Grndm(Float_t*, const Int_t) const {} |
177 | void TGeant3::Grndmq(Int_t&, Int_t&, const Int_t, const Text_t*) {} |
178 | |
179 | //=======================functions from GDRAW |
180 | //___________________________________________ |
181 | void TGeant3::Gdxyz(Int_t ) {} |
182 | void TGeant3::Gdcxyz() {} |
183 | |
184 | |
185 | //=======================functions from GGEOM |
186 | //___________________________________________ |
187 | void TGeant3::Gdtom(Float_t*, Float_t*, Int_t) {} |
188 | void TGeant3::Glmoth(const char*, Int_t, Int_t&, Int_t*, Int_t*) {} |
189 | void TGeant3::Gmedia(Float_t*, Int_t&) {} |
190 | void TGeant3::Gmtod(Float_t*, Float_t*, Int_t) {} |
191 | void TGeant3::Gsdvn(const char*, const char*, Int_t, Int_t) {} |
192 | void TGeant3::Gsdvn2(const char*, const char*, Int_t, Int_t, Float_t, Int_t) {} |
193 | void TGeant3::Gsdvs(const char*, const char*, Float_t, Int_t, Int_t) {} |
194 | void TGeant3::Gsdvs2(const char*, const char*, Float_t, Int_t, Float_t, Int_t) {} |
195 | void TGeant3::Gsdvt(const char*, const char*, Float_t, Int_t, Int_t, Int_t) {} |
196 | void TGeant3::Gsdvt2(const char *, const char *, Float_t, Int_t, Float_t, Int_t, Int_t) {} |
197 | void TGeant3::Gsord(const char*, Int_t) {} |
198 | void TGeant3::Gspos(const char*, Int_t, const char*, Float_t, Float_t, Float_t, Int_t, const char*) {} |
199 | void TGeant3::Gsposp(const char*, Int_t, const char*, Float_t, Float_t, Float_t, Int_t, const char*, Float_t*, Int_t) {} |
200 | void TGeant3::Gsrotm(Int_t, Float_t, Float_t, Float_t, Float_t, Float_t, Float_t) {} |
201 | void TGeant3::Gprotm(Int_t) {} |
202 | Int_t TGeant3::Gsvolu(const char*, const char*, Int_t, Float_t*, Int_t){return 0;} |
203 | void TGeant3::Gsatt(const char*, const char*, Int_t) {} |
204 | void TGeant3::Gfpara(const char*, Int_t, Int_t, Int_t&, Int_t&, Float_t*, Float_t*) {} |
205 | void TGeant3::Gckpar(Int_t, Int_t, Float_t*) {} |
206 | void TGeant3::Gckmat(Int_t, char*) {} |
207 | |
208 | //______________________________________________________________________________ |
209 | void TGeant3::Streamer(TBuffer &R__b) |
210 | { |
211 | // Stream an object of class TGeant3. |
212 | |
213 | if (R__b.IsReading()) { |
214 | Version_t R__v = R__b.ReadVersion(); if (R__v) { } |
215 | AliMC::Streamer(R__b); |
216 | R__b >> fNextVol; |
217 | } else { |
218 | R__b.WriteVersion(TGeant3::IsA()); |
219 | AliMC::Streamer(R__b); |
220 | R__b << fNextVol; |
221 | } |
222 | } |
223 | |
224 | //=======================DRAW functions |
225 | //____________________________________ |
226 | void TGeant3::InitHIGZ() {} |
227 | void TGeant3::Gdopen(Int_t) {} |
228 | void TGeant3::Gdclose() {} |
229 | void TGeant3::Gdelete(Int_t) {} |
230 | void TGeant3::Gdshow(Int_t) {} |
231 | void TGeant3::Gdopt(const char *,const char *) {} |
232 | void TGeant3::Gdraw(const char *,Float_t, Float_t, Float_t,Float_t,Float_t,Float_t,Float_t) {} |
233 | void TGeant3::Gdrawc(const char *,Int_t, Float_t,Float_t,Float_t,Float_t,Float_t) {} |
234 | void TGeant3::Gdrawx(const char *,Float_t, Float_t, Float_t, |
235 | Float_t, Float_t,Float_t,Float_t,Float_t,Float_t) {} |
236 | void TGeant3::Gdhead(Int_t, const char *, Float_t) {} |
237 | void TGeant3::Gdman(Float_t, Float_t, const char *) {} |
238 | void TGeant3::Gdspec(const char *) {} |
239 | void TGeant3::DrawOneSpec(const char *) {} |
240 | void TGeant3::Gdtree(const char *,Int_t,Int_t) {} |
241 | void TGeant3::GdtreeParent(const char *,Int_t,Int_t) {} |
242 | |
243 | //=======================Set functions |
244 | //____________________________________ |
245 | void TGeant3::SetABAN(Int_t) {} |
246 | void TGeant3::SetANNI(Int_t) {} |
247 | void TGeant3::SetAUTO(Int_t) {} |
248 | void TGeant3::SetBOMB(Float_t) {} |
249 | void TGeant3::SetBREM(Int_t) {} |
250 | void TGeant3::SetCKOV(Int_t) {} |
251 | void TGeant3::SetClipBox(const char *,Float_t,Float_t, Float_t,Float_t,Float_t,Float_t) {} |
252 | void TGeant3::SetCOMP(Int_t) {} |
253 | void TGeant3::SetCUTS(Float_t,Float_t,Float_t,Float_t, |
254 | Float_t,Float_t,Float_t,Float_t, |
255 | Float_t,Float_t, Float_t) {} |
256 | void TGeant3::SetDCAY(Int_t) {} |
257 | void TGeant3::SetDEBU(Int_t, Int_t, Int_t) {} |
258 | void TGeant3::SetDRAY(Int_t) {} |
9e7a32d1 |
259 | void TGeant3::SetERAN(Float_t, Float_t, Int_t) {} |
fe4da5cc |
260 | void TGeant3::SetHADR(Int_t) {} |
261 | void TGeant3::SetKINE(Int_t, Float_t, Float_t, Float_t, Float_t, |
262 | Float_t, Float_t, Float_t, Float_t, Float_t, |
263 | Float_t) {} |
264 | void TGeant3::SetLOSS(Int_t) {} |
265 | void TGeant3::SetMULS(Int_t) {} |
266 | void TGeant3::SetMUNU(Int_t) {} |
267 | void TGeant3::SetOPTI(Int_t) {} |
268 | void TGeant3::SetPAIR(Int_t) {} |
269 | void TGeant3::SetPFIS(Int_t) {} |
270 | void TGeant3::SetPHOT(Int_t) {} |
271 | void TGeant3::SetRAYL(Int_t) {} |
272 | void TGeant3::SetSWIT(Int_t , Int_t) {} |
273 | void TGeant3::SetTRIG(Int_t) {} |
7ac3f11b |
274 | void TGeant3::SetUserDecay(Int_t) {} |
fe4da5cc |
275 | void TGeant3::Vname(const char *, char *) {} |
276 | void TGeant3::InitLego() {} |
6991054d |
277 | void TGeant3::Ertrgo() {} |
278 | void TGeant3::Ertrak(const Float_t *const , const Float_t *const , |
279 | const Float_t *, const Float_t *, |
280 | Int_t , Option_t *) {} |
281 | |
282 | |
fe4da5cc |
283 | |
284 | |
285 | #include "AliCallf77.h" |
286 | |
287 | |
288 | extern "C" type_of_call { |
289 | |
290 | // This is only for ITS |
291 | |
292 | void type_of_call gsvolu_(){} |
293 | void type_of_call gspos_(){} |
294 | void type_of_call gsatt_(){} |
295 | void type_of_call gsdvn_(){} |
296 | void type_of_call gsposp_(){} |
297 | void type_of_call atg_(){} |
298 | void type_of_call sxsrot_(){} |
299 | |
300 | // All this for ZDC |
301 | |
302 | void type_of_call grndm_(){} |
303 | void type_of_call gphits_(){} |
304 | void type_of_call gfhits_() {} |
305 | void type_of_call gsvert_(){} |
306 | void type_of_call gskine_(){} |
307 | void type_of_call gfpart_(){} |
308 | void type_of_call lorenf_(){} |
309 | void type_of_call gpvert_(){} |
310 | void type_of_call gpkine_(){} |
311 | void type_of_call rnorml_(){} |
312 | void type_of_call gfpath_() {} |
313 | void type_of_call uctoh_() {} |
314 | void type_of_call glvolu_() {} |
315 | void type_of_call gmtod_() {} |
316 | void type_of_call gfkine_() {} |
317 | void type_of_call vmod_() {} |
318 | void type_of_call gsahit_() {} |
319 | void type_of_call gschit_() {} |
320 | void type_of_call gdtom_() {} |
321 | void type_of_call rnpssn_() {} |
322 | void type_of_call ucopy_() {} |
323 | } |