]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TFluka/stupre.cxx
- particle below transport threshold is attached to mother (same id)
[u/mrichter/AliRoot.git] / TFluka / stupre.cxx
1 #include <Riostream.h>
2 #ifndef WIN32
3 # define stupre stupre_
4 #else
5 # define stupre STUPRE
6 #endif
7 //
8 // Fluka include
9 #include "Fdimpar.h"  //(DIMPAR) fluka include
10
11 // Fluka commons
12 #include "Fdblprc.h"  //(DBLPRC) fluka common
13 #include "Femfstk.h"  //(EMFSTK) fluka common
14 #include "Fevtflg.h"  //(EVTFLG) fluka common
15 #include "Fpaprop.h"  //(PAPROP) fluka common
16 #include "Ftrackr.h"  //(TRACKR) fluka common
17 #include "Femfrgn.h"  //(EFMRGN) fluka common
18
19 //Virtual MC
20 #include "TFluka.h"
21 #include "TVirtualMCStack.h"
22 #include "TVirtualMCApplication.h"
23 #include "TParticle.h"
24 #include "TVector3.h"
25
26 extern "C" {
27 void stupre()
28 {
29 //*----------------------------------------------------------------------*
30 //*                                                                      *
31 //*  SeT User PRoperties for Emf particles                               *
32 //*                                                                      *
33 //*----------------------------------------------------------------------*
34   static Double_t emassmev = PAPROP.am[9] * 1000.;
35     
36   Int_t lbhabh = 0;
37   if (EVTFLG.ldltry == 1) {
38     if (EMFSTK.ichemf[EMFSTK.npemf-1] * EMFSTK.ichemf[EMFSTK.npemf-2] < 0) lbhabh = 1;
39   }
40   
41 // mkbmx1         = dimension for kwb real spare array in fluka stack in DIMPAR
42 // mkbmx2         = dimension for kwb int. spare array in fluka stack in DIMPAR
43 // EMFSTK.espark  = spare real variables available for 
44 // EMFSTK.iespak  = spare integer variables available for
45 // TRACKR.spausr  = user defined spare variables for the current particle
46 // TRACKR.ispusr  = user defined spare flags for the current particle
47 // EMFSTK.louemf  = user flag
48 // TRACKR.llouse  = user defined flag for the current particle
49
50   Int_t npnw, ispr;
51   for (npnw = EMFSTK.npstrt-1; npnw <= EMFSTK.npemf-1; npnw++) {
52
53     for (ispr = 0; ispr <= mkbmx1-1; ispr++) 
54       EMFSTK.espark[npnw][ispr] = TRACKR.spausr[ispr];
55     
56     for (ispr = 0; ispr <= mkbmx2-1; ispr++) 
57       EMFSTK.iespak[npnw][ispr] = TRACKR.ispusr[ispr];
58     
59     EMFSTK.louemf[npnw] = TRACKR.llouse;
60   }
61
62 // Get the pointer to the VMC
63   TFluka* fluka =  (TFluka*) gMC;
64   Int_t verbosityLevel = fluka->GetVerbosityLevel();
65   Bool_t debug = (verbosityLevel>=3)?kTRUE:kFALSE;
66   fluka->SetTrackIsNew(kTRUE);
67
68 // Get the stack produced from the generator
69   TVirtualMCStack* cppstack = fluka->GetStack();
70   
71 // EVTFLG.ntrcks = track number
72 // Increment the track number and put it into the last flag
73
74   Int_t kp;
75   
76   for (kp = EMFSTK.npstrt - 1; kp <= EMFSTK.npemf - 1; kp++) {
77     
78 // Ckeck transport cut first
79     Int_t ireg = EMFSTK.iremf[kp];
80     Double_t cut = (TMath::Abs(EMFSTK.ichemf[kp]) == 1) ? EMFRGN.elethr[ireg-1] :  EMFRGN.phothr[ireg-1];
81     Double_t e      = EMFSTK.etemf[kp];
82
83     if ((e < cut) 
84         && ( 
85             (EMFSTK.ichemf[kp] ==  0) ||
86             (EMFSTK.ichemf[kp] == -1) ||
87             (EMFSTK.ichemf[kp] ==  1 &&  EMFRGN.phothr[ireg-1] > emassmev)
88             )
89         )
90     {
91         EMFSTK.iespak[kp][mkbmx2-1] = TRACKR.ispusr[mkbmx2-1];
92         EMFSTK.iespak[kp][mkbmx2-2] =  0;
93         continue;
94     }
95
96 //* save the parent track number and reset it at each loop
97     Int_t done = 0;
98     Int_t parent =  TRACKR.ispusr[mkbmx2-1];
99     Int_t flukaid = 0;
100     
101 // Identify particle type
102     if      (EMFSTK.ichemf[kp] == -1)  flukaid = 3;
103     else if (EMFSTK.ichemf[kp] ==  0)  flukaid = 7;
104     else if (EMFSTK.ichemf[kp] ==  1)  flukaid = 4;
105     
106
107     e      *= emvgev;
108     Int_t    pdg    = fluka->PDGFromId(flukaid);
109     Double_t p      = sqrt(e * e - PAPROP.am[flukaid+6] * PAPROP.am[flukaid+6]);
110     Double_t px     = p * EMFSTK.uemf[kp];
111     Double_t py     = p * EMFSTK.vemf[kp];
112     Double_t pz     = p * EMFSTK.wemf[kp];
113     Double_t tof    = EMFSTK.agemf[kp];
114     Double_t polx   = EMFSTK.upol[kp];
115     Double_t poly   = EMFSTK.vpol[kp];
116     Double_t polz   = EMFSTK.wpol[kp];
117     Double_t vx     = EMFSTK.xemf[kp];
118     Double_t vy     = EMFSTK.yemf[kp];
119     Double_t vz     = EMFSTK.zemf[kp];
120     Double_t weight = EMFSTK.wtemf[kp];
121
122     Int_t ntr;
123     TMCProcess mech;
124     Int_t is = 0;
125
126 //* case of no parent left (pair, photoelectric, annihilation):
127 //* all secondaries are true
128     if ((EVTFLG.lpairp == 1) || (EVTFLG.lphoel == 1) ||
129         (EVTFLG.lannfl == 1) || (EVTFLG.lannrs == 1)) {
130         
131         if (EVTFLG.lpairp == 1) mech = kPPair;
132         else if (EVTFLG.lphoel == 1) mech = kPPhotoelectric;
133         else mech = kPAnnihilation;
134         cppstack->PushTrack(done, parent, pdg,
135                            px, py, pz, e, vx, vy, vz, tof,
136                            polx, poly, polz, mech, ntr, weight, is);
137         if (debug) cout << endl << " !!! stupre (PAIR, ..) : ntr=" << ntr << "pdg " << pdg << " parent=" << parent << "energy " << e-PAPROP.am[flukaid+6] << endl;
138
139         EMFSTK.iespak[kp][mkbmx2-1] = ntr;
140         EMFSTK.iespak[kp][mkbmx2-2] = 0;
141     } // end of lpairp, lphoel, lannfl, lannrs
142     
143 //* Compton: secondary is true only if charged (e+, e-)
144     else if ((EVTFLG.lcmptn == 1)) {
145
146         if (EMFSTK.ichemf[kp] != 0) {
147             mech = kPCompton;
148             cppstack->PushTrack(done, parent, pdg,
149                                px, py, pz, e, vx, vy, vz, tof,
150                                polx, poly, polz, mech, ntr, weight, is);
151             if (debug) cout << endl << " !!! stupre (COMPTON) : ntr=" << ntr << "pdg " << pdg << " parent=" << parent << endl;
152             EMFSTK.iespak[kp][mkbmx2-1] = ntr;
153             EMFSTK.iespak[kp][mkbmx2-2] = 0;
154         }
155     } // end of lcmptn
156     
157 //* Bremsstrahlung: true secondary only if charge = 0 (photon)
158     else if ((EVTFLG.lbrmsp == 1)) {
159         if (EMFSTK.ichemf[kp] == 0) {
160             mech = kPBrem;
161             cppstack->PushTrack(done, parent, pdg,
162                                px, py, pz, e, vx, vy, vz, tof,
163                                polx, poly, polz, mech, ntr, weight, is);
164             if (debug) cout << endl << " !!! stupre (BREMS) : ntr=" << ntr << "pdg " << pdg << " parent=" << parent << endl;
165             EMFSTK.iespak[kp][mkbmx2-1] = ntr;
166             EMFSTK.iespak[kp][mkbmx2-2] = 0;
167         }
168     } // end of lbrmsp
169     
170 //* Delta ray: If Bhabha, true secondary only if negative (electron)
171     else if ((EVTFLG.ldltry == 1)) {
172         if (lbhabh == 1) {
173             if (EMFSTK.ichemf[kp] == -1) {
174                 mech = kPDeltaRay;
175                 cppstack->PushTrack(done, parent, pdg,
176                                    px, py, pz, e, vx, vy, vz, tof,
177                                    polx, poly, polz, mech, ntr, weight, is);
178                 EMFSTK.iespak[kp][mkbmx2-1] = ntr;
179                 EMFSTK.iespak[kp][mkbmx2-2] = 0;
180            if (debug) cout << endl << " !!! stupre (BHABA) : ntr=" << ntr << "pdg " << pdg << " parent=" << parent << endl;
181             } // end of Bhabha
182         } // lbhabh == 1
183         
184 //* Delta ray: Otherwise Moller: true secondary is the electron with
185 //*            lower energy, which has been put higher in the stack
186         else if (kp == EMFSTK.npemf-1) {
187             mech = kPDeltaRay;
188             cppstack->PushTrack(done, parent, pdg,
189                                px, py, pz, e, vx, vy, vz, tof,
190                                polx, poly, polz, mech, ntr, weight, is);
191             if (debug) cout << endl << " !!! stupre (Moller) : ntr=" << ntr << "pdg " << pdg << " parent=" << parent << endl;
192             EMFSTK.iespak[kp][mkbmx2-1] = ntr;
193             EMFSTK.iespak[kp][mkbmx2-2] = 0;
194         } // end of Delta ray
195     } // end of ldltry
196     
197   } // end of loop
198 } // end of stupre
199 } // end of extern "C"
200