CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
callgrindSwitch_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 profilerStart = cms.EDAnalyzer("Profiler",
4  action = cms.int32(1),
5  lastEvent = cms.int32(20),
6  firstEvent = cms.int32(2)
7 )
8 
9 profilerStop = cms.EDAnalyzer("Profiler",
10  action = cms.int32(0),
11  lastEvent = cms.int32(20),
12  firstEvent = cms.int32(2)
13 )
14 
15