CMS 3D CMS Logo

QIE11Task.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 qie11Task = cms.EDAnalyzer(
4  "QIE11Task",
5 
6  # standard
7  name = cms.untracked.string("QIE11Task"),
8  debug = cms.untracked.int32(0),
9  runkeyVal = cms.untracked.int32(0),
10  runkeyName = cms.untracked.string("pp_run"),
11 
12  # tag
13  tagQIE11 = cms.untracked.InputTag("hcalDigis"),
14 
15  # cuts,
16  cut = cms.untracked.double(20),
17  ped = cms.untracked.int32(4),
18 
19  # to be used exclusively
20  laserType = cms.untracked.int32(-1),
21  eventType = cms.untracked.int32(-1)
22 )