Skip to content

Commit

Permalink
Merge pull request cms-sw#16731 from deguio/fixCalibMap_81x
Browse files Browse the repository at this point in the history
fix calib map and typo
  • Loading branch information
cmsbuild authored Dec 1, 2016
2 parents 782a885 + 408c019 commit ab95793
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion DQM/HcalTasks/plugins/RawTask.cc
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ RawTask::RawTask(edm::ParameterSet const& ps):
_calibProcessing = ps.getUntrackedParameter<bool>("calibProcessing",
false);
_thresh_calib_nbadq = ps.getUntrackedParameter<int>("thresh_calib_nbadq",
1000);
5000);

_tokFEDs = consumes<FEDRawDataCollection>(_tagFEDs);
_tokReport = consumes<HcalUnpackerReport>(_tagReport);
Expand Down
4 changes: 2 additions & 2 deletions DQM/HcalTasks/python/RawTask.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
# tags
tagFEDs = cms.untracked.InputTag("rawDataCollector"),
tagReport = cms.untracked.InputTag("hcalDigis"),
calibProcessing = cms.untracked.bool(False),
thresh_calib_nobadq = cms.untracked.int32(1000)
calibProcessing = cms.untracked.bool(False),
thresh_calib_nbadq = cms.untracked.int32(5000)
)


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,7 @@
process.rawTask.subsystem = subsystem
process.rawTask.tagFEDs = rawTagUntracked
process.rawTask.tagReport = cms.untracked.InputTag("hcalDigis")
process.rawTask.calibProcessing = cms.untracked.bool(True)

#-------------------------------------
# Prepare all the Laser Tasks
Expand Down

0 comments on commit ab95793

Please sign in to comment.