CMS 3D CMS Logo

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