CMS 3D CMS Logo

heavyFlavorValidationSequence_cff.py
Go to the documentation of this file.
2 
3 hfv1 = heavyFlavorValidation.clone(
4  #TriggerProcessName = cms.untracked.string("HLT"),
5  TriggerPathName = cms.untracked.string("HLT_DoubleMu4_3_Bs_v"),
6  MuonPtBins = cms.untracked.vdouble(0.5, 1., 2., 3., 3.5, 4., 5., 6., 7., 8., 9., 10., 20.),
7  MuonEtaBins = cms.untracked.vdouble(24, -2.4, 2.4),
8  DimuonPtBins = cms.untracked.vdouble(0., 2., 4., 6., 8., 10., 12., 15., 25.)
9 )
10 hfv2 = hfv1.clone(
11  TriggerPathName = cms.untracked.string("HLT_DoubleMu4_3_Jpsi_v")
12 )
13 hfv3 = hfv1.clone(
14  TriggerPathName = cms.untracked.string("HLT_DoubleMu4_MuMuTrk_Displaced_v")
15 )
16 
17 hfvTnP1 = hfv1.clone(
18  TriggerPathName = cms.untracked.string("HLT_Mu7p5_L2Mu2_Jpsi_v")
19 )
20 hfvTnP2 = hfv1.clone(
21  TriggerPathName = cms.untracked.string("HLT_Mu7p5_L2Mu2_Upsilon_v")
22 )
23 
24 
25 hfjpsiMuon = hfv1.clone(
26  TriggerPathName = cms.untracked.string("HLT_Dimuon0_Jpsi3p5_Muon2_v")
27 )
28 
29 hfjpsiNoVertexing = hfv1.clone(
30  TriggerPathName = cms.untracked.string("HLT_Dimuon0_Jpsi_NoVertexing_v")
31 )
32 
33 hfjpsiNoVertexingNoOS = hfv1.clone(
34  TriggerPathName = cms.untracked.string("HLT_Dimuon0_Jpsi_NoVertexing_NoOS_v")
35 )
36 
37 hfjpsiBarrel = hfv1.clone(
38  TriggerPathName = cms.untracked.string("HLT_Dimuon20_Jpsi_Barrel_Seagulls_v")
39 )
40 
41 hfpsiBarrel = hfv1.clone(
42  TriggerPathName = cms.untracked.string("HLT_Dimuon10_PsiPrime_Barrel_Seagulls_v")
43 )
44 
45 hfupsilonBarrel = hfv1.clone(
46  TriggerPathName = cms.untracked.string("HLT_Dimuon10_Upsilon_Barrel_Seagulls_v")
47 )
48 
49 hfphiBarrel = hfv1.clone(
50  TriggerPathName = cms.untracked.string("HLT_Dimuon14_Phi_Barrel_Seagulls_v")
51 )
52 
53 hfmu25Onia = hfv1.clone(
54  TriggerPathName = cms.untracked.string("HLT_Mu25_TkMu0_Onia_v")
55 )
56 
57 hfmu30Onia = hfv1.clone(
58  TriggerPathName = cms.untracked.string("HLT_Mu30_TkMu0_Onia_v")
59 )
60 
61 hfmu25Phi = hfv1.clone(
62  TriggerPathName = cms.untracked.string("HLT_Mu25_TkMu0_Phi_v")
63 )
64 
65 hfmu20Phi = hfv1.clone(
66  TriggerPathName = cms.untracked.string("HLT_Mu20_TkMu0_Phi_v")
67 )
68 
69 hfjpsi = hfv1.clone(
70  TriggerPathName = cms.untracked.string("HLT_Dimuon25_Jpsi_v")
71 )
72 
73 hfpsi = hfv1.clone(
74  TriggerPathName = cms.untracked.string("HLT_Dimuon14_PsiPrime_v")
75 )
76 
77 hfupsilon = hfv1.clone(
78  TriggerPathName = cms.untracked.string("HLT_Dimuon10_Upsilon_y1p4_v")
79 )
80 
81 
82 heavyFlavorValidationSequence = cms.Sequence(
83  hfv1+hfv2+hfv3
84  +hfvTnP1+hfvTnP2
85  + hfjpsiMuon
86  + hfjpsiNoVertexing
87  + hfjpsiNoVertexingNoOS
88  + hfjpsiBarrel
89  + hfpsiBarrel
90  + hfupsilonBarrel
91  + hfphiBarrel
92  + hfmu25Onia
93  + hfmu30Onia
94  + hfmu25Phi
95  + hfmu20Phi
96  + hfjpsi
97  + hfpsi
98  + hfupsilon
99 )