test
CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
LaserTask.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 laserTask = cms.EDAnalyzer(
4  "LaserTask",
5 
6  # standard parameters
7  name = cms.untracked.string("LaserTask"),
8  debug = cms.untracked.int32(0),
9  runkeyVal = cms.untracked.int32(0),
10  runkeyName = cms.untracked.string("pp_run"),
11  ptype = cms.untracked.int32(0),
12  mtype = cms.untracked.bool(True),
13  subsystem = cms.untracked.string("HcalCalib"),
14 
15  # tags
16  tagHBHE = cms.untracked.InputTag("hcalDigis"),
17  tagHO = cms.untracked.InputTag("hcalDigis"),
18  tagHF = cms.untracked.InputTag("hcalDigis"),
19  tagRaw = cms.untracked.InputTag('hltHcalCalibrationRaw'),
20 
21  nevents = cms.untracked.int32(10000)
22 )
23 
24 
25 
26 
27 
28 
29 
30 
31 
32 
33 
34