-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsusySelections.cc
1432 lines (1120 loc) · 62.3 KB
/
susySelections.cc
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
#include <assert.h>
#include <algorithm>
#include "Math/LorentzVector.h"
#include "Math/VectorUtil.h"
#include "TMath.h"
#include "TLorentzVector.h"
#include "TDatabasePDG.h"
#include "triggerUtils.h"
#include "CMS2.h"
#include "susySelections.h"
#include "triggerUtils.h"
#include "electronSelections.h"
#include "muonSelections.h"
#include "eventSelections.h"
#include "mcSelections.h"
using namespace tas;
using namespace wp2012;
//--------------------------------------------------------------------------------
// loose electron WP of:
// https://twiki.cern.ch/twiki/bin/viewauth/CMS/EgammaCutBasedIdentification
//--------------------------------------------------------------------------------
bool passElectronSelection_ZMet2012_v1_NoIso(int index, bool vetoTransition, bool eta24){
if( vetoTransition && fabs(cms2.els_etaSC()[index]) > 1.4442 && fabs(cms2.els_etaSC()[index]) < 1.566 ) return false;
if( eta24 && fabs(cms2.els_p4()[index].eta()) > 2.4 ) return false;
electronIdComponent_t answer_loose_2012 = electronId_WP2012(index, LOOSE);
if ((answer_loose_2012 & PassWP2012CutsNoIso) == PassWP2012CutsNoIso) return true;
return false;
}
bool passElectronSelection_ZMet2012_v1_Iso(int index, bool vetoTransition, bool eta24){
if( vetoTransition && fabs(cms2.els_etaSC()[index]) > 1.4442 && fabs(cms2.els_etaSC()[index]) < 1.566 ) return false;
if( eta24 && fabs(cms2.els_p4()[index].eta()) > 2.4 ) return false;
electronIdComponent_t answer_loose_2012 = electronId_WP2012(index, LOOSE);
if ((answer_loose_2012 & PassWP2012CutsIso) == PassWP2012CutsIso) return true;
return false;
}
bool passElectronSelection_ZMet2012_v1(int index, bool vetoTransition, bool eta24){
if( vetoTransition && fabs(cms2.els_etaSC()[index]) > 1.4442 && fabs(cms2.els_etaSC()[index]) < 1.566 ) return false;
if( eta24 && fabs(cms2.els_p4()[index].eta()) > 2.4 ) return false;
electronIdComponent_t answer_loose_2012 = electronId_WP2012(index, LOOSE);
if ((answer_loose_2012 & PassAllWP2012Cuts) == PassAllWP2012Cuts) return true;
return false;
}
//------------------------------------------------------------------------------------------------
// loose electron WP of:
// https://twiki.cern.ch/twiki/bin/viewauth/CMS/EgammaCutBasedIdentification
// v2: update electron isolation branches and use d0/dz of GSF track w.r.t. 1st GOOD vertex
//------------------------------------------------------------------------------------------------
bool overlapMuon_ZMet2012_v1(int index , float ptcut = 10.0 ){
for( unsigned int imu = 0 ; imu < mus_p4().size(); ++imu ){
float dr = ROOT::Math::VectorUtil::DeltaR( cms2.els_p4().at(index) , cms2.mus_p4().at(imu) );
if( dr > 0.1 ) continue;
if( cms2.mus_p4().at(imu).pt() < ptcut ) continue;
if( !muonId( imu , ZMet2012_v1 ) ) continue;
return true;
}
return false;
}
bool overlapMuon_ZMet2012_v2(int index , float ptcut = 10.0 ){
for( unsigned int imu = 0 ; imu < mus_p4().size(); ++imu ){
float dr = ROOT::Math::VectorUtil::DeltaR( cms2.els_p4().at(index) , cms2.mus_p4().at(imu) );
if( dr > 0.1 ) continue;
if( cms2.mus_p4().at(imu).pt() < ptcut ) continue;
if ( (((cms2.mus_type().at(imu)) & (1<<1)) == 0) && (((cms2.mus_type().at(imu)) & (1<<2)) == 0) ) continue;
return true;
}
return false;
}
bool passElectronSelection_ZMet2012_v2_NoIso(int index, bool vetoTransition, bool eta24, bool useOldIsolation ){
if( vetoTransition && fabs(cms2.els_etaSC()[index]) > 1.4442 && fabs(cms2.els_etaSC()[index]) < 1.566 ) return false;
if( eta24 && fabs(cms2.els_p4()[index].eta()) > 2.4 ) return false;
if( overlapMuon_ZMet2012_v1(index,10.0) ) return false;
electronIdComponent_t answer_loose_2012 = electronId_WP2012_v2(index, LOOSE, useOldIsolation);
if ((answer_loose_2012 & PassWP2012CutsNoIso) == PassWP2012CutsNoIso) return true;
return false;
}
bool passElectronSelection_ZMet2012_v2_Iso(int index, bool vetoTransition, bool eta24, bool useOldIsolation ){
if( vetoTransition && fabs(cms2.els_etaSC()[index]) > 1.4442 && fabs(cms2.els_etaSC()[index]) < 1.566 ) return false;
if( eta24 && fabs(cms2.els_p4()[index].eta()) > 2.4 ) return false;
if( overlapMuon_ZMet2012_v1(index,10.0) ) return false;
electronIdComponent_t answer_loose_2012 = electronId_WP2012_v2(index, LOOSE, useOldIsolation);
if ((answer_loose_2012 & PassWP2012CutsIso) == PassWP2012CutsIso) return true;
return false;
}
bool passElectronSelection_ZMet2012_v2(int index, bool vetoTransition, bool eta24, bool useOldIsolation ){
if( vetoTransition && fabs(cms2.els_etaSC()[index]) > 1.4442 && fabs(cms2.els_etaSC()[index]) < 1.566 ) return false;
if( eta24 && fabs(cms2.els_p4()[index].eta()) > 2.4 ) return false;
if( overlapMuon_ZMet2012_v1(index,10.0) ) return false;
electronIdComponent_t answer_loose_2012 = electronId_WP2012_v2(index, LOOSE, useOldIsolation);
if ((answer_loose_2012 & PassAllWP2012Cuts) == PassAllWP2012Cuts) return true;
return false;
}
bool passElectronSelection_ZMet2012_v2_DetIso(int index, bool vetoTransition, bool eta24, bool useOldIsolation ){
if( vetoTransition && fabs(cms2.els_etaSC()[index]) > 1.4442 && fabs(cms2.els_etaSC()[index]) < 1.566 ) return false;
if( eta24 && fabs(cms2.els_p4()[index].eta()) > 2.4 ) return false;
if( overlapMuon_ZMet2012_v1(index,10.0) ) return false;
if( electronIsolation_rel_v1(index, true ) > 0.15 ) return false;
electronIdComponent_t answer_loose_2012 = electronId_WP2012_v2(index, LOOSE, useOldIsolation);
if ((answer_loose_2012 & PassWP2012CutsNoIso) == PassWP2012CutsNoIso) return true;
return false;
}
//------------------------------------------------------------------------------------------------
// loose electron WP of:
// https://twiki.cern.ch/twiki/bin/viewauth/CMS/EgammaCutBasedIdentification
// v3: same as v2, but update electron effective areas
//------------------------------------------------------------------------------------------------
bool passElectronSelection_ZMet2012_v3_NoIso(int index, bool vetoTransition, bool eta24, bool useOldIsolation ){
if( vetoTransition && fabs(cms2.els_etaSC()[index]) > 1.4442 && fabs(cms2.els_etaSC()[index]) < 1.566 ) return false;
if( eta24 && fabs(cms2.els_p4()[index].eta()) > 2.4 ) return false;
if( overlapMuon_ZMet2012_v1(index,10.0) ) return false;
electronIdComponent_t answer_loose_2012 = electronId_WP2012_v3(index, LOOSE, useOldIsolation);
if ((answer_loose_2012 & PassWP2012CutsNoIso) == PassWP2012CutsNoIso) return true;
return false;
}
bool passElectronSelection_ZMet2012_v3_Iso(int index, bool vetoTransition, bool eta24, bool useOldIsolation ){
if( vetoTransition && fabs(cms2.els_etaSC()[index]) > 1.4442 && fabs(cms2.els_etaSC()[index]) < 1.566 ) return false;
if( eta24 && fabs(cms2.els_p4()[index].eta()) > 2.4 ) return false;
if( overlapMuon_ZMet2012_v1(index,10.0) ) return false;
electronIdComponent_t answer_loose_2012 = electronId_WP2012_v3(index, LOOSE, useOldIsolation);
if ((answer_loose_2012 & PassWP2012CutsIso) == PassWP2012CutsIso) return true;
return false;
}
bool passElectronSelection_ZMet2012_v3(int index, bool vetoTransition, bool eta24, bool useOldIsolation ){
if( vetoTransition && fabs(cms2.els_etaSC()[index]) > 1.4442 && fabs(cms2.els_etaSC()[index]) < 1.566 ) return false;
if( eta24 && fabs(cms2.els_p4()[index].eta()) > 2.4 ) return false;
if( overlapMuon_ZMet2012_v1(index,10.0) ) return false;
electronIdComponent_t answer_loose_2012 = electronId_WP2012_v3(index, LOOSE, useOldIsolation);
if ((answer_loose_2012 & PassAllWP2012Cuts) == PassAllWP2012Cuts) return true;
return false;
}
//--------------------------------------------------------------------------------
// medium electron WP of:
// https://twiki.cern.ch/twiki/bin/viewauth/CMS/EgammaCutBasedIdentification
//--------------------------------------------------------------------------------
bool passElectronSelection_Stop2012_v1_NoIso(int index, bool vetoTransition, bool eta24){
if( vetoTransition && fabs(cms2.els_etaSC()[index]) > 1.4442 && fabs(cms2.els_etaSC()[index]) < 1.566 ) return false;
if( eta24 && fabs(cms2.els_p4()[index].eta()) > 2.4 ) return false;
electronIdComponent_t answer_loose_2012 = electronId_WP2012(index, MEDIUM);
if ((answer_loose_2012 & PassWP2012CutsNoIso) == PassWP2012CutsNoIso) return true;
return false;
}
bool passElectronSelection_Stop2012_v1_Iso(int index, bool vetoTransition, bool eta24){
if( vetoTransition && fabs(cms2.els_etaSC()[index]) > 1.4442 && fabs(cms2.els_etaSC()[index]) < 1.566 ) return false;
if( eta24 && fabs(cms2.els_p4()[index].eta()) > 2.4 ) return false;
electronIdComponent_t answer_loose_2012 = electronId_WP2012(index, MEDIUM);
if ((answer_loose_2012 & PassWP2012CutsIso) == PassWP2012CutsIso) return true;
return false;
}
bool passElectronSelection_Stop2012_v1(int index, bool vetoTransition, bool eta24){
if( vetoTransition && fabs(cms2.els_etaSC()[index]) > 1.4442 && fabs(cms2.els_etaSC()[index]) < 1.566 ) return false;
if( eta24 && fabs(cms2.els_p4()[index].eta()) > 2.4 ) return false;
electronIdComponent_t answer_loose_2012 = electronId_WP2012(index, MEDIUM);
if ((answer_loose_2012 & PassAllWP2012Cuts) == PassAllWP2012Cuts) return true;
return false;
}
//------------------------------------------------------------------------------------------------
// medium electron WP of:
// https://twiki.cern.ch/twiki/bin/viewauth/CMS/EgammaCutBasedIdentification
// v2: update electron isolation branches and use d0/dz of GSF track w.r.t. 1st GOOD vertex
//------------------------------------------------------------------------------------------------
bool passElectronSelection_Stop2012_v2_NoIso(int index, bool vetoTransition, bool eta24, bool useOldIsolation ){
if( vetoTransition && fabs(cms2.els_etaSC()[index]) > 1.4442 && fabs(cms2.els_etaSC()[index]) < 1.566 ) return false;
if( eta24 && fabs(cms2.els_p4()[index].eta()) > 2.4 ) return false;
if( overlapMuon_ZMet2012_v1(index,10.0) ) return false;
electronIdComponent_t answer_loose_2012 = electronId_WP2012_v2(index, MEDIUM, useOldIsolation);
if ((answer_loose_2012 & PassWP2012CutsNoIso) == PassWP2012CutsNoIso) return true;
return false;
}
bool passElectronSelection_Stop2012_v2_Iso(int index, bool vetoTransition, bool eta24, bool useOldIsolation ){
if( vetoTransition && fabs(cms2.els_etaSC()[index]) > 1.4442 && fabs(cms2.els_etaSC()[index]) < 1.566 ) return false;
if( eta24 && fabs(cms2.els_p4()[index].eta()) > 2.4 ) return false;
if( overlapMuon_ZMet2012_v1(index,10.0) ) return false;
electronIdComponent_t answer_loose_2012 = electronId_WP2012_v2(index, MEDIUM, useOldIsolation);
if ((answer_loose_2012 & PassWP2012CutsIso) == PassWP2012CutsIso) return true;
return false;
}
bool passElectronSelection_Stop2012_v2(int index, bool vetoTransition, bool eta24, bool useOldIsolation ){
if( vetoTransition && fabs(cms2.els_etaSC()[index]) > 1.4442 && fabs(cms2.els_etaSC()[index]) < 1.566 ) return false;
if( eta24 && fabs(cms2.els_p4()[index].eta()) > 2.4 ) return false;
if( overlapMuon_ZMet2012_v1(index,10.0) ) return false;
electronIdComponent_t answer_loose_2012 = electronId_WP2012_v2(index, MEDIUM, useOldIsolation);
if ((answer_loose_2012 & PassAllWP2012Cuts) == PassAllWP2012Cuts) return true;
return false;
}
//------------------------------------------------------------------------------------------------
// medium electron WP of:
// https://twiki.cern.ch/twiki/bin/viewauth/CMS/EgammaCutBasedIdentification
// v3: relax selection applied to muons used for overlap removal and update effective areas
//------------------------------------------------------------------------------------------------
bool passElectronSelection_Stop2012_v3_NoIso(int index, bool vetoTransition, bool eta24, bool useOldIsolation ){
if( vetoTransition && fabs(cms2.els_etaSC()[index]) > 1.4442 && fabs(cms2.els_etaSC()[index]) < 1.566 ) return false;
if( eta24 && fabs(cms2.els_p4()[index].eta()) > 2.4 ) return false;
if( overlapMuon_ZMet2012_v2(index,10.0) ) return false;
electronIdComponent_t answer_loose_2012 = electronId_WP2012_v3(index, MEDIUM, useOldIsolation);
if ((answer_loose_2012 & PassWP2012CutsNoIso) == PassWP2012CutsNoIso) return true;
return false;
}
bool passElectronSelection_Stop2012_v3_Iso(int index, bool vetoTransition, bool eta24, bool useOldIsolation ){
if( vetoTransition && fabs(cms2.els_etaSC()[index]) > 1.4442 && fabs(cms2.els_etaSC()[index]) < 1.566 ) return false;
if( eta24 && fabs(cms2.els_p4()[index].eta()) > 2.4 ) return false;
if( overlapMuon_ZMet2012_v2(index,10.0) ) return false;
electronIdComponent_t answer_loose_2012 = electronId_WP2012_v3(index, MEDIUM, useOldIsolation);
if ((answer_loose_2012 & PassWP2012CutsIso) == PassWP2012CutsIso) return true;
return false;
}
bool passElectronSelection_Stop2012_v3(int index, bool vetoTransition, bool eta24, bool useOldIsolation ){
if( vetoTransition && fabs(cms2.els_etaSC()[index]) > 1.4442 && fabs(cms2.els_etaSC()[index]) < 1.566 ) return false;
if( eta24 && fabs(cms2.els_p4()[index].eta()) > 2.4 ) return false;
if( overlapMuon_ZMet2012_v2(index,10.0) ) return false;
electronIdComponent_t answer_loose_2012 = electronId_WP2012_v3(index, MEDIUM, useOldIsolation);
if ((answer_loose_2012 & PassAllWP2012Cuts) == PassAllWP2012Cuts) return true;
return false;
}
//--------------------------------------------------------
// leptonOrTauIsFromW(int idx, int id, bool alsoSusy)
// this function is the same as leptonIsFromW in mcSelections
// except that it distinguishes between W->e/mu (result 1 or 2)
// vs. W->tau->e/mu (result 3 or 4)
//--------------------------------------------------------
//--------------------------------------------------------
// Determines if the lepton in question is from W/Z
// and if its charge is correct
//
// Note that if we have
// W->lepton->lepton gamma
// where the gamma is at large angles and it is the
// gamma that gives the lepton signature in the detector,
// then this returns "not from W/Z". This is by design.
//
// Note W->tau->lepton is tagged as "from W"
//
// Inputs: idx = index in the els or mus block
// id = lepton ID (11 or 13 or -11 or -13)
//
// Output: 4 = from W/Z->tau->l incorrect charge // <<<--- Hooberman 04/29/11: distinguish
// 3 = from W/Z->tau->l correct charge // <<<--- W->l (1 or 2) vs. W->tau->l (3 or 4)
// 2 = from W/Z incorrect charge
// 1 = from W/Z correct charge
// 0 = not matched to a lepton (= fake)
// -1 = lepton from b decay
// -2 = lepton from c decay
// -3 = lepton from some other source
//
//
// Authors: Claudio in consultation with fkw 22-july-09
//
// 22-nov-2010...by "accident" this code returns "fromW" (1 or 2)
// in many of the cases where the lepton is from a susy particle,
// because it looks at whether or not it is matched to a status==3
// lepton. By this procedure is not 100% efficient. We have now
// added a flag to try to do this more systematically.
// Claudio & Derek
//---------------------------------------------------------
int leptonOrTauIsFromW(int idx, int id, bool alsoSusy) {
// get the matches to status=1 and status=3
int st1_id = 0;
int st3_id = 0;
int st1_motherid = 0;
if (abs(id) == 11) {
st1_id = cms2.els_mc_id()[idx];
st3_id = cms2.els_mc3_id()[idx];
st1_motherid = cms2.els_mc_motherid()[idx];
//a true lepton from a W will have it's motherid==24
//if the lepton comes from a tau decay that comes from a W,
//we have to do some work to trace the parentage
//to do this, we have to go to the status==3 block because
//the daughter info is not in status==1
if(abs(st1_motherid)==15) {
bool foundelectronneutrino = false; //ensures that the matched electron from a tau really came from a W
for(unsigned int i = 0; i < cms2.genps_id().size(); i++) {//status 3 loop
if(abs(cms2.genps_id()[i]) == 15 ) { //make sure we get the right tau!
cms2.genps_lepdaughter_id()[i].size();
for(unsigned int j = 0; j < cms2.genps_lepdaughter_id()[i].size(); j++) { //loop over the tau's status1 daughters
if(abs(cms2.genps_lepdaughter_id()[i][j]) == 12)
foundelectronneutrino = true;
float dr = ROOT::Math::VectorUtil::DeltaR(cms2.els_mc_p4()[idx], cms2.genps_lepdaughter_p4()[i][j]);
if (dr < 0.0001) { //should be the same exact status==1 gen particle!
st1_motherid = cms2.genps_id_mother()[i];
continue;
}//if (dr < 0.0001)
}//loop over the tau's daughters
if(!foundelectronneutrino)
st1_motherid = -9999;
}//tau
}//status 3 loop
}//if(abs(st1_motherid)==15) {
} else if (abs(id) == 13) {
st1_id = cms2.mus_mc_id()[idx];
st3_id = cms2.mus_mc3_id()[idx];
st1_motherid = cms2.mus_mc_motherid()[idx];
//a true lepton from a W will have it's motherid==24
//if the lepton comes from a tau decay that comes from a W,
//we have to do some work to trace the parentage
//to do this, we have to go to the status==3 block because
//the daughter info is not in status==1
if(abs(st1_motherid)==15) {
bool foundmuonneutrino = false;
for(unsigned int i = 0; i < cms2.genps_id().size(); i++) {//status 3 loop
if(abs(cms2.genps_id()[i]) == 15 ) { //make sure we get the right tau!
cms2.genps_lepdaughter_id()[i].size();
for(unsigned int j = 0; j < cms2.genps_lepdaughter_id()[i].size(); j++) {//loop over the tau's status1 daughters
if(abs(cms2.genps_lepdaughter_id()[i][j]) == 14)
foundmuonneutrino = true;
float dr = ROOT::Math::VectorUtil::DeltaR(cms2.mus_mc_p4()[idx], cms2.genps_lepdaughter_p4()[i][j]);
if (dr < 0.0001) { //should be the same exact status==1 gen particle!
st1_motherid = cms2.genps_id_mother()[i];
continue;
}//if (dr < 0.0001)
}//loop over the tau's daughters
if(!foundmuonneutrino)
st1_motherid = -9999;
}//tau
}//status 3 loop
}//if(abs(st1_motherid)==15) {
} else {
std::cout << "You fool. Give me +/- 11 or +/- 13 please" << std::endl;
return false;
}
// debug
//std::cout << "id=" << id << " st1_id=" << st1_id;
//std::cout << " st3_id=" << st3_id;
//std::cout << " st1_motherid=" << st1_motherid << std::endl;
// Step 1
// Look at status 1 match, it should be either a lepton or
// a photon if it comes from W/Z.
// The photon case takes care of collinear FSR
if ( !(abs(st1_id) == abs(id) || st1_id == 22)) return 0;
// Step 2
// If the status 1 match is a photon, its mother must be
// a lepton. Otherwise it is not FSR
if (st1_id == 22) {
if (abs(st1_motherid) != abs(id)) return 0;
}
// At this point we are matched (perhaps via FSR) to
// a status 1 lepton. This means that we are left with
// leptons from W, taus, bottom, charm, as well as dalitz decays
// Step 5
// Now we need to go after the W->tau->lepton.
// We exploit the fact that in t->W->tau the tau shows up
// at status=3. We also use the fact that the tau decay products
// are highly boosted, so the direction of the status=3 tau and
// the lepton from tau decays are about the same
//
// We do not use the status=1 links because there is not
// enough information to distinguish
// W->tau->lepton or W->tau->lepton gamma
// from
// B->tau->lepton or B->tau->lepton gamma
//if (abs(st3_id) == 15 && id*st3_id > 0) return 1;
//if (abs(st3_id) == 15 && id*st3_id < 0) return 2;
if(abs(st3_id) == 15) {
//have to find the index of the status3 particle by dR
//because the indices are buggy
unsigned int mc3idx = 999999;
LorentzVector lepp4 = abs(id)==11 ? cms2.els_p4()[idx] : cms2.mus_p4()[idx];
double mindR = 9999;
for(unsigned int i = 0; i < cms2.genps_id().size(); i++) {
float dr = ROOT::Math::VectorUtil::DeltaR(lepp4, cms2.genps_p4()[i]);
if(dr < mindR) {
mindR = dr;
mc3idx = i;
}
}
bool foundElOrMuNu = false;
for(unsigned int i = 0; i < cms2.genps_lepdaughter_p4()[mc3idx].size(); i++) {
if(abs(cms2.genps_lepdaughter_id()[mc3idx][i]) == 12 || abs(cms2.genps_lepdaughter_id()[mc3idx][i]) == 14)
foundElOrMuNu = true;
}
if(!foundElOrMuNu) //comes from a hadronic decay of the tau
return -3;
//if(id*st3_id > 0)
// return 1;
//else return 2;
if(id*st3_id > 0)
return 3; // <<<--- Hooberman 04/29/11: distinguish btw W->l (1 or 2) vs. W->tau->l (3 or 4)
else return 4;
}
// Step 3
// A no-brainer: pick up vanilla W->lepton decays
// (should probably add Higgs, SUSY, W' etc...not for now)
if (st1_id == id && abs(st1_motherid) == 24) return 1; // W
if (st1_id == -id && abs(st1_motherid) == 24) return 2; // W
if (st1_id == id && st1_motherid == 23) return 1; // Z
if (st1_id == -id && st1_motherid == 23) return 2; // Z
if ( alsoSusy ) {
if (st1_id == id && abs(st1_motherid) > 1e6) return 1; // exotica
if (st1_id == -id && abs(st1_motherid) > 1e6) return 2; // exotica
}
// Step 4
// Another no-brainer: pick up leptons matched to status=3
// leptons. This should take care of collinear FSR
// This also picks up a bunch of SUSY decays
if (st3_id == id) return 1;
if (st3_id == -id) return 2;
// Step 6
// If we get here, we have a non-W lepton
// Now we figure out if it is from b, c, or "other"
// There are a couple of caveats
// (a) b/c --> lepton --> lepton gamma (ie FSR) is labelled as "other"
// (b) b --> tau --> lepton is labelled as "other"
if ( abs(st1_id) == abs(id) && idIsBeauty(st1_motherid)) return -1;
if ( abs(st1_id) == abs(id) && idIsCharm(st1_motherid)) return -2;
return -3;
}
/*****************************************************************************************/
//print event info
/*****************************************************************************************/
void printEventInfo(){
//cout << cms2.evt_dataset() << endl;
cout << cms2.evt_run() << " " << cms2.evt_lumiBlock() << " " << cms2.evt_event() << endl;
}
/*****************************************************************************************/
//veto Z->mumugamma events
/*****************************************************************************************/
bool vetoZmumuGamma( unsigned int hypIdx , float emax , float minmass , float maxmass ){
//we only care about mumu hyp types
if( cms2.hyp_type().at(hypIdx) != 0 ) return false;
//we only want to veto events that started *outside* of Z window
//and moved inside after including ecal deposit
if( cms2.hyp_p4().at(hypIdx).mass() > minmass && cms2.hyp_p4().at(hypIdx).mass() < maxmass )
return false;
//get ecal deposits for each muon
int ill = cms2.hyp_ll_index().at( hypIdx );
int ilt = cms2.hyp_lt_index().at( hypIdx );
//energy = ET * cosh(eta)
float ell = cms2.mus_iso_ecalvetoDep().at(ill) * cosh( cms2.mus_p4().at(ill).eta() ) ;
float elt = cms2.mus_iso_ecalvetoDep().at(ilt) * cosh( cms2.mus_p4().at(ilt).eta() ) ;
//don't veto event if ecal deposits are both less than emax
if( ell < emax && elt < emax ) return false;
LorentzVector vll = cms2.hyp_ll_p4().at(hypIdx);
LorentzVector vlt = cms2.hyp_lt_p4().at(hypIdx);
//if ecal deposit is greater than emax, scale muon momentum up
if( ell > emax ) vll = vll * ( 1 + ell / vll.energy() );
if( elt > emax ) vlt = vlt * ( 1 + elt / vlt.energy() );
float mass = ( vll + vlt ).mass();
//check if dimuon mass, including extra ecal energy, is inside Z mass window
if( mass > minmass && mass < maxmass ){
//cout << "Veto Z->mumugamma event!" << endl;
//cout << cms2.evt_run() << " " << cms2.evt_lumiBlock() << " " << cms2.evt_event() << endl;
return true;
}
return false;
}
/*****************************************************************************************/
//generalized Z veto
/*****************************************************************************************/
bool ZVetoGeneral( float ptcut , float minmass , float maxmass , SelectionType mutype ){
for(unsigned int i = 0; i < hyp_p4().size(); ++i) {
//check that hyp leptons come from same vertex
if( !hypsFromSameVtx( i ) ) continue;
//opposite-sign, same-flavor
if( cms2.hyp_lt_id().at(i) * cms2.hyp_ll_id().at(i) > 0 ) continue;
if( cms2.hyp_type().at(i) == 1 || cms2.hyp_type().at(i) == 2 ) continue;
//check that both lepton pt's > ptcut
if( cms2.hyp_ll_p4().at(i).pt() < ptcut ) continue;
if( cms2.hyp_lt_p4().at(i).pt() < ptcut ) continue;
//muon ID
if ( abs( cms2.hyp_ll_id().at(i) ) == 13 && !( muonId( cms2.hyp_ll_index().at(i) , mutype ) ) ) continue;
if ( abs( cms2.hyp_lt_id().at(i) ) == 13 && !( muonId( cms2.hyp_lt_index().at(i) , mutype ) ) ) continue;
//electron ID
if ( abs( cms2.hyp_ll_id().at(i) ) == 11 && !( pass_electronSelection( cms2.hyp_ll_index().at(i) , electronSelection_el_OSV3 , false , false ))) continue;
if ( abs( cms2.hyp_lt_id().at(i) ) == 11 && !( pass_electronSelection( cms2.hyp_lt_index().at(i) , electronSelection_el_OSV3 , false , false ))) continue;
if( cms2.hyp_p4().at(i).mass() > minmass && cms2.hyp_p4().at(i).mass() < maxmass ){
//cout << "General Z veto: mass " << cms2.hyp_p4().at(i).mass() << endl;
//printEventInfo();
return true;
}
}
return false;
}
//-------------------------------------------------------
// get exact trigger name corresponding to given pattern
//-------------------------------------------------------
TString triggerName(TString triggerPattern){
bool foundTrigger = false;
TString exact_hltname = "";
for( unsigned int itrig = 0 ; itrig < hlt_trigNames().size() ; ++itrig ){
if( TString( hlt_trigNames().at(itrig) ).Contains( triggerPattern ) ){
foundTrigger = true;
exact_hltname = hlt_trigNames().at(itrig);
break;
}
}
if( !foundTrigger) return "TRIGGER_NOT_FOUND";
return exact_hltname;
}
//---------------------------------------------
// Check if trigger passes
//---------------------------------------------
bool passHLTTriggerPattern(const char* arg){
TString HLTTriggerPattern(arg);
TString HLTTrigger = triggerName( HLTTriggerPattern );
if( HLTTrigger.Contains("TRIGGER_NOT_FOUND")){
return false;
}
return passHLTTrigger( HLTTrigger );
}
//---------------------------------------------
// Check if trigger is unprescaled and passes
//---------------------------------------------
bool passUnprescaledHLTTriggerPattern(const char* arg){
//cout << "Checking for pattern " << arg << endl;
TString HLTTriggerPattern(arg);
TString HLTTrigger = triggerName( HLTTriggerPattern );
//cout << "Found trigger " << HLTTrigger << endl;
if( HLTTrigger.Contains("TRIGGER_NOT_FOUND")){
//cout << "Didn't find trigger!" << endl;
return false;
}
return passUnprescaledHLTTrigger( HLTTrigger );
}
//---------------------------------------------
// function returns:
// -1: no matching trigger found
// 0: trigger not passed
// 1: trigger passed, un-prescaled
// N: trigger passed, prescale N
//---------------------------------------------
int passTriggerPrescale(const char* arg){
//Find exact trigger name
TString HLTTriggerPattern(arg);
TString HLTTrigger = triggerName( HLTTriggerPattern );
//Return -1 if no matching trigger found
if( HLTTrigger.Contains("TRIGGER_NOT_FOUND") ) return -1;
//Return 0 if trigger didn't pass
if( !passHLTTrigger( HLTTrigger ) ) return 0;
//Return 1 if trigger passes and is unprescaled
if( passUnprescaledHLTTrigger( HLTTrigger ) ) return 1;
//Return prescale if prescaled trigger passes
return HLT_prescale( HLTTrigger );
}
//---------------------------------------------
// single muon triggers for lljj bump search
//---------------------------------------------
bool passMuMuJJTrigger_v1( bool isData ) {
if( isData ){
//-----------------------------------------------------------------------------
if (evt_run() >= 160329 && evt_run() <= 163261){
if( passUnprescaledHLTTriggerPattern("HLT_IsoMu15_v5") ) return true;
}
//-----------------------------------------------------------------------------
else if (evt_run() >= 163269 && evt_run() <= 164236){
if( passUnprescaledHLTTriggerPattern("HLT_IsoMu24_v2") ) return true;
}
//-----------------------------------------------------------------------------
else if (evt_run() >= 165088 && evt_run() <= 165887){
if( passUnprescaledHLTTriggerPattern("HLT_IsoMu24_v4") ) return true;
}
//-----------------------------------------------------------------------------
else if (evt_run() == 166346 ){
if( passUnprescaledHLTTriggerPattern("HLT_IsoMu24_v6") ) return true;
}
//-----------------------------------------------------------------------------
else if (evt_run() >= 165922 && evt_run() <= 167043){
if( passUnprescaledHLTTriggerPattern("HLT_IsoMu24_v5") ) return true;
}
//-----------------------------------------------------------------------------
else if (evt_run() >= 167078 && evt_run() <= 170053){
if( passUnprescaledHLTTriggerPattern("HLT_IsoMu24_v7") ) return true;
}
//-----------------------------------------------------------------------------
else if (evt_run() >= 170071 && evt_run() <= 173198){
if( passUnprescaledHLTTriggerPattern("HLT_IsoMu24_v8") ) return true;
}
//-----------------------------------------------------------------------------
else if (evt_run() >= 173212 && evt_run() <= 178380){
if( passUnprescaledHLTTriggerPattern("HLT_IsoMu30_eta2p1_v3") ) return true;
}
//-----------------------------------------------------------------------------
else if (evt_run() >= 178420 && evt_run() <= 179889){
if( passUnprescaledHLTTriggerPattern("HLT_IsoMu30_eta2p1_v6") ) return true;
}
//-----------------------------------------------------------------------------
else if (evt_run() >= 179959 && evt_run() <= 180093){
if( passUnprescaledHLTTriggerPattern("HLT_IsoMu30_eta2p1_v7") ) return true;
}
//-----------------------------------------------------------------------------
}
else{
if( passUnprescaledHLTTriggerPattern("HLT_IsoMu24_v") ) return true;
}
return false;
}
//-----------------------------------------------
// single lepton + jets triggers for stop search
//-----------------------------------------------
bool passSingleLepSUSYTrigger2011_v1( bool isData , int lepType ) {
//------------------------------------------------------------------------
// These are the all the triggers considered for single lepton+jets
//------------------------------------------------------------------------
// no triggers required for MC
if( !isData ) return true;
if( passSingleLep2JetSUSYTrigger2011( isData , lepType ) ) return true; // l+dijet+MHT triggers
if( passSingleLep3JetSUSYTrigger2011( isData , lepType ) ) return true; // l+trijet triggers
if( passSingleMuTrigger2011( isData , lepType ) ) return true; // single muon triggers
return false;
}
bool passSingleLep2JetSUSYTrigger2011( bool isData , int lepType ) {
//-------------------------------------------------------
// These are the trigger options for lepton+2jets+MET
//-------------------------------------------------------
// no triggers required for MC
if( !isData ) return true;
// electron channel
if( lepType == 0 ){
if( passUnprescaledHLTTriggerPattern("HLT_Ele27_CaloIdVT_CaloIsoT_TrkIdT_TrkIsoT_v") ) return true; // 160329-164236
if( passUnprescaledHLTTriggerPattern("HLT_Ele17_CaloIdVT_CaloIsoT_TrkIdT_TrkIsoT_CentralJet30_CentralJet25_PFMHT15_v") ) return true; // 165088-165887
if( passUnprescaledHLTTriggerPattern("HLT_Ele22_CaloIdVT_CaloIsoT_TrkIdT_TrkIsoT_CentralJet30_CentralJet25_PFMHT20_v") ) return true; // 166979-173198
if( passUnprescaledHLTTriggerPattern("HLT_Ele27_CaloIdVT_CaloIsoT_TrkIdT_TrkIsoT_CentralJet30_CentralJet25_PFMHT20_v") ) return true; // 170826-176309
if( passUnprescaledHLTTriggerPattern("HLT_Ele30_CaloIdVT_CaloIsoT_TrkIdT_TrkIsoT_DiCentralJet30_PFMHT25_v") ) return true; // 173212-178380
if( passUnprescaledHLTTriggerPattern("HLT_Ele27_WP80_DiCentralPFJet25_PFMHT15_v") ) return true; // 178420-180291
}
// muon channel
else if( lepType == 1 ){
if( passUnprescaledHLTTriggerPattern("HLT_IsoMu17_v") ) return true; // 160329-165887
if( passUnprescaledHLTTriggerPattern("HLT_IsoMu24_v") ) return true; // 160329-173198
if( passUnprescaledHLTTriggerPattern("HLT_IsoMu30_eta2p1_v") ) return true; // 173212-180291
}
else{
cout << "susySelections.cc:: ERROR unrecognized lepType " << lepType << ", quitting" << endl;
exit(0);
}
return false;
}
bool passSingleMuTrigger2011( bool isData , int lepType ) {
//----------------------------
// single muon triggers
//----------------------------
// no triggers required for MC
if( !isData ) return true;
// false for electron channel
if( lepType == 0 ){
return false;
}
// muon channel
else if( lepType == 1 ){
if( passUnprescaledHLTTriggerPattern("HLT_IsoMu17_v") ) return true; // 160329-165887
if( passUnprescaledHLTTriggerPattern("HLT_IsoMu24_v") ) return true; // 160329-173198
if( passUnprescaledHLTTriggerPattern("HLT_IsoMu30_eta2p1_v") ) return true; // 173212-180291
}
else{
cout << "susySelections.cc:: " << __LINE__ << " ERROR unrecognized lepType " << lepType << ", quitting" << endl;
exit(0);
}
return false;
}
bool passSingleLep3JetSUSYTrigger2011( bool isData , int lepType ) {
//-------------------------------------------------------
//These are the triggers for lepton+3jets
//-------------------------------------------------------
// no triggers required for MC
if( !isData ) return true;
// electron channel
if( lepType == 0 ){
if( passUnprescaledHLTTriggerPattern("HLT_Ele25_CaloIdVT_TrkIdT_CentralTriJet30_v") ) return true; // 160329-164236
if( passUnprescaledHLTTriggerPattern("HLT_Ele25_CaloIdVT_TrkIdT_TriCentralJet30_v") ) return true; // 165088-165887
if( passUnprescaledHLTTriggerPattern("HLT_Ele25_CaloIdVT_CaloIsoT_TrkIdT_TrkIsoT_TriCentralJet30_v") ) return true; // 165922-178380
if( passUnprescaledHLTTriggerPattern("HLT_Ele25_CaloIdVT_CaloIsoT_TrkIdT_TrkIsoT_TriCentralPFJet30_v") ) return true; // 178420-180291
}
// muon channel
else if( lepType == 1 ){
if( passUnprescaledHLTTriggerPattern("HLT_Mu17_TriCentralJet30_v") ) return true; // 160329-165887
if( passUnprescaledHLTTriggerPattern("HLT_IsoMu17_TriCentralJet30_v") ) return true; // 165922-173198
if( passUnprescaledHLTTriggerPattern("HLT_IsoMu17_eta2p1_TriCentralJet30_v") ) return true; // 173212-178380
if( passUnprescaledHLTTriggerPattern("HLT_IsoMu17_eta2p1_TriCentralPFJet30_v") ) return true; // 178420-180291
}
else{
cout << "susySelections.cc:: ERROR unrecognized lepType " << lepType << ", quitting" << endl;
exit(0);
}
return false;
}
/*****************************************************************************************/
//passes the OS SUSY trigger selection 2011
/*****************************************************************************************/
bool passSUSYTrigger2011_v1( bool isData , int hypType , bool highpt ) {
//----------------------------------------
// no trigger requirements applied to MC
//----------------------------------------
if( !isData ) return true;
//---------------------------------
// triggers for lepton-HT datasets
//---------------------------------
if( !highpt ) {
//mm
if( hypType == 0 ){
if( passUnprescaledHLTTriggerPattern("HLT_DoubleMu3_HT150_v") ) return true;
if( passUnprescaledHLTTriggerPattern("HLT_DoubleMu3_HT160_v") ) return true;
if( passUnprescaledHLTTriggerPattern("HLT_DoubleMu3_Mass4_HT150_v") ) return true;
if( passUnprescaledHLTTriggerPattern("HLT_DoubleMu5_Mass4_HT150_v") ) return true;
if( passUnprescaledHLTTriggerPattern("HLT_DoubleMu5_Mass8_HT150_v") ) return true;
}
//em
else if( hypType == 1 || hypType == 2 ){
if( passUnprescaledHLTTriggerPattern("HLT_Mu3_Ele8_CaloIdL_TrkIdVL_HT150_v") ) return true;
if( passUnprescaledHLTTriggerPattern("HLT_Mu3_Ele8_CaloIdT_TrkIdVL_HT150_v") ) return true;
if( passUnprescaledHLTTriggerPattern("HLT_Mu3_Ele8_CaloIdL_TrkIdVL_HT160_v") ) return true;
if( passUnprescaledHLTTriggerPattern("HLT_Mu3_Ele8_CaloIdT_TrkIdVL_HT160_v") ) return true;
if( passUnprescaledHLTTriggerPattern("HLT_Mu5_Ele8_CaloIdT_TrkIdVL_Mass4_HT150_v") ) return true;
if( passUnprescaledHLTTriggerPattern("HLT_Mu5_Ele8_CaloIdT_TrkIdVL_Mass8_HT150_v") ) return true;
}
//ee
else if( hypType == 3 ){
if( passUnprescaledHLTTriggerPattern("HLT_DoubleEle8_CaloIdL_TrkIdVL_HT150_v") ) return true;
if( passUnprescaledHLTTriggerPattern("HLT_DoubleEle8_CaloIdT_TrkIdVL_HT150_v") ) return true;
if( passUnprescaledHLTTriggerPattern("HLT_DoubleEle8_CaloIdL_TrkIdVL_HT160_v") ) return true;
if( passUnprescaledHLTTriggerPattern("HLT_DoubleEle8_CaloIdT_TrkIdVL_HT160_v") ) return true;
if( passUnprescaledHLTTriggerPattern("HLT_DoubleEle8_CaloIdT_TrkIdVL_Mass8_HT150_v") ) return true;
}
}
//---------------------------------
// triggers for dilepton datasets
//---------------------------------
else{
//mm
if( hypType == 0 ){
if( passUnprescaledHLTTriggerPattern("HLT_DoubleMu7_v") ) return true;
if( passUnprescaledHLTTriggerPattern("HLT_Mu13_Mu7_v" ) ) return true;
if( passUnprescaledHLTTriggerPattern("HLT_Mu13_Mu8_v" ) ) return true;
if( passUnprescaledHLTTriggerPattern("HLT_Mu17_Mu8_v" ) ) return true;
}
//em
else if( hypType == 1 || hypType == 2 ){
if( passUnprescaledHLTTriggerPattern("HLT_Mu17_Ele8_CaloIdL_v") ) return true;
if( passUnprescaledHLTTriggerPattern("HLT_Mu8_Ele17_CaloIdL_v") ) return true;
if( passUnprescaledHLTTriggerPattern("HLT_Mu17_Ele8_CaloIdT_CaloIsoVL_v") ) return true;
if( passUnprescaledHLTTriggerPattern("HLT_Mu8_Ele17_CaloIdT_CaloIsoVL_v") ) return true;
}
//ee
else if( hypType == 3 ){
if( passUnprescaledHLTTriggerPattern("HLT_Ele17_CaloIdL_CaloIsoVL_Ele8_CaloIdL_CaloIsoVL_v") ) return true;
if( passUnprescaledHLTTriggerPattern("HLT_Ele17_CaloIdT_TrkIdVL_CaloIsoVL_TrkIsoVL_Ele8_CaloIdT_TrkIdVL_CaloIsoVL_TrkIsoVL_v") ) return true;
if( passUnprescaledHLTTriggerPattern("HLT_Ele17_CaloIdT_CaloIsoVL_TrkIdVL_TrkIsoVL_Ele8_CaloIdT_CaloIsoVL_TrkIdVL_TrkIsoVL_v") ) return true;
}
}
return false;
}
bool passSUSYTrigger2012_v1( int hypType ) {
if (!cms2.evt_isRealData()) return true;
//mm
if( hypType == 0 ){
if( passUnprescaledHLTTriggerPattern("HLT_Mu17_Mu8_v" ) ) return true;
if( passUnprescaledHLTTriggerPattern("HLT_Mu17_TkMu8_v" ) ) return true;
}
//em
else if( hypType == 1 || hypType == 2 ){
if( passUnprescaledHLTTriggerPattern("HLT_Mu17_Ele8_CaloIdT_CaloIsoVL_TrkIdVL_TrkIsoVL_v") ) return true;
if( passUnprescaledHLTTriggerPattern("HLT_Mu8_Ele17_CaloIdT_CaloIsoVL_TrkIdVL_TrkIsoVL_v") ) return true;
}
//ee
else if( hypType == 3 ){
if( passUnprescaledHLTTriggerPattern("HLT_Ele17_CaloIdT_CaloIsoVL_TrkIdVL_TrkIsoVL_Ele8_CaloIdT_CaloIsoVL_TrkIdVL_TrkIsoVL_v") ) return true;
}
return false;
}
bool passSUSYTrigger2012_v2( bool isData ) {
if( !isData ) return true;
if( passUnprescaledHLTTriggerPattern("HLT_Mu17_Mu8_v" ) ) return true;
if( passUnprescaledHLTTriggerPattern("HLT_Mu17_TkMu8_v" ) ) return true;
if( passUnprescaledHLTTriggerPattern("HLT_Mu17_Ele8_CaloIdT_CaloIsoVL_TrkIdVL_TrkIsoVL_v") ) return true;
if( passUnprescaledHLTTriggerPattern("HLT_Mu8_Ele17_CaloIdT_CaloIsoVL_TrkIdVL_TrkIsoVL_v") ) return true;
if( passUnprescaledHLTTriggerPattern("HLT_IsoMu24_v" ) ) return true;
if( passUnprescaledHLTTriggerPattern("HLT_IsoMu24_eta2p1_v" ) ) return true;
if( passUnprescaledHLTTriggerPattern("HLT_Ele27_WP80_v" ) ) return true;
if( passUnprescaledHLTTriggerPattern("HLT_Ele17_CaloIdT_CaloIsoVL_TrkIdVL_TrkIsoVL_Ele8_CaloIdT_CaloIsoVL_TrkIdVL_TrkIsoVL_v") ) return true;
return false;
}
/*****************************************************************************************/