CMS 3D CMS Logo

L1TSync_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 from DQMServices.Core.DQMEDAnalyzer import DQMEDAnalyzer
4 l1tSync = DQMEDAnalyzer('L1TSync',
5 
6  dqmStore = cms.untracked.bool(True),
7  disableROOToutput = cms.untracked.bool(True),
8  verbose = cms.untracked.bool(False),
9  inputTagScalersResults = cms.InputTag("scalersRawToDigi"),
10  inputTagL1GtDataDaq = cms.InputTag("gtDigis"),
11  inputTagtEvmSource = cms.InputTag("gtEvmDigis"),
12 
13  # Online
14  oracleDB = cms.string("oracle://CMS_OMDS_LB/CMS_TRG_R"),
15  pathCondDB = cms.string("/nfshome0/centraltspro/secure/"),
16 
17  # Offline
18  #oracleDB = cms.string("oracle://cms_orcon_adg/CMS_COND_31X_L1T")
19  #pathCondDB = cms.string("/afs/cern.ch/cms/DB/conddb"),
20 
21  # Index for the prescale set to be used
22  # as reference
23  refPrescaleSet = cms.int32(0),
24 
25  # Categories to process
26  Categories = cms.PSet(
27 
28  # Global parameters for algo selection
29  forceGlobalParameters = cms.bool(False), # Force use of global over bit-by-bit parameters
30  doGlobalAutoSelection = cms.bool(False), # Do automatic/fixed algo selection for all monitored algos
31 
32  BPTX = cms.PSet(
33  monitor = cms.bool(True),
34  algo = cms.string("L1_ZeroBias"),
35  CertMinEvents = cms.int32(50),
36  ),
37  Mu = cms.PSet(
38  monitor = cms.bool(True),
39  doAutoSelection = cms.bool(True),
40  algo = cms.string(""),
41  CertMinEvents = cms.int32(20),
42  ),
43  EG = cms.PSet(
44  monitor = cms.bool(True),
45  doAutoSelection = cms.bool(True),
46  algo = cms.string(""),
47  CertMinEvents = cms.int32(20),
48  ),
49  IsoEG = cms.PSet(
50  monitor = cms.bool(True),
51  doAutoSelection = cms.bool(True),
52  algo = cms.string(""),
53  CertMinEvents = cms.int32(20),
54  ),
55  Jet = cms.PSet(
56  monitor = cms.bool(True),
57  doAutoSelection = cms.bool(True),
58  algo = cms.string(""),
59  CertMinEvents = cms.int32(20),
60  ),
61  CenJet = cms.PSet(
62  monitor = cms.bool(False),
63  doAutoSelection = cms.bool(True),
64  algo = cms.string(""),
65  CertMinEvents = cms.int32(50),
66  ),
67  ForJet = cms.PSet(
68  monitor = cms.bool(False),
69  doAutoSelection = cms.bool(True),
70  algo = cms.string(""),
71  CertMinEvents = cms.int32(20),
72  ),
73  TauJet = cms.PSet(
74  monitor = cms.bool(False),
75  doAutoSelection = cms.bool(True),
76  algo = cms.string(""),
77  CertMinEvents = cms.int32(20),
78  ),
79  ETM = cms.PSet(
80  monitor = cms.bool(True),
81  doAutoSelection = cms.bool(True),
82  algo = cms.string(""),
83  CertMinEvents = cms.int32(20),
84  ),
85  ETT = cms.PSet(
86  monitor = cms.bool(True),
87  doAutoSelection = cms.bool(True),
88  algo = cms.string(""),
89  CertMinEvents = cms.int32(20),
90  ),
91  HTT = cms.PSet(
92  monitor = cms.bool(True),
93  doAutoSelection = cms.bool(True),
94  algo = cms.string(""),
95  CertMinEvents = cms.int32(20),
96  ),
97  HTM = cms.PSet(
98  monitor = cms.bool(False),
99  doAutoSelection = cms.bool(True),
100  algo = cms.string(""),
101  CertMinEvents = cms.int32(20),
102  ),
103  ),
104 )