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