Line Code
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
from HLTriggerOffline.HeavyFlavor.heavyFlavorValidation_cfi import *

hfv1 = heavyFlavorValidation.clone(
    #TriggerProcessName = cms.untracked.string("HLT"),
    TriggerPathName = cms.untracked.string("HLT_DoubleMu4_3_Bs_v"),
    MuonPtBins = cms.untracked.vdouble(0.5, 1., 2., 3., 3.5, 4., 5., 6., 7., 8., 9., 10., 20.),
    MuonEtaBins = cms.untracked.vdouble(24, -2.4, 2.4),
    DimuonPtBins = cms.untracked.vdouble(0., 2., 4., 6., 8., 10., 12., 15., 25.)
)
hfv2 = hfv1.clone(
    TriggerPathName = cms.untracked.string("HLT_DoubleMu4_3_Jpsi_v")
)
hfv3 = hfv1.clone(
    TriggerPathName = cms.untracked.string("HLT_DoubleMu4_MuMuTrk_Displaced_v")
)

hfvTnP1 = hfv1.clone(
    TriggerPathName = cms.untracked.string("HLT_Mu7p5_L2Mu2_Jpsi_v")
)
hfvTnP2 = hfv1.clone(
    TriggerPathName = cms.untracked.string("HLT_Mu7p5_L2Mu2_Upsilon_v")
)

## 2017 additions
hfjpsiMuon = hfv1.clone(
    TriggerPathName = cms.untracked.string("HLT_Dimuon0_Jpsi3p5_Muon2_v")
)

hfjpsiNoVertexing = hfv1.clone(
    TriggerPathName = cms.untracked.string("HLT_Dimuon0_Jpsi_NoVertexing_v")
)

hfjpsiNoVertexingNoOS = hfv1.clone(
    TriggerPathName = cms.untracked.string("HLT_Dimuon0_Jpsi_NoVertexing_NoOS_v")
)

hfjpsiBarrel = hfv1.clone(
    TriggerPathName = cms.untracked.string("HLT_Dimuon20_Jpsi_Barrel_Seagulls_v")
)

hfpsiBarrel = hfv1.clone(
    TriggerPathName = cms.untracked.string("HLT_Dimuon10_PsiPrime_Barrel_Seagulls_v")
)

hfupsilonBarrel = hfv1.clone(
    TriggerPathName = cms.untracked.string("HLT_Dimuon10_Upsilon_Barrel_Seagulls_v")
)

hfphiBarrel = hfv1.clone(
    TriggerPathName = cms.untracked.string("HLT_Dimuon14_Phi_Barrel_Seagulls_v")
)

hfmu25Onia = hfv1.clone(
    TriggerPathName = cms.untracked.string("HLT_Mu25_TkMu0_Onia_v")
)

hfmu30Onia = hfv1.clone(
    TriggerPathName = cms.untracked.string("HLT_Mu30_TkMu0_Onia_v")
)

hfmu25Phi = hfv1.clone(
    TriggerPathName = cms.untracked.string("HLT_Mu25_TkMu0_Phi_v")
)

hfmu20Phi = hfv1.clone(
    TriggerPathName = cms.untracked.string("HLT_Mu20_TkMu0_Phi_v")
)

hfjpsi = hfv1.clone(
    TriggerPathName = cms.untracked.string("HLT_Dimuon25_Jpsi_v")
)

hfpsi = hfv1.clone(
    TriggerPathName = cms.untracked.string("HLT_Dimuon14_PsiPrime_v")
)

hfupsilon = hfv1.clone(
    TriggerPathName = cms.untracked.string("HLT_Dimuon10_Upsilon_y1p4_v")
)


heavyFlavorValidationSequence = cms.Sequence(
    hfv1+hfv2+hfv3
    +hfvTnP1+hfvTnP2
    + hfjpsiMuon
    + hfjpsiNoVertexing
    + hfjpsiNoVertexingNoOS
    + hfjpsiBarrel
    + hfpsiBarrel
    + hfupsilonBarrel
    + hfphiBarrel
    + hfmu25Onia
    + hfmu30Onia
    + hfmu25Phi
    + hfmu20Phi
    + hfjpsi
    + hfpsi
    + hfupsilon
)