CMS 3D CMS Logo

HLT_HIPhoton15_DQM_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 ##########################################################
4 # See HLT Config Browser, for up-to-date HLT paths
5 # http://cms-project-confdb-hltdev.web.cern.ch/cms-project-confdb-hltdev/browser/
6 #
7 # This config is for
8 # HLT_HIPhoton15
9 # A single photon trigger, requiring at least one HLT photon with ET > 15 GeV.
10 # No isolation is required.
11 #
12 # This path contains 5 steps:
13 # HLT_HIPhoton15 = cms.Path( HLTBeginSequenceBPTX +
14 # hltHIL1sPhoton15 +
15 # hltHIPrePhoton15 +
16 # HLTDoCaloSequence +
17 # HLTDoHIEcalClusSequence +
18 # hltHIPhoton15 +
19 # HLTEndSequence )
20 #
21 # The two filter steps:
22 # 1. hltHIL1sPhoton15
23 # 2. hltHIPhoton15
24 #
25 # ...are what go into the "HLTCollectionLabels" below.
26 ##########################################################
27 
28 
29 from DQMServices.Core.DQMEDAnalyzer import DQMEDAnalyzer
30 HLT_HIPhoton15_DQM = DQMEDAnalyzer('EmDQM',
31  triggerobject = cms.InputTag("hltTriggerSummaryRAW","","HLT"),
32  pdgGen = cms.int32(22),
33  genEtaAcc = cms.double(2.5),
34  genEtAcc = cms.double(10.0),
35  reqNum = cms.uint32(1),
36  PtMax = cms.untracked.double(200.0),
37  useHumanReadableHistTitles = cms.untracked.bool(False),
38 
39  # Filters from collections listed above. theHLTOutputTypes defined at the following:
40  # http://cmslxr.fnal.gov/lxr/source/DataFormats/HLTReco/interface/TriggerTypeDefs.h#030
41  filters = cms.VPSet(
42  cms.PSet(
43  PlotBounds = cms.vdouble(0.0, 0.0),
44  HLTCollectionLabels = cms.InputTag("hltHIL1sPhoton15","","HLT"),
45  IsoCollections = cms.VInputTag(cms.InputTag("none")),
46  theHLTOutputTypes = cms.int32(-82),
47  HLTCollectionHumanName = cms.untracked.string("Level 1"),
48  ncandcut = cms.int32(1)
49  ),
50  cms.PSet(
51  PlotBounds = cms.vdouble(0.0, 0.0),
52  HLTCollectionLabels = cms.InputTag("hltHIPhoton15","","HLT"),
53  IsoCollections = cms.VInputTag(cms.InputTag("none")),
54  theHLTOutputTypes = cms.int32(81),
55  HLTCollectionHumanName = cms.untracked.string("Photon 15"),
56  ncandcut = cms.int32(1)
57  )
58  )
59 )