]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TFluka/TFluka.h
updated documentation and minor modifications; added test macro for RCU raw ddl data...
[u/mrichter/AliRoot.git] / TFluka / TFluka.h
CommitLineData
6f5667d1 1#ifndef TFLUKA_H
2#define TFLUKA_H
829fb838 3/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
5
6/* $Id$ */
7
8///////////////////////////////////////////////////////////////////////////////
9// //
10// //
11// FLUKA implementation of the VirtualMC Interface //
12// //
13// //
14///////////////////////////////////////////////////////////////////////////////
15
16
17#include "TVirtualMC.h"
c54ce58e 18#include "TMCOptical.h"
a9ea1616 19#include "TFlukaCodes.h"
4aba9d66 20#include "TFlukaMCGeometry.h"
21
829fb838 22//Forward declaration
6f5667d1 23class TGeoMCGeometry;
4aba9d66 24//class TFlukaMCGeometry;
829fb838 25class TGeoMaterial;
26
27class TFluka : public TVirtualMC {
28
29 public:
30 TFluka(const char *title, Int_t verbosity = 0, Bool_t isRootGeometrySupported = 0);
31 TFluka();
32 virtual ~TFluka();
7110de2d 33 virtual Bool_t IsRootGeometrySupported() const { return kTRUE;}
829fb838 34
4aba9d66 35 Int_t GetNstep() { return fGeom->GetNstep(); } // to be removed
36
829fb838 37 //
b496f27c 38 // Methods for building/management of geometry
829fb838 39 // ------------------------------------------------
40 //
41
b496f27c 42 // Functions from GCONS
43 virtual void Gfmate(Int_t imat, char *name, Float_t &a, Float_t &z,
44 Float_t &dens, Float_t &radl, Float_t &absl,
45 Float_t* ubuf, Int_t& nbuf);
46 virtual void Gfmate(Int_t imat, char *name, Double_t &a, Double_t &z,
47 Double_t &dens, Double_t &radl, Double_t &absl,
48 Double_t* ubuf, Int_t& nbuf);
49
50 // Detector composition
51 virtual void Material(Int_t& kmat, const char* name, Double_t a,
52 Double_t z, Double_t dens, Double_t radl, Double_t absl,
53 Float_t* buf, Int_t nwbuf);
54 virtual void Material(Int_t& kmat, const char* name, Double_t a,
55 Double_t z, Double_t dens, Double_t radl, Double_t absl,
56 Double_t* buf, Int_t nwbuf);
57 virtual void Mixture(Int_t& kmat, const char *name, Float_t *a,
58 Float_t *z, Double_t dens, Int_t nlmat, Float_t *wmat);
59 virtual void Mixture(Int_t& kmat, const char *name, Double_t *a,
60 Double_t *z, Double_t dens, Int_t nlmat, Double_t *wmat);
61 virtual void Medium(Int_t& kmed, const char *name, Int_t nmat,
62 Int_t isvol, Int_t ifield, Double_t fieldm, Double_t tmaxfd,
63 Double_t stemax, Double_t deemax, Double_t epsil,
64 Double_t stmin, Float_t* ubuf, Int_t nbuf);
65 virtual void Medium(Int_t& kmed, const char *name, Int_t nmat,
66 Int_t isvol, Int_t ifield, Double_t fieldm, Double_t tmaxfd,
67 Double_t stemax, Double_t deemax, Double_t epsil,
68 Double_t stmin, Double_t* ubuf, Int_t nbuf);
69 virtual void Matrix(Int_t& krot, Double_t thetaX, Double_t phiX,
70 Double_t thetaY, Double_t phiY, Double_t thetaZ,
71 Double_t phiZ);
72 virtual void Gstpar(Int_t itmed, const char *param, Double_t parval);
73
74 // Functions from GGEOM
829fb838 75 virtual Int_t Gsvolu(const char *name, const char *shape, Int_t nmed,
76 Float_t *upar, Int_t np);
77 virtual Int_t Gsvolu(const char *name, const char *shape, Int_t nmed,
78 Double_t *upar, Int_t np);
b496f27c 79 virtual void Gsdvn(const char *name, const char *mother, Int_t ndiv,
80 Int_t iaxis);
81 virtual void Gsdvn2(const char *name, const char *mother, Int_t ndiv,
82 Int_t iaxis, Double_t c0i, Int_t numed);
83 virtual void Gsdvt(const char *name, const char *mother, Double_t step,
84 Int_t iaxis, Int_t numed, Int_t ndvmx);
85 virtual void Gsdvt2(const char *name, const char *mother, Double_t step,
829fb838 86 Int_t iaxis, Double_t c0, Int_t numed, Int_t ndvmx);
b496f27c 87 virtual void Gsord(const char *name, Int_t iax);
88 virtual void Gspos(const char *name, Int_t nr, const char *mother,
89 Double_t x, Double_t y, Double_t z, Int_t irot,
829fb838 90 const char *konly="ONLY");
b496f27c 91 virtual void Gsposp(const char *name, Int_t nr, const char *mother,
92 Double_t x, Double_t y, Double_t z, Int_t irot,
93 const char *konly, Float_t *upar, Int_t np);
94 virtual void Gsposp(const char *name, Int_t nr, const char *mother,
95 Double_t x, Double_t y, Double_t z, Int_t irot,
96 const char *konly, Double_t *upar, Int_t np);
97 virtual void Gsbool(const char* onlyVolName, const char* manyVolName);
98
a9ea1616 99 // functions for access to geometry
100 //
101 // Return the Transformation matrix between the volume specified by
102 // the path volumePath and the top or master volume.
103 virtual Bool_t GetTransformation(const TString& volumePath,
104 TGeoHMatrix& matrix);
105
106 // Return the name of the shape and its parameters for the volume
107 // specified by the volume name.
108 virtual Bool_t GetShape(const TString& volumePath,
109 TString& shapeType, TArrayD& par);
110
111 // Returns the material parameters for the volume specified by
112 // the volume name.
113 virtual Bool_t GetMaterial(const TString& volumeName,
114 TString& name, Int_t& imat,
115 Double_t& a, Double_t& z, Double_t& density,
116 Double_t& radl, Double_t& inter, TArrayD& par);
117
118 // Returns the medium parameters for the volume specified by the
119 // volume name.
120 virtual Bool_t GetMedium(const TString& volumeName,
121 TString& name, Int_t& imed,
122 Int_t& nmat, Int_t& isvol, Int_t& ifield,
123 Double_t& fieldm, Double_t& tmaxfd, Double_t& stemax,
124 Double_t& deemax, Double_t& epsil, Double_t& stmin,
125 TArrayD& par);
126
b496f27c 127 virtual void SetCerenkov(Int_t itmed, Int_t npckov, Float_t *ppckov,
128 Float_t *absco, Float_t *effic, Float_t *rindex);
129 virtual void SetCerenkov(Int_t itmed, Int_t npckov, Double_t *ppckov,
130 Double_t *absco, Double_t *effic, Double_t *rindex);
b2be0e73 131 virtual void SetCerenkov(Int_t itmed, Int_t npckov, Float_t *ppckov,
132 Float_t *absco, Float_t *effic, Float_t *rindex, Float_t *rfl);
133 virtual void SetCerenkov(Int_t itmed, Int_t npckov, Double_t *ppckov,
134 Double_t *absco, Double_t *effic, Double_t *rindex, Double_t *rfl);
b496f27c 135
c54ce58e 136//
137 virtual void DefineOpSurface(const char* name, EMCOpSurfaceModel model, EMCOpSurfaceType surface,
138 EMCOpSurfaceFinish surfaceFinish, Double_t sigmaAlpha);
139
140 virtual void SetBorderSurface(const char* name, const char* vol1Name, int vol1CopyNo, const char* vol2Name, int vol2CopyNo,
141 const char* opSurfaceName);
142
b496f27c 143
c54ce58e 144 virtual void SetSkinSurface(const char* name, const char* volName, const char* opSurfaceName);
145
146 virtual void SetMaterialProperty(Int_t itmed, const char* propertyName, Int_t np, Double_t* pp, Double_t* values);
147
148 virtual void SetMaterialProperty(Int_t itmed, const char* propertyName, Double_t value);
149
150 virtual void SetMaterialProperty(const char* surfaceName, const char* propertyName, Int_t np, Double_t* pp, Double_t* values);
151
b496f27c 152 // Functions for drawing
153 virtual void DrawOneSpec(const char* /*name*/)
a9ea1616 154 {Warning("DrawOneSpec", "Not yet implemented !\n");}
b496f27c 155 virtual void Gsatt(const char* name, const char* att, Int_t val);
156 virtual void Gdraw(const char*,Double_t /*theta = 30*/, Double_t /*phi = 30*/,
157 Double_t /*psi = 0*/, Double_t /*u0 = 10*/, Double_t /*v0 = 10*/,
158 Double_t /*ul = 0.01*/, Double_t /*vl = 0.01*/)
a9ea1616 159 {Warning("Gdraw", "Not yet implemented !\n");}
829fb838 160
161 // Euclid
b496f27c 162 virtual void WriteEuclid(const char*, const char*, Int_t, Int_t);
829fb838 163
b496f27c 164 // Getters
a9ea1616 165 Int_t GetDummyRegion() const;
166 Int_t GetDummyLattice() const;
b496f27c 167 virtual Int_t VolId(const Text_t* volName) const;
168 virtual const char* VolName(Int_t id) const;
169 virtual Int_t NofVolumes() const {return fNVolumes;}
170 virtual Int_t VolId2Mate(Int_t id) const;
a8e4986c 171 // Return the unique numeric identifier for medium name mediumName
172 virtual Int_t MediumId(const Text_t* mediumName) const;
173
829fb838 174 //
b496f27c 175 // Methods for physics management
829fb838 176 // ------------------------------------------------
177 //
178
b496f27c 179 // User configuration
b2129742 180 virtual Bool_t SetProcess(const char* flagName, Int_t flagValue);
181 virtual void SetProcess(const char* flagName, Int_t flagValue, Int_t imed);
182 virtual Bool_t SetCut(const char* cutName, Double_t cutValue);
183 virtual void SetCut(const char* cutName, Double_t cutValue, Int_t imed);
acf2e119 184 virtual void SetModelParameter(const char* parName, Double_t parValue, Int_t imed);
fb2cbbec 185 virtual TObjArray* GetListOfUserConfigs() {return fUserConfig;}
b2129742 186 virtual Double_t Xsec(char*, Double_t, Int_t, Int_t);
1b7bf6a6 187 virtual void SetLowEnergyNeutronTransport(Bool_t flag) {fLowEnergyNeutronTransport = flag;}
188 virtual Bool_t LowEnergyNeutronTransport() {return fLowEnergyNeutronTransport;}
b496f27c 189 // Particle table usage
190 virtual Int_t IdFromPDG(Int_t id) const;
191 virtual Int_t PDGFromId(Int_t pdg) const;
192 virtual void DefineParticles()
a9ea1616 193 {Warning("DefineParticles", "Not yet implemented !\n");}
b454044a 194 virtual Bool_t SetDecayMode(Int_t /*pdg*/,
195 Float_t /*bratio*/[6], Int_t /*mode*/[6][3])
196 {return kFALSE;}
829fb838 197
b454044a 198
829fb838 199 //
200 // methods for step management
201 // ------------------------------------------------
202 //
203
b496f27c 204 // Action methods
bd3d5c8a 205 virtual void StopTrack();
206 virtual void ResetStoppingCondition() {fStopped = kFALSE;}
eb49ba4d 207 virtual Bool_t GetStoppingCondition() const {return fStopped;}
bd3d5c8a 208
b496f27c 209 virtual void StopEvent() {fStopEvent = kTRUE;}
210 virtual void StopRun() {fStopEvent = kTRUE; fStopRun = kTRUE;}
eb49ba4d 211 virtual Bool_t EventIsStopped() const {return fStopEvent;}
b496f27c 212 virtual void SetStopEvent(Bool_t flag) {fStopEvent = flag;}
829fb838 213
b496f27c 214 // Set methods
07f5b33e 215 virtual void SetMaxStep (Double_t step);
829fb838 216 virtual void SetMaxNStep(Int_t);
217 virtual void SetUserDecay(Int_t);
218
b496f27c 219 // Get methods
220 // Tracking volume(s)
829fb838 221 virtual Int_t CurrentVolID(Int_t& copyNo) const;
222 virtual Int_t CurrentVolOffID(Int_t off, Int_t& copyNo) const;
223 virtual const char* CurrentVolName() const;
224 virtual const char* CurrentVolOffName(Int_t off) const;
225 virtual Int_t CurrentMaterial(Float_t &a, Float_t &z,
226 Float_t &dens, Float_t &radl, Float_t &absl) const;
b496f27c 227 virtual Int_t CurrentEvent() const {return fNEvent;}
228
829fb838 229 virtual void Gmtod(Float_t* xm, Float_t* xd, Int_t iflag);
230
231 virtual void Gmtod(Double_t* xm, Double_t* xd, Int_t iflag);
232
233 virtual void Gdtom(Float_t* xd, Float_t* xm, Int_t iflag);
234
235 virtual void Gdtom(Double_t* xd, Double_t* xm, Int_t iflag);
236
2f09b80e 237 virtual Double_t MaxStep() const;
829fb838 238 virtual Int_t GetMaxNStep() const
a9ea1616 239 {Warning("GetMaxNStep", "Not yet implemented !\n"); return -1;}
829fb838 240 virtual Int_t GetMedium() const;
432716fc 241 virtual Int_t CurrentMedium() const {return GetMedium();}
829fb838 242
b496f27c 243 // Tracking particle
829fb838 244 // dynamic properties
245 virtual void TrackPosition(TLorentzVector& position) const;
246 virtual void TrackPosition(Double_t& x, Double_t& y, Double_t& z) const;
247 virtual void TrackMomentum(TLorentzVector& momentum) const;
248 virtual void TrackMomentum(Double_t& px, Double_t& py, Double_t& pz, Double_t& e) const;
249 virtual Double_t TrackStep() const;
250 virtual Double_t TrackLength() const;
251 virtual Double_t TrackTime() const;
252 virtual Double_t Edep() const;
b496f27c 253 // Static properties
18e0cabb 254 virtual Int_t CorrectFlukaId() const;
829fb838 255 virtual Int_t TrackPid() const;
256 virtual Double_t TrackCharge() const;
257 virtual Double_t TrackMass() const;
258 virtual Double_t Etot() const;
b496f27c 259 // Track status
829fb838 260 virtual Bool_t IsNewTrack() const;
261 virtual Bool_t IsTrackInside() const;
262 virtual Bool_t IsTrackEntering() const;
263 virtual Bool_t IsTrackExiting() const;
264 virtual Bool_t IsTrackOut() const;
265 virtual Bool_t IsTrackDisappeared() const;
266 virtual Bool_t IsTrackStop() const;
267 virtual Bool_t IsTrackAlive() const;
268
b496f27c 269 // Secondaries
7b203b6e 270 virtual Int_t NSecondaries() const;
271 virtual void SetNCerenkov(Int_t nc) {fNCerenkov = nc;}
272
829fb838 273 virtual void GetSecondary(Int_t isec, Int_t& particleId,
274 TLorentzVector& position, TLorentzVector& momentum);
bd3d5c8a 275 virtual Bool_t SecondariesAreOrdered() const {return kFALSE;}
829fb838 276 virtual TMCProcess ProdProcess(Int_t iproc) const ;
b496f27c 277 virtual Int_t StepProcesses(TArrayI & proc) const;
829fb838 278 //
279 // Geant3 specific methods
280 // !!! need to be transformed to common interface
281 //
282 virtual void Gdopt(const char*,const char*)
a9ea1616 283 {Warning("Gdopt", "Not yet implemented !\n");}
829fb838 284 virtual void SetClipBox(const char*,Double_t=-9999,Double_t=0, Double_t=-9999,
285 Double_t=0,Double_t=-9999,Double_t=0)
a9ea1616 286 {Warning("SetClipBox", "Not yet implemented !\n");}
829fb838 287 virtual void DefaultRange()
a9ea1616 288 {Warning("DefaultRange", "Not yet implemented !\n");}
829fb838 289 virtual void Gdhead(Int_t, const char*, Double_t=0)
a9ea1616 290 {Warning("Gdhead", "Not yet implemented !\n");}
829fb838 291 virtual void Gdman(Double_t, Double_t, const char*)
a9ea1616 292 {Warning("Gdman", "Not yet implemented !\n");}
829fb838 293 virtual void SetColors()
a9ea1616 294 {Warning("SetColors", "Not yet implemented !\n");}
829fb838 295 virtual void Gtreve()
a9ea1616 296 {Warning("Gtreve", "Not yet implemented !\n");}
829fb838 297 virtual void GtreveRoot()
a9ea1616 298 {Warning("GtreveRoot", "Not yet implemented !\n");}
829fb838 299 virtual void Gckmat(Int_t, char*)
a9ea1616 300 {Warning("Gckmat", "Not yet implemented !\n");}
829fb838 301 virtual void InitLego()
a9ea1616 302 {Warning("InitLego", "Not yet implemented !\n");}
b496f27c 303//
304 virtual void Gfpart(Int_t pdg, char* name, Int_t& type, Float_t& mass, Float_t& charge, Float_t& tlife);
829fb838 305 virtual void Gspart(Int_t, const char*, Int_t, Double_t, Double_t, Double_t)
a9ea1616 306 {Warning("Gspart", "Not yet implemented !\n");}
b496f27c 307
b496f27c 308 //
309 // Particle Properties
310 // -------------------
311 //
13f199e9 312 virtual Bool_t DefineParticle(Int_t, const char*, TMCParticleType, Double_t, Double_t, Double_t) {return kFALSE;}
313 virtual Bool_t DefineParticle(Int_t, const char*, TMCParticleType, Double_t, Double_t, Double_t,
314 const TString&, Double_t, Int_t, Int_t, Int_t, Int_t, Int_t, Int_t, Int_t, Int_t,
315 Bool_t, Bool_t = kFALSE, const TString& = "", Int_t = 0, Double_t = 0.0, Double_t = 0.0) {return kFALSE;}
6d0e53bf 316 virtual Bool_t DefineIon(const char* name , Int_t z, Int_t a, Int_t q, Double_t exE, Double_t mass);
317
b496f27c 318 virtual TString ParticleName(int pdg) const;
319 virtual Double_t ParticleMass(int pdg) const;
ece92b30 320 virtual Double_t ParticleMassFPC(int fpc) const;
b496f27c 321 virtual Double_t ParticleCharge(int pdg) const;
322 virtual Double_t ParticleLifeTime(int pdg) const;
323 virtual TMCParticleType ParticleMCType(int) const {return (TMCParticleType) 9;}
829fb838 324 //
b496f27c 325 // Control methods
829fb838 326 // ------------------------------------------------
327 //
328
329 virtual void Init();
330 virtual void InitPhysics();
331 virtual void FinishGeometry();
332 virtual void BuildPhysics();
333 virtual void ProcessEvent();
334 virtual Bool_t ProcessRun(Int_t nevent);
335
f450e9d0 336
337 //
338 // FLUKA Scoring specific methods
339 // ------------------------------
340 //
6f1aaa8e 341 virtual void SetUserScoring(const char* option, const char* sdum, Int_t npr,char* outfile, Float_t* what);
342 virtual void SetUserScoring(const char* option, const char* sdum, Int_t npr,char* outfile, Float_t* what,
f450e9d0 343 const char* det1, const char* det2, const char* det3);
829fb838 344 //
b496f27c 345 // New Getter and Setters
829fb838 346 // ------------------------------------------------
347 //
348 // - Core input file name
349 TString GetCoreInputFileName() const {return fCoreInputFileName;}
3b8c325d 350 void SetCoreInputFileName(const char* file = "coreFlukaVmc.inp") {fCoreInputFileName = file;}
829fb838 351
352 // - Input file name
353 TString GetInputFileName() const {return fInputFileName;}
3b8c325d 354 void SetInputFileName(const char* file = "FlukaVmc.inp") {fInputFileName = file;}
829fb838 355
829fb838 356 // - Verbosity level
357 Int_t GetVerbosityLevel() const {return fVerbosityLevel;}
358 void SetVerbosityLevel(Int_t l) {fVerbosityLevel = l;}
359
4aba9d66 360 //
361 // - Fluka Draw procedures identifiers, see TFlukaCodes.h
362 //
a9ea1616 363 FlukaCallerCode_t GetCaller() const {return fCaller;}
a9ea1616 364 FlukaProcessCode_t GetIcode() const {return fIcode;}
829fb838 365 Int_t GetMreg() const {return fCurrentFlukaRegion;}
829fb838 366 Int_t GetNewreg() const {return fNewReg;}
829fb838 367 Double_t GetRull() const {return fRull;}
829fb838 368 Double_t GetXsco() const {return fXsco;}
829fb838 369 Double_t GetYsco() const {return fYsco;}
829fb838 370 Double_t GetZsco() const {return fZsco;}
4aba9d66 371 Int_t GetCurrentFlukaRegion() const {return fCurrentFlukaRegion;}
372 // - Fluka Draw Setters
373 void SetCurrentFlukaRegion(Int_t reg) {fCurrentFlukaRegion=reg;}
374 void SetCaller(FlukaCallerCode_t l) {fCaller = l;}
375 void SetIcode(FlukaProcessCode_t l) {fIcode = l;}
376 void SetMreg(Int_t l, Int_t lttc);
377 void SetNewreg(Int_t l, Int_t /*lttc*/) {fNewReg = l;}
378 void SetRull(Double_t r) {fRull = r;}
379 void SetXsco(Double_t x) {fXsco = x;}
380 void SetYsco(Double_t y) {fYsco = y;}
5125d6e5 381 void SetZsco(Double_t z) {fZsco = z;}
9216eabf 382 void SetPint(Double_t px, Double_t py, Double_t pz, Double_t e) {fPint[0] = px; fPint[1] = py; fPint[2] = pz; fPint[3] = e;}
4aba9d66 383 void SetTrackIsEntering(){fTrackIsEntering = kTRUE; fTrackIsExiting = kFALSE;}
384 void SetTrackIsExiting() {fTrackIsExiting = kTRUE; fTrackIsEntering = kFALSE;}
385 void SetTrackIsInside() {fTrackIsExiting = kFALSE; fTrackIsEntering = kFALSE;}
386 void SetTrackIsNew(Bool_t flag = kTRUE);
829fb838 387
388 void SetDummyBoundary(Int_t mode) {fDummyBoundary = mode;}
389 Int_t GetDummyBoundary() const {return fDummyBoundary;}
390 Bool_t IsDummyBoundary() const {return (fDummyBoundary==0)?kFALSE:kTRUE;}
391
829fb838 392 void EnableField(Bool_t flag=kTRUE) {fFieldFlag = flag;}
393 Bool_t IsFieldEnabled() const {return fFieldFlag;}
7cad64b7 394
5125d6e5 395 Int_t GetMaterialIndex(Int_t idmat) const {return fMaterials[idmat];}
4aba9d66 396
397 TObjArray * GetFlukaMaterials();
5125d6e5 398 virtual void SetRootGeometry() {;} // Dummy
a2f1f85d 399 virtual Int_t NofVolDaughters(const char* volName) const;
400 virtual const char* VolDaughterName(const char* volName, Int_t i) const;
401 virtual Int_t VolDaughterCopyNo(const char* volName, Int_t i) const;
402 virtual const char* CurrentVolPath();
403 virtual void ForceDecayTime(Float_t){;}
b1fd8547 404 //
405 // Info about primary ionization electrons
406 Int_t GetNPrimaryElectrons();
5125d6e5 407 Double_t GetPrimaryElectronKineticEnergy(Int_t i) const;
15a8a899 408 void GetPrimaryElectronPosition(Int_t i, Double_t& x, Double_t& y, Double_t& z, Double_t& t) const;
5125d6e5 409 void SetCurrentPrimaryElectronIndex(Int_t i) {fPrimaryElectronIndex = i;}
b6a89226 410 void PrimaryIonisationStepping(Int_t nprim);
01e832c7 411 void CalcPrimaryIonisationTime();
5125d6e5 412 private:
4aba9d66 413
414 // Copy constructor and operator= declared but not implemented (-Weff++ flag)
415 TFluka(const TFluka &mc); //: TVirtualMC(mc) {;}
416 TFluka & operator=(const TFluka &); // {return (*this);}
417
13858fbd 418 void PrintHeader();
419 void AddParticlesToPdgDataBase() const;
ca01d0af 420
cee6a756 421 Int_t GetSpecialPdg(Int_t number) const;
422
b6a89226 423 Float_t* CreateFloatArray(Double_t* array, Int_t size) const;
424
ea262cc6 425 //
829fb838 426 Int_t fVerbosityLevel; //Verbosity level (0 lowest - 3 highest)
b496f27c 427 Int_t fNEvent; //Current event number
3b8c325d 428 TString fInputFileName; //Name of the real input file
429 TString fCoreInputFileName; //Name of the input file
829fb838 430
4aba9d66 431 FlukaCallerCode_t fCaller; // Parameter to indicate who is the caller of the Fluka Draw
432 FlukaProcessCode_t fIcode; // Fluka Draw procedures formal parameter
433 Int_t fNewReg; // Fluka Draw procedures formal parameter
434 Double_t fRull; // Fluka Draw procedures formal parameter
435 Double_t fXsco; // Fluka Draw procedures formal parameter
436 Double_t fYsco; // Fluka Draw procedures formal parameter
437 Double_t fZsco; // Fluka Draw procedures formal parameter
9216eabf 438 Double_t fPint[4]; // 4-vector of particle after interaction
01e832c7 439 Double_t* fPItime; // Time distribution of primary ionisations
440 Double_t* fPIlength; // Track length distribution of primary ionisations
441 Int_t fNPI; // Number of primary ionisation steps
5125d6e5 442 Bool_t fTrackIsEntering; // Flag for track entering
443 Bool_t fTrackIsExiting; // Flag for track exiting
444 Bool_t fTrackIsNew; // Flag for new track
445 Bool_t fFieldFlag; // Flag for magnetic field
5125d6e5 446 Int_t fDummyBoundary; // Flag for crossing dummy boundaries
447 Bool_t fStopped; // Flag for stopping
448 Bool_t fStopEvent; // Flag for stopped event
449 Bool_t fStopRun; // Flag for stopped run
450 Int_t fPrimaryElectronIndex; // Primary electron Index
1b7bf6a6 451 Bool_t fLowEnergyNeutronTransport; // Flag to force low energy neutron transport
bd3d5c8a 452
b496f27c 453 //
829fb838 454 //Geometry through TGeo
b496f27c 455 //
456 Int_t* fMaterials; //!Array of indices
829fb838 457 Int_t fNVolumes; //!Current number of volumes
7b203b6e 458 Int_t fCurrentFlukaRegion; // Index of fluka region at each step
459 Int_t fNCerenkov; // Number of cerekov photons
829fb838 460 TFlukaMCGeometry *fGeom; // TGeo-FLUKA interface
461 TGeoMCGeometry *fMCGeo; // Interface to TGeo builder
462
1df5fa54 463 // SetProcess, SetCut and user Scoring dynamic storage
fb2cbbec 464 TObjArray* fUserConfig; // List of user physics configuration
1df5fa54 465 TObjArray* fUserScore; // List of user scoring options
6d0e53bf 466 // User defined Ion
d3f271aa 467 Bool_t fUserIons; // User requests ion transport
468
6d0e53bf 469 //
4aba9d66 470
6d0e53bf 471 ClassDef(TFluka,1) // C++ interface to Fluka montecarlo
a2f1f85d 472
473
474 // Temporary implementation of new functions
475 // To be removed with the next release
829fb838 476};
a2f1f85d 477 inline Int_t TFluka::NofVolDaughters(const char* /*volName*/) const {
478 Warning("NofVolDaughters", "New function - not yet implemented.");
479 return 0;
480 }
481
482 inline const char* TFluka::VolDaughterName(const char* /*volName*/, Int_t /*i*/) const {
483 Warning("VolDaughterName", "New function - not yet implemented.");
484 return "";
485 }
486
487 inline Int_t TFluka::VolDaughterCopyNo(const char* /*volName*/, Int_t /*i*/) const {
488 Warning("VolDaughterCopyNo", "New function - not yet implemented.");
489 return 0;
490 }
491
d59acfe7 492
c54ce58e 493inline void TFluka::DefineOpSurface(const char* /*name*/, EMCOpSurfaceModel /*model*/, EMCOpSurfaceType /*surface*/,
494 EMCOpSurfaceFinish /*surfaceFinish*/, Double_t /*sigmaAlpha*/)
495{
496 Warning("DefineOpSurface", "New function - not yet implemented.");
497}
498
499
500inline void TFluka::SetBorderSurface(const char* /*name*/, const char* /*vol1Name*/, int /*vol1CopyNo*/, const char* /*vol2Name*/,
501 int /*vol2CopyNo*/, const char* /*opSurfaceName*/)
502{
503 Warning("SetBorderSurface", "New function - not yet implemented.");
504}
505
506
507inline void TFluka::SetSkinSurface(const char* /*name*/, const char* /*volName*/, const char* /*opSurfaceName*/)
508{
509 Warning("SetSkinSurface", "New function - not yet implemented.");
510}
511
512
513inline void TFluka::SetMaterialProperty(Int_t /*itmed*/, const char* /*propertyName*/, Int_t /*np*/, Double_t* /*pp*/, Double_t* /*values*/)
514{
515 Warning("SetMaterialProperty", "New function - not yet implemented.");
516}
517
518
519inline void TFluka::SetMaterialProperty(Int_t /*itmed*/, const char* /*propertyName*/, Double_t /*value*/)
520{
521 Warning("SetMaterialProperty", "New function - not yet implemented.");
522}
523
524
525inline void TFluka::SetMaterialProperty(const char* /*surfaceName*/, const char* /*propertyName*/, Int_t /*np*/,
526 Double_t* /*pp*/, Double_t* /*values*/)
527{
528 Warning("SetMaterialProperty", "New function - not yet implemented.");
529}
530
531
829fb838 532
533#endif //TFLUKA
534