1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
import FWCore.ParameterSet.Config as cms
# This is where we want to invoke both HLT and L1T certificaion
#
###################################################################
# L1T - todo
#from DQMOffline.Trigger.DQMOffline_L1T_Cert_cff import *
# HLT
from DQMOffline.Trigger.DQMOffline_HLT_Cert_cff import *
#--- Note: hltOverallCertSeq must be the last sequence!
#-- it relies on bits set in the other sequences
dqmOfflineTriggerCert = cms.Sequence(dqmOfflineHLTCert)
|