Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix DQMExample #14260

Merged
merged 1 commit into from May 4, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 4 additions & 4 deletions DQMServices/Examples/python/test/DQMExample_Step1_cfg.py
Expand Up @@ -23,13 +23,13 @@
input = cms.untracked.int32(200)
)

with open('fileList.log') as f:
lines = f.readlines()

# Input source
process.source = cms.Source("PoolSource",
secondaryFileNames = cms.untracked.vstring(),
fileNames = cms.untracked.vstring(
#reco from relVals
'file:/afs/cern.ch/cms/CAF/CMSCOMM/COMM_DQM/datatest/forTutorial/step2_RAW2DIGI_RECO_fromRelValTTbarLepton.root'
)
fileNames = cms.untracked.vstring(lines)
)


Expand Down
4 changes: 2 additions & 2 deletions DQMServices/Examples/python/test/DQMExample_Step1_cfi.py
@@ -1,8 +1,8 @@
import FWCore.ParameterSet.Config as cms

DQMExample_Step1 = cms.EDAnalyzer("DQMExample_Step1",
electronCollection = cms.InputTag("gsfElectrons"),
caloJetCollection = cms.InputTag("ak5CaloJets"),
electronCollection = cms.InputTag("gedGsfElectrons"),
caloJetCollection = cms.InputTag("ak4CaloJets"),
pfMETCollection = cms.InputTag("pfMet"),
conversionsCollection = cms.InputTag("allConversions"),
PVCollection = cms.InputTag("offlinePrimaryVerticesWithBS"),
Expand Down