18 def shoot(self):
19 pid = self.pid()
20
21 shift_z = self.shift_z
22
23 mom = self.mom1.shoot()
24 pos_temp = mom.Vect().Unit()
25
26
27 barrelR1 = 1148.0
28 barrelR2 = 120.0
29 barrelR3 = 41.0
30 endcapZ1 = 3550.0
31 endcapZ2 = 4587.0
32
33
34 tanTheta = pos_temp.Perp() / abs( pos_temp.Z() );
35 if tanTheta > barrelR1 / endcapZ1:
36 pos_temp *= barrelR1 / pos_temp.Perp()
37 elif tanTheta > barrelR2 / endcapZ1:
38 pos_temp *= endcapZ1 / abs( pos_temp.Z() )
39 elif tanTheta > barrelR2 / endcapZ2:
40 pos_temp *= barrelR2 / pos_temp.Perp()
41 elif tanTheta > barrelR3 / endcapZ2:
42 pos_temp *= endcapZ2 / abs( pos_temp.Z() )
43 else:
44 pos_temp *= barrelR3 / pos_temp.Perp()
45
46
47 pos_temp_2 = ROOT.TVector3()
48 pos_temp_2.SetXYZ(pos_temp.X(), pos_temp.Y(), pos_temp.Z()+shift_z)
49 pos_temp_2 *= 1. / pos_temp_2.Mag();
50
51
52 tanTheta_2 = pos_temp_2.Perp() / abs( pos_temp_2.Z() );
53 if tanTheta_2 > barrelR1 / endcapZ1:
54 pos_temp_2 *= barrelR1 / pos_temp_2.Perp()
55 elif tanTheta_2 > barrelR2 / endcapZ1:
56 pos_temp_2 *= endcapZ1 / abs( pos_temp_2.Z() )
57 elif tanTheta_2 > barrelR2 / endcapZ2:
58 pos_temp_2 *= barrelR2 / pos_temp_2.Perp()
59 elif tanTheta_2 > barrelR3 / endcapZ2:
60 pos_temp_2 *= endcapZ2 / abs( pos_temp_2.Z() )
61 else:
62 pos_temp_2 *= barrelR3 / pos_temp_2.Perp()
63
64 pos = ROOT.TLorentzVector(pos_temp_2.X(),pos_temp_2.Y(),pos_temp_2.Z(), pos_temp_2.Mag())
65
66
67
68 return [ PG.SampledParticle( pid , mom , pos ) ]
69