-
Notifications
You must be signed in to change notification settings - Fork 0
/
NewFilePrint.dat
9852 lines (9852 loc) · 579 KB
/
NewFilePrint.dat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Begin processing the 1st record. Run 1, Event 23220049, LumiSection 9027 at 08-Mar-2018 04:27:11.958 CST
Number of L2 muons for this Event################### 2
Printing Information of the L2 muon number: 1
L2muon ( pt, eta, phi ): 81.1713 , 1.8872 , 1.23803
L2muon ( px, py, pz ): 26.5153 , 76.7184 , 261.751
R,Z position of OuterTrackerstate inside:
R position: 83.9067
z porition: 273.5
R,Z position of OuterTrackerstate Outside
R position: 83.9067
z porition: 273.5
Starting to produce seeds in TOB, TEC+ and TEC- detector layers....
Trying to produce seed with tsosAtIP in TOB.........................................
Trying to produce seed with tsosAtIP in TEC+ .......................................
Running to produce seed over the TEC+ layer number: 1
Layer count before running the FindSeed: 0
Entering the FindSeedFunction .....
Trying to find hitless seed
Compatible detectors with TSOS(IP or MuSystem)(dets.size()): 1
detOnLayer: 0x7f7d68818740
TSOS onLayer Position: x,y,z: 26.7449, 78.9571, 271.749
TSOS onLayer Momentum: px,py,pz: 25.6137, 77.0235, 261.749
Seed recHit container(beforepushback): 0
Seed recHit container size (after pushback)hitless: 0
found a hitless seed
Trying to find hitbased seed
Compatible detectors onLayer(TSOS atIP orMuSystem)(dets.size()): 2
TSOS at the detector layer before updating position(x,y,z): -0.00651913, 0.0602603, 3.10388
TSOS at the detector layer before updating momentum(px,py,pz): 26.5153, 76.7184, 261.751
Updated TSOS( x,y,z) : 26.7392, 78.4207, 271.749
Updated TSOS( Px,Py,Pz) : 23.4321, 70.4599, 238.77
recHitContainer of the seed, size--> 1
Updated TSOS( x,y,z) : 25.0395, 77.8536, 271.749
Updated TSOS( Px,Py,Pz) : 81.6805, 246.089, 828.04
recHitContainer of the seed, size--> 1
Updated TSOS( x,y,z) : 27.769, 77.9716, 271.255
Updated TSOS( Px,Py,Pz) : 14.9849, 45.0004, 152.654
recHitContainer of the seed, size--> 1
Layer count after running the FindSeed: 1
Number of seeds created on this TOB layer (Opposite, Opposite): 4
Running to produce seed over the TEC+ layer number: 2
Layer count before running the FindSeed: 1
Entering the FindSeedFunction .....
Trying to find hitbased seed
Compatible detectors onLayer(TSOS atIP orMuSystem)(dets.size()): 3
TSOS at the detector layer before updating position(x,y,z): -0.00651913, 0.0602603, 3.10388
TSOS at the detector layer before updating momentum(px,py,pz): 26.5153, 76.7184, 261.751
Updated TSOS( x,y,z) : 23.3644, 69.5518, 247.454
Updated TSOS( Px,Py,Pz) : 29.2548, 87.7029, 294.047
recHitContainer of the seed, size--> 1
Updated TSOS( x,y,z) : 25.5523, 74.781, 250.255
Updated TSOS( Px,Py,Pz) : 23.4043, 70.1218, 241.564
recHitContainer of the seed, size--> 1
Updated TSOS( x,y,z) : 21.2605, 64.8009, 247.454
Updated TSOS( Px,Py,Pz) : 40.702, 122.135, 397.975
recHitContainer of the seed, size--> 1
Layer count after running the FindSeed: 2
Number of seeds created on this TOB layer (Opposite, Opposite): 3
Running to produce seed over the TEC+ layer number: 3
Layer count before running the FindSeed: 2
Entering the FindSeedFunction .....
Layer count after running the FindSeed: 2
Number of seeds created on this TOB layer (Opposite, Opposite): 0
Running to produce seed over the TEC+ layer number: 4
Layer count before running the FindSeed: 2
Entering the FindSeedFunction .....
Layer count after running the FindSeed: 2
Number of seeds created on this TOB layer (Opposite, Opposite): 0
Running to produce seed over the TEC+ layer number: 5
Layer count before running the FindSeed: 2
Entering the FindSeedFunction .....
Layer count after running the FindSeed: 2
Number of seeds created on this TOB layer (Opposite, Opposite): 0
Running to produce seed over the TEC+ layer number: 6
Layer count before running the FindSeed: 2
Entering the FindSeedFunction .....
Layer count after running the FindSeed: 2
Number of seeds created on this TOB layer (Opposite, Opposite): 0
Running to produce seed over the TEC+ layer number: 7
Layer count before running the FindSeed: 2
Entering the FindSeedFunction .....
Layer count after running the FindSeed: 2
Number of seeds created on this TOB layer (Opposite, Opposite): 0
Running to produce seed over the TEC+ layer number: 8
Layer count before running the FindSeed: 2
Entering the FindSeedFunction .....
Layer count after running the FindSeed: 2
Number of seeds created on this TOB layer (Opposite, Opposite): 0
Running to produce seed over the TEC+ layer number: 9
Layer count before running the FindSeed: 2
Entering the FindSeedFunction .....
Layer count after running the FindSeed: 2
Number of seeds created on this TOB layer (Opposite, Opposite): 0
UseBoth true: so Trying to produce seed with tsosMuonSystem in TEC+.............................
Running to produce seed over the TEC+ layer number: 1
Layer count before running the FindSeed: 2
Entering the FindSeedFunction .....
Trying to find hitless seed
Compatible detectors with TSOS(IP or MuSystem)(dets.size()): 1
detOnLayer: 0x7f7d68818740
TSOS onLayer Position: x,y,z: 26.8225, 78.8356, 271.749
TSOS onLayer Momentum: px,py,pz: 28.631, 86.7455, 294.38
Seed recHit container(beforepushback): 0
Seed recHit container size (after pushback)hitless: 0
found a hitless seed
Trying to find hitbased seed
Compatible detectors onLayer(TSOS atIP orMuSystem)(dets.size()): 2
TSOS at the detector layer before updating position(x,y,z): 57.0847, 172.066, 587.628
TSOS at the detector layer before updating momentum(px,py,pz): 27.7736, 87.0232, 294.378
Updated TSOS( x,y,z) : 26.6862, 78.2652, 271.749
Updated TSOS( Px,Py,Pz) : 30.0408, 91.217, 308.522
recHitContainer of the seed, size--> 1
Updated TSOS( x,y,z) : 27.6817, 77.7263, 271.255
Updated TSOS( Px,Py,Pz) : 782.823, 2498.62, 8408.21
recHitContainer of the seed, size--> 1
Updated TSOS( x,y,z) : 25.2756, 78.5878, 271.749
Updated TSOS( Px,Py,Pz) : 14.1528, 40.3988, 137.405
recHitContainer of the seed, size--> 1
Layer count after running the FindSeed: 3
Number of seeds created on this TOB layer (Opposite, Opposite): 4
Running to produce seed over the TEC+ layer number: 2
Layer count before running the FindSeed: 3
Entering the FindSeedFunction .....
Layer count exceeded the number of layer to try i.e.=2 ..so not running to find hitbased seed
Layer count after running the FindSeed: 3
Number of seeds created on this TOB layer (Opposite, Opposite): 0
Running to produce seed over the TEC+ layer number: 3
Layer count before running the FindSeed: 3
Entering the FindSeedFunction .....
Layer count exceeded the number of layer to try i.e.=2 ..so not running to find hitbased seed
Layer count after running the FindSeed: 3
Number of seeds created on this TOB layer (Opposite, Opposite): 0
Running to produce seed over the TEC+ layer number: 4
Layer count before running the FindSeed: 3
Entering the FindSeedFunction .....
Layer count exceeded the number of layer to try i.e.=2 ..so not running to find hitbased seed
Layer count after running the FindSeed: 3
Number of seeds created on this TOB layer (Opposite, Opposite): 0
Running to produce seed over the TEC+ layer number: 5
Layer count before running the FindSeed: 3
Entering the FindSeedFunction .....
Layer count exceeded the number of layer to try i.e.=2 ..so not running to find hitbased seed
Layer count after running the FindSeed: 3
Number of seeds created on this TOB layer (Opposite, Opposite): 0
Running to produce seed over the TEC+ layer number: 6
Layer count before running the FindSeed: 3
Entering the FindSeedFunction .....
Layer count exceeded the number of layer to try i.e.=2 ..so not running to find hitbased seed
Layer count after running the FindSeed: 3
Number of seeds created on this TOB layer (Opposite, Opposite): 0
Running to produce seed over the TEC+ layer number: 7
Layer count before running the FindSeed: 3
Entering the FindSeedFunction .....
Layer count exceeded the number of layer to try i.e.=2 ..so not running to find hitbased seed
Layer count after running the FindSeed: 3
Number of seeds created on this TOB layer (Opposite, Opposite): 0
Running to produce seed over the TEC+ layer number: 8
Layer count before running the FindSeed: 3
Entering the FindSeedFunction .....
Layer count exceeded the number of layer to try i.e.=2 ..so not running to find hitbased seed
Layer count after running the FindSeed: 3
Number of seeds created on this TOB layer (Opposite, Opposite): 0
Running to produce seed over the TEC+ layer number: 9
Layer count before running the FindSeed: 3
Entering the FindSeedFunction .....
Layer count exceeded the number of layer to try i.e.=2 ..so not running to find hitbased seed
Layer count after running the FindSeed: 3
Number of seeds created on this TOB layer (Opposite, Opposite): 0
Num of seeds made for this l2 muon number-> 1 : 11
Printing Information of the L2 muon number: 2
L2muon ( pt, eta, phi ): 105.48 , 1.15114 , -1.82609
L2muon ( px, py, pz ): -26.6369 , -102.061 , 150.072
R,Z position of OuterTrackerstate inside:
R position: 112
z porition: 152.765
R,Z position of OuterTrackerstate Outside
R position: 112
z porition: 145.585
Starting to produce seeds in TOB, TEC+ and TEC- detector layers....
Trying to produce seed with tsosAtIP in TOB.........................................
Running to produce seed over the TOB layer number: 1
Layer count before running the FindSeed: 0
Entering the FindSeedFunction .....
Trying to find hitless seed
Compatible detectors with TSOS(IP or MuSystem)(dets.size()): 0
Trying to find hitbased seed
Compatible detectors onLayer(TSOS atIP orMuSystem)(dets.size()): 0
TSOS at the detector layer before updating position(x,y,z): -0.0333614, 0.067545, -6.66564
TSOS at the detector layer before updating momentum(px,py,pz): -26.6369, -102.061, 150.072
Layer count after running the FindSeed: 0
Number of seeds created on this TOB layer (Along, Opposite): 0
Running to produce seed over the TOB layer number: 2
Layer count before running the FindSeed: 0
Entering the FindSeedFunction .....
Trying to find hitless seed
Compatible detectors with TSOS(IP or MuSystem)(dets.size()): 0
Trying to find hitbased seed
Compatible detectors onLayer(TSOS atIP orMuSystem)(dets.size()): 0
TSOS at the detector layer before updating position(x,y,z): -0.0333614, 0.067545, -6.66564
TSOS at the detector layer before updating momentum(px,py,pz): -26.6369, -102.061, 150.072
Layer count after running the FindSeed: 0
Number of seeds created on this TOB layer (Along, Opposite): 0
Running to produce seed over the TOB layer number: 3
Layer count before running the FindSeed: 0
Entering the FindSeedFunction .....
Trying to find hitless seed
Compatible detectors with TSOS(IP or MuSystem)(dets.size()): 0
Trying to find hitbased seed
Compatible detectors onLayer(TSOS atIP orMuSystem)(dets.size()): 0
TSOS at the detector layer before updating position(x,y,z): -0.0333614, 0.067545, -6.66564
TSOS at the detector layer before updating momentum(px,py,pz): -26.6369, -102.061, 150.072
Layer count after running the FindSeed: 0
Number of seeds created on this TOB layer (Along, Opposite): 0
Running to produce seed over the TOB layer number: 4
Layer count before running the FindSeed: 0
Entering the FindSeedFunction .....
Trying to find hitless seed
Compatible detectors with TSOS(IP or MuSystem)(dets.size()): 1
detOnLayer: 0x7f7d68643a40
TSOS onLayer Position: x,y,z: -19.5754, -73.564, 101.721
TSOS onLayer Momentum: px,py,pz: -27.4773, -101.834, 150.066
Seed recHit container(beforepushback): 0
Seed recHit container size (after pushback)hitless: 0
found a hitless seed
Trying to find hitbased seed
Compatible detectors onLayer(TSOS atIP orMuSystem)(dets.size()): 1
TSOS at the detector layer before updating position(x,y,z): -0.0333614, 0.067545, -6.66564
TSOS at the detector layer before updating momentum(px,py,pz): -26.6369, -102.061, 150.072
Layer count after running the FindSeed: 0
Number of seeds created on this TOB layer (Along, Opposite): 1
Running to produce seed over the TOB layer number: 5
Layer count before running the FindSeed: 0
Entering the FindSeedFunction .....
Trying to find hitbased seed
Compatible detectors onLayer(TSOS atIP orMuSystem)(dets.size()): 2
TSOS at the detector layer before updating position(x,y,z): -0.0333614, 0.067545, -6.66564
TSOS at the detector layer before updating momentum(px,py,pz): -26.6369, -102.061, 150.072
Updated TSOS( x,y,z) : -16.8416, -64.9368, 90.2511
Updated TSOS( Px,Py,Pz) : -20.4908, -77.6627, 114.057
recHitContainer of the seed, size--> 1
Updated TSOS( x,y,z) : -16.9713, -66.0198, 100.495
Updated TSOS( Px,Py,Pz) : -18.3687, -70.0393, 101.646
recHitContainer of the seed, size--> 1
Updated TSOS( x,y,z) : -16.8418, -64.9373, 77.6537
Updated TSOS( Px,Py,Pz) : -21.1544, -80.221, 119.748
recHitContainer of the seed, size--> 1
Layer count after running the FindSeed: 1
Number of seeds created on this TOB layer (Along, Opposite): 3
Running to produce seed over the TOB layer number: 6
Layer count before running the FindSeed: 1
Entering the FindSeedFunction .....
Trying to find hitbased seed
Compatible detectors onLayer(TSOS atIP orMuSystem)(dets.size()): 1
TSOS at the detector layer before updating position(x,y,z): -0.0333614, 0.067545, -6.66564
TSOS at the detector layer before updating momentum(px,py,pz): -26.6369, -102.061, 150.072
Updated TSOS( x,y,z) : -14.8684, -61.2182, 82.7254
Updated TSOS( Px,Py,Pz) : -12.2443, -48.9101, 71.7292
recHitContainer of the seed, size--> 1
Updated TSOS( x,y,z) : -14.8684, -61.2182, 85.2243
Updated TSOS( Px,Py,Pz) : -12.2085, -48.7621, 71.2814
recHitContainer of the seed, size--> 1
Updated TSOS( x,y,z) : -14.4598, -61.3359, 80.9867
Updated TSOS( Px,Py,Pz) : -10.2936, -42.0736, 61.7482
recHitContainer of the seed, size--> 1
Layer count after running the FindSeed: 2
Number of seeds created on this TOB layer (Along, Opposite): 3
UseBoth true: so Trying to produce seed with tsosMuonSystem in TOB.............................
Running to produce seed over the TOB layer number: 1
Layer count before running the FindSeed: 2
Entering the FindSeedFunction .....
Trying to find hitless seed
Compatible detectors with TSOS(IP or MuSystem)(dets.size()): 0
Trying to find hitbased seed
Compatible detectors onLayer(TSOS atIP orMuSystem)(dets.size()): 0
TSOS at the detector layer before updating position(x,y,z): -121.238, -427.855, 623.956
TSOS at the detector layer before updating momentum(px,py,pz): -26.1917, -89.6431, 134.279
Layer count after running the FindSeed: 2
Number of seeds created on this TOB layer (Opposite, Opposite): 0
Running to produce seed over the TOB layer number: 2
Layer count before running the FindSeed: 2
Entering the FindSeedFunction .....
Trying to find hitless seed
Compatible detectors with TSOS(IP or MuSystem)(dets.size()): 0
Trying to find hitbased seed
Compatible detectors onLayer(TSOS atIP orMuSystem)(dets.size()): 0
TSOS at the detector layer before updating position(x,y,z): -121.238, -427.855, 623.956
TSOS at the detector layer before updating momentum(px,py,pz): -26.1917, -89.6431, 134.279
Layer count after running the FindSeed: 2
Number of seeds created on this TOB layer (Opposite, Opposite): 0
Running to produce seed over the TOB layer number: 3
Layer count before running the FindSeed: 2
Entering the FindSeedFunction .....
Trying to find hitless seed
Compatible detectors with TSOS(IP or MuSystem)(dets.size()): 0
Trying to find hitbased seed
Compatible detectors onLayer(TSOS atIP orMuSystem)(dets.size()): 0
TSOS at the detector layer before updating position(x,y,z): -121.238, -427.855, 623.956
TSOS at the detector layer before updating momentum(px,py,pz): -26.1917, -89.6431, 134.279
Layer count after running the FindSeed: 2
Number of seeds created on this TOB layer (Opposite, Opposite): 0
Running to produce seed over the TOB layer number: 4
Layer count before running the FindSeed: 2
Entering the FindSeedFunction .....
Trying to find hitless seed
Compatible detectors with TSOS(IP or MuSystem)(dets.size()): 0
Trying to find hitbased seed
Compatible detectors onLayer(TSOS atIP orMuSystem)(dets.size()): 0
TSOS at the detector layer before updating position(x,y,z): -121.238, -427.855, 623.956
TSOS at the detector layer before updating momentum(px,py,pz): -26.1917, -89.6431, 134.279
Layer count after running the FindSeed: 2
Number of seeds created on this TOB layer (Opposite, Opposite): 0
Running to produce seed over the TOB layer number: 5
Layer count before running the FindSeed: 2
Entering the FindSeedFunction .....
Trying to find hitless seed
Compatible detectors with TSOS(IP or MuSystem)(dets.size()): 0
Trying to find hitbased seed
Compatible detectors onLayer(TSOS atIP orMuSystem)(dets.size()): 0
TSOS at the detector layer before updating position(x,y,z): -121.238, -427.855, 623.956
TSOS at the detector layer before updating momentum(px,py,pz): -26.1917, -89.6431, 134.279
Layer count after running the FindSeed: 2
Number of seeds created on this TOB layer (Opposite, Opposite): 0
Running to produce seed over the TOB layer number: 6
Layer count before running the FindSeed: 2
Entering the FindSeedFunction .....
Trying to find hitless seed
Compatible detectors with TSOS(IP or MuSystem)(dets.size()): 0
Trying to find hitbased seed
Compatible detectors onLayer(TSOS atIP orMuSystem)(dets.size()): 0
TSOS at the detector layer before updating position(x,y,z): -121.238, -427.855, 623.956
TSOS at the detector layer before updating momentum(px,py,pz): -26.1917, -89.6431, 134.279
Layer count after running the FindSeed: 2
Number of seeds created on this TOB layer (Opposite, Opposite): 0
Trying to produce seed with tsosAtIP in TEC+ .......................................
Running to produce seed over the TEC+ layer number: 1
Layer count before running the FindSeed: 0
Entering the FindSeedFunction .....
Trying to find hitless seed
Compatible detectors with TSOS(IP or MuSystem)(dets.size()): 0
Trying to find hitbased seed
Compatible detectors onLayer(TSOS atIP orMuSystem)(dets.size()): 0
TSOS at the detector layer before updating position(x,y,z): -0.0333614, 0.067545, -6.66564
TSOS at the detector layer before updating momentum(px,py,pz): -26.6369, -102.061, 150.072
Layer count after running the FindSeed: 0
Number of seeds created on this TOB layer (Opposite, Opposite): 0
Running to produce seed over the TEC+ layer number: 2
Layer count before running the FindSeed: 0
Entering the FindSeedFunction .....
Trying to find hitless seed
Compatible detectors with TSOS(IP or MuSystem)(dets.size()): 0
Trying to find hitbased seed
Compatible detectors onLayer(TSOS atIP orMuSystem)(dets.size()): 0
TSOS at the detector layer before updating position(x,y,z): -0.0333614, 0.067545, -6.66564
TSOS at the detector layer before updating momentum(px,py,pz): -26.6369, -102.061, 150.072
Layer count after running the FindSeed: 0
Number of seeds created on this TOB layer (Opposite, Opposite): 0
Running to produce seed over the TEC+ layer number: 3
Layer count before running the FindSeed: 0
Entering the FindSeedFunction .....
Trying to find hitless seed
Compatible detectors with TSOS(IP or MuSystem)(dets.size()): 0
Trying to find hitbased seed
Compatible detectors onLayer(TSOS atIP orMuSystem)(dets.size()): 0
TSOS at the detector layer before updating position(x,y,z): -0.0333614, 0.067545, -6.66564
TSOS at the detector layer before updating momentum(px,py,pz): -26.6369, -102.061, 150.072
Layer count after running the FindSeed: 0
Number of seeds created on this TOB layer (Opposite, Opposite): 0
Running to produce seed over the TEC+ layer number: 4
Layer count before running the FindSeed: 0
Entering the FindSeedFunction .....
Trying to find hitless seed
Compatible detectors with TSOS(IP or MuSystem)(dets.size()): 0
Trying to find hitbased seed
Compatible detectors onLayer(TSOS atIP orMuSystem)(dets.size()): 0
TSOS at the detector layer before updating position(x,y,z): -0.0333614, 0.067545, -6.66564
TSOS at the detector layer before updating momentum(px,py,pz): -26.6369, -102.061, 150.072
Layer count after running the FindSeed: 0
Number of seeds created on this TOB layer (Opposite, Opposite): 0
Running to produce seed over the TEC+ layer number: 5
Layer count before running the FindSeed: 0
Entering the FindSeedFunction .....
Trying to find hitless seed
Compatible detectors with TSOS(IP or MuSystem)(dets.size()): 0
Trying to find hitbased seed
Compatible detectors onLayer(TSOS atIP orMuSystem)(dets.size()): 0
TSOS at the detector layer before updating position(x,y,z): -0.0333614, 0.067545, -6.66564
TSOS at the detector layer before updating momentum(px,py,pz): -26.6369, -102.061, 150.072
Layer count after running the FindSeed: 0
Number of seeds created on this TOB layer (Opposite, Opposite): 0
Running to produce seed over the TEC+ layer number: 6
Layer count before running the FindSeed: 0
Entering the FindSeedFunction .....
Trying to find hitless seed
Compatible detectors with TSOS(IP or MuSystem)(dets.size()): 0
Trying to find hitbased seed
Compatible detectors onLayer(TSOS atIP orMuSystem)(dets.size()): 0
TSOS at the detector layer before updating position(x,y,z): -0.0333614, 0.067545, -6.66564
TSOS at the detector layer before updating momentum(px,py,pz): -26.6369, -102.061, 150.072
Layer count after running the FindSeed: 0
Number of seeds created on this TOB layer (Opposite, Opposite): 0
Running to produce seed over the TEC+ layer number: 7
Layer count before running the FindSeed: 0
Entering the FindSeedFunction .....
Trying to find hitless seed
Compatible detectors with TSOS(IP or MuSystem)(dets.size()): 0
Trying to find hitbased seed
Compatible detectors onLayer(TSOS atIP orMuSystem)(dets.size()): 0
TSOS at the detector layer before updating position(x,y,z): -0.0333614, 0.067545, -6.66564
TSOS at the detector layer before updating momentum(px,py,pz): -26.6369, -102.061, 150.072
Layer count after running the FindSeed: 0
Number of seeds created on this TOB layer (Opposite, Opposite): 0
Running to produce seed over the TEC+ layer number: 8
Layer count before running the FindSeed: 0
Entering the FindSeedFunction .....
Trying to find hitless seed
Compatible detectors with TSOS(IP or MuSystem)(dets.size()): 1
detOnLayer: 0x7f7d6875bdc0
TSOS onLayer Position: x,y,z: -28.2684, -105.553, 148.885
TSOS onLayer Momentum: px,py,pz: -27.8427, -101.735, 150.066
Seed recHit container(beforepushback): 0
Seed recHit container size (after pushback)hitless: 0
found a hitless seed
Trying to find hitbased seed
Compatible detectors onLayer(TSOS atIP orMuSystem)(dets.size()): 1
TSOS at the detector layer before updating position(x,y,z): -0.0333614, 0.067545, -6.66564
TSOS at the detector layer before updating momentum(px,py,pz): -26.6369, -102.061, 150.072
Updated TSOS( x,y,z) : -25.3412, -96.4488, 148.884
Updated TSOS( Px,Py,Pz) : -21.3953, -79.1281, 114.46
Layer count after running the FindSeed: 0
Number of seeds created on this TOB layer (Opposite, Opposite): 1
Running to produce seed over the TEC+ layer number: 9
Layer count before running the FindSeed: 0
Entering the FindSeedFunction .....
Trying to find hitbased seed
Compatible detectors onLayer(TSOS atIP orMuSystem)(dets.size()): 1
TSOS at the detector layer before updating position(x,y,z): -0.0333614, 0.067545, -6.66564
TSOS at the detector layer before updating momentum(px,py,pz): -26.6369, -102.061, 150.072
Layer count after running the FindSeed: 0
Number of seeds created on this TOB layer (Opposite, Opposite): 0
UseBoth true: so Trying to produce seed with tsosMuonSystem in TEC+.............................
Running to produce seed over the TEC+ layer number: 1
Layer count before running the FindSeed: 0
Entering the FindSeedFunction .....
Trying to find hitless seed
Compatible detectors with TSOS(IP or MuSystem)(dets.size()): 0
Trying to find hitbased seed
Compatible detectors onLayer(TSOS atIP orMuSystem)(dets.size()): 0
TSOS at the detector layer before updating position(x,y,z): -121.238, -427.855, 623.956
TSOS at the detector layer before updating momentum(px,py,pz): -26.1917, -89.6431, 134.279
Layer count after running the FindSeed: 0
Number of seeds created on this TOB layer (Opposite, Opposite): 0
Running to produce seed over the TEC+ layer number: 2
Layer count before running the FindSeed: 0
Entering the FindSeedFunction .....
Trying to find hitless seed
Compatible detectors with TSOS(IP or MuSystem)(dets.size()): 0
Trying to find hitbased seed
Compatible detectors onLayer(TSOS atIP orMuSystem)(dets.size()): 0
TSOS at the detector layer before updating position(x,y,z): -121.238, -427.855, 623.956
TSOS at the detector layer before updating momentum(px,py,pz): -26.1917, -89.6431, 134.279
Layer count after running the FindSeed: 0
Number of seeds created on this TOB layer (Opposite, Opposite): 0
Running to produce seed over the TEC+ layer number: 3
Layer count before running the FindSeed: 0
Entering the FindSeedFunction .....
Trying to find hitless seed
Compatible detectors with TSOS(IP or MuSystem)(dets.size()): 0
Trying to find hitbased seed
Compatible detectors onLayer(TSOS atIP orMuSystem)(dets.size()): 0
TSOS at the detector layer before updating position(x,y,z): -121.238, -427.855, 623.956
TSOS at the detector layer before updating momentum(px,py,pz): -26.1917, -89.6431, 134.279
Layer count after running the FindSeed: 0
Number of seeds created on this TOB layer (Opposite, Opposite): 0
Running to produce seed over the TEC+ layer number: 4
Layer count before running the FindSeed: 0
Entering the FindSeedFunction .....
Trying to find hitless seed
Compatible detectors with TSOS(IP or MuSystem)(dets.size()): 0
Trying to find hitbased seed
Compatible detectors onLayer(TSOS atIP orMuSystem)(dets.size()): 0
TSOS at the detector layer before updating position(x,y,z): -121.238, -427.855, 623.956
TSOS at the detector layer before updating momentum(px,py,pz): -26.1917, -89.6431, 134.279
Layer count after running the FindSeed: 0
Number of seeds created on this TOB layer (Opposite, Opposite): 0
Running to produce seed over the TEC+ layer number: 5
Layer count before running the FindSeed: 0
Entering the FindSeedFunction .....
Trying to find hitless seed
Compatible detectors with TSOS(IP or MuSystem)(dets.size()): 0
Trying to find hitbased seed
Compatible detectors onLayer(TSOS atIP orMuSystem)(dets.size()): 0
TSOS at the detector layer before updating position(x,y,z): -121.238, -427.855, 623.956
TSOS at the detector layer before updating momentum(px,py,pz): -26.1917, -89.6431, 134.279
Layer count after running the FindSeed: 0
Number of seeds created on this TOB layer (Opposite, Opposite): 0
Running to produce seed over the TEC+ layer number: 6
Layer count before running the FindSeed: 0
Entering the FindSeedFunction .....
Trying to find hitless seed
Compatible detectors with TSOS(IP or MuSystem)(dets.size()): 0
Trying to find hitbased seed
Compatible detectors onLayer(TSOS atIP orMuSystem)(dets.size()): 0
TSOS at the detector layer before updating position(x,y,z): -121.238, -427.855, 623.956
TSOS at the detector layer before updating momentum(px,py,pz): -26.1917, -89.6431, 134.279
Layer count after running the FindSeed: 0
Number of seeds created on this TOB layer (Opposite, Opposite): 0
Running to produce seed over the TEC+ layer number: 7
Layer count before running the FindSeed: 0
Entering the FindSeedFunction .....
Trying to find hitless seed
Compatible detectors with TSOS(IP or MuSystem)(dets.size()): 0
Trying to find hitbased seed
Compatible detectors onLayer(TSOS atIP orMuSystem)(dets.size()): 0
TSOS at the detector layer before updating position(x,y,z): -121.238, -427.855, 623.956
TSOS at the detector layer before updating momentum(px,py,pz): -26.1917, -89.6431, 134.279
Layer count after running the FindSeed: 0
Number of seeds created on this TOB layer (Opposite, Opposite): 0
Running to produce seed over the TEC+ layer number: 8
Layer count before running the FindSeed: 0
Entering the FindSeedFunction .....
Trying to find hitless seed
Compatible detectors with TSOS(IP or MuSystem)(dets.size()): 0
Trying to find hitbased seed
Compatible detectors onLayer(TSOS atIP orMuSystem)(dets.size()): 0
TSOS at the detector layer before updating position(x,y,z): -121.238, -427.855, 623.956
TSOS at the detector layer before updating momentum(px,py,pz): -26.1917, -89.6431, 134.279
Layer count after running the FindSeed: 0
Number of seeds created on this TOB layer (Opposite, Opposite): 0
Running to produce seed over the TEC+ layer number: 9
Layer count before running the FindSeed: 0
Entering the FindSeedFunction .....
Trying to find hitless seed
Compatible detectors with TSOS(IP or MuSystem)(dets.size()): 0
Trying to find hitbased seed
Compatible detectors onLayer(TSOS atIP orMuSystem)(dets.size()): 0
TSOS at the detector layer before updating position(x,y,z): -121.238, -427.855, 623.956
TSOS at the detector layer before updating momentum(px,py,pz): -26.1917, -89.6431, 134.279
Layer count after running the FindSeed: 0
Number of seeds created on this TOB layer (Opposite, Opposite): 0
Num of seeds for this l2 muon number-> 2 : 8
Number of total seeds made in the event: 19
Num of Track Candidates (hltIterL3OITrackCandidates): 3
TrackProducer running ... with algo: iter10
Num of Transient Tracks: 3
gen muon found: pt: 31.0525 eta: 1.14383 phi: -1.77076
gen muon found: pt: 54.3113 eta: 1.89427 phi: 1.23285
# of hltL3TkTracksOINoHP(Transient Tracks) = 3
hltL3TkTracksOINoHP(Transient Tracks) --> pt: 52.6789 eta: 1.89416 phi: 1.23259
Pixel Hits(hitPattern().numberOfValidPixelHits()): 4
dz Wrt beam spot position: -3.81688
d0: -0.0475861
d0 Error: 0.000884964
num of Degrees of freedom: : 23
Chi2 value(normalizedChi2()): 0.568417
Hits:(numberOfValidHits()): 14
TrkLayers with measurement: 14
num3D Layers: 8
Trk Layers without measurement: 0
dxy: 0.00120822
Number of lost hits: 0
hltL3TkTracksOINoHP(Transient Tracks) --> pt: 23.3707 eta: 1.8887 phi: 1.20643
Pixel Hits(hitPattern().numberOfValidPixelHits()): 0
dz Wrt beam spot position: 27.4602
d0: -2.12137
d0 Error: 0.541006
num of Degrees of freedom: : 3
Chi2 value(normalizedChi2()): 1.53103
Hits:(numberOfValidHits()): 4
TrkLayers with measurement: 4
num3D Layers: 2
Trk Layers without measurement: 2
dxy: 2.07352
Number of lost hits: 2
hltL3TkTracksOINoHP(Transient Tracks) --> pt: 105.538 eta: 1.08729 phi: -1.86892
Pixel Hits(hitPattern().numberOfValidPixelHits()): 1
dz Wrt beam spot position: -2.27993
d0: -4.39989
d0 Error: 0.00275593
num of Degrees of freedom: : 5
Chi2 value(normalizedChi2()): 2.78746
Hits:(numberOfValidHits()): 5
TrkLayers with measurement: 5
num3D Layers: 3
Trk Layers without measurement: 1
dxy: 4.44394
Number of lost hits: 1
rec::Track muon (recoMatched, pt,eta, phi)53.0205, 1.89421, 1.23261
New Seed ......................
New Seed ......................
Distance between SeedHit and recoTrack recHit: 3.94241
New Seed ......................
Distance between SeedHit and recoTrack recHit: 2.51265
New Seed ......................
New Seed ......................
New Seed ......................
Distance between SeedHit and recoTrack recHit: 3.99584
New Seed ......................
New Seed ......................
New Seed ......................
Distance between SeedHit and recoTrack recHit: 3.94241
New Seed ......................
New Seed ......................
Distance between SeedHit and recoTrack recHit: 2.51265
New Seed ......................
New Seed ......................
New Seed ......................
New Seed ......................
New Seed ......................
New Seed ......................
New Seed ......................
New Seed ......................
rec::Track muon (recoMatched, pt,eta, phi)30.8595, 1.14377, -1.77031
New Seed ......................
New Seed ......................
New Seed ......................
New Seed ......................
New Seed ......................
New Seed ......................
New Seed ......................
New Seed ......................
New Seed ......................
New Seed ......................
New Seed ......................
New Seed ......................
New Seed ......................
New Seed ......................
New Seed ......................
New Seed ......................
New Seed ......................
New Seed ......................
New Seed ......................
Tight id and Isolated reco muon, pt,eta,phi: 52.7612, 1.89421, 1.2326
Tight id and Isolated reco muon, pt,eta,phi: 31.0903, 1.14378, -1.77035
Num of L3OI muon cands: 1
L3 OI cand pt, eta, phi: 52.6789 : 1.89416 : 1.23259
08-Mar-2018 04:27:16 CST Closed file root://cmsxrootd.fnal.gov//store/mc/RunIISummer17DRStdmix/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/GEN-SIM-RAW/NZSFlatPU28to62_92X_upgrade2017_realistic_v10_ext1-v1/20003/8C0DAD41-D8C9-E711-A3C9-0CC47A0093B6.root
08-Mar-2018 04:27:16 CST Initiating request to open file root://cmsxrootd.fnal.gov//store/mc/RunIISummer17DRStdmix/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/GEN-SIM-RAW/NZSFlatPU28to62_92X_upgrade2017_realistic_v10_ext1-v1/20003/CE46E36D-73C9-E711-98DA-0CC47A7EEE1E.root
%MSG-w XrdAdaptor: source 08-Mar-2018 04:27:54 CST PostGlobalEndLumi
Data is served from T2_FR_CCIN2P3 instead of original site T2_US_Nebraska
%MSG
08-Mar-2018 04:27:54 CST Successfully opened file root://cmsxrootd.fnal.gov//store/mc/RunIISummer17DRStdmix/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/GEN-SIM-RAW/NZSFlatPU28to62_92X_upgrade2017_realistic_v10_ext1-v1/20003/CE46E36D-73C9-E711-98DA-0CC47A7EEE1E.root
Begin processing the 2nd record. Run 1, Event 20924903, LumiSection 8135 at 08-Mar-2018 04:28:16.649 CST
Number of L2 muons for this Event################### 2
Printing Information of the L2 muon number: 1
L2muon ( pt, eta, phi ): 37.7404 , -0.106398 , 0.321064
L2muon ( px, py, pz ): 35.8119 , 11.91 , -4.02307
R,Z position of OuterTrackerstate inside:
R position: 112
z porition: -13.9618
R,Z position of OuterTrackerstate Outside
R position: 112
z porition: -14.166
Starting to produce seeds in TOB, TEC+ and TEC- detector layers....
Trying to produce seed with tsosAtIP in TOB.........................................
Running to produce seed over the TOB layer number: 1
Layer count before running the FindSeed: 0
Entering the FindSeedFunction .....
Trying to find hitless seed
Compatible detectors with TSOS(IP or MuSystem)(dets.size()): 1
detOnLayer: 0x7f7d686e22c0
TSOS onLayer Position: x,y,z: 100.721, 35.3961, -13.4031
TSOS onLayer Momentum: px,py,pz: 35.4077, 13.0609, -4.02301
Seed recHit container(beforepushback): 0
Seed recHit container size (after pushback)hitless: 0
found a hitless seed
Trying to find hitbased seed
Compatible detectors onLayer(TSOS atIP orMuSystem)(dets.size()): 2
TSOS at the detector layer before updating position(x,y,z): -0.025974, 0.0725669, -2.02218
TSOS at the detector layer before updating momentum(px,py,pz): 35.8119, 11.91, -4.02307
Updated TSOS( x,y,z) : 100.684, 35.4905, -9.92133
Updated TSOS( Px,Py,Pz) : 35.707, 13.2007, -4.49869
recHitContainer of the seed, size--> 1
Updated TSOS( x,y,z) : 99.7834, 37.8596, -9.96732
Updated TSOS( Px,Py,Pz) : 45.5317, 17.8001, -5.75834
recHitContainer of the seed, size--> 1
Updated TSOS( x,y,z) : 99.264, 39.2263, -9.99385
Updated TSOS( Px,Py,Pz) : 54.2271, 21.8713, -6.87322
recHitContainer of the seed, size--> 1
Layer count after running the FindSeed: 1
Number of seeds created on this TOB layer (Along, Opposite): 4
Running to produce seed over the TOB layer number: 2
Layer count before running the FindSeed: 1
Entering the FindSeedFunction .....
Trying to find hitbased seed
Compatible detectors onLayer(TSOS atIP orMuSystem)(dets.size()): 1
TSOS at the detector layer before updating position(x,y,z): -0.025974, 0.0725669, -2.02218
TSOS at the detector layer before updating momentum(px,py,pz): 35.8119, 11.91, -4.02307
Updated TSOS( x,y,z) : 89.2625, 31.2475, -9.67305
Updated TSOS( Px,Py,Pz) : 35.6315, 13.0105, -4.34932
recHitContainer of the seed, size--> 1
Updated TSOS( x,y,z) : 89.2134, 31.3873, -9.676
Updated TSOS( Px,Py,Pz) : 36.158, 13.2523, -4.41478
recHitContainer of the seed, size--> 1
Layer count after running the FindSeed: 2
Number of seeds created on this TOB layer (Along, Opposite): 2
Running to produce seed over the TOB layer number: 3
Layer count before running the FindSeed: 2
Entering the FindSeedFunction .....
Layer count after running the FindSeed: 2
Number of seeds created on this TOB layer (Along, Opposite): 0
Running to produce seed over the TOB layer number: 4
Layer count before running the FindSeed: 2
Entering the FindSeedFunction .....
Layer count after running the FindSeed: 2
Number of seeds created on this TOB layer (Along, Opposite): 0
Running to produce seed over the TOB layer number: 5
Layer count before running the FindSeed: 2
Entering the FindSeedFunction .....
Layer count after running the FindSeed: 2
Number of seeds created on this TOB layer (Along, Opposite): 0
Running to produce seed over the TOB layer number: 6
Layer count before running the FindSeed: 2
Entering the FindSeedFunction .....
Layer count after running the FindSeed: 2
Number of seeds created on this TOB layer (Along, Opposite): 0
UseBoth true: so Trying to produce seed with tsosMuonSystem in TOB.............................
Running to produce seed over the TOB layer number: 1
Layer count before running the FindSeed: 2
Entering the FindSeedFunction .....
Trying to find hitless seed
Compatible detectors with TSOS(IP or MuSystem)(dets.size()): 0
Trying to find hitbased seed
Compatible detectors onLayer(TSOS atIP orMuSystem)(dets.size()): 0
TSOS at the detector layer before updating position(x,y,z): 387.802, 155.657, -46.5203
TSOS at the detector layer before updating momentum(px,py,pz): 30.4518, 13.5479, -3.52101
Layer count after running the FindSeed: 2
Number of seeds created on this TOB layer (Opposite, Opposite): 0
Running to produce seed over the TOB layer number: 2
Layer count before running the FindSeed: 2
Entering the FindSeedFunction .....
Trying to find hitless seed
Compatible detectors with TSOS(IP or MuSystem)(dets.size()): 0
Trying to find hitbased seed
Compatible detectors onLayer(TSOS atIP orMuSystem)(dets.size()): 0
TSOS at the detector layer before updating position(x,y,z): 387.802, 155.657, -46.5203
TSOS at the detector layer before updating momentum(px,py,pz): 30.4518, 13.5479, -3.52101
Layer count after running the FindSeed: 2
Number of seeds created on this TOB layer (Opposite, Opposite): 0
Running to produce seed over the TOB layer number: 3
Layer count before running the FindSeed: 2
Entering the FindSeedFunction .....
Trying to find hitless seed
Compatible detectors with TSOS(IP or MuSystem)(dets.size()): 0
Trying to find hitbased seed
Compatible detectors onLayer(TSOS atIP orMuSystem)(dets.size()): 0
TSOS at the detector layer before updating position(x,y,z): 387.802, 155.657, -46.5203
TSOS at the detector layer before updating momentum(px,py,pz): 30.4518, 13.5479, -3.52101
Layer count after running the FindSeed: 2
Number of seeds created on this TOB layer (Opposite, Opposite): 0
Running to produce seed over the TOB layer number: 4
Layer count before running the FindSeed: 2
Entering the FindSeedFunction .....
Trying to find hitless seed
Compatible detectors with TSOS(IP or MuSystem)(dets.size()): 0
Trying to find hitbased seed
Compatible detectors onLayer(TSOS atIP orMuSystem)(dets.size()): 0
TSOS at the detector layer before updating position(x,y,z): 387.802, 155.657, -46.5203
TSOS at the detector layer before updating momentum(px,py,pz): 30.4518, 13.5479, -3.52101
Layer count after running the FindSeed: 2
Number of seeds created on this TOB layer (Opposite, Opposite): 0
Running to produce seed over the TOB layer number: 5
Layer count before running the FindSeed: 2
Entering the FindSeedFunction .....
Trying to find hitless seed
Compatible detectors with TSOS(IP or MuSystem)(dets.size()): 0
Trying to find hitbased seed
Compatible detectors onLayer(TSOS atIP orMuSystem)(dets.size()): 0
TSOS at the detector layer before updating position(x,y,z): 387.802, 155.657, -46.5203
TSOS at the detector layer before updating momentum(px,py,pz): 30.4518, 13.5479, -3.52101
Layer count after running the FindSeed: 2
Number of seeds created on this TOB layer (Opposite, Opposite): 0
Running to produce seed over the TOB layer number: 6
Layer count before running the FindSeed: 2
Entering the FindSeedFunction .....
Trying to find hitless seed
Compatible detectors with TSOS(IP or MuSystem)(dets.size()): 0
Trying to find hitbased seed
Compatible detectors onLayer(TSOS atIP orMuSystem)(dets.size()): 0
TSOS at the detector layer before updating position(x,y,z): 387.802, 155.657, -46.5203
TSOS at the detector layer before updating momentum(px,py,pz): 30.4518, 13.5479, -3.52101
Layer count after running the FindSeed: 2
Number of seeds created on this TOB layer (Opposite, Opposite): 0
Num of seeds made for this l2 muon number-> 1 : 6
Printing Information of the L2 muon number: 2
L2muon ( pt, eta, phi ): 40.7806 , -1.07309 , -2.65576
L2muon ( px, py, pz ): -36.0616 , -19.0425 , -52.6572
R,Z position of OuterTrackerstate inside:
R position: 112
z porition: -143.911
R,Z position of OuterTrackerstate Outside
R position: 112
z porition: -143.773
Starting to produce seeds in TOB, TEC+ and TEC- detector layers....
Trying to produce seed with tsosAtIP in TOB.........................................
Running to produce seed over the TOB layer number: 1
Layer count before running the FindSeed: 0
Entering the FindSeedFunction .....
Trying to find hitless seed
Compatible detectors with TSOS(IP or MuSystem)(dets.size()): 0
Trying to find hitbased seed
Compatible detectors onLayer(TSOS atIP orMuSystem)(dets.size()): 0
TSOS at the detector layer before updating position(x,y,z): -0.0229053, 0.0656499, 0.725379
TSOS at the detector layer before updating momentum(px,py,pz): -36.0616, -19.0425, -52.6572
Layer count after running the FindSeed: 0
Number of seeds created on this TOB layer (Along, Opposite): 0
Running to produce seed over the TOB layer number: 2
Layer count before running the FindSeed: 0
Entering the FindSeedFunction .....
Trying to find hitless seed
Compatible detectors with TSOS(IP or MuSystem)(dets.size()): 0
Trying to find hitbased seed
Compatible detectors onLayer(TSOS atIP orMuSystem)(dets.size()): 0
TSOS at the detector layer before updating position(x,y,z): -0.0229053, 0.0656499, 0.725379
TSOS at the detector layer before updating momentum(px,py,pz): -36.0616, -19.0425, -52.6572
Layer count after running the FindSeed: 0
Number of seeds created on this TOB layer (Along, Opposite): 0
Running to produce seed over the TOB layer number: 3
Layer count before running the FindSeed: 0
Entering the FindSeedFunction .....
Trying to find hitless seed
Compatible detectors with TSOS(IP or MuSystem)(dets.size()): 1
detOnLayer: 0x7f7d6867b6c0
TSOS onLayer Position: x,y,z: -75.5752, -38.6878, -108.918
TSOS onLayer Momentum: px,py,pz: -36.5021, -18.1781, -52.6539
Seed recHit container(beforepushback): 0
Seed recHit container size (after pushback)hitless: 0
found a hitless seed
Trying to find hitbased seed
Compatible detectors onLayer(TSOS atIP orMuSystem)(dets.size()): 1
TSOS at the detector layer before updating position(x,y,z): -0.0229053, 0.0656499, 0.725379
TSOS at the detector layer before updating momentum(px,py,pz): -36.0616, -19.0425, -52.6572
Updated TSOS( x,y,z) : -75.7956, -38.2289, -100.825
Updated TSOS( Px,Py,Pz) : -44.5914, -22.0437, -65.7583
recHitContainer of the seed, size--> 1
Updated TSOS( x,y,z) : -77.1454, -35.4089, -101.315
Updated TSOS( Px,Py,Pz) : -799.983, -374.18, -1162.29
recHitContainer of the seed, size--> 1
Layer count after running the FindSeed: 1
Number of seeds created on this TOB layer (Along, Opposite): 3
Running to produce seed over the TOB layer number: 4
Layer count before running the FindSeed: 1
Entering the FindSeedFunction .....
Trying to find hitbased seed
Compatible detectors onLayer(TSOS atIP orMuSystem)(dets.size()): 1
TSOS at the detector layer before updating position(x,y,z): -0.0229053, 0.0656499, 0.725379
TSOS at the detector layer before updating momentum(px,py,pz): -36.0616, -19.0425, -52.6572
Updated TSOS( x,y,z) : -71.0897, -36.5442, -99.5706
Updated TSOS( Px,Py,Pz) : -36.0638, -18.0596, -52.5361
recHitContainer of the seed, size--> 1
Updated TSOS( x,y,z) : -70.2863, -38.1658, -99.2815
Updated TSOS( Px,Py,Pz) : -23.6487, -12.2412, -34.7637
recHitContainer of the seed, size--> 1
Updated TSOS( x,y,z) : -72.1667, -34.3704, -99.9581
Updated TSOS( Px,Py,Pz) : -116.471, -55.7339, -167.634
recHitContainer of the seed, size--> 1
Layer count after running the FindSeed: 2
Number of seeds created on this TOB layer (Along, Opposite): 3
Running to produce seed over the TOB layer number: 5
Layer count before running the FindSeed: 2
Entering the FindSeedFunction .....
Layer count after running the FindSeed: 2
Number of seeds created on this TOB layer (Along, Opposite): 0
Running to produce seed over the TOB layer number: 6
Layer count before running the FindSeed: 2
Entering the FindSeedFunction .....
Layer count after running the FindSeed: 2
Number of seeds created on this TOB layer (Along, Opposite): 0
UseBoth true: so Trying to produce seed with tsosMuonSystem in TOB.............................
Running to produce seed over the TOB layer number: 1
Layer count before running the FindSeed: 2
Entering the FindSeedFunction .....
Trying to find hitless seed
Compatible detectors with TSOS(IP or MuSystem)(dets.size()): 0
Trying to find hitbased seed
Compatible detectors onLayer(TSOS atIP orMuSystem)(dets.size()): 0
TSOS at the detector layer before updating position(x,y,z): -377.45, -173.588, -535.932
TSOS at the detector layer before updating momentum(px,py,pz): -41.389, -17.522, -58.0608
Layer count after running the FindSeed: 2
Number of seeds created on this TOB layer (Opposite, Opposite): 0
Running to produce seed over the TOB layer number: 2
Layer count before running the FindSeed: 2
Entering the FindSeedFunction .....
Trying to find hitless seed
Compatible detectors with TSOS(IP or MuSystem)(dets.size()): 0
Trying to find hitbased seed
Compatible detectors onLayer(TSOS atIP orMuSystem)(dets.size()): 0
TSOS at the detector layer before updating position(x,y,z): -377.45, -173.588, -535.932
TSOS at the detector layer before updating momentum(px,py,pz): -41.389, -17.522, -58.0608
Layer count after running the FindSeed: 2
Number of seeds created on this TOB layer (Opposite, Opposite): 0
Running to produce seed over the TOB layer number: 3
Layer count before running the FindSeed: 2
Entering the FindSeedFunction .....
Trying to find hitless seed
Compatible detectors with TSOS(IP or MuSystem)(dets.size()): 0
Trying to find hitbased seed
Compatible detectors onLayer(TSOS atIP orMuSystem)(dets.size()): 0
TSOS at the detector layer before updating position(x,y,z): -377.45, -173.588, -535.932
TSOS at the detector layer before updating momentum(px,py,pz): -41.389, -17.522, -58.0608
Layer count after running the FindSeed: 2
Number of seeds created on this TOB layer (Opposite, Opposite): 0
Running to produce seed over the TOB layer number: 4
Layer count before running the FindSeed: 2
Entering the FindSeedFunction .....
Trying to find hitless seed
Compatible detectors with TSOS(IP or MuSystem)(dets.size()): 0
Trying to find hitbased seed
Compatible detectors onLayer(TSOS atIP orMuSystem)(dets.size()): 0
TSOS at the detector layer before updating position(x,y,z): -377.45, -173.588, -535.932
TSOS at the detector layer before updating momentum(px,py,pz): -41.389, -17.522, -58.0608
Layer count after running the FindSeed: 2
Number of seeds created on this TOB layer (Opposite, Opposite): 0
Running to produce seed over the TOB layer number: 5
Layer count before running the FindSeed: 2
Entering the FindSeedFunction .....
Trying to find hitless seed
Compatible detectors with TSOS(IP or MuSystem)(dets.size()): 0
Trying to find hitbased seed
Compatible detectors onLayer(TSOS atIP orMuSystem)(dets.size()): 0
TSOS at the detector layer before updating position(x,y,z): -377.45, -173.588, -535.932
TSOS at the detector layer before updating momentum(px,py,pz): -41.389, -17.522, -58.0608
Layer count after running the FindSeed: 2
Number of seeds created on this TOB layer (Opposite, Opposite): 0
Running to produce seed over the TOB layer number: 6
Layer count before running the FindSeed: 2
Entering the FindSeedFunction .....
Trying to find hitless seed
Compatible detectors with TSOS(IP or MuSystem)(dets.size()): 0
Trying to find hitbased seed
Compatible detectors onLayer(TSOS atIP orMuSystem)(dets.size()): 0
TSOS at the detector layer before updating position(x,y,z): -377.45, -173.588, -535.932
TSOS at the detector layer before updating momentum(px,py,pz): -41.389, -17.522, -58.0608
Layer count after running the FindSeed: 2
Number of seeds created on this TOB layer (Opposite, Opposite): 0
Trying to produce seed with tsosAtIP in TEC- ..........................................
Running to produce seed over the TEC- layer number: 1
Layer count before running the FindSeed: 0
Entering the FindSeedFunction .....
Trying to find hitless seed
Compatible detectors with TSOS(IP or MuSystem)(dets.size()): 0
Trying to find hitbased seed
Compatible detectors onLayer(TSOS atIP orMuSystem)(dets.size()): 0
TSOS at the detector layer before updating position(x,y,z): -0.0229053, 0.0656499, 0.725379
TSOS at the detector layer before updating momentum(px,py,pz): -36.0616, -19.0425, -52.6572
Layer count after running the FindSeed: 0
Number of seeds created on this TOB layer (Opposite, Opposite): 0
Running to produce seed over the TEC- layer number: 2
Layer count before running the FindSeed: 0
Entering the FindSeedFunction .....
Trying to find hitless seed
Compatible detectors with TSOS(IP or MuSystem)(dets.size()): 0
Trying to find hitbased seed
Compatible detectors onLayer(TSOS atIP orMuSystem)(dets.size()): 0
TSOS at the detector layer before updating position(x,y,z): -0.0229053, 0.0656499, 0.725379
TSOS at the detector layer before updating momentum(px,py,pz): -36.0616, -19.0425, -52.6572
Layer count after running the FindSeed: 0
Number of seeds created on this TOB layer (Opposite, Opposite): 0
Running to produce seed over the TEC- layer number: 3
Layer count before running the FindSeed: 0
Entering the FindSeedFunction .....
Trying to find hitless seed
Compatible detectors with TSOS(IP or MuSystem)(dets.size()): 0
Trying to find hitbased seed
Compatible detectors onLayer(TSOS atIP orMuSystem)(dets.size()): 0
TSOS at the detector layer before updating position(x,y,z): -0.0229053, 0.0656499, 0.725379
TSOS at the detector layer before updating momentum(px,py,pz): -36.0616, -19.0425, -52.6572
Layer count after running the FindSeed: 0
Number of seeds created on this TOB layer (Opposite, Opposite): 0
Running to produce seed over the TEC- layer number: 4
Layer count before running the FindSeed: 0
Entering the FindSeedFunction .....
Trying to find hitless seed
Compatible detectors with TSOS(IP or MuSystem)(dets.size()): 0
Trying to find hitbased seed
Compatible detectors onLayer(TSOS atIP orMuSystem)(dets.size()): 0
TSOS at the detector layer before updating position(x,y,z): -0.0229053, 0.0656499, 0.725379
TSOS at the detector layer before updating momentum(px,py,pz): -36.0616, -19.0425, -52.6572
Layer count after running the FindSeed: 0
Number of seeds created on this TOB layer (Opposite, Opposite): 0
Running to produce seed over the TEC- layer number: 5
Layer count before running the FindSeed: 0
Entering the FindSeedFunction .....
Trying to find hitless seed
Compatible detectors with TSOS(IP or MuSystem)(dets.size()): 0
Trying to find hitbased seed
Compatible detectors onLayer(TSOS atIP orMuSystem)(dets.size()): 0
TSOS at the detector layer before updating position(x,y,z): -0.0229053, 0.0656499, 0.725379
TSOS at the detector layer before updating momentum(px,py,pz): -36.0616, -19.0425, -52.6572
Layer count after running the FindSeed: 0
Number of seeds created on this TOB layer (Opposite, Opposite): 0
Running to produce seed over the TEC- layer number: 6
Layer count before running the FindSeed: 0
Entering the FindSeedFunction .....
Trying to find hitless seed
Compatible detectors with TSOS(IP or MuSystem)(dets.size()): 0
Trying to find hitbased seed
Compatible detectors onLayer(TSOS atIP orMuSystem)(dets.size()): 1
TSOS at the detector layer before updating position(x,y,z): -0.0229053, 0.0656499, 0.725379
TSOS at the detector layer before updating momentum(px,py,pz): -36.0616, -19.0425, -52.6572
Updated TSOS( x,y,z) : -100.171, -54.028, -176.386