CMS 3D CMS Logo

TestTask.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 testTask = cms.EDAnalyzer(
4  "TestTask",
5 
6  # standard
7  name = cms.untracked.string("TestTask"),
8  debug = cms.untracked.int32(0),
9  runkeyVal = cms.untracked.int32(0),
10  runkeyName = cms.untracked.string("pp_run"),
11 
12  tagHF = cms.untracked.InputTag("qie10Digis")
13 )