CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
L1TdeGEMTPG_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 l1tdeGEMTPGCommon = cms.PSet(
4  monitorDir = cms.string("L1TEMU/L1TdeGEMTPG"),
5  verbose = cms.bool(False),
6  ## when multiple chambers are enabled, order them by station number!
7  chambers = cms.vstring("GE11"),
8  dataEmul = cms.vstring("data","emul"),
9  clusterVars = cms.vstring("size", "pad", "bx"),
10  clusterNBin = cms.vuint32(20,384,10),
11  clusterMinBin = cms.vdouble(0,0,-5),
12  clusterMaxBin = cms.vdouble(20,384,5),
13  ## GEM VFAT data is not captured in BX's other than BX0
14  ## For a good comparison, leave out those data clusters
15  useDataClustersOnlyInBX0 = cms.bool(True),
16  B904Setup = cms.bool(False),
17 )
18 
19 from DQMServices.Core.DQMEDAnalyzer import DQMEDAnalyzer
20 l1tdeGEMTPG = DQMEDAnalyzer(
21  "L1TdeGEMTPG",
22  l1tdeGEMTPGCommon,
23  data = cms.InputTag("emtfStage2Digis"),
24  emul = cms.InputTag("valMuonGEMPadDigiClusters"),
25 )