Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:09:13

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 # HLT scalers client. wittich 8/08
0004 # Revision 1.5  2010/03/17 20:56:18  wittich
0005 # Check for good updates based on mergeCount values
0006 # add code for rates normalized per FU
0007 #
0008 # Revision 1.4  2010/02/16 17:04:31  wmtan
0009 # Framework header migrations
0010 #
0011 # Revision 1.3  2009/12/15 20:41:16  wittich
0012 # better hlt scalers client
0013 #
0014 # Revision 1.2  2009/11/04 03:46:01  lorenzo
0015 # added folder param
0016 #
0017 # Revision 1.1  2008/08/22 20:56:56  wittich
0018 # - add client for HLT Scalers
0019 # - Move rate calculation to HLTScalersClient and slim down the
0020 #   filter-farm part of HLTScalers
0021 #
0022 #
0023 hltsClient = cms.EDAnalyzer("HLTScalersClient",
0024   dqmFolder = cms.untracked.string("HLT/HLTScalers_EvF"),
0025   rateIntegWindow = cms.untracked.uint32(3),
0026   processName = cms.string("HLT"),
0027   debugDump = cms.untracked.bool(False),
0028   replacePartialUpdates = cms.untracked.bool(True),
0029   maxFU = cms.untracked.uint32(4704)
0030 )
0031