-
Notifications
You must be signed in to change notification settings - Fork 0
/
PrintMessage.dat
2000 lines (1934 loc) · 97.3 KB
/
PrintMessage.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 2573115, LumiSection 1001 at 28-Feb-2018 02:09:30.143 CET
Num L2 muons: 2
Information of this muon :
L2 pt, eta, phi: 44.6896 , -0.650336 , -1.25927
OuterTracker State Inside: global parameters
x = 32.7966 -107.091 -72.6223
p = 12.4735 -42.9136 -31.1557
global error
9.67553e-07 4.95574e-08 -2.36374e-07 4.93734e-05 -9.71081e-06
4.95574e-08 1.30258e-05 -2.39485e-07 -6.33334e-05 -0.00161891
-2.36374e-07 -2.39485e-07 2.6019e-06 0.000229739 3.40294e-05
4.93734e-05 -6.33334e-05 0.000229739 0.0348295 0.0114869
-9.71081e-06 -0.00161891 3.40294e-05 0.0114869 0.409689
local parameters (q/p,v',w',v,w)
0.0183561 -0.0143104 -0.697229 0 0
local error
9.67553e-07 -2.37658e-07 7.12804e-08 4.93784e-05 -1.13452e-05
-2.37658e-07 2.62329e-06 -6.81002e-07 0.000231611 0.000116678
7.12804e-08 -6.81002e-07 2.87566e-05 -9.18239e-05 -0.00293274
4.93784e-05 0.000231611 -9.18239e-05 0.0348366 0.0143518
-1.13452e-05 0.000116678 -0.00293274 0.0143518 0.609093
Defined at beforeSurface
Magnetic field in inverse GeV: (-1.4887e-05,4.86104e-05,0.0114278)
OuterTracker State Outside: global parameters
x = 32.9519 -107.043 -72.4535
p = 12.6011 -43.5739 -31.6718
global error
2.66444e-06 -6.16297e-09 8.01853e-06 -0.000828955 -4.97942e-06
-6.16297e-09 1.39925e-05 -6.71088e-09 2.88315e-05 -0.00223272
8.01853e-06 -6.71088e-09 4.34561e-05 -0.00468122 -4.56928e-05
-0.000828955 2.88315e-05 -0.00468122 0.605642 -0.00118415
-4.97942e-06 -0.00223272 -4.56928e-05 -0.00118415 0.543425
local parameters (q/p,v',w',v,w)
0.0180758 -0.0171237 -0.698344 0 0
local error
2.66444e-06 8.0166e-06 8.66668e-08 -0.000829076 -1.59845e-05
8.0166e-06 4.34394e-05 3.17323e-08 -0.00468084 -1.63809e-05
8.66668e-08 3.17323e-08 3.09658e-05 -1.30573e-05 -0.00405104
-0.000829076 -0.00468084 -1.30573e-05 0.60582 0.00579796
-1.59845e-05 -1.63809e-05 -0.00405104 0.00579796 0.808419
Defined at afterSurface
Magnetic field in inverse GeV: (-1.49255e-05,4.84848e-05,0.0114279)
R,Z position of OuterTrackerstate inside:
R position: 112
z porition: -72.6223
R,Z position of OuterTrackerstate Outside
R position: 112
z porition: -72.4535
finding compatibility of the two TSOSs
ChiSquare 5 pars: 0.587033
DR momentum: 0.00162666
DR position: 0.00192448
GlobalDistance 0.234217
Num of seeds for this l2 muon: 7
Information of this muon :
L2 pt, eta, phi: 46.8275 , -0.179277 , 1.89398
OuterTracker State Inside: global parameters
x = -33.756 106.792 -16.7498
p = -13.6541 44.7926 -8.44011
global error
4.94534e-08 8.66806e-08 -2.22118e-07 -3.76646e-05 5.55337e-05
8.66806e-08 2.16565e-05 -1.24022e-07 5.32169e-05 0.013718
-2.22118e-07 -1.24022e-07 1.01892e-06 0.000180823 -8.16795e-05
-3.76646e-05 5.32169e-05 0.000180823 0.0354659 0.0330686
5.55337e-05 0.013718 -8.16795e-05 0.0330686 8.69106
local parameters (q/p,v',w',v,w)
0.0210163 -0.010271 -0.180248 0 0
local error
4.94534e-08 -2.19825e-07 8.90943e-08 -3.76666e-05 5.63588e-05
-2.19825e-07 1.02933e-06 4.8871e-07 0.000182376 0.00030069
8.90943e-08 4.8871e-07 2.30906e-05 5.52891e-05 0.0143933
-3.76666e-05 0.000182376 5.52891e-05 0.0354696 0.0336689
5.63588e-05 0.00030069 0.0143933 0.0336689 8.97352
Defined at beforeSurface
Magnetic field in inverse GeV: (4.04553e-06,-1.27986e-05,0.0114587)
OuterTracker State Outside: global parameters
x = -31.7912 107.394 -16.0048
p = -1358.15 3195.96 -629.649
global error
9.77675e-07 9.37534e-09 2.33922e-06 -0.000225226 -3.7124e-06
9.37534e-09 2.75896e-05 3.3445e-08 -4.82318e-06 -0.0112199
2.33922e-06 3.3445e-08 5.62638e-06 -0.000549465 -1.32247e-05
-0.000225226 -4.82318e-06 -0.000549465 0.0559451 0.00189547
-3.7124e-06 -0.0112199 -1.32247e-05 0.00189547 4.56432
local parameters (q/p,v',w',v,w)
0.000283351 0.114527 -0.182506 0 0
local error
9.77675e-07 2.36999e-06 -3.9149e-08 -0.000226698 9.04139e-07
2.36999e-06 5.77536e-06 -9.08806e-08 -0.000560332 7.09196e-07
-3.9149e-08 -9.08806e-08 2.98209e-05 6.51327e-06 -0.0118546
-0.000226698 -0.000560332 6.51327e-06 0.0566789 0.000769615
9.04139e-07 7.09196e-07 -0.0118546 0.000769615 4.71433
Defined at afterSurface
Magnetic field in inverse GeV: (3.6605e-06,-1.23655e-05,0.0114588)
R,Z position of OuterTrackerstate inside:
R position: 112
z porition: -16.7498
R,Z position of OuterTrackerstate Outside
R position: 112
z porition: -16.0048
finding compatibility of the two TSOSs
ChiSquare 5 pars: 43588.9
DR momentum: 0.105959
DR position: 0.0194919
GlobalDistance 2.18572
Num of seeds for this l2 muon: 7
Number of total seeds made in the event: 14
Num of Track Candidates (hltIterL3OITrackCandidates): 2
Muon NTuple starts running ....
Tight id and Isolated reco muon, pt,eta,phi: 49.8273 , -0.650131 , -1.26226
Tight id and Isolated reco muon, pt,eta,phi: 41.3212 , -0.181423 , 1.88761
Number of Reco Muon cands: 9
Num of L3OI muon cands: 1
L3 OI cand pt, eta, phi: 50.0188 : -0.650219 : -1.26228
28-Feb-2018 02:09:33 CET Closed file root://xrootd-cms.infn.it//store/mc/RunIISummer17DRStdmix/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/GEN-SIM-RAW/NZSFlatPU28to62_92X_upgrade2017_realistic_v10_ext1-v1/20003/EE609BF1-ACC9-E711-A3F7-1866DA8797A4.root
28-Feb-2018 02:09:33 CET Initiating request to open file root://eoscms.cern.ch//eos/cms/store/mc/RunIISummer17DRStdmix/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/GEN-SIM-RAW/NZSFlatPU28to62_92X_upgrade2017_realistic_v10_ext1-v1/20003/48A8AC2B-11C9-E711-B0C3-1866DA87D585.root
%MSG-w XrdAdaptorInternal: source 28-Feb-2018 02:09:34 CET PostGlobalEndLumi
Failed to open file at URL root://eoscms.cern.ch:1094//eos/cms/store/mc/RunIISummer17DRStdmix/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/GEN-SIM-RAW/NZSFlatPU28to62_92X_upgrade2017_realistic_v10_ext1-v1/20003/48A8AC2B-11C9-E711-B0C3-1866DA87D585.root.
%MSG
%MSG-w XrdAdaptorInternal: source 28-Feb-2018 02:09:34 CET PostGlobalEndLumi
Failed to open file at URL root://eoscms.cern.ch:1094//eos/cms/store/mc/RunIISummer17DRStdmix/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/GEN-SIM-RAW/NZSFlatPU28to62_92X_upgrade2017_realistic_v10_ext1-v1/20003/48A8AC2B-11C9-E711-B0C3-1866DA87D585.root?tried=.
%MSG
28-Feb-2018 02:09:34 CET Fallback request to file root://xrootd-cms.infn.it//store/mc/RunIISummer17DRStdmix/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/GEN-SIM-RAW/NZSFlatPU28to62_92X_upgrade2017_realistic_v10_ext1-v1/20003/48A8AC2B-11C9-E711-B0C3-1866DA87D585.root
%MSG-w XrdAdaptor: source 28-Feb-2018 02:09:36 CET PostGlobalEndLumi
Data is served from T2_FR_CCIN2P3 instead of original site T2_IT_Pisa
%MSG
28-Feb-2018 02:09:36 CET Successfully opened file root://xrootd-cms.infn.it//store/mc/RunIISummer17DRStdmix/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/GEN-SIM-RAW/NZSFlatPU28to62_92X_upgrade2017_realistic_v10_ext1-v1/20003/48A8AC2B-11C9-E711-B0C3-1866DA87D585.root
28-Feb-2018 02:09:38 CET Closed file root://xrootd-cms.infn.it//store/mc/RunIISummer17DRStdmix/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/GEN-SIM-RAW/NZSFlatPU28to62_92X_upgrade2017_realistic_v10_ext1-v1/20003/48A8AC2B-11C9-E711-B0C3-1866DA87D585.root
28-Feb-2018 02:09:38 CET Initiating request to open file root://eoscms.cern.ch//eos/cms/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 XrdAdaptorInternal: source 28-Feb-2018 02:09:39 CET PostGlobalEndLumi
Failed to open file at URL root://eoscms.cern.ch:1094//eos/cms/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
%MSG-w XrdAdaptorInternal: source 28-Feb-2018 02:09:39 CET PostGlobalEndLumi
Failed to open file at URL root://eoscms.cern.ch:1094//eos/cms/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?tried=.
%MSG
28-Feb-2018 02:09:39 CET Fallback request to file root://xrootd-cms.infn.it//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 28-Feb-2018 02:09:41 CET PostGlobalEndLumi
Data is served from T2_FR_CCIN2P3 instead of original site T2_IT_Pisa
%MSG
28-Feb-2018 02:09:41 CET Successfully opened file root://xrootd-cms.infn.it//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 28-Feb-2018 02:09:43.313 CET
Num L2 muons: 2
Information of this muon :
L2 pt, eta, phi: 37.7404 , -0.106398 , 0.321064
OuterTracker State Inside: global parameters
x = 105.637 37.2139 -13.9618
p = 35.3876 13.1172 -4.02307
global error
2.12139e-06 -3.30788e-10 2.04088e-07 0.000166782 -5.62123e-06
-3.30788e-10 3.17471e-05 9.92868e-08 3.38685e-05 -0.00461917
2.04088e-07 9.92868e-08 5.12932e-06 0.000548762 -1.76828e-05
0.000166782 3.38685e-05 0.000548762 0.0783092 -0.0082527
-5.62123e-06 -0.00461917 -1.76828e-05 -0.0082527 1.39724
local parameters (q/p,v',w',v,w)
-0.0263475 0.0162677 -0.106613 0 0
local error
2.12139e-06 2.05147e-07 -6.90309e-10 0.000166804 -5.9423e-06
2.05147e-07 5.14005e-06 2.4211e-07 0.000549632 -6.40129e-05
-6.90309e-10 2.4211e-07 3.24804e-05 3.33094e-05 -0.0046987
0.000166804 0.000549632 3.33094e-05 0.0783299 -0.00843637
-5.9423e-06 -6.40129e-05 -0.0046987 -0.00843637 1.41314
Defined at beforeSurface
Magnetic field in inverse GeV: (-1.07956e-05,-3.8031e-06,0.0114592)
OuterTracker State Outside: global parameters
x = 105.456 37.7223 -14.166
p = 34.0758 12.4495 -3.83499
global error
4.87433e-06 9.09207e-08 1.23661e-05 -0.00125951 -3.24872e-05
9.09207e-08 3.51714e-05 2.20418e-07 -4.58976e-05 -0.00623071
1.23661e-05 2.20418e-07 6.0188e-05 -0.00681115 -6.65727e-05
-0.00125951 -4.58976e-05 -0.00681115 0.990022 0.0126797
-3.24872e-05 -0.00623071 -6.65727e-05 0.0126797 1.70912
local parameters (q/p,v',w',v,w)
-0.0274116 0.00675759 -0.105711 0 0
local error
4.87433e-06 1.23651e-05 8.31061e-08 -0.00125953 -3.17685e-05
1.23651e-05 6.01707e-05 3.89009e-07 -0.00680992 -0.000119119
8.31061e-08 3.89009e-07 3.59629e-05 -4.15482e-05 -0.00633547
-0.00125953 -0.00680992 -4.15482e-05 0.990067 0.0120434
-3.17685e-05 -0.000119119 -0.00633547 0.0120434 1.7282
Defined at afterSurface
Magnetic field in inverse GeV: (-1.09139e-05,-3.90397e-06,0.0114592)
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
finding compatibility of the two TSOSs
ChiSquare 5 pars: 3.40151
DR momentum: 0.00477498
DR position: 0.00514475
GlobalDistance 0.576783
Num of seeds for this l2 muon: 6
Information of this muon :
L2 pt, eta, phi: 40.7806 , -1.07309 , -2.65576
OuterTracker State Inside: global parameters
x = -99.8794 -50.6764 -143.911
p = -36.6414 -17.9015 -52.6572
global error
1.41672e-06 1.69855e-07 1.41544e-07 0.000169615 -7.06709e-05
1.69855e-07 9.01724e-06 -3.23051e-07 -8.80303e-05 -0.00206375
1.41544e-07 -3.23051e-07 2.49989e-06 0.000256081 6.66642e-05
0.000169615 -8.80303e-05 0.000256081 0.0533834 0.0248987
-7.06709e-05 -0.00206375 6.66642e-05 0.0248987 0.834535
local parameters (q/p,v',w',v,w)
0.0150145 -0.0150777 -1.29138 0 0
local error
1.41672e-06 1.26916e-07 4.55568e-07 0.000169635 -0.000112116
1.26916e-07 2.57162e-06 -2.0096e-06 0.000261803 0.000410445
4.55568e-07 -2.0096e-06 6.40866e-05 -0.000229756 -0.00898751
0.000169635 0.000261803 -0.000229756 0.0533955 0.0417081
-0.000112116 0.000410445 -0.00898751 0.0417081 2.22754
Defined at beforeSurface
Magnetic field in inverse GeV: (8.65129e-05,4.38945e-05,0.0113354)
OuterTracker State Outside: global parameters
x = -99.4696 -51.4761 -143.773
p = -43.1339 -20.5785 -61.7142
global error
6.83522e-06 3.08989e-07 2.33894e-05 -0.00195497 -0.000166025
3.08989e-07 1.07121e-05 1.08043e-06 -3.66616e-05 -0.00288147
2.33894e-05 1.08043e-06 0.000102449 -0.00937377 -0.000619168
-0.00195497 -3.66616e-05 -0.00937377 0.992437 0.0321756
-0.000166025 -0.00288147 -0.000619168 0.0321756 1.10548
local parameters (q/p,v',w',v,w)
0.0128114 -0.0324174 -1.29201 0 0
local error
6.83522e-06 2.33683e-05 1.80235e-06 -0.001956 -0.000353
2.33683e-05 0.000102329 5.73938e-06 -0.00937501 -0.00106896
1.80235e-06 5.73938e-06 7.66034e-05 -0.000490134 -0.012609
-0.001956 -0.00937501 -0.000490134 0.99348 0.0941454
-0.000353 -0.00106896 -0.012609 0.0941454 2.95503
Defined at afterSurface
Magnetic field in inverse GeV: (8.60759e-05,4.45448e-05,0.0113356)
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
finding compatibility of the two TSOSs
ChiSquare 5 pars: 15.6198
DR momentum: 0.00930638
DR position: 0.00805894
GlobalDistance 0.909091
Num of seeds for this l2 muon: 7
Number of total seeds made in the event: 13
Num of Track Candidates (hltIterL3OITrackCandidates): 3
Muon NTuple starts running ....
Tight id and Isolated reco muon, pt,eta,phi: 41.9607 , -1.0687 , -2.65494
Tight id and Isolated reco muon, pt,eta,phi: 39.3014 , -0.103212 , 0.322172
Number of Reco Muon cands: 12
Num of L3OI muon cands: 1
L3 OI cand pt, eta, phi: 41.7783 : -1.06873 : -2.65493
Begin processing the 3rd record. Run 1, Event 20926171, LumiSection 8135 at 28-Feb-2018 02:09:45.099 CET
Num L2 muons: 2
Information of this muon :
L2 pt, eta, phi: 28.1785 , 2.30002 , -0.00831748
OuterTracker State Inside: global parameters
x = 55.5105 -1.02149 273.5
p = 28.1651 -0.868867 139.119
global error
9.05084e-06 -8.4056e-08 -6.34894e-06 0.000430098 -2.10219e-05
-8.4056e-08 3.1349e-06 2.95352e-07 2.91374e-05 -0.000458129
-6.34894e-06 2.95352e-07 1.5608e-05 0.000217031 -8.81469e-05
0.000430098 2.91374e-05 0.000217031 0.0538177 -0.0146268
-2.10219e-05 -0.000458129 -8.81469e-05 -0.0146268 0.309504
local parameters (q/p,v',w',v,w)
0.00704505 0.202454 -0.00624552 55.5105 -1.02149
local error
9.05084e-06 4.78085e-08 -1.28813e-06 3.47004e-05 0.000429232
4.78085e-08 3.39103e-06 -1.45693e-07 -0.000486508 -1.39698e-05
-1.28813e-06 -1.45693e-07 6.46609e-07 3.36232e-05 4.38138e-05
3.47004e-05 -0.000486508 3.36232e-05 0.322867 0.00662394
0.000429232 -1.39698e-05 4.38138e-05 0.00662394 0.053153
Defined at beforeSurface
Magnetic field in inverse GeV: (0.000100589,-1.85101e-06,0.0109773)
OuterTracker State Outside: global parameters
x = 56.036 -1.68845 273.5
p = 17.0375 -0.188257 84.7151
global error
3.59934e-05 -4.30331e-08 0.000109931 -0.00356366 7.2489e-05
-4.30331e-08 8.98251e-06 -4.67145e-07 -1.29586e-05 -0.00233721
0.000109931 -4.67145e-07 0.000510693 -0.0170477 0.000490724
-0.00356366 -1.29586e-05 -0.0170477 0.653819 -0.00752933
7.2489e-05 -0.00233721 0.000490724 -0.00752933 0.90525
local parameters (q/p,v',w',v,w)
0.0115725 0.201115 -0.00222224 56.036 -1.68845
local error
3.59934e-05 2.89067e-07 2.21085e-05 -0.000113311 -0.00356262
2.89067e-07 9.72766e-06 2.30471e-07 -0.00248158 3.01654e-06
2.21085e-05 2.30471e-07 2.06558e-05 -0.000115668 -0.00342766
-0.000113311 -0.00248158 -0.000115668 0.942004 0.00449578
-0.00356262 3.01654e-06 -0.00342766 0.00449578 0.653684
Defined at afterSurface
Magnetic field in inverse GeV: (0.00010153,-3.05926e-06,0.0109776)
R,Z position of OuterTrackerstate inside:
R position: 55.5199
z porition: 273.5
R,Z position of OuterTrackerstate Outside
R position: 55.5199
z porition: 273.5
finding compatibility of the two TSOSs
ChiSquare 5 pars: 1.01284
DR momentum: 0.0209622
DR position: 0.0150962
GlobalDistance 0.849139
Num of seeds for this l2 muon: 11
Information of this muon :
L2 pt, eta, phi: 69.6033 , 1.40791 , -2.99103
OuterTracker State Inside: global parameters
x = -110.59 -17.7162 219.425
p = -68.6124 -11.7033 133.734
global error
4.04937e-07 1.56956e-09 2.53456e-07 8.44525e-05 3.20482e-06
1.56956e-09 1.94889e-06 -1.0342e-07 -2.85276e-05 -0.000828554
2.53456e-07 -1.0342e-07 9.42083e-07 0.000103747 5.73331e-05
8.44525e-05 -2.85276e-05 0.000103747 0.0290848 0.016923
3.20482e-06 -0.000828554 5.73331e-05 0.016923 0.507019
local parameters (q/p,v',w',v,w)
-0.00663292 0.0100982 1.92148 0 0
local error
4.04937e-07 2.5406e-07 1.22938e-08 8.44568e-05 8.58034e-06
2.5406e-07 9.68306e-07 -1.00645e-06 0.000106159 0.000278792
1.22938e-08 -1.00645e-06 4.28632e-05 -0.000131795 -0.00841759
8.44568e-05 0.000106159 -0.000131795 0.0290877 0.037222
8.58034e-06 0.000278792 -0.00841759 0.037222 2.38021
Defined at beforeSurface
Magnetic field in inverse GeV: (-0.000148051,-2.37173e-05,0.0111812)
OuterTracker State Outside: global parameters
x = -110.688 -17.0957 219.872
p = -81.6791 -14.4648 159.208
global error
6.56346e-07 -9.1928e-09 1.82206e-06 -6.10502e-05 8.98487e-06
-9.1928e-09 2.307e-06 4.76195e-08 -5.58221e-06 -0.00106964
1.82206e-06 4.76195e-08 1.06879e-05 -0.000919777 -3.23534e-05
-6.10502e-05 -5.58221e-06 -0.000919777 0.135863 0.00622587
8.98487e-06 -0.00106964 -3.23534e-05 0.00622587 0.631553
local parameters (q/p,v',w',v,w)
-0.00557037 0.0220417 1.91979 0 0
local error
6.56346e-07 1.82381e-06 3.40715e-08 -6.1065e-05 1.68624e-05
1.82381e-06 1.0694e-05 9.16157e-08 -0.000919328 5.03392e-05
3.40715e-08 9.16157e-08 5.06225e-05 -6.50399e-05 -0.010844
-6.1065e-05 -0.000919328 -6.50399e-05 0.135929 0.0192265
1.68624e-05 5.03392e-05 -0.010844 0.0192265 2.95945
Defined at afterSurface
Magnetic field in inverse GeV: (-0.000148546,-2.29427e-05,0.01118)
R,Z position of OuterTrackerstate inside:
R position: 112
z porition: 219.425
R,Z position of OuterTrackerstate Outside
R position: 112
z porition: 219.872
finding compatibility of the two TSOSs
ChiSquare 5 pars: 32.3641
DR momentum: 0.00640177
DR position: 0.0058928
GlobalDistance 0.770971
Num of seeds for this l2 muon: 1
Number of total seeds made in the event: 12
Num of Track Candidates (hltIterL3OITrackCandidates): 2
Muon NTuple starts running ....
Tight id and Isolated reco muon, pt,eta,phi: 28.6025 , 2.29717 , -0.00934853
Tight id and Isolated reco muon, pt,eta,phi: 60.6129 , 1.41308 , -2.99485
Number of Reco Muon cands: 7
Num of L3OI muon cands: 1
L3 OI cand pt, eta, phi: 27.8691 : 2.29726 : -0.00905725
Begin processing the 4th record. Run 1, Event 20926211, LumiSection 8135 at 28-Feb-2018 02:09:47.146 CET
Num L2 muons: 2
Information of this muon :
L2 pt, eta, phi: 35.0101 , 2.0191 , 0.172131
OuterTracker State Inside: global parameters
x = 72.7291 13.6036 273.5
p = 34.3378 6.82781 129.515
global error
6.84438e-07 1.44788e-08 -6.05438e-07 2.79749e-05 -1.15742e-06
1.44788e-08 1.91428e-06 -1.95145e-07 -3.01098e-05 -0.000482282
-6.05438e-07 -1.95145e-07 2.8069e-06 6.49007e-05 7.1896e-05
2.79749e-05 -3.01098e-05 6.49007e-05 0.0119535 0.0130203
-1.15742e-06 -0.000482282 7.1896e-05 0.0130203 0.255079
local parameters (q/p,v',w',v,w)
-0.00745357 0.265126 0.0527181 72.7291 13.6036
local error
6.84438e-07 1.66778e-08 -1.63541e-07 -4.27982e-06 2.76715e-05
1.66778e-08 2.10769e-06 4.32004e-07 -0.000517662 -7.40967e-05
-1.63541e-07 4.32004e-07 3.01457e-07 -0.000125029 -9.67062e-07
-4.27982e-06 -0.000517662 -0.000125029 0.268922 0.0376085
2.76715e-05 -7.40967e-05 -9.67062e-07 0.0376085 0.0167497
Defined at beforeSurface
Magnetic field in inverse GeV: (0.000131219,2.45439e-05,0.0109881)
OuterTracker State Outside: global parameters
x = 72.9709 13.1424 273.5
p = 41.6947 8.72758 157.746
global error
1.27659e-06 1.44474e-08 4.15994e-06 -0.000186264 -6.76623e-06
1.44474e-08 2.76849e-06 2.29953e-07 -1.42235e-05 -0.000837224
4.15994e-06 2.29953e-07 4.03278e-05 -0.00178178 -0.000138725
-0.000186264 -1.42235e-05 -0.00178178 0.0983093 0.00967338
-6.76623e-06 -0.000837224 -0.000138725 0.00967338 0.385925
local parameters (q/p,v',w',v,w)
-0.00612008 0.264315 0.0553268 72.9709 13.1424
local error
1.27659e-06 -2.45335e-07 1.09639e-06 4.50219e-05 -0.000180877
-2.45335e-07 3.20509e-06 -1.55969e-08 -0.000922816 -7.71782e-05
1.09639e-06 -1.55969e-08 2.92312e-06 -5.17632e-05 -0.000488843
4.50219e-05 -0.000922816 -5.17632e-05 0.404833 0.0541419
-0.000180877 -7.71782e-05 -0.000488843 0.0541419 0.107545
Defined at afterSurface
Magnetic field in inverse GeV: (0.00013165,2.37108e-05,0.0109882)
R,Z position of OuterTrackerstate inside:
R position: 73.9904
z porition: 273.5
R,Z position of OuterTrackerstate Outside
R position: 73.9904
z porition: 273.5
finding compatibility of the two TSOSs
ChiSquare 5 pars: 2.7249
DR momentum: 0.0101072
DR position: 0.00700989
GlobalDistance 0.520774
Num of seeds for this l2 muon: 11
Information of this muon :
L2 pt, eta, phi: 142.422 , -0.279272 , 2.79445
OuterTracker State Inside: global parameters
x = -105.596 37.329 -33.6065
p = -134.356 47.249 -40.2934
global error
5.91752e-07 -4.63875e-08 -2.3321e-06 -0.000224037 -4.0744e-05
-4.63875e-08 2.6255e-05 9.05164e-08 -3.56416e-05 0.0194153
-2.3321e-06 9.05164e-08 9.75648e-06 0.00096755 9.75351e-05
-0.000224037 -3.56416e-05 0.00096755 0.106449 -0.0235828
-4.0744e-05 0.0194153 9.75351e-05 -0.0235828 14.5876
local parameters (q/p,v',w',v,w)
-0.00675622 0.001633 -0.282917 0 0
local error
5.91752e-07 -2.33124e-06 -4.90235e-08 -0.000224037 -4.22397e-05
-2.33124e-06 9.7595e-06 -3.65535e-07 0.000968084 -0.000230772
-4.90235e-08 -3.65535e-07 3.06266e-05 -3.89417e-05 0.0217926
-0.000224037 0.000968084 -3.89417e-05 0.106449 -0.0245576
-4.22397e-05 -0.000230772 0.0217926 -0.0245576 15.7552
Defined at beforeSurface
Magnetic field in inverse GeV: (2.36687e-05,-8.36704e-06,0.0114532)
OuterTracker State Outside: global parameters
x = -108.36 28.3252 -31.813
p = -150.792 65.5104 -46.8755
global error
8.28902e-07 1.7804e-08 1.7751e-06 -7.52669e-05 -7.71436e-06
1.7804e-08 4.34866e-05 2.97399e-08 -7.01724e-05 -0.0223526
1.7751e-06 2.97399e-08 5.87783e-06 -0.000673751 -1.09253e-05
-7.52669e-05 -7.01724e-05 -0.000673751 0.206707 0.0361008
-7.71436e-06 -0.0223526 -1.09253e-05 0.0361008 11.6994
local parameters (q/p,v',w',v,w)
-0.00584933 -0.155395 -0.288539 0 0
local error
8.28902e-07 1.81895e-06 9.91171e-08 -7.61702e-05 -1.13566e-05
1.81895e-06 6.18537e-06 7.83221e-07 -0.000701334 -0.00028062
9.91171e-08 7.83221e-07 5.2129e-05 -0.000108415 -0.0254503
-7.61702e-05 -0.000701334 -0.000108415 0.211699 0.0472582
-1.13566e-05 -0.00028062 -0.0254503 0.0472582 12.6542
Defined at afterSurface
Magnetic field in inverse GeV: (2.31053e-05,-6.0397e-06,0.011454)
R,Z position of OuterTrackerstate inside:
R position: 112
z porition: -33.6065
R,Z position of OuterTrackerstate Outside
R position: 112
z porition: -31.813
finding compatibility of the two TSOSs
ChiSquare 5 pars: 1572
DR momentum: 0.0717085
DR position: 0.0855109
GlobalDistance 9.58769
Num of seeds for this l2 muon: 7
Number of total seeds made in the event: 18
Num of Track Candidates (hltIterL3OITrackCandidates): 1
Muon NTuple starts running ....
Tight id and Isolated reco muon, pt,eta,phi: 32.7975 , 2.02143 , 0.17064
Tight id and Isolated reco muon, pt,eta,phi: 21.4214 , -0.289945 , 2.88858
Number of Reco Muon cands: 3
Num of L3OI muon cands: 1
L3 OI cand pt, eta, phi: 33.0475 : 2.0214 : 0.170774
28-Feb-2018 02:09:48 CET Closed file root://xrootd-cms.infn.it//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
28-Feb-2018 02:09:48 CET Initiating request to open file root://eoscms.cern.ch//eos/cms/store/mc/RunIISummer17DRStdmix/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/GEN-SIM-RAW/NZSFlatPU28to62_92X_upgrade2017_realistic_v10_ext1-v1/20003/84CFFDF7-EFC8-E711-AF2F-0CC47A01035C.root
%MSG-w XrdAdaptorInternal: source 28-Feb-2018 02:09:49 CET PostGlobalEndLumi
Failed to open file at URL root://eoscms.cern.ch:1094//eos/cms/store/mc/RunIISummer17DRStdmix/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/GEN-SIM-RAW/NZSFlatPU28to62_92X_upgrade2017_realistic_v10_ext1-v1/20003/84CFFDF7-EFC8-E711-AF2F-0CC47A01035C.root.
%MSG
%MSG-w XrdAdaptorInternal: source 28-Feb-2018 02:09:49 CET PostGlobalEndLumi
Failed to open file at URL root://eoscms.cern.ch:1094//eos/cms/store/mc/RunIISummer17DRStdmix/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/GEN-SIM-RAW/NZSFlatPU28to62_92X_upgrade2017_realistic_v10_ext1-v1/20003/84CFFDF7-EFC8-E711-AF2F-0CC47A01035C.root?tried=.
%MSG
28-Feb-2018 02:09:49 CET Fallback request to file root://xrootd-cms.infn.it//store/mc/RunIISummer17DRStdmix/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/GEN-SIM-RAW/NZSFlatPU28to62_92X_upgrade2017_realistic_v10_ext1-v1/20003/84CFFDF7-EFC8-E711-AF2F-0CC47A01035C.root
%MSG-w XrdAdaptor: source 28-Feb-2018 02:09:51 CET PostGlobalEndLumi
Data is served from T2_FR_CCIN2P3 instead of original site T2_IT_Pisa
%MSG
28-Feb-2018 02:09:51 CET Successfully opened file root://xrootd-cms.infn.it//store/mc/RunIISummer17DRStdmix/DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8/GEN-SIM-RAW/NZSFlatPU28to62_92X_upgrade2017_realistic_v10_ext1-v1/20003/84CFFDF7-EFC8-E711-AF2F-0CC47A01035C.root
Begin processing the 5th record. Run 1, Event 21243854, LumiSection 8259 at 28-Feb-2018 02:09:53.410 CET
Num L2 muons: 3
Information of this muon :
L2 pt, eta, phi: 43.4383 , 2.26326 , -0.0476083
OuterTracker State Inside: global parameters
x = 57.1985 -3.0942 273.5
p = 43.353 -2.72106 206.557
global error
1.54253e-06 -1.0023e-08 -8.67626e-07 7.52801e-05 5.10621e-07
-1.0023e-08 1.47859e-06 1.10505e-07 1.41877e-05 -0.000396116
-8.67626e-07 1.10505e-07 3.92733e-06 5.97492e-05 -4.28904e-05
7.52801e-05 1.41877e-05 5.97492e-05 0.0138879 -0.00639642
5.10621e-07 -0.000396116 -4.28904e-05 -0.00639642 0.222582
local parameters (q/p,v',w',v,w)
0.00473765 0.209884 -0.0131734 57.1985 -3.0942
local error
1.54253e-06 -9.83854e-10 -1.82755e-07 4.19494e-06 7.5165e-05
-9.83854e-10 1.6037e-06 -1.13116e-07 -0.000421355 1.24191e-05
-1.82755e-07 -1.13116e-07 1.82212e-07 3.59516e-05 1.12244e-05
4.19494e-06 -0.000421355 3.59516e-05 0.232385 -0.00717773
7.5165e-05 1.24191e-05 1.12244e-05 -0.00717773 0.0139282
Defined at beforeSurface
Magnetic field in inverse GeV: (0.000103611,-5.6049e-06,0.0109782)
OuterTracker State Outside: global parameters
x = 57.1748 -3.2359 273.5
p = 37.9935 -2.2256 180.939
global error
3.79248e-06 3.05424e-09 1.19509e-05 -0.000420129 1.01141e-06
3.05424e-09 2.50086e-06 -7.35745e-08 -7.15988e-07 -0.000834366
1.19509e-05 -7.35745e-08 7.56004e-05 -0.00283318 6.39314e-05
-0.000420129 -7.15988e-07 -0.00283318 0.129296 -0.00124828
1.01141e-06 -0.000834366 6.39314e-05 -0.00124828 0.401391
local parameters (q/p,v',w',v,w)
0.00540838 0.209979 -0.0123003 57.1748 -3.2359
local error
3.79248e-06 1.43816e-07 2.50964e-06 -2.56002e-05 -0.00041935
1.43816e-07 2.7313e-06 5.42864e-08 -0.000890158 1.7983e-05
2.50964e-06 5.42864e-08 3.34058e-06 2.46468e-06 -0.000596121
-2.56002e-05 -0.000890158 2.46468e-06 0.418308 -0.0156543
-0.00041935 1.7983e-05 -0.000596121 -0.0156543 0.130138
Defined at afterSurface
Magnetic field in inverse GeV: (0.000103568,-5.8616e-06,0.0109782)
R,Z position of OuterTrackerstate inside:
R position: 57.2821
z porition: 273.5
R,Z position of OuterTrackerstate Outside
R position: 57.2821
z porition: 273.5
finding compatibility of the two TSOSs
ChiSquare 5 pars: 0.221395
DR momentum: 0.00417621
DR position: 0.00250778
GlobalDistance 0.143666
Num of seeds for this l2 muon: 11
Information of this muon :
L2 pt, eta, phi: 38.4196 , 0.578342 , 1.46422
OuterTracker State Inside: global parameters
x = 10.0267 111.55 79.1069
p = 2.81297 38.3165 23.4792
global error
1.4841e-06 9.28984e-08 -2.41656e-07 8.82448e-05 -2.02027e-05
9.28984e-08 1.96147e-05 -3.61554e-07 -9.763e-05 -0.00247012
-2.41656e-07 -3.61554e-07 3.644e-06 0.000347622 5.23192e-05
8.82448e-05 -9.763e-05 0.000347622 0.0513482 0.0175621
-2.02027e-05 -0.00247012 5.23192e-05 0.0175621 0.610926
local parameters (q/p,v',w',v,w)
-0.0222094 0.0163624 0.611208 0 0
local error
1.4841e-06 -2.44417e-07 1.25167e-07 8.82566e-05 -2.27942e-05
-2.44417e-07 3.68015e-06 -9.85466e-07 0.000350728 0.000175682
1.25167e-07 -9.85466e-07 3.69916e-05 -0.000130621 -0.00397613
8.82566e-05 0.000350728 -0.000130621 0.0513619 0.0210982
-2.27942e-05 0.000175682 -0.00397613 0.0210982 0.839509
Defined at beforeSurface
Magnetic field in inverse GeV: (4.71907e-06,5.25014e-05,0.0114252)
OuterTracker State Outside: global parameters
x = 9.91284 111.561 79.5993
p = 2.82847 37.8916 23.1036
global error
4.17083e-06 1.79313e-08 1.22748e-05 -0.00129629 -2.04892e-05
1.79313e-08 2.12353e-05 6.17284e-08 4.18706e-05 -0.00331154
1.22748e-05 6.17284e-08 6.2698e-05 -0.0068376 -0.000102152
-0.00129629 4.18706e-05 -0.0068376 0.884044 0.000405753
-2.04892e-05 -0.00331154 -0.000102152 0.000405753 0.773295
local parameters (q/p,v',w',v,w)
-0.0224873 0.0141154 0.608096 0 0
local error
4.17083e-06 1.22685e-05 1.29849e-07 -0.00129642 -3.5105e-05
1.22685e-05 6.2652e-05 -8.42745e-08 -0.00683584 -3.72361e-05
1.29849e-07 -8.42745e-08 3.98412e-05 -1.30178e-06 -0.00530885
-0.00129642 -0.00683584 -1.30178e-06 0.88422 0.00806314
-3.5105e-05 -3.72361e-05 -0.00530885 0.00806314 1.05926
Defined at afterSurface
Magnetic field in inverse GeV: (4.69353e-06,5.28221e-05,0.0114247)
R,Z position of OuterTrackerstate inside:
R position: 112
z porition: 79.1069
R,Z position of OuterTrackerstate Outside
R position: 112
z porition: 79.5993
finding compatibility of the two TSOSs
ChiSquare 5 pars: 0.555199
DR momentum: 0.00290949
DR position: 0.00372487
GlobalDistance 0.505467
Num of seeds for this l2 muon: 7
Information of this muon :
L2 pt, eta, phi: 12.5913 , 1.0288 , -2.53824
OuterTracker State Inside: global parameters
x = -88.918 -68.0998 138.234
p = -9.58928 -8.16008 15.3632
global error
1.20995e-05 1.19968e-06 3.39289e-07 0.00137519 -0.000304617
1.19968e-06 6.61642e-05 -6.4701e-06 -0.00155113 -0.00632395
3.39289e-07 -6.4701e-06 3.89629e-05 0.00448993 0.000858665
0.00137519 -0.00155113 0.00448993 0.706686 0.381088
-0.000304617 -0.00632395 0.000858665 0.381088 3.48822
local parameters (q/p,v',w',v,w)
-0.050343 0.0515139 1.22176 0 0
local error
1.20995e-05 1.92723e-07 3.0016e-06 0.00137701 -0.000394119
1.92723e-07 4.24746e-05 -2.45856e-05 0.0048046 0.00549694
3.0016e-06 -2.45856e-05 0.000407621 -0.0035687 -0.0247558
0.00137701 0.0048046 -0.0035687 0.708561 0.646469
-0.000394119 0.00549694 -0.0247558 0.646469 8.75966
Defined at beforeSurface
Magnetic field in inverse GeV: (-7.21306e-05,-5.52428e-05,0.0113507)
OuterTracker State Outside: global parameters
x = -88.3445 -68.8422 139.115
p = -9.41389 -7.84577 14.89
global error
2.64211e-05 1.00926e-06 9.87895e-05 -0.00884193 -0.00069289
1.00926e-06 0.00016699 4.69876e-06 0.00209649 -0.0378881
9.87895e-05 4.69876e-06 0.000742144 -0.0788671 -0.00580194
-0.00884193 0.00209649 -0.0788671 10.3692 -0.133384
-0.00069289 -0.0378881 -0.00580194 -0.133384 11.9802
local parameters (q/p,v',w',v,w)
-0.0518553 0.0328458 1.2157 0 0
local error
2.64211e-05 9.81383e-05 6.41463e-06 -0.00884669 -0.00144323
9.81383e-05 0.000736773 -2.53434e-05 -0.0787766 0.00107499
6.41463e-06 -2.53434e-05 0.00102185 0.00205513 -0.147465
-0.00884669 -0.0787766 0.00205513 10.3804 0.20404
-0.00144323 0.00107499 -0.147465 0.20404 29.6668
Defined at afterSurface
Magnetic field in inverse GeV: (-7.21249e-05,-5.62032e-05,0.0113493)
R,Z position of OuterTrackerstate inside:
R position: 112
z porition: 138.234
R,Z position of OuterTrackerstate Outside
R position: 112
z porition: 139.115
finding compatibility of the two TSOSs
ChiSquare 5 pars: 1.42293
DR momentum: 0.0107557
DR position: 0.00972724
GlobalDistance 1.28732
Num of seeds for this l2 muon: 9
Number of total seeds made in the event: 27
Num of Track Candidates (hltIterL3OITrackCandidates): 6
Muon NTuple starts running ....
Tight id and Isolated reco muon, pt,eta,phi: 47.0343 , 2.25375 , -0.0487461
Tight id and Isolated reco muon, pt,eta,phi: 35.8944 , 0.588405 , 1.46119
Number of Reco Muon cands: 10
Num of L3OI muon cands: 3
L3 OI cand pt, eta, phi: 46.3574 : 2.25258 : -0.048647
L3 OI cand pt, eta, phi: 78.8853 : 0.492818 : 1.50831
L3 OI cand pt, eta, phi: 12.6209 : 1.00795 : -2.54421
Begin processing the 6th record. Run 1, Event 21244063, LumiSection 8259 at 28-Feb-2018 02:09:55.544 CET
Num L2 muons: 2
Information of this muon :
L2 pt, eta, phi: 37.8276 , 0.970102 , -2.26012
OuterTracker State Inside: global parameters
x = -69.8173 -87.5759 131.629
p = -23.0574 -29.9881 42.7295
global error
7.45732e-07 9.56603e-08 8.24341e-08 7.71816e-05 -3.54102e-05
9.56603e-08 5.40492e-06 -2.03253e-07 -5.621e-05 -0.00127152
8.24341e-08 -2.03253e-07 1.54619e-06 0.000141906 4.27862e-05
7.71816e-05 -5.621e-05 0.000141906 0.0288926 0.0178908
-3.54102e-05 -0.00127152 4.27862e-05 0.0178908 0.53679
local parameters (q/p,v',w',v,w)
-0.017523 0.0175661 1.12976 0 0
local error
7.45732e-07 7.49665e-08 2.19238e-07 7.71936e-05 -5.18894e-05
7.49665e-08 1.59446e-06 -1.07732e-06 0.000146113 0.000248207
2.19238e-07 -1.07732e-06 2.79623e-05 -0.000125071 -0.00436411
7.71936e-05 0.000146113 -0.000125071 0.0289015 0.0275681
-5.18894e-05 0.000248207 -0.00436411 0.0275681 1.2228
Defined at beforeSurface
Magnetic field in inverse GeV: (-5.39293e-05,-6.76467e-05,0.011361)
OuterTracker State Outside: global parameters
x = -71.9521 -85.8307 131.243
p = -40.551 -55.9555 77.9853
global error
1.07447e-05 1.53829e-07 3.58997e-05 -0.00332072 -7.93305e-05
1.53829e-07 5.88408e-06 5.39857e-07 -3.27627e-05 -0.00160134
3.58997e-05 5.39857e-07 0.000129958 -0.0123164 -0.000292729
-0.00332072 -3.27627e-05 -0.0123164 1.23313 0.0213364
-7.93305e-05 -0.00160134 -0.000292729 0.0213364 0.636378
local parameters (q/p,v',w',v,w)
-0.00959716 0.0706694 1.13133 0 0
local error
1.07447e-05 3.60308e-05 3.21692e-06 -0.003329 -0.00038445
3.60308e-05 0.00013091 1.12023e-05 -0.0123918 -0.00131138
3.21692e-06 1.12023e-05 3.15197e-05 -0.00106065 -0.00561344
-0.003329 -0.0123918 -0.00106065 1.23929 0.130841
-0.00038445 -0.00131138 -0.00561344 0.130841 1.45981
Defined at afterSurface
Magnetic field in inverse GeV: (-5.54159e-05,-6.61049e-05,0.0113616)
R,Z position of OuterTrackerstate inside:
R position: 112
z porition: 131.629
R,Z position of OuterTrackerstate Outside
R position: 112
z porition: 131.243
finding compatibility of the two TSOSs
ChiSquare 5 pars: 258.531
DR momentum: 0.0283766
DR position: 0.0247215
GlobalDistance 2.7843
Num of seeds for this l2 muon: 8
Information of this muon :
L2 pt, eta, phi: 23.1072 , -0.976814 , 0.334133
OuterTracker State Inside: global parameters
x = 106.761 33.8548 -127.668
p = 22.2153 6.35793 -26.3362
global error
4.20871e-06 3.9496e-07 -4.85851e-07 0.000389776 -0.000113487
3.9496e-07 3.57139e-05 -1.83802e-06 -0.000514959 -0.00542352
-4.85851e-07 -1.83802e-06 1.40924e-05 0.00150476 0.000332519
0.000389776 -0.000514959 0.00150476 0.223233 0.141538
-0.000113487 -0.00542352 0.000332519 0.141538 2.34476
local parameters (q/p,v',w',v,w)
0.0285419 -0.0283419 -1.14019 0 0
local error
4.20871e-06 -5.22467e-07 8.91489e-07 0.000389933 -0.000159483
-5.22467e-07 1.47175e-05 -8.34562e-06 0.00156158 0.00186165
8.91489e-07 -8.34562e-06 0.000188355 -0.00113439 -0.0188906
0.000389933 0.00156158 -0.00113439 0.223413 0.221906
-0.000159483 0.00186165 -0.0188906 0.221906 5.4047
Defined at beforeSurface
Magnetic field in inverse GeV: (-8.22246e-05,-2.60742e-05,0.0113616)
OuterTracker State Outside: global parameters
x = 107.076 32.8455 -127.936
p = 20.7761 6.18763 -24.6746
global error
1.20172e-05 -6.95007e-08 4.23815e-05 -0.00398176 -3.45455e-05
-6.95007e-08 5.6292e-05 -2.36442e-08 0.000518033 -0.0133327
4.23815e-05 -2.36442e-08 0.00025563 -0.026636 -0.000633601
-0.00398176 0.000518033 -0.026636 3.31755 -0.103963
-3.45455e-05 -0.0133327 -0.000633601 -0.103963 4.5054
local parameters (q/p,v',w',v,w)
0.0304464 -0.00817816 -1.13827 0 0
local error
1.20172e-05 4.23539e-05 2.34691e-07 -0.00398189 -8.94054e-05
4.23539e-05 0.000255629 -9.61702e-06 -0.0266652 0.00145563
2.34691e-07 -9.61702e-06 0.000296456 0.000941052 -0.0463488
-0.00398189 -0.0266652 0.000941052 3.31777 -0.126638
-8.94054e-05 0.00145563 -0.0463488 -0.126638 10.3399
Defined at afterSurface
Magnetic field in inverse GeV: (-8.26343e-05,-2.53481e-05,0.0113612)
R,Z position of OuterTrackerstate inside:
R position: 112
z porition: -127.668
R,Z position of OuterTrackerstate Outside
R position: 112
z porition: -127.936
finding compatibility of the two TSOSs
ChiSquare 5 pars: 4.78866
DR momentum: 0.0107612
DR position: 0.00957059
GlobalDistance 1.09058
Num of seeds for this l2 muon: 7
Number of total seeds made in the event: 15
Num of Track Candidates (hltIterL3OITrackCandidates): 3
Muon NTuple starts running ....
Tight id and Isolated reco muon, pt,eta,phi: 39.6174 , 0.976602 , -2.25759
Tight id and Isolated reco muon, pt,eta,phi: 24.2399 , -0.974963 , 0.329467
Number of Reco Muon cands: 12
Num of L3OI muon cands: 1
L3 OI cand pt, eta, phi: 39.3438 : 0.976652 : -2.25767
Begin processing the 7th record. Run 1, Event 21244171, LumiSection 8259 at 28-Feb-2018 02:09:57.538 CET
Num L2 muons: 2
Information of this muon :
L2 pt, eta, phi: 41.9283 , -0.427654 , 1.40012
OuterTracker State Inside: global parameters
x = 17.3085 110.654 -51.7937
p = 5.85786 41.5171 -18.4824
global error
1.10913e-06 -5.68545e-08 -2.09289e-07 5.35447e-05 1.16774e-05
-5.68545e-08 1.59805e-05 1.91178e-07 5.10339e-05 -0.00181074
-2.09289e-07 1.91178e-07 3.0616e-06 0.000285243 -2.34864e-05
5.35447e-05 5.10339e-05 0.000285243 0.0408264 -0.0087315
1.16774e-05 -0.00181074 -2.34864e-05 -0.0087315 0.45613
local parameters (q/p,v',w',v,w)
-0.021824 0.0149931 -0.440858 0 0
local error
1.10913e-06 -2.10402e-07 -6.65192e-08 5.35507e-05 1.24077e-05
-2.10402e-07 3.076e-06 4.46142e-07 0.000286466 -8.2416e-05
-6.65192e-08 4.46142e-07 2.27933e-05 5.9071e-05 -0.00236349
5.35507e-05 0.000286466 5.9071e-05 0.0408356 -0.00981311
1.24077e-05 -8.2416e-05 -0.00236349 -0.00981311 0.544889
Defined at beforeSurface
Magnetic field in inverse GeV: (-5.76064e-06,-3.68282e-05,0.0114436)
OuterTracker State Outside: global parameters
x = 17.9531 110.552 -51.8812
p = 5.98321 44.2723 -19.6648
global error
3.24779e-06 -1.66583e-10 8.9277e-06 -0.000941704 6.75922e-06
-1.66583e-10 1.69235e-05 -7.21341e-09 -2.35618e-05 -0.00250485
8.9277e-06 -7.21341e-09 4.27477e-05 -0.00463584 3.85862e-05
-0.000941704 -2.35618e-05 -0.00463584 0.601762 0.00101178
6.75922e-06 -0.00250485 3.85862e-05 0.00101178 0.570333
local parameters (q/p,v',w',v,w)
-0.0204871 0.0266647 -0.440333 0 0
local error
3.24779e-06 8.92692e-06 -1.04938e-07 -0.000942039 1.8438e-05
8.92692e-06 4.27433e-05 -2.01854e-07 -0.00463678 3.23403e-05
-1.04938e-07 -2.01854e-07 2.41328e-05 2.6256e-05 -0.00326825
-0.000942039 -0.00463678 2.6256e-05 0.60219 -0.00595964
1.8438e-05 3.23403e-05 -0.00326825 -0.00595964 0.680894
Defined at afterSurface
Magnetic field in inverse GeV: (-5.98443e-06,-3.68509e-05,0.0114436)
R,Z position of OuterTrackerstate inside:
R position: 112
z porition: -51.7937
R,Z position of OuterTrackerstate Outside
R position: 112
z porition: -51.8812
finding compatibility of the two TSOSs
ChiSquare 5 pars: 8.46359
DR momentum: 0.00586678
DR position: 0.00587124
GlobalDistance 0.658596
Num of seeds for this l2 muon: 5
Information of this muon :
L2 pt, eta, phi: 41.4898 , 0.955182 , -2.24839
OuterTracker State Inside: global parameters
x = -71.5487 -86.1672 135.414
p = -26.9956 -31.5061 45.9375
global error
4.4359e-07 -1.8512e-07 2.00666e-07 5.6395e-05 0.000107513
-1.8512e-07 5.94937e-06 1.57265e-07 7.1845e-05 -0.00268878
2.00666e-07 1.57265e-07 1.02123e-06 9.535e-05 -5.49429e-05
5.6395e-05 7.1845e-05 9.535e-05 0.0218011 -0.0371274
0.000107513 -0.00268878 -5.49429e-05 -0.0371274 1.56882
local parameters (q/p,v',w',v,w)
0.016155 -0.0154777 1.10733 0 0
local error
4.4359e-07 1.79298e-07 -4.15172e-07 5.64017e-05 0.000159437
1.79298e-07 1.10835e-06 1.53731e-06 0.000102954 -0.000555368
-4.15172e-07 1.53731e-06 2.94301e-05 0.000158192 -0.00892333
5.64017e-05 0.000102954 0.000158192 0.0218064 -0.0557723
0.000159437 -0.000555368 -0.00892333 -0.0557723 3.49393
Defined at beforeSurface
Magnetic field in inverse GeV: (-5.68531e-05,-6.8469e-05,0.0113552)
OuterTracker State Outside: global parameters
x = -68.7925 -88.3832 135.29
p = -66.4108 -71.9918 108.198
global error
1.93816e-06 -3.95669e-07 6.1039e-06 -0.000495426 0.000236446
-3.95669e-07 7.37168e-06 -1.28504e-06 6.99087e-05 -0.0035477
6.1039e-06 -1.28504e-06 2.42665e-05 -0.00221551 0.000773079
-0.000495426 6.99087e-05 -0.00221551 0.249705 -0.043262
0.000236446 -0.0035477 0.000773079 -0.043262 2.02186
local parameters (q/p,v',w',v,w)
0.00685189 -0.083896 1.10856 0 0
local error
1.93816e-06 6.12176e-06 -1.44693e-06 -0.000497167 0.000398237
6.12176e-06 2.44473e-05 -4.46127e-06 -0.00223279 0.00110711
-1.44693e-06 -4.46127e-06 3.72103e-05 0.00036251 -0.0118949
-0.000497167 -0.00223279 0.00036251 0.251462 -0.0879135
0.000398237 0.00110711 -0.0118949 -0.0879135 4.50327
Defined at afterSurface
Magnetic field in inverse GeV: (-5.4613e-05,-7.01656e-05,0.0113554)
R,Z position of OuterTrackerstate inside:
R position: 112
z porition: 135.414
R,Z position of OuterTrackerstate Outside
R position: 112
z porition: 135.29
finding compatibility of the two TSOSs
ChiSquare 5 pars: 754.735
DR momentum: 0.0366848
DR position: 0.0315852
GlobalDistance 3.5387
Num of seeds for this l2 muon: 7
Number of total seeds made in the event: 12
Num of Track Candidates (hltIterL3OITrackCandidates): 3
Muon NTuple starts running ....
Tight id and Isolated reco muon, pt,eta,phi: 38.7354 , -0.428177 , 1.39746
Tight id and Isolated reco muon, pt,eta,phi: 37.5795 , 0.969516 , -2.24399
Number of Reco Muon cands: 6
Num of L3OI muon cands: 1
L3 OI cand pt, eta, phi: 38.58 : -0.428139 : 1.39742
Begin processing the 8th record. Run 1, Event 21244243, LumiSection 8259 at 28-Feb-2018 02:09:59.167 CET
Num L2 muons: 2
Information of this muon :
L2 pt, eta, phi: 43.8431 , 1.82502 , -0.671179
OuterTracker State Inside: global parameters
x = 69.6975 -56.6601 273.5
p = 33.685 -28.0632 132.444
global error
2.5309e-06 -5.93042e-08 1.35998e-06 0.000489622 4.3743e-06
-5.93042e-08 3.35646e-06 1.90197e-07 3.90751e-05 -0.000908698
1.35998e-06 1.90197e-07 6.11848e-06 0.000698175 -9.57619e-05
0.000489622 3.90751e-05 0.000698175 0.139766 -0.0228613
4.3743e-06 -0.000908698 -9.57619e-05 -0.0228613 0.549607
local parameters (q/p,v',w',v,w)
0.00716785 0.254334 -0.211888 69.6975 -56.6601
local error
2.5309e-06 3.38743e-07 3.03798e-07 0.000309858 0.000379129
3.38743e-07 2.65331e-06 -1.71385e-06 -0.000539584 0.000598563
3.03798e-07 -1.71385e-06 2.14908e-06 0.000670532 -0.000291574
0.000309858 -0.000539584 0.000670532 0.44093 -0.226821
0.000379129 0.000598563 -0.000291574 -0.226821 0.30867
Defined at beforeSurface
Magnetic field in inverse GeV: (0.000125156,-0.000101745,0.0109998)
OuterTracker State Outside: global parameters
x = 69.0761 -57.1391 273.5
p = 30.8232 -25.1494 120.005
global error
2.84136e-06 -6.70937e-08 5.47687e-06 0.000179187 2.77989e-05
-6.70937e-08 5.80536e-06 -2.23124e-07 -2.36258e-05 -0.00205854
5.47687e-06 -2.23124e-07 5.73633e-05 -0.00365891 0.000178081
0.000179187 -2.36258e-05 -0.00365891 0.495145 0.00209953
2.77989e-05 -0.00205854 0.000178081 0.00209953 1.03458
local parameters (q/p,v',w',v,w)
0.00790968 0.256848 -0.209569 69.0761 -57.1391
local error
2.84136e-06 1.20564e-06 1.35984e-06 9.05889e-05 0.000157351
1.20564e-06 6.9139e-06 -3.9399e-07 -0.00195227 0.000629493
1.35984e-06 -3.9399e-07 6.54228e-06 0.000531118 -0.00166765
9.05889e-05 -0.00195227 0.000531118 0.885072 -0.320364
0.000157351 0.000629493 -0.00166765 -0.320364 0.758344
Defined at afterSurface
Magnetic field in inverse GeV: (0.000124047,-0.000102611,0.0109996)
R,Z position of OuterTrackerstate inside:
R position: 89.8227
z porition: 273.5
R,Z position of OuterTrackerstate Outside
R position: 89.8227
z porition: 273.5
finding compatibility of the two TSOSs
ChiSquare 5 pars: 1.84611
DR momentum: 0.0103137
DR position: 0.0087225
GlobalDistance 0.78464
Num of seeds for this l2 muon: 11
Information of this muon :
L2 pt, eta, phi: 38.8168 , 0.485686 , 2.12798
OuterTracker State Inside: global parameters
x = -60.7633 94.0841 60.2402
p = -21.6003 32.2517 19.6028
global error
1.26426e-06 7.21172e-08 -2.4627e-07 6.40148e-05 -1.39106e-05
7.21172e-08 1.7308e-05 -2.55306e-07 -6.90819e-05 -0.00205273
-2.4627e-07 -2.55306e-07 3.16077e-06 0.000293321 2.98701e-05
6.40148e-05 -6.90819e-05 0.000293321 0.0427766 0.0116907
-1.39106e-05 -0.00205273 2.98701e-05 0.0116907 0.505687
local parameters (q/p,v',w',v,w)
-0.022996 0.0166843 0.505078 0 0
local error
1.26426e-06 -2.47869e-07 8.84337e-08 6.40237e-05 -1.50445e-05
-2.47869e-07 3.18225e-06 -6.35975e-07 0.000295205 0.000111176
8.84337e-08 -6.35975e-07 2.72586e-05 -8.42371e-05 -0.00288631
6.40237e-05 0.000295205 -8.42371e-05 0.0427885 0.0134592
-1.50445e-05 0.000111176 -0.00288631 0.0134592 0.634878
Defined at beforeSurface
Magnetic field in inverse GeV: (-2.19605e-05,3.40029e-05,0.0114404)
OuterTracker State Outside: global parameters