CMS 3D CMS Logo

dumpTauVariables_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 dumpTauVariables = cms.EDProducer(
4  "CandViewNtpProducer",
5  ## can be selectedTausCandidates or slimmedTaus from miniAOD
6  src = cms.InputTag("slimmedTaus"),
7  ## prefix for variables for the dump
8  prefix = cms.untracked.string(""),
9  ## allow access to function calls from derived classes
10  lazyParser = cms.untracked.bool(True),
11  ## add run, event number and lumi section
12  eventInfo = cms.untracked.bool(True),
13  ## define variables to be dumped
14  variables = cms.VPSet()
15  )