CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
HLTScalersClient_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 # HLT scalers client. wittich 8/08
4 # Revision 1.5 2010/03/17 20:56:18 wittich
5 # Check for good updates based on mergeCount values
6 # add code for rates normalized per FU
7 #
8 # Revision 1.4 2010/02/16 17:04:31 wmtan
9 # Framework header migrations
10 #
11 # Revision 1.3 2009/12/15 20:41:16 wittich
12 # better hlt scalers client
13 #
14 # Revision 1.2 2009/11/04 03:46:01 lorenzo
15 # added folder param
16 #
17 # Revision 1.1 2008/08/22 20:56:56 wittich
18 # - add client for HLT Scalers
19 # - Move rate calculation to HLTScalersClient and slim down the
20 # filter-farm part of HLTScalers
21 #
22 #
23 hltsClient = cms.EDAnalyzer("HLTScalersClient",
24  dqmFolder = cms.untracked.string("HLT/HLTScalers_EvF"),
25  rateIntegWindow = cms.untracked.uint32(3),
26  processName = cms.string("HLT"),
27  debugDump = cms.untracked.bool(False),
28  replacePartialUpdates = cms.untracked.bool(True),
29  maxFU = cms.untracked.uint32(4704)
30 )
31